/* ============================================================
   TOOCREATE — Design System
   Vivid orange-red ground · chartreuse accent · warm white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500&display=swap');

:root {
  /* Core palette (sampled from reference) */
  --orange:        #E8390C;
  --orange-bright: #F1490E;
  --orange-deep:   #C72D07;   /* decorative line / motifs */
  --orange-ink:    #2B0A02;   /* warm near-black */
  --orange-ink-2:  #1C0601;

  --lime:          #CDEF2E;
  --lime-bright:   #DBFF3D;
  --lime-deep:     #A9C81E;

  --brown:         #4A1B0A;   /* warm chocolate surface */
  --brown-light:   #5C2611;

  --cream:         #FFF4EC;   /* warm white text */
  --cream-dim:     rgba(255,244,236,0.66);
  --cream-faint:   rgba(255,244,236,0.32);

  /* Surfaces */
  --bg:            var(--orange);
  --ink:           var(--cream);

  /* Type */
  --font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(72px, 10vw, 150px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--lime); color: var(--orange-ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--lime);
  display: inline-block;
}

.section-head { max-width: 880px; margin-bottom: clamp(40px, 5vw, 68px); }
.section-head h2 {
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 22px;
  text-wrap: balance;
}
.section-head p {
  margin-top: 22px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--cream-dim);
  max-width: 60ch;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center p { margin-inline: auto; }

/* sections on warm-black ground */
.ink-section { background: var(--orange-ink); }
.ink-section .eyebrow { color: var(--lime); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 100px;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-flex;
  transition: transform .45s var(--ease);
}
.btn:hover .arrow { transform: translate(4px, -4px); }

.btn-solid {
  background: var(--lime);
  color: var(--orange-ink);
}
.btn-solid:hover {
  background: var(--lime-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(205,239,46,0.6);
}
.btn-ghost {
  border: 1.5px solid var(--lime);
  color: var(--lime);
}
.btn-ghost:hover {
  background: var(--lime);
  color: var(--orange-ink);
  transform: translateY(-3px);
}
.btn-light {
  border: 1.5px solid var(--cream-faint);
  color: var(--cream);
}
.btn-light:hover { border-color: var(--cream); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(232,57,12,0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255,244,236,0.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; flex-direction: column; line-height: 0.8; }
.brand .logo {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--lime);
}
.brand .est {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--lime-deep);
  margin-top: 6px;
}

.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: var(--cream);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--lime);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--lime); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 13px 24px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav-toggle span { height: 2.5px; background: var(--lime); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--orange-ink);
  z-index: 99;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  gap: 8px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,244,236,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a span { color: var(--lime); font-size: 0.9rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
}
.hero > .wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-motif {
  position: absolute;
  top: 50%; right: -6%;
  transform: translateY(-50%);
  width: min(62vw, 920px);
  color: var(--orange-deep);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 48px;
  margin-top: auto;
  padding-bottom: 56px;
}
.hero-tag {
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero-tag .hl { color: var(--lime); }
.hero-sub {
  margin-top: 28px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  color: var(--cream-dim);
  max-width: 48ch;
}
.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-side { text-align: right; padding-bottom: 6px; }
.hero-side .label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}
.hero-side .label .dim { color: var(--cream-dim); display: block; }
.hero-side .co {
  margin-top: 28px;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 600;
}

.hero-foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,244,236,0.22);
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-foot-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.95rem; }
.hero-foot-item svg { color: var(--lime); flex-shrink: 0; }
.hero-socials { display: flex; gap: 16px; }
.hero-socials a { color: var(--lime); transition: transform .3s var(--ease); }
.hero-socials a:hover { transform: translateY(-3px) scale(1.1); }

.scroll-cue {
  position: absolute;
  bottom: 120px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-faint);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 14px;
}

/* ============================================================
   MARQUEE (trusted / industries)
   ============================================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; gap: 0; will-change: transform; animation: marquee 38s linear infinite; }
.marquee.alt .marquee-track { animation-duration: 48s; animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 22px;
  padding-inline: 28px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.marquee-item .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.marquee-item.outline { color: transparent; -webkit-text-stroke: 1.4px var(--cream); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   BRANDS / LOGO WALL
   ============================================================ */
.brands-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(36px, 4vw, 56px); }
.brands-head .eyebrow { margin-bottom: 18px; }
.brands-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1; max-width: 18ch;
}
.brands-head .count {
  text-align: right;
}
.brands-head .count .big {
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.04em;
  color: var(--lime); line-height: 0.9; font-variant-numeric: tabular-nums;
}
.brands-head .count .small {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 8px;
}
.brands-section { background: var(--brown); overflow: hidden; }
.brands-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(36px, 4vw, 56px); }

/* auto-scrolling brand rows */
.brand-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  overflow: hidden;
}
.brand-marquee + .brand-marquee { margin-top: clamp(12px, 1.4vw, 18px); }
.brand-row { display: flex; width: max-content; gap: clamp(12px, 1.4vw, 18px); will-change: transform; }
.brand-row.r1 { animation: brand-scroll 46s linear infinite; }
.brand-row.r2 { animation: brand-scroll 46s linear infinite reverse; }
.brand-marquee:hover .brand-row,
.brand-row:focus-within { animation-play-state: paused; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-cell {
  flex: 0 0 auto;
  background: rgba(255,244,236,0.035);
  border: 1px solid rgba(255,244,236,0.13);
  border-radius: 100px;
  min-width: clamp(180px, 18vw, 240px);
  height: clamp(72px, 8vw, 96px);
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.brand-cell:hover { background: var(--brown-light); border-color: rgba(205,239,46,0.5); }
.brand-cell .mark {
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--cream-dim);
  transition: color .4s var(--ease), transform .4s var(--ease);
  text-align: center; line-height: 1; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 9px;
}
.brand-cell .mark .glyph {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--cream-faint);
  transition: color .4s var(--ease);
}
.brand-cell:hover .mark { color: var(--cream); transform: translateY(-2px); }
.brand-cell:hover .mark .glyph { color: var(--lime); }
.brand-cell .mark em { font-style: normal; font-weight: 500; }
.brand-cell .brand-logo {
  max-height: 38px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: opacity .4s var(--ease);
}
.brand-cell:hover .brand-logo { opacity: 1; }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,244,236,0.16);
  border: 1px solid rgba(255,244,236,0.16);
  border-radius: 26px;
  overflow: hidden;
}
.stat {
  background: var(--orange);
  padding: clamp(26px, 3vw, 42px) clamp(20px, 2.5vw, 34px);
  transition: background .4s var(--ease);
}
.ink-section .stat { background: var(--orange-ink); }
.stat:hover { background: var(--orange-bright); }
.ink-section .stat:hover { background: #38110a; }
.stat .num {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}
.stat .lbl {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc {
  position: relative;
  border: 1px solid rgba(255,244,236,0.2);
  border-radius: 22px;
  padding: clamp(24px, 2.6vw, 36px);
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .5s var(--ease);
  background: linear-gradient(180deg, rgba(255,244,236,0.02), transparent);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.svc::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--lime);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.svc > * { position: relative; z-index: 1; transition: color .4s var(--ease); }
.svc:hover { transform: translateY(-6px); border-color: var(--lime); }
.svc:hover::after { transform: translateY(0); }
.svc:hover, .svc:hover .svc-desc, .svc:hover .svc-num { color: var(--orange-ink); }
.svc:hover .svc-tag { background: var(--orange-ink); color: var(--lime); }

.svc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: auto; }
.svc-num {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--cream-faint);
}
.svc-ico { color: var(--lime); transition: color .4s var(--ease); }
.svc:hover .svc-ico { color: var(--orange-ink); }
.svc h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin-top: 40px;
}
.svc-desc {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.svc-tag {
  align-self: flex-start;
  margin-top: 18px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(205,239,46,0.16);
  color: var(--lime);
  padding: 6px 12px;
  border-radius: 100px;
  transition: background .4s var(--ease), color .4s var(--ease);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-list { display: flex; flex-direction: column; }
.proc {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: clamp(26px, 3vw, 40px) 0;
  border-top: 1px solid rgba(255,244,236,0.18);
  position: relative;
  cursor: default;
}
.proc:last-child { border-bottom: 1px solid rgba(255,244,236,0.18); }
.proc-num {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--cream-dim);
  transition: -webkit-text-stroke .4s var(--ease), color .4s var(--ease), transform .5s var(--ease);
}
.proc-body h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.02em;
  transition: color .4s var(--ease), transform .5s var(--ease);
}
.proc-body p { margin-top: 8px; color: var(--cream-dim); max-width: 60ch; font-size: 1rem; }
.proc-arrow { color: var(--cream-faint); transition: transform .5s var(--ease), color .4s var(--ease); }
.proc:hover .proc-num { -webkit-text-stroke: 1.4px var(--lime); color: var(--lime); transform: translateX(8px); }
.proc:hover .proc-body h3 { color: var(--lime); transform: translateX(8px); }
.proc:hover .proc-arrow { color: var(--lime); transform: translateX(8px); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.why {
  border: 1px solid rgba(255,244,236,0.14);
  border-radius: 24px;
  padding: clamp(26px, 3vw, 40px);
  grid-column: span 4;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #3a1a0a 0%, var(--orange-ink-2) 100%);
  transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.why.wide { grid-column: span 6; }
.why.full {
  grid-column: span 12; min-height: 0;
  flex-direction: row; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  background: linear-gradient(120deg, #3a1a0a 0%, var(--orange-ink-2) 100%);
}

/* case-study-style corner arrow that nudges on hover */
.why:not(.full)::after {
  content: '↗';
  position: absolute; z-index: 2;
  top: clamp(24px, 3vw, 34px); right: clamp(24px, 3vw, 34px);
  font-size: 1.4rem; font-weight: 800; line-height: 1;
  color: var(--lime);
  transition: transform .4s var(--ease);
}
.why > * { position: relative; z-index: 1; }
.why:hover {
  transform: translateY(-6px);
  border-color: rgba(205,239,46,0.5);
  box-shadow: 0 28px 56px -26px rgba(0,0,0,0.65);
}
.why:not(.full):hover::after { transform: translate(4px, -4px); }
.why .idx {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 14px; display: block;
}
.why h3 {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.04;
}
.why p { margin-top: 12px; color: var(--cream-dim); font-size: 0.95rem; max-width: 46ch; }
.why.full h3 { font-size: clamp(1.6rem, 3vw, 2.6rem); max-width: 16ch; }
.why.full .reach { display: flex; gap: 14px; flex-wrap: wrap; }
.why.full .reach span {
  border: 1px solid var(--lime); color: var(--lime);
  padding: 9px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
}

/* ============================================================
   CREATORS
   ============================================================ */
.creators-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }

/* centered creators headline with counting number */
.creators-head--center { flex-direction: column; align-items: center; text-align: center; gap: 0; }
.creators-head--center > div { max-width: 1040px; display: flex; flex-direction: column; align-items: center; }
.creators-head--center .eyebrow::before { display: none; }
.creators-head--center h2 {
  margin-top: 22px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.creators-head--center h2 .ch-line { display: block; white-space: nowrap; }
.creators-head--center h2 .count-lime {
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}
.creators-head--center p { margin-top: 22px; color: var(--cream-dim); max-width: 56ch; margin-inline: auto; }
.creators-head--center .btn { margin-top: 32px; }
.niche-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 40px; }
.niche {
  border: 1px solid rgba(255,244,236,0.22);
  border-radius: 100px;
  padding: 10px 19px;
  font-weight: 700; font-size: 0.9rem;
  transition: all .35s var(--ease);
  cursor: default;
}
.niche:hover { background: var(--lime); color: var(--orange-ink); border-color: var(--lime); transform: translateY(-3px); }

/* ============================================================
   WORK / CASE STUDIES
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.case {
  grid-column: span 2;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 40px);
  background: var(--orange-ink-2);
  border: 1px solid rgba(255,244,236,0.14);
  transition: transform .5s var(--ease);
  cursor: pointer;
}
.case.feature { grid-column: span 4; min-height: 440px; }
.case:hover { transform: translateY(-6px); }
.case > img.case-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform .8s var(--ease), opacity .5s;
}
.case:hover .case-bg { transform: scale(1.06); opacity: 0.62; }
.case::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,6,1,0) 30%, rgba(28,6,1,0.88) 100%);
}
.case > * { position: relative; z-index: 2; }
.case-kicker {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 14px;
}
.case h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; }
.case p { margin-top: 12px; color: var(--cream-dim); font-size: 0.95rem; max-width: 46ch; }
.case .result {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem; color: var(--lime);
  text-decoration: none;
}
.case .result svg { transition: transform .4s var(--ease); }
.case:hover .result svg { transform: translate(4px,-4px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi {
  border: 1px solid rgba(255,244,236,0.2);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.testi:hover { border-color: var(--lime); transform: translateY(-5px); }
.testi .quote-mark { font-size: 3.6rem; font-weight: 800; line-height: 0.5; color: var(--lime); height: 30px; }
.testi blockquote { font-size: clamp(1.05rem, 1.5vw, 1.22rem); font-weight: 600; line-height: 1.4; margin: 18px 0 auto; letter-spacing: -0.01em; }
.testi cite { margin-top: 28px; font-style: normal; font-weight: 700; color: var(--cream-dim); font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.testi cite::before { content: ''; width: 26px; height: 2px; background: var(--lime); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(255,244,236,0.18); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,244,236,0.18); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 700; letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--lime); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--lime);
  left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq-icon::before { width: 18px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 18px; transition: transform .4s var(--ease); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.faq-a p { padding-bottom: 26px; color: var(--cream-dim); font-size: 1rem; max-width: 60ch; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta-motif {
  position: absolute; bottom: -20%; left: -8%;
  width: min(55vw, 760px); color: rgba(205,239,46,0.06); z-index: 0; pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta h2 {
  font-size: clamp(2.6rem, 8vw, 7rem);
  font-weight: 900; line-height: 0.92; letter-spacing: -0.04em;
  text-wrap: balance;
}
.cta h2 .lime { color: var(--lime); }
.cta-row { margin-top: 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end; }
.cta-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--cream-dim); max-width: 50ch; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.cta-locations { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-locations span {
  border: 1px solid rgba(255,244,236,0.3); border-radius: 100px;
  padding: 9px 18px; font-weight: 700; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.cta-locations span b { color: var(--lime); font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--orange-ink); padding-top: clamp(60px, 8vw, 110px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer .logo-big {
  font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -0.04em; color: var(--lime);
}
.footer .f-sub { margin-top: 18px; color: var(--cream-dim); max-width: 36ch; font-size: 0.98rem; }
.footer-col h4 { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col a { font-weight: 600; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--lime); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,244,236,0.14);
  padding: 28px 0 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--cream-dim);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--lime); transition: transform .3s var(--ease); }
.footer-socials a:hover { transform: translateY(-3px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid .why, .why-grid .why.wide { grid-column: span 6; }
  .why-grid .why.full { grid-column: span 12; }
  .work-grid { grid-template-columns: 1fr; }
  .case, .case.feature { grid-column: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { text-align: left; }
  .cta-row { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .case.feature { min-height: 320px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .brands-head .count { text-align: left; }
  .why-grid .why, .why-grid .why.wide { grid-column: span 12; }
  .proc { grid-template-columns: 60px 1fr; }
  .proc-arrow { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-motif { width: 90vw; opacity: 0.7; }
  .hero { padding-top: 110px; }
  .scroll-cue { display: none; }
  .creators-head--center h2 .ch-line { white-space: normal; }
}
