/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/bricolage-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/bricolage-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/instrument-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/instrument-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
::selection { background: #ff2bd6; color: #06060c; }
body {
  margin: 0;
  background: #06060c;
  color: #e8e8f2;
  font-family: 'Instrument Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Instrument Sans', sans-serif;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: #fff;
  overflow-wrap: break-word;
}
p { margin: 0 0 1em; color: #b9b9c9; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal animation ---------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,.68,0,1.02), transform .7s cubic-bezier(.22,.68,0,1.02);
}
.reveal { transform: translateY(26px) scale(.98); }
.reveal-left { transform: translate(-46px, 16px) rotate(-4deg); }
.reveal-right { transform: translate(46px, 16px) rotate(4deg); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

/* ---------- Background effects ---------- */
/* Soft glows painted as pre-blurred radial gradients — no filter:blur(),
   which is very expensive on mobile GPUs. */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.bg-glow-1 {
  width: 960px; height: 960px;
  top: -400px; left: -400px;
  background: radial-gradient(circle, rgba(255,43,214,.22), transparent 62%);
}
.bg-glow-2 {
  width: 1080px; height: 1080px;
  bottom: -460px; right: -440px;
  background: radial-gradient(circle, rgba(0,229,255,.19), transparent 62%);
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #ff2bd6, #7b2ff7 60%, #00e5ff);
  background-size: 200% 200%;
  color: #06060c;
  box-shadow: 0 0 24px rgba(255, 43, 214, .35), 0 0 44px rgba(0, 229, 255, .18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 43, 214, .5), 0 0 60px rgba(0, 229, 255, .3);
  background-position: 100% 0;
}
.btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #00e5ff;
  box-shadow: 0 0 18px rgba(0, 229, 255, .25);
  transform: translateY(-2px);
}
.btn-small { padding: 10px 20px; font-size: .88rem; }
.btn-large { padding: 18px 40px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(6, 6, 12, 0);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(6, 6, 12, .82);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.06);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -.02em;
}
.logo span {
  background: linear-gradient(135deg, #ff2bd6, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-cursor {
  display: inline-block;
  width: 2px;
  height: .95em;
  margin-left: 3px;
  background: #00e5ff;
  vertical-align: -.1em;
  box-shadow: 0 0 8px rgba(0,229,255,.8);
  animation: cursorBlink 1.1s steps(1) infinite;
}
@keyframes cursorBlink { 50% { opacity: 0; } }
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 12px;
}
.nav a {
  font-size: .94rem;
  font-weight: 500;
  color: #cfcfe0;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: linear-gradient(90deg, #ff2bd6, #00e5ff);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.nav a.active { color: #fff; }
.nav a.active::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  margin: 0 9px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 110px;
  text-align: center;
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at var(--x, 50%) var(--y, 15%), rgba(0,229,255,.14), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #00e5ff;
  border: 1px solid rgba(0,229,255,.35);
  background: rgba(0,229,255,.06);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
  letter-spacing: -.03em;
}
.strike {
  position: relative;
  color: #6b6b80;
}
.strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 3px;
  background: #ff2bd6;
  box-shadow: 0 0 12px rgba(255,43,214,.7);
  transform: rotate(-3deg) scaleX(0);
  transform-origin: left center;
  transition: transform .6s cubic-bezier(.22,.68,0,1.02) .55s;
}
.reveal.in-view .strike::after { transform: rotate(-3deg) scaleX(1); }
.neon-text {
  background: linear-gradient(135deg, #ff2bd6, #7b2ff7 45%, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(123, 47, 247, .35);
}
.hero-lead {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 1.08rem;
  color: #c3c3d6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-badges span {
  font-size: .85rem;
  color: #9d9db2;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------- Marquee ticker ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  margin: 0 -12px;
  background: linear-gradient(90deg, rgba(255,43,214,.10), rgba(123,47,247,.08), rgba(0,229,255,.10));
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transform: rotate(-1.2deg);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #cfcfe0;
  padding-right: .5em;
}
.marquee-track i {
  font-style: normal;
  color: #00e5ff;
  text-shadow: 0 0 10px rgba(0,229,255,.6);
}
.marquee-track i:nth-of-type(even) {
  color: #ff2bd6;
  text-shadow: 0 0 10px rgba(255,43,214,.6);
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  max-width: 780px;
  margin: 0 auto .5em;
}
.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 1.02rem;
}

.grid { display: grid; gap: 24px; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Problem / Why cards ---------- */
.card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: .95rem; margin-bottom: 0; }

.card-problem:hover {
  border-color: rgba(255,43,214,.35);
  transform: translateY(-4px);
}
.card-glow:hover {
  border-color: rgba(0,229,255,.4);
  box-shadow: 0 0 30px rgba(0,229,255,.12);
  transform: translateY(-4px);
}
.card-icon.neon { filter: drop-shadow(0 0 10px rgba(0,229,255,.5)); }

/* ---------- Audience ---------- */
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.audience-card {
  text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 36px 20px;
  transition: transform .25s ease, border-color .25s ease;
}
.audience-card:hover {
  border-color: rgba(123,47,247,.45);
  transform: translateY(-4px);
}
.audience-card .card-icon { font-size: 2.4rem; margin-bottom: 12px; }
.audience-card h3 { font-size: 1.02rem; margin-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing-grid { align-items: stretch; }
.pricing-card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 40px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card h3 { font-size: 1.3rem; }
.pricing-desc { font-size: .92rem; min-height: 66px; }

.pricing-badge {
  position: absolute;
  top: -14px; left: 30px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(-2.5deg);
}
.badge-sale { background: #ff2bd6; color: #06060c; box-shadow: 0 0 18px rgba(255,43,214,.55); }
.badge-neutral { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.badge-popular {
  background: #00e5ff;
  color: #06060c;
  box-shadow: 0 0 20px rgba(0,229,255,.75);
}

.price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.price-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.6rem; font-weight: 800; color: #fff; }
.price-currency { font-size: 1.1rem; color: #9d9db2; font-weight: 600; }
.price-note { font-size: .8rem; color: #75758a; margin-bottom: 24px; }

.pricing-features { margin-bottom: 28px; flex-grow: 1; }
.pricing-features li {
  font-size: .92rem;
  color: #c3c3d6;
  padding: 9px 0 9px 26px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pricing-features li:first-child { border-top: none; }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00e5ff;
  font-weight: 700;
}
.pricing-cta { width: 100%; }

.pricing-featured {
  background: linear-gradient(180deg, rgba(0,229,255,.06), rgba(255,43,214,.04));
  border-color: rgba(0,229,255,.55);
  box-shadow: 0 0 40px rgba(0,229,255,.2), 0 0 80px rgba(255,43,214,.1);
}

/* ---------- Works / Portfolio ---------- */
.works-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,.4);
  box-shadow: 0 0 34px rgba(0,229,255,.14);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 8px;
  font-size: .75rem;
  color: #9d9db2;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.06);
  padding: 4px 14px;
  border-radius: 999px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-preview {
  position: relative;
  padding: 16px 20px 30px;
  min-height: 200px;
  overflow: hidden;
  transition: transform .35s ease;
  transform-origin: top center;
}
.work-card:hover .work-preview { transform: scale(1.03); }

.preview-gold {
  background:
    radial-gradient(340px circle at 80% 10%, rgba(212,175,55,.22), transparent 65%),
    linear-gradient(160deg, #1c1610, #0d0a07);
}
.preview-pink {
  background: linear-gradient(160deg, #fff1f6, #ffe0ec);
}
.mini-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
}
.mini-blob-a { width: 130px; height: 130px; background: #ffb3d1; top: -40px; right: -30px; }
.mini-blob-b { width: 90px; height: 90px; background: #ffd6e6; bottom: -30px; left: 18%; }

.mini-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.mini-logo {
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}
.mini-logo-gold { font-family: Georgia, 'Times New Roman', serif; color: #e9d8a6; }
.mini-logo-gold em { font-style: italic; color: #d4af37; }
.mini-logo-pink { font-family: 'Instrument Sans', sans-serif; color: #d6336c; }
.mini-links { display: flex; gap: 8px; margin-left: auto; }
.mini-links i { display: block; width: 16px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.25); }
.mini-links-dark i { background: rgba(214,51,108,.3); }
.mini-btn { width: 52px; height: 14px; border-radius: 999px; flex-shrink: 0; }
.mini-btn-gold { background: linear-gradient(135deg, #d4af37, #b8860b); }
.mini-btn-pink { background: linear-gradient(135deg, #ff5c9d, #d6336c); }

.mini-hero { position: relative; text-align: center; }
.mini-eyebrow {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mini-eyebrow-gold { color: #d4af37; }
.mini-eyebrow-pink {
  display: inline-block;
  color: #d6336c;
  background: rgba(255,255,255,.75);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: .02em;
}
.mini-title {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 14px;
}
.mini-title-gold { font-family: Georgia, 'Times New Roman', serif; color: #f5ecd7; }
.mini-title-pink { font-family: 'Bricolage Grotesque', 'Instrument Sans', sans-serif; color: #3d2030; }
.mini-title-pink em {
  font-style: normal;
  background: linear-gradient(135deg, #ff5c9d, #d6336c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mini-cta { display: inline-block; width: 92px; height: 20px; border-radius: 999px; }
.mini-cta-gold { background: linear-gradient(135deg, #d4af37, #b8860b); box-shadow: 0 0 16px rgba(212,175,55,.4); }
.mini-cta-pink { background: linear-gradient(135deg, #ff5c9d, #d6336c); box-shadow: 0 0 16px rgba(214,51,108,.35); }

.work-info { padding: 24px 26px 28px; }
.work-info h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.work-arrow {
  color: #00e5ff;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.work-card:hover .work-arrow { transform: translateX(6px); }
.work-info p { font-size: .93rem; margin-bottom: 18px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.work-tags span {
  font-size: .78rem;
  color: #9d9db2;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  padding: 6px 13px;
  border-radius: 999px;
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  min-width: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 30px 24px;
}
.step-num {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff2bd6, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .92rem; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-toggle {
  font-size: 1.3rem;
  color: #00e5ff;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p { padding: 0 24px 20px; font-size: .95rem; margin-bottom: 0; }
.faq-item.open .faq-answer { max-height: 420px; }
.faq-link {
  color: #00e5ff;
  border-bottom: 1px solid rgba(0,229,255,.4);
  transition: border-color .2s ease;
}
.faq-link:hover { border-bottom-color: #00e5ff; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding-bottom: 130px;
}
.final-cta-inner {
  max-width: 680px;
  padding: 60px 40px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,43,214,.08), rgba(0,229,255,.06));
  border: 1px solid rgba(255,255,255,.1);
}
.final-cta-inner h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.final-cta-email { font-size: .9rem; margin-top: 18px; }
.final-cta-email a { color: #00e5ff; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner p { font-size: .85rem; margin-bottom: 0; color: #75758a; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-size: .85rem;
  color: #9d9db2;
  transition: color .2s ease;
}
.footer-links a:hover { color: #00e5ff; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; max-width: 560px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-featured { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

  /* backdrop-filter is expensive on mobile GPUs — solid background instead */
  .site-header.scrolled {
    background: rgba(6,6,12,.96);
    backdrop-filter: none;
  }

  .nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6,6,12,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 24px 20px;
  }
  .nav.mobile-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
}

@media (max-width: 640px) {
  .hero { padding: 150px 0 80px; }
  .section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pricing-featured { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .final-cta-inner { padding: 40px 24px; }
  .work-preview { min-height: 175px; }
  .mini-title { font-size: 1.1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .marquee { padding: 12px 0; }
  .marquee-track span { font-size: .8rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .strike::after { transform: rotate(-3deg) scaleX(1); transition: none; }
  .marquee-track { animation: none; }
  .logo-cursor { animation: none; }
}
