/* ============================================
   MANIFESTO — big text reveal on scroll
   ============================================ */
.manifesto {
  position: relative;
  background-color: var(--color-bg);
  padding: 160px 40px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.manifesto-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.m-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 clamp(12px, 1.5vw, 24px);
  line-height: 1.05;
  margin-bottom: clamp(4px, 0.5vw, 8px);
}

.m-word {
  font-size: clamp(32px, 6.5vw, 110px);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* All words start gray — GSAP scrub animates to target color */
.m-bright,
.m-dim,
.m-accent {
  color: rgba(255, 255, 255, 0.15);
}

/* Inline images — width expands from 0, controlled by GSAP */
.m-img-wrap {
  display: inline-flex;
  width: 0;
  height: clamp(40px, 5.5vw, 80px);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  vertical-align: middle;
}

.m-img {
  min-width: clamp(60px, 8vw, 120px);
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .manifesto {
    padding: 80px 16px;
    min-height: auto;
  }

  .m-word {
    font-size: clamp(24px, 8vw, 48px);
  }

  .m-img-wrap {
    width: 48px;
    height: 32px;
    border-radius: 8px;
  }
}

/* ============================================
   HERO SECTION — pixel-perfect match to designbybrandin.com
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ---- Hero Background Video (fullscreen) ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video,
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* Gradient fade at bottom — grain/noise area for readable text */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(232, 43, 0, 0.4) 30%,
    rgba(232, 43, 0, 0.75) 60%,
    rgba(232, 43, 0, 0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ---- Hero Content — centered over video ---- */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

/* "DIGITAL AGENCY" label */
.hero-label {
  margin-bottom: clamp(4px, 0.8vw, 12px);
}

.hero-label-text {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bg);
}

/* "AURA" — massive, edge-to-edge */
.hero-heading {
  line-height: 0.85;
  overflow: hidden;
  width: 100%;
}

.hero-heading-line {
  display: block;
  font-size: clamp(80px, 18vw, 360px);
  font-weight: var(--font-weight-black);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-bg);
  line-height: 0.82;
  white-space: nowrap;
  text-align: center;
  /* Hidden initially — GSAP reveals via translateY(0) */
  transform: translateY(110%);
}

/* Badge ("w. Nominee" style, flush right) */
.hero-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-badge-inner {
  width: 44px;
  height: 90px;
  background-color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 8px 6px;
  gap: 4px;
}

.hero-badge-label {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge-sublabel {
  font-size: 9px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

/* ---- Hero Bottom Bar ---- */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.hero-bottom-item {
  font-size: clamp(9px, 0.8vw, 12px);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bg);
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-heading-line {
    font-size: clamp(60px, 16vw, 300px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero-bg-video,
  .hero-bg-img {
    object-position: center center;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 100px;
  }

  .hero-label-text {
    font-size: 13px;
  }

  .hero-heading-line {
    font-size: 18vw;
  }

  .hero-badge {
    display: none;
  }

  .hero-bottom {
    padding: 16px 20px;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .hero-bottom-item {
    font-size: 9px;
  }

  .hero-bottom-item:nth-child(2) {
    display: none;
  }
}

/* ============================================
   CASES / FEATURED WORK
   ============================================ */
.cases {
  position: relative;
  background-color: var(--color-bg);
  padding: 60px 0 80px;
}

.cases-header {
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto 60px;
}

.cases-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: var(--font-weight-black);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.cases-subtitle {
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--color-subtle);
  font-weight: var(--font-weight-regular);
}

/* --- Case List --- */
.cases-list {
  border-top: 1px solid var(--color-border-light);
}

.case-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 40px;
  align-items: center;
  padding: 28px 40px;
  border-bottom: 1px solid var(--color-border-light);
  transition: background-color 0.35s var(--ease-hover), color 0.35s var(--ease-hover);
  color: var(--color-text);
  cursor: none;
}

.case-item:hover {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.case-item:hover .case-tags {
  color: var(--color-bg);
  opacity: 0.7;
}

.case-num {
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.case-name {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
}

.case-tags {
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: var(--font-weight-medium);
  color: var(--color-subtle);
  text-align: right;
  transition: color 0.35s var(--ease-hover), opacity 0.35s var(--ease-hover);
}

.case-arrow {
  font-size: 20px;
  text-align: right;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-item:hover .case-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Case Preview (floating image) --- */
.case-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: transform;
}

.case-preview.visible {
  opacity: 1;
  transform: scale(1);
}

.case-preview-img,
.case-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-preview-video {
  display: none;
}

.case-preview.video-mode .case-preview-img {
  display: none;
}

.case-preview.video-mode .case-preview-video {
  display: block;
}

/* ============================================
   EXPERTISE BLOCKS — fullscreen image + skills
   ============================================ */
.expertise-block {
  position: relative;
  background-color: var(--color-bg);
}

/* --- Banner (fullscreen image with decorative SVG) --- */
.expertise-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background-color: var(--color-accent);
}

/* Image wrapper — for zoom animation */
.expertise-banner-img-wrap {
  position: absolute;
  inset: -10%;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
}

.expertise-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  transition: transform 0s;
  will-change: transform;
}

.expertise-banner-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  height: auto;
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.expertise-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 30%,
    transparent 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
}

/* Number at bottom-left — large, like reference */
.expertise-banner-num {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 4;
  font-size: clamp(64px, 10vw, 160px);
  font-weight: var(--font-weight-black);
  letter-spacing: -0.04em;
  color: var(--color-text);
  line-height: 0.85;
  opacity: 0.9;
  pointer-events: none;
}

/* Title centered on banner */
.expertise-banner-title {
  position: relative;
  z-index: 4;
  font-size: clamp(28px, 4.5vw, 72px);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--color-text);
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  padding: 0 40px;
}

/* --- Skills List (dark bg, big number + list) --- */
.expertise-skills {
  position: relative;
  display: flex;
  gap: 0;
  padding: 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 500px;
  align-items: stretch;
}

/* Huge number on the left — fills vertical space */
.expertise-skills-num {
  font-size: clamp(160px, 22vw, 380px);
  font-weight: var(--font-weight-black);
  color: #fff;
  opacity: 0.08;
  line-height: 0.75;
  flex-shrink: 0;
  letter-spacing: -0.05em;
  white-space: nowrap;
  align-self: flex-end;
  margin-right: clamp(20px, 3vw, 60px);
}

.expertise-skills-body {
  flex: 1;
  min-width: 0;
  padding-top: 20px;
}

.expertise-skills-heading {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-subtle);
  margin-bottom: 30px;
}

.expertise-skills-list {
  border-top: 1px solid var(--color-border-light);
}

.expertise-skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.expertise-skill-row:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

.expertise-skill-name {
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  transition: color 0.3s ease;
}

.expertise-skill-row:hover .expertise-skill-name {
  color: var(--color-accent);
}

.expertise-skill-idx {
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-subtle);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-left: 20px;
}

/* --- Price tag bottom-right --- */
.expertise-price {
  margin-top: 30px;
  text-align: right;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

/* ============================================
   STATS — Red block with dot pattern
   ============================================ */
.stats-red {
  position: relative;
  background-color: var(--color-accent);
  padding: 120px 40px;
  overflow: hidden;
}

.stats-red-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.stats-red-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.stats-red-row {
  display: flex;
  align-items: baseline;
  gap: clamp(30px, 5vw, 80px);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.stats-red-row:first-child {
  border-top: 1px solid rgba(0,0,0,0.15);
}

.stats-red-num {
  font-size: clamp(72px, 10vw, 160px);
  font-weight: var(--font-weight-black);
  color: #000;
  line-height: 0.85;
  letter-spacing: -0.04em;
  min-width: clamp(120px, 20vw, 300px);
}

.stats-red-plus {
  font-size: clamp(36px, 5vw, 80px);
  font-weight: var(--font-weight-black);
  color: #000;
  line-height: 0.85;
  margin-left: -10px;
}

.stats-red-label {
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: var(--font-weight-semibold);
  color: #000;
  line-height: 1.3;
}

/* ============================================
   FOOTER — Orange design
   ============================================ */
.footer-orange {
  background-color: var(--color-accent);
  color: #000;
  padding: 60px 40px 30px;
  position: relative;
  overflow: hidden;
}

.footer-orange-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.footer-orange-label {
  display: block;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.6);
  margin-bottom: 8px;
}

.footer-orange-email {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: var(--font-weight-medium);
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-orange-email:hover {
  opacity: 0.6;
}

.footer-orange-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #000;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-orange-btn:hover {
  background-color: #000;
  color: var(--color-accent);
}

.footer-orange-about {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  gap: 60px;
}

.footer-orange-about-label {
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: rgba(0,0,0,0.6);
  flex-shrink: 0;
  min-width: 80px;
}

.footer-orange-about-text {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.6;
  color: rgba(0,0,0,0.8);
  max-width: 600px;
}

/* Huge AURA brand text */
.footer-orange-brand {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.footer-orange-brand-text {
  display: block;
  font-size: clamp(120px, 22vw, 380px);
  font-weight: var(--font-weight-black);
  color: #000;
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* City times */
.footer-orange-bottom {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.footer-orange-city {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-orange-city-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
}

.footer-orange-city-name {
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
}

.footer-orange-city-time {
  font-size: 11px;
  font-weight: var(--font-weight-medium);
  color: rgba(0,0,0,0.6);
  font-variant-numeric: tabular-nums;
  min-width: 60px;
}

.footer-orange-copy {
  margin-left: auto;
  font-size: 11px;
  color: rgba(0,0,0,0.5);
}

/* ============================================
   ABOUT — Who we are & why trust us
   ============================================ */
.about {
  position: relative;
  background-color: var(--color-bg);
  padding: 0 40px 100px;
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* --- Lead block --- */
.about-lead {
  margin-bottom: 80px;
}

.about-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: var(--font-weight-black);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 24px;
}

.about-desc {
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--color-subtle);
  max-width: 700px;
}

/* --- Features grid (3 cols) --- */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 60px;
}

.about-feature {
  padding-right: 20px;
}

.about-feature-num {
  display: block;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.about-feature-title {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-feature-desc {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  color: var(--color-subtle);
}

/* --- Company logos grid --- */
.about-companies {
  margin-bottom: 80px;
}

.about-companies-label {
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-subtle);
  margin-bottom: 30px;
}

.about-companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border-light);
  border-left: 1px solid var(--color-border-light);
}

.about-company-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  transition: background-color 0.3s ease;
  cursor: none;
}

.about-company-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.about-company-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.about-company-item:hover .about-company-logo {
  opacity: 1;
}

.about-company-name {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.about-company-item:hover .about-company-name {
  opacity: 1;
}

/* --- Stats row --- */
.about-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: 50px;
}

.about-stat {
  text-align: center;
}

.about-stat-num {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: var(--font-weight-black);
  color: var(--color-text);
  line-height: 1;
}

.about-stat-plus {
  font-size: clamp(36px, 4vw, 64px);
  font-weight: var(--font-weight-black);
  color: var(--color-accent);
}

.about-stat-label {
  display: block;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: var(--font-weight-medium);
  color: var(--color-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* --- Industry tags --- */
.about-industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.about-industry {
  display: inline-flex;
  padding: 8px 20px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: var(--font-weight-medium);
  color: var(--color-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.about-industry:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  position: relative;
  background-color: var(--color-bg);
  padding: 120px 40px;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: var(--font-weight-black);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--color-subtle);
  line-height: 1.5;
  margin-bottom: 40px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 48px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: background-color 0.3s var(--ease-hover), color 0.3s var(--ease-hover);
  cursor: none;
}

.contact-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.contact-email {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-subtle);
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE — SECTIONS
   ============================================ */
@media (max-width: 1024px) {
  .case-item {
    grid-template-columns: 50px 1fr 40px;
  }

  .case-tags {
    display: none;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-companies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .expertise-skills-num {
    font-size: clamp(120px, 16vw, 220px);
  }

  .stats-red-num {
    font-size: clamp(60px, 8vw, 120px);
    min-width: clamp(100px, 15vw, 200px);
  }

  .footer-orange-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-orange-about {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 20px 60px;
  }

  .about-lead {
    margin-bottom: 50px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
    padding-top: 40px;
  }

  .about-feature {
    padding-right: 0;
  }

  .about-companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-company-logo {
    width: 32px;
    height: 32px;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about-industries {
    gap: 8px;
  }

  .cases {
    padding: 80px 0 60px;
  }

  .cases-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .case-item {
    grid-template-columns: 40px 1fr 30px;
    padding: 20px 20px;
  }

  .case-name {
    font-size: 16px;
  }

  .expertise-banner {
    height: 60vh;
    min-height: 350px;
  }

  .expertise-banner-num {
    font-size: 48px;
    bottom: 20px;
    left: 20px;
  }

  .expertise-banner-title {
    font-size: 24px;
    padding: 0 20px;
  }

  .expertise-banner-deco {
    width: 90%;
    opacity: 0.3;
  }

  .expertise-skills {
    flex-direction: column;
    padding: 50px 20px;
    min-height: auto;
  }

  .expertise-skills-num {
    font-size: 80px;
    align-self: flex-start;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .stats-red {
    padding: 60px 20px;
  }

  .stats-red-row {
    flex-direction: column;
    gap: 8px;
    padding: 30px 0;
  }

  .stats-red-num {
    font-size: 64px;
    min-width: auto;
  }

  .stats-red-label {
    font-size: 16px;
  }

  .contact {
    padding: 80px 20px;
  }

  .footer-orange {
    padding: 40px 20px 20px;
  }

  .footer-orange-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-orange-about {
    flex-direction: column;
    gap: 12px;
  }

  .footer-orange-brand-text {
    font-size: 80px;
  }

  .footer-orange-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }
}
