/* ============================================
   SocioEZ-inspired Landing — v2
   Closer visual match: yellow + black + light cream
   Alternating light/dark sections, bento hero
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --yellow: #FBE53A;
  --yellow-soft: #FFF7B0;
  --olive: #8a8400;          /* dim chartreuse for headline accent */
  --cream: #FAFBF3;          /* nearly white, very subtle green */
  --cream-2: #F2F6E4;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --ink-3: #1E1E1E;
  --line-dark: rgba(255,255,255,0.08);
  --line-light: rgba(10,10,10,0.08);
  --text: #0A0A0A;
  --text-dim: #4a4a4a;
  --text-muted: #6b6b6b;
  --text-on-dark: #f3f3f1;
  --text-on-dark-dim: #b5b5b5;
  --radius: 14px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-display: 'Bricolage Grotesque', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#root { display: none; }
::selection { background: var(--yellow); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* =============== UTILITIES =============== */
.muted { color: var(--text-dim); }
.center { text-align: center; }

/* =============== TICKER =============== */
.ticker {
  background: var(--ink);
  color: var(--yellow);
  overflow: hidden;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 12px 0;
  animation: scroll 38s linear infinite;
  width: max-content;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============== NAV =============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 18px 40px;
  background: rgba(244,252,226,0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-light);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.brand-mark {
  background: var(--ink);
  color: var(--yellow);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.brand-name { color: var(--ink); }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15px; transition: color 0.2s ease; position: relative; }
.nav-links a::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 24px; }
.mobile-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; margin-left: auto; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 700; font-size: 14px;
  border-radius: 999px;
  transition: transform 0.18s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: #ffe600; box-shadow: 0 8px 24px rgba(251,229,58,0.5); }
.btn-dark { background: var(--ink); color: var(--text-on-dark); }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--text-on-dark); }
.btn-ghost.on-dark { color: var(--text-on-dark); border-color: rgba(255,255,255,0.3); }
.btn-ghost.on-dark:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-xl { padding: 22px 32px; font-size: 17px; }
.btn.block { width: 100%; justify-content: center; }

/* =============== HERO (BENTO) =============== */
.hero {
  padding: 56px 40px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: auto auto -20% -20%;
  width: 70%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(218,242,160,0.55), transparent 65%);
  pointer-events: none;
}
.hero-wrap { max-width: 1400px; margin: 0 auto; position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-grid > * { min-width: 0; }

.hero-eyebrow { font-size: 19px; color: var(--ink); margin-bottom: 18px; font-weight: 500; }
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 4.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--ink);
}
.display .olive {
  background: linear-gradient(180deg, #b3a800 0%, #6b6700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.lead { font-size: 22px; color: var(--ink); max-width: 520px; margin-bottom: 56px; font-weight: 400; }

.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.btn-pill {
  background: var(--ink); color: #fff;
  padding: 22px 44px;
  font-weight: 500; font-size: 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center;
  transition: transform 0.18s ease, background 0.2s ease;
}
.btn-pill:hover { transform: translateY(-1px); background: var(--ink-2); }
.arrow-circle {
  width: 60px; height: 60px;
  background: var(--yellow); color: var(--ink) !important;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.arrow-circle i { color: var(--ink); }
.arrow-circle:hover { transform: rotate(-12deg) scale(1.05); background: #ffe600; }

/* circular spinning badge */
.spin-badge {
  width: 150px; height: 150px;
  position: relative;
  flex-shrink: 0;
}
.spin-badge .center-arrow {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  width: 64px; height: 64px;
  margin: auto;
  color: var(--yellow);
  font-size: 26px;
  z-index: 2;
}
.spin-badge .ring {
  position: absolute; inset: 0;
  animation: spin 16s linear infinite;
}
.spin-badge svg { width: 100%; height: 100%; overflow: visible; }
.spin-badge text { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; fill: var(--ink); text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Bento — 3 columns, outer tall, middle stacked */
.bento {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 640px;
}
.bento-card { border-radius: 28px; overflow: hidden; position: relative; }
.bento-tall {
  grid-row: span 2;
  background: #2a3441;
  overflow: hidden;
}
.bento-tall video, .bento-tall img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bento-tall .scroll-label {
  position: absolute; bottom: 26px; left: 0; right: 0; text-align: center;
  color: #fff; z-index: 2;
}
.bento-tall .scroll-label h4 { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.bento-tall .scroll-label p { font-size: 14px; opacity: 0.95; }
.bento-tall::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  pointer-events: none;
}

.bento-yellow {
  background: var(--yellow); color: var(--ink);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-yellow h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: clamp(20px, 1.9vw, 28px);
  letter-spacing: -0.02em; line-height: 1.15;
}
.bento-yellow .bulb {
  align-self: flex-end;
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
}

.bento-dark {
  background: var(--ink); color: var(--text-on-dark);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.bento-dark .trend-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  font-size: 36px;
  color: var(--yellow);
  background: rgba(251,229,58,0.12);
  border-radius: 16px;
}
.bento-dark .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 2.6vw, 40px); letter-spacing: -0.03em; line-height: 1; color: #fff; }
.bento-dark .lbl { font-size: 15px; color: var(--text-on-dark-dim); margin-top: 6px; }


/* marquee */
.marquee {
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: scroll 30s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.m-item { display: inline-flex; align-items: center; gap: 12px; color: var(--text-on-dark); font-weight: 600; font-size: 22px; }
.m-item i { color: var(--yellow); font-size: 26px; }
.m-item.sep { color: var(--yellow); }

/* =============== SECTIONS =============== */
.section { padding: 120px 40px; max-width: 1400px; margin: 0 auto; }
.section.dark { background: var(--ink); color: var(--text-on-dark); max-width: none; }
.section.dark .h2 { color: #fff; }
.section.dark .muted { color: var(--text-on-dark-dim); }
.section.dark-wrap { padding: 0; max-width: none; }
.section.dark-wrap .inner { padding: 120px 40px; max-width: 1400px; margin: 0 auto; }

.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin: 0 0 64px; }
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.tag::before { content: "✱"; color: var(--yellow); font-size: 22px; -webkit-text-stroke: 1px var(--ink); }
.section.dark .tag { color: var(--text-on-dark); }
.section.dark .tag::before { -webkit-text-stroke: 1px var(--text-on-dark); }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h2 em { font-style: italic; font-weight: 500; color: var(--text-dim); }
.h2 .yl { color: var(--yellow); }
.section.dark .h2 em { color: var(--text-on-dark-dim); }
.h2 .mark { background: var(--yellow); padding: 0 12px 4px; border-radius: 8px; }
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* =============== CLIENTELE =============== */
.clientele { background: var(--cream); max-width: none; padding: 80px 40px; }
.clientele .inner { max-width: 1400px; margin: 0 auto; }
.clientele h3 { font-family: var(--font-display); font-size: 36px; font-weight: 700; letter-spacing: -0.02em; text-align: center; margin-bottom: 40px; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.logo-tile {
  background: var(--cream);
  padding: 28px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  letter-spacing: -0.01em;
}
.logo-tile:hover { background: var(--yellow); color: var(--ink); }

/* =============== WHAT WE DO ============= */
.whatdo {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.whatdo::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 90%, rgba(251,229,58,0.08), transparent 50%),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  pointer-events: none;
}
.whatdo .inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.whatdo-copy .tag { color: var(--yellow); }
.whatdo-copy .tag::before { color: var(--yellow); -webkit-text-stroke: 0; }
.whatdo-copy .h2 { color: #fff; }
.whatdo-copy .h2 em { color: var(--yellow); font-style: italic; }
.whatdo-lead { color: var(--text-on-dark-dim); font-size: 18px; max-width: 520px; margin: 24px 0 32px; }
.whatdo-cta { display: inline-flex; align-items: center; gap: 14px; }
.whatdo-cta .play {
  width: 64px; height: 64px;
  background: var(--yellow); color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  transition: transform 0.25s ease;
}
.whatdo-cta:hover .play { transform: scale(1.08) rotate(-8deg); }
.whatdo-cta .label {
  font-weight: 700; font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.whatdo-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 48px;
}
.whatdo-stats .stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 22px 20px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.whatdo-stats .stat-card:hover {
  border-color: var(--yellow);
  background: rgba(251,229,58,0.06);
  transform: translateY(-3px);
}
.whatdo-stats .stat-card strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 3.4vw, 52px);
  letter-spacing: -0.03em;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.whatdo-stats .stat-card span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-dim);
  margin-top: 10px;
  display: block;
  font-weight: 600;
}

/* Visual: image card with floating badges */
.whatdo-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 36px;
  overflow: visible;
}
.whatdo-visual .photo-wrap {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251,229,58,0.4), transparent 50%),
    url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=900&q=70');
  background-size: cover;
  background-position: center;
}
.whatdo-visual .photo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  pointer-events: none;
}

/* Yellow accent corner */
.whatdo-visual .corner-acc {
  position: absolute; top: -18px; left: -18px;
  width: 90px; height: 90px;
  background: var(--yellow);
  border-radius: 22px;
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 32px;
  z-index: 2;
}

/* Floating stat badges */
.float-badge {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.float-badge .fb-icon {
  width: 40px; height: 40px;
  background: var(--yellow); color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.float-badge strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; display: block; line-height: 1; }
.float-badge span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.float-badge.fb-1 { top: 8%; right: -20px; }
.float-badge.fb-2 { bottom: 24%; left: -32px; animation-delay: -2.5s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.whatdo-visual .spin-badge {
  position: absolute; bottom: -16px; right: -16px;
  width: 130px; height: 130px;
  background: var(--ink);
  border-radius: 50%;
  border: 1px solid var(--line-dark);
}
.whatdo-visual .spin-badge text { fill: var(--yellow); }
.whatdo-visual .spin-badge .center-arrow { color: var(--yellow); }

/* =============== PROCESS / WORKFLOW =========== */
.process { position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.process .inner { position: relative; z-index: 1; }
.process .section-head { text-align: center; }
.process .section-head .h2 strong { color: var(--yellow); }
.process .section-head p { color: var(--text-on-dark-dim); margin-top: 18px; }

.steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 70px 1.1fr 1.3fr 80px;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.step:hover { border-color: var(--yellow); }
.step-icon { width: 60px; height: 60px; color: var(--yellow); font-size: 36px; display: grid; place-items: center; }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; line-height: 1.15; color: #fff; }
.step-stage { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); font-weight: 700; margin-bottom: 8px; }
.step-bullets { list-style: none; display: grid; gap: 10px; color: var(--text-on-dark-dim); }
.step-bullets li { padding-left: 22px; position: relative; font-size: 15px; }
.step-bullets li::before { content: "■"; position: absolute; left: 0; color: var(--yellow); font-size: 10px; top: 6px; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 84px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
}

/* =============== COMPARE =============== */
.compare { background: var(--ink); color: var(--text-on-dark); max-width: none; }
.compare .inner { max-width: 1400px; margin: 0 auto; }
.compare-table {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.ct-head, .ct-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; }
.ct-head { background: var(--ink-2); }
.ct-cell { padding: 22px 24px; border-bottom: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); display: flex; align-items: center; min-height: 76px; }
.ct-cell:last-child { border-right: 0; }
.ct-row:last-child .ct-cell { border-bottom: 0; }
.ct-feature { font-weight: 500; font-size: 15px; color: var(--text-on-dark); }
.ct-head .ct-cell { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-on-dark-dim); justify-content: center; }
.ct-head .ct-feature { justify-content: flex-start; color: #fff; }
.ct-head .ct-us { background: var(--yellow); color: var(--ink); }
.ct-row .ct-us { background: var(--yellow); color: var(--ink); }
.ct-row .ct-diy { background: rgba(40, 60, 30, 0.4); color: #2ecc63; }
.ct-diy, .ct-us { justify-content: center; font-size: 28px; }

/* =============== UNLOCK =============== */
.unlock { background: var(--ink); color: var(--text-on-dark); max-width: none; }
.unlock .inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.unlock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.unlock-list { display: flex; flex-direction: column; gap: 14px; }
.u-item {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex; align-items: center; gap: 22px;
  transition: border-color 0.25s ease;
}
.u-item:hover { border-color: var(--yellow); }
.u-item .ic {
  width: 56px; height: 56px; flex-shrink: 0;
  background: transparent; color: var(--yellow);
  font-size: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}
.u-item p { font-size: 16px; color: var(--text-on-dark); margin: 0; line-height: 1.5; }
.u-item p strong { color: var(--yellow); }

/* Pricing card with diagonal ribbon */
.pricing-card {
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.pricing-card .ribbon {
  position: absolute; top: 22px; right: -52px;
  transform: rotate(45deg);
  background: var(--ink); color: var(--yellow);
  padding: 8px 60px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.pricing-card .title { font-family: var(--font-display); font-weight: 700; font-size: 38px; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 32px; }
.pricing-card .price { font-family: var(--font-display); font-weight: 800; font-size: 84px; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.pricing-card .price span { font-size: 0.5em; vertical-align: top; opacity: 0.7; }
.pricing-card .sub { font-size: 14px; color: rgba(10,10,10,0.65); margin-bottom: 32px; max-width: 280px; margin-left: auto; margin-right: auto; }
.pricing-card .btn { width: 100%; max-width: 320px; margin: 0 auto; padding: 18px 24px; justify-content: center; }
.pricing-card .micro { font-size: 12px; color: rgba(10,10,10,0.6); margin-top: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* =============== SERVICES =============== */
.services { background: var(--cream); max-width: none; position: relative; overflow: hidden; }
.services::before {
  content: ""; position: absolute; right: -15%; top: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(251,229,58,0.35), transparent 60%);
  pointer-events: none;
}
.services .inner { max-width: 1400px; margin: 0 auto; position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: var(--ink);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.svc:hover { transform: translateY(-6px); }
.svc::after {
  content: ""; position: absolute; right: -30px; bottom: -30px;
  width: 160px; height: 160px;
  background: rgba(251,229,58,0.06);
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.svc:hover::after { transform: scale(1.4); }
.svc-icon { width: 48px; height: 48px; color: var(--yellow); font-size: 32px; display: grid; place-items: center; margin-bottom: 22px; }
.svc h3 { margin-bottom: 16px; color: #fff; position: relative; z-index: 1; }
.svc p { color: var(--text-on-dark-dim); font-size: 15px; position: relative; z-index: 1; line-height: 1.6; }

/* =============== PORTFOLIO =============== */
.portfolio {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.portfolio::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(251,229,58,0.08), transparent 50%),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  pointer-events: none;
}
.portfolio .inner { position: relative; z-index: 1; }
.portfolio .section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 32px;
  text-align: left; max-width: none;
}
.portfolio .section-head .h2 { color: #fff; }
.portfolio .section-head .h2 em { color: var(--yellow); font-style: italic; }
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.pf-filter {
  padding: 10px 18px;
  font-weight: 600; font-size: 13px;
  color: var(--text-on-dark-dim);
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: transparent;
  transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pf-filter:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.pf-filter.active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pf-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: #1a1a1a;
  transition: transform 0.35s ease;
}
.pf-card:hover { transform: translateY(-8px); }
.pf-card .pf-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.pf-card:hover .pf-img { transform: scale(1.06); }
.pf-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.pf-corner {
  position: absolute; top: 18px; left: 18px;
  width: 56px; height: 56px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  z-index: 3;
  letter-spacing: -0.02em;
}
.pf-badge {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.95); color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  backdrop-filter: blur(8px);
}
.pf-badge .fb-icon {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); font-size: 12px;
}
.pf-badge strong { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; line-height: 1; display: block; }
.pf-badge span { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.pf-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 3;
}
.pf-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(251,229,58,0.18);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(251,229,58,0.3);
}
.pf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.pf-sub { font-size: 13px; color: var(--text-on-dark-dim); }
.pf-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px) rotate(-12deg);
  transition: opacity 0.3s, transform 0.3s;
}
.pf-card:hover .pf-arrow { opacity: 1; transform: translateY(0) rotate(0); }

.portfolio-cta { text-align: center; margin-top: 48px; }

@media (max-width: 1080px) {
  .portfolio .section-head { flex-direction: column; align-items: flex-start; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
.cases { background: var(--cream); max-width: none; }
.cases .inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.cases .section-head { text-align: center; margin: 0 auto 48px; }
.case-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.case-tab {
  padding: 12px 22px;
  font-weight: 600; font-size: 14px;
  color: var(--text-dim);
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: transparent;
  transition: all 0.2s;
}
.case-tab:hover { color: var(--ink); border-color: var(--ink); }
.case-tab.active { background: var(--ink); color: var(--yellow); border-color: var(--ink); }

.case-panel {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--line-light);
}
.case-panel.active { display: grid; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.case-copy h3 { margin-bottom: 18px; }
.case-copy h5 { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin: 22px 0 14px; }
.case-copy p { color: var(--text-dim); }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { padding-left: 26px; position: relative; color: var(--text-dim); font-size: 15px; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  background: var(--yellow); color: var(--ink);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
}
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.case-stats > div { background: var(--cream); padding: 18px; border-radius: var(--radius); }
.case-stats strong { font-family: var(--font-display); font-size: 26px; display: block; letter-spacing: -0.02em; color: var(--ink); }
.case-stats span { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.case-viz img { border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/5; width: 100%; }

/* =============== REASONS =============== */
.reasons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.reason {
  background: var(--ink);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.25s, transform 0.25s;
}
.reason:hover { background: var(--ink-2); transform: translateY(-4px); }
.reason-num { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--yellow); margin-bottom: 18px; line-height: 1; }
.reason h4 { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 10px; color: #fff; }
.reason p { color: var(--text-on-dark-dim); font-size: 14px; }

/* =============== CHALLENGES =============== */
.challenges {
  background: var(--cream-2);
  max-width: none;
}
.challenges .inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.challenges-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.challenges-copy h2 { margin-bottom: 22px; }
.challenges-copy p { margin-bottom: 28px; color: var(--text-dim); }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.2s, background 0.2s;
}
.checklist li:hover { border-color: var(--ink); }
.checklist label { display: flex; align-items: center; gap: 14px; cursor: pointer; font-size: 15px; color: var(--ink); }
.checklist input { appearance: none; width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--line-light); flex: 0 0 22px; position: relative; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.checklist input:checked { background: var(--yellow); border-color: var(--yellow); }
.checklist input:checked::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink); font-weight: 800; font-size: 13px; }
.checklist input:checked + span { text-decoration: line-through; color: var(--text-dim); }

/* =============== TESTIMONIALS =============== */
.testimonials { background: var(--cream); max-width: none; }
.testimonials .inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.rating-row { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 22px; }
.stars { color: var(--yellow); letter-spacing: 2px; -webkit-text-stroke: 0.5px var(--ink); }
.stars.big { font-size: 26px; }
.rating-row strong { color: var(--ink); font-size: 22px; font-family: var(--font-display); }
.rating-row span { color: var(--text-dim); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.t-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.t-card.highlight { background: var(--yellow); border-color: transparent; }
.t-quote { font-family: var(--font-display); font-size: 80px; line-height: 0.6; color: var(--ink); margin-bottom: 14px; opacity: 0.2; }
.t-card.highlight .t-quote { opacity: 0.4; }
.t-card p { font-size: 16px; margin-bottom: 24px; color: var(--text); }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-author img { width: 48px; height: 48px; border-radius: 50%; }
.t-author strong { display: block; font-size: 15px; color: var(--ink); }
.t-author span { font-size: 13px; color: var(--text-muted); }
.t-card.highlight .t-author span { color: rgba(10,10,10,0.6); }

/* =============== FAQ =============== */
.faq { background: var(--cream); max-width: none; }
.faq .inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 64px; align-items: start; }
.faq-left p { color: var(--text-dim); margin: 22px 0 28px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  color: var(--ink);
  font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--ink); transition: transform 0.25s; flex-shrink: 0; width: 26px; height: 26px; background: var(--yellow); border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 24px; color: var(--text-dim); font-size: 15px; line-height: 1.7; }

/* =============== ABOUT =============== */
.about { background: var(--ink); color: var(--text-on-dark); max-width: none; position: relative; overflow: hidden; }
.about::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about .inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual .photo {
  border-radius: 50%; aspect-ratio: 1/1;
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=800&q=70');
  background-size: cover; background-position: center;
}
.about-visual .spin-badge { position: absolute; bottom: 12%; right: 0; width: 130px; height: 130px; }
.about-visual .spin-badge text { fill: var(--yellow); }
.about-copy p { color: var(--text-on-dark-dim); margin-bottom: 16px; font-size: 16px; }
.about-copy .h2 em { color: var(--yellow); }
.about-note {
  display: flex; align-items: center; gap: 14px;
  background: rgba(251,229,58,0.1); border: 1px solid rgba(251,229,58,0.3);
  padding: 16px 20px; border-radius: var(--radius);
  margin-top: 22px;
  font-size: 14px; color: var(--text-on-dark);
}
.about-note i { color: var(--yellow); font-size: 18px; }

/* =============== BLOG =============== */
.blog { background: var(--cream); max-width: none; }
.blog .inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.post {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-4px); border-color: var(--ink); }
.post-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.post-meta { padding: 18px 22px 6px; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.post h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; padding: 0 22px; margin-bottom: 16px; line-height: 1.3; color: var(--ink); }
.post-link { color: var(--ink); padding: 0 22px 22px; font-weight: 700; font-size: 13px; margin-top: auto; text-transform: uppercase; letter-spacing: 0.06em; }
.post-link i { color: var(--yellow); margin-left: 6px; }

/* =============== FINAL CTA =============== */
.final-cta {
  padding: 120px 40px;
  background: var(--ink);
  color: var(--text-on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.fc-wrap { max-width: 1200px; margin: 0 auto; position: relative; }
.kicker { color: var(--yellow); text-transform: uppercase; letter-spacing: 0.16em; font-size: 14px; font-weight: 700; margin-bottom: 32px; }
.mega {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 48px;
  color: #fff;
}
.mega em { font-style: italic; font-weight: 500; color: var(--yellow); }
.mega .stroke {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.fc-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }

/* =============== FOOTER =============== */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: 60px 40px 30px;
  color: var(--text-on-dark);
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand-name { color: #fff; }
.footer-grid > div .brand { margin-bottom: 16px; }
.footer-grid p { color: var(--text-on-dark-dim); margin-bottom: 22px; font-size: 14px; }
.footer-grid h6 { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; color: #fff; }
.footer-grid ul { list-style: none; display: grid; gap: 12px; }
.footer-grid ul a { color: var(--text-on-dark-dim); font-size: 14px; transition: color 0.2s; }
.footer-grid ul a:hover { color: var(--yellow); }
.footer-grid i { color: var(--yellow); width: 16px; }
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark); border-radius: 50%;
  color: var(--text-on-dark-dim);
  transition: all 0.2s;
}
.social a:hover { border-color: var(--yellow); color: var(--ink); background: var(--yellow); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--text-muted); font-size: 13px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 220px 220px; min-height: 0; }
  .bento-tall { grid-row: span 2; }
  .bento-tall:nth-of-type(4) { grid-column: span 2; grid-row: auto; min-height: 280px; }
  .step { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
  .step-num { text-align: left; font-size: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .case-panel { grid-template-columns: 1fr; padding: 28px; }
  .case-viz img { aspect-ratio: 16/10; }
  .unlock-grid { grid-template-columns: 1fr; }
  .challenges-wrap { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .whatdo .inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Nav + ticker */
  .nav { padding: 12px 16px; gap: 12px; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 32px; height: 32px; font-size: 12px; }
  .ticker { font-size: 11px; }
  .ticker-track { gap: 28px; padding: 8px 0; }

  /* Hero */
  .hero { padding: 28px 18px 56px; }
  .hero-eyebrow { font-size: 15px; margin-bottom: 12px; }
  .display { font-size: clamp(38px, 11vw, 56px); line-height: 1.02; margin-bottom: 16px; }
  .lead { font-size: 17px; margin-bottom: 32px; }
  .hero-cta-row { gap: 14px; }
  .btn-pill { padding: 16px 28px; font-size: 15px; flex: 1; justify-content: center; }
  .arrow-circle { width: 52px; height: 52px; font-size: 18px; }
  .spin-badge { display: none; }
  .hero-cta-row .spin-badge { display: none; }

  /* Bento */
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 180px 320px;
    gap: 10px;
    margin-top: 36px;
  }
  .bento-tall:nth-of-type(1), .bento-tall:nth-of-type(3) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-yellow { padding: 18px; }
  .bento-yellow h4 { font-size: 16px; }
  .bento-yellow .bulb { font-size: 32px; }
  .bento-dark { padding: 18px; }
  .bento-dark .trend-icon { width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
  .bento-dark .num { font-size: 22px; }
  .bento-dark .lbl { font-size: 12px; }
  .bento-tall .scroll-label h4 { font-size: 22px; }
  .bento-tall .scroll-label p { font-size: 12px; }
  .bento-card { border-radius: 20px; }

  /* Marquee */
  .marquee { padding: 14px 0; }
  .marquee-track { gap: 32px; }
  .m-item { font-size: 16px; }
  .m-item i { font-size: 18px; }

  /* Section + headings */
  .section { padding: 64px 18px; }
  .section.dark-wrap .inner,
  .clientele .inner, .unlock .inner, .testimonials .inner,
  .faq .inner, .about .inner, .blog .inner,
  .challenges .inner, .compare .inner, .portfolio .inner,
  .whatdo .inner, .process .inner, .cases .inner, .services .inner { padding-left: 18px; padding-right: 18px; }
  .section.dark-wrap .inner { padding-top: 72px; padding-bottom: 72px; }
  .section-head { margin-bottom: 36px; }
  .h2 { font-size: clamp(28px, 8vw, 40px); line-height: 1.1; }
  .h3 { font-size: 21px; }
  .tag { font-size: 11px; margin-bottom: 14px; }

  /* Clientele */
  .clientele { padding: 56px 18px; }
  .clientele h3 { font-size: 26px; margin-bottom: 24px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); border-radius: 18px; }
  .logo-tile { padding: 18px 10px; font-size: 14px; }

  /* What we do */
  .whatdo .inner { grid-template-columns: 1fr; gap: 40px; }
  .whatdo-lead { font-size: 16px; margin: 18px 0 24px; }
  .whatdo-cta .play { width: 52px; height: 52px; font-size: 16px; }
  .whatdo-cta .label { font-size: 13px; letter-spacing: 0.08em; }
  .whatdo-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
  .whatdo-stats .stat-card { padding: 16px 14px; border-radius: 14px; }
  .whatdo-stats .stat-card strong { font-size: 32px; }
  .whatdo-stats .stat-card:last-child { grid-column: span 2; }
  .whatdo-visual { aspect-ratio: 4/5; max-width: 100%; border-radius: 24px; }
  .whatdo-visual .photo-wrap { border-radius: 24px; }
  .whatdo-visual .corner-acc { width: 60px; height: 60px; font-size: 22px; top: -10px; left: -10px; border-radius: 16px; }
  .whatdo-visual .spin-badge { display: grid; width: 90px; height: 90px; bottom: -10px; right: -10px; }
  .whatdo-visual .spin-badge .center-arrow { width: 40px; height: 40px; font-size: 14px; }
  .whatdo-visual .spin-badge text { font-size: 9px !important; letter-spacing: 0.16em; }
  .float-badge { padding: 10px 12px; gap: 8px; border-radius: 12px; }
  .float-badge .fb-icon { width: 32px; height: 32px; font-size: 13px; }
  .float-badge strong { font-size: 14px; }
  .float-badge span { font-size: 9px; }
  .float-badge.fb-1 { right: -8px; top: 4%; }
  .float-badge.fb-2 { left: -8px; bottom: 22%; }

  /* Process */
  .step { grid-template-columns: 1fr; gap: 14px; padding: 24px 22px; border-radius: 20px; }
  .step-meta { display: flex; }
  .step-icon { width: 48px; height: 48px; font-size: 28px; }
  .step-title { font-size: 21px; }
  .step-num { text-align: right; font-size: 60px; margin-top: -32px; }
  .step-bullets li { font-size: 14px; }

  /* Compare table */
  .ct-head, .ct-row { grid-template-columns: 1.6fr 0.7fr 0.7fr; }
  .ct-cell { padding: 14px 8px; font-size: 12px; min-height: 56px; }
  .ct-head .ct-cell { font-size: 10px; letter-spacing: 0.06em; }
  .ct-diy, .ct-us { font-size: 18px; }
  .compare-table { border-radius: 22px; }

  /* Unlock + Pricing */
  .unlock-grid { grid-template-columns: 1fr; gap: 14px; }
  .u-item { padding: 18px 18px; gap: 14px; border-radius: 16px; }
  .u-item .ic { width: 44px; height: 44px; font-size: 20px; border-radius: 12px; }
  .u-item p { font-size: 14px; }
  .pricing-card { padding: 36px 24px; border-radius: 26px; }
  .pricing-card .ribbon { font-size: 9px; padding: 6px 50px; top: 18px; right: -50px; }
  .pricing-card .title { font-size: 26px; margin-bottom: 22px; }
  .pricing-card .price { font-size: 56px; }
  .pricing-card .sub { font-size: 13px; margin-bottom: 24px; }
  .pricing-card .btn { padding: 16px 22px; font-size: 14px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc { padding: 26px 22px; border-radius: 20px; }
  .svc h3 { font-size: 20px; }
  .svc p { font-size: 14px; }

  /* Portfolio */
  .portfolio .section-head { flex-direction: column; align-items: stretch; gap: 20px; }
  .portfolio-filters { gap: 6px; }
  .pf-filter { padding: 8px 14px; font-size: 11px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
  .pf-card { aspect-ratio: 4/5; border-radius: 22px; }
  .pf-corner { width: 48px; height: 48px; font-size: 16px; border-radius: 14px; top: 14px; left: 14px; }
  .pf-badge { top: 14px; right: 14px; padding: 8px 12px; gap: 8px; border-radius: 10px; }
  .pf-badge .fb-icon { width: 28px; height: 28px; font-size: 11px; }
  .pf-badge strong { font-size: 14px; }
  .pf-badge span { font-size: 9px; }
  .pf-meta { padding: 22px; }
  .pf-tag { font-size: 10px; padding: 3px 8px; }
  .pf-title { font-size: 20px; }
  .pf-sub { font-size: 12px; }
  .pf-arrow { width: 38px; height: 38px; font-size: 12px; opacity: 1; transform: none; bottom: 22px; right: 22px; }
  .portfolio-cta { margin-top: 32px; }

  /* Reasons */
  .reasons-grid { grid-template-columns: 1fr; gap: 12px; }
  .reason { padding: 22px; border-radius: 18px; }
  .reason-num { font-size: 28px; margin-bottom: 12px; }

  /* Challenges */
  .challenges { padding: 56px 18px; }
  .challenges-wrap { grid-template-columns: 1fr; gap: 28px; }
  .checklist li { padding: 14px 16px; }
  .checklist label { font-size: 14px; gap: 12px; }

  /* Testimonials */
  .t-grid { grid-template-columns: 1fr; gap: 14px; }
  .t-card { padding: 28px 24px; border-radius: 22px; }
  .t-card p { font-size: 15px; margin-bottom: 20px; }
  .rating-row strong { font-size: 18px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-item summary { padding: 18px 22px; font-size: 15px; gap: 16px; }
  .faq-item summary i { width: 22px; height: 22px; font-size: 10px; }
  .faq-item p { padding: 0 22px 20px; font-size: 14px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual .photo { aspect-ratio: 1/1; }
  .about-visual .spin-badge { width: 90px; height: 90px; bottom: -10px; right: -10px; }
  .about-visual .spin-badge .center-arrow { width: 40px; height: 40px; font-size: 14px; }
  .about-visual .spin-badge text { font-size: 9px !important; letter-spacing: 0.16em; }
  .about-copy p { font-size: 15px; }
  .about-note { padding: 14px 16px; font-size: 13px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .post h4 { font-size: 17px; }

  /* Final CTA */
  .final-cta { padding: 64px 18px; }
  .mega { font-size: clamp(48px, 18vw, 84px); margin-bottom: 32px; }
  .kicker { font-size: 11px; letter-spacing: 0.12em; margin-bottom: 18px; }
  .fc-actions { flex-direction: column; }
  .fc-actions .btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 15px; }

  /* Footer */
  .footer { padding: 48px 18px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-top: 20px; }

  /* Buttons */
  .btn-lg { padding: 15px 22px; font-size: 14px; }
  .btn-xl { padding: 18px 24px; font-size: 15px; }

  /* Misc */
  .bigstats { grid-template-columns: 1fr; }
  .bigstat { border-right: 0; border-bottom: 1px solid var(--line-dark); padding: 24px 20px; }
  .bigstat:last-child { border-bottom: 0; }
}

/* Mobile menu */
.nav.open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream);
  padding: 24px;
  border-bottom: 1px solid var(--line-light);
  gap: 18px;
}
.nav.open .nav-cta { display: inline-flex; position: absolute; top: 100%; right: 20px; transform: translateY(calc(100% + 8px)); }
