/* =========================================================
   ACE Marketing — Editorial redesign v2
   (transparent logo, animated diagrams, quote modal)
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink:        #06080F;
  --ink-2:      #0A0E1A;       /* page bg */
  --ink-3:      #11162A;       /* card bg */
  --ink-4:      #181F38;
  --line:       rgba(255,255,255,0.08);
  --line-2:     rgba(255,255,255,0.16);
  --fg:         #F4F6FB;
  --fg-2:       #C4CAD9;
  --fg-3:       #7B829A;
  --fg-4:       #4A506A;
  --brand:      #3A7BF0;
  --brand-deep: #1C56D6;
  --brand-bright: #6CA4FF;
  --cyan:       #4FC3FF;        /* chameleon glow tone */
  --accent:     #E5FF4A;
  --warm:       #FF6B5C;
  --pink:       #FF77A8;
  --purple:     #9B7BFF;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Space Grotesk", "Inter", monospace;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --maxw: 1280px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--ink-2);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
html { touch-action: pan-y; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--brand); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

section { position: relative; }

/* ---------- TYPE ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--brand);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { background: var(--fg-4); }

.h-section {
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.h-sub {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 60ch;
  font-weight: 400;
}

/* ---------- NAV ---------- */
/* ======== NAV — Floating Glass Pill ======== */
.nav {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.nav-row {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 920px;
  background: rgba(7, 9, 18, 0.88);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.07),
    0 8px 32px rgba(0,0,0,0.5),
    0 2px 8px rgba(0,0,0,0.3);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-brand-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
}
.nav-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  position: absolute;
  left: 50%; transform: translateX(-50%);
  background: transparent;
  border: none;
  padding: 0;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(196,202,217,0.75);
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.07); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.005em;
  flex-shrink: 0;
  white-space: nowrap;
  transition: transform .22s cubic-bezier(0.22,1,0.36,1), background .2s, box-shadow .2s;
  box-shadow: 0 0 22px rgba(58,123,240,0.45);
}
.nav-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(58,123,240,0.6);
}
.nav-cta:active { transform: translateY(0); }
.nav-cta-arrow { display: none; }

@media (max-width: 920px) {
  .nav-row { max-width: 100%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s, background .2s, color .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-light { background: var(--fg); color: var(--ink); }
.btn-light:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }
.btn-outline {
  border-color: var(--line-2); color: var(--fg); background: transparent;
}
.btn-outline:hover { border-color: var(--fg); background: rgba(255,255,255,0.04); }
.btn-arrow {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 13px;
}
.btn-primary .btn-arrow { background: rgba(255,255,255,0.2); }
.btn-light .btn-arrow { background: var(--ink); color: var(--fg); }

/* ---------- ACE 3D STAGE ---------- */
.ace-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(120% 95% at 50% 44%,
    oklch(0.165 0.022 255) 0%,
    oklch(0.14 0.016 255) 42%,
    oklch(0.115 0.012 258) 74%,
    oklch(0.095 0.008 260) 100%);
}
.ace-stage #gl {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.ace-stage .ace-trim {
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  z-index: 5; pointer-events: none;
}
.ace-stage .ace-vignette {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 45%, transparent 52%, rgba(4,7,14,0.60) 100%);
  mix-blend-mode: multiply;
}
.ace-stage .ace-bloom {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 42%, rgba(58,160,255,0.10), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

/* ---------- HERO (tiszta 3D, szöveg nélkül) ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }

/* ---------- HERO COPY (3D alatt, normál háttér) ---------- */
.hero-copy {
  background: var(--ink);
  padding: 72px 0 80px;
  position: relative;
}
.hero-copy::before {
  content: '';
  position: absolute;
  top: -80px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
  z-index: 1;
}
.hero-copy .wrap { position: relative; z-index: 2; }
.hero-gif {
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  width: clamp(360px, 42vw, 600px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 60% 50%, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 72% at 60% 50%, #000 28%, transparent 76%);
}
.hero-gif img {
  width: 100%; height: auto;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
  mix-blend-mode: luminosity;
  border-radius: 18px;
}
@media (max-width: 760px) {
  .hero-gif { right: -90px; width: 360px; opacity: 0.1; }
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-eyebrow-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 16px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(58,123,240,0.4); }
  50% { transform: scale(1.3); opacity: 0.6; box-shadow: 0 0 0 8px rgba(58,123,240,0); }
}

/* hero logo */
.hero-logo-wrap {
  display: flex; justify-content: flex-start;
  margin: 12px 0 24px;
  position: relative;
}
.hero-logo {
  width: clamp(180px, 26vw, 320px);
  height: auto;
  filter: drop-shadow(0 0 80px rgba(79,195,255,0.18));
  animation: logo-float 6s ease-in-out infinite;
  transform-origin: 50% 60%;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}
.hero-logo-eye {
  /* small CSS-drawn glint over the chameleon eye */
  position: absolute; pointer-events: none;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 999px;
  top: 35%; left: 22%;
  filter: blur(2px);
  opacity: 0;
  animation: eye-blink 7s ease-in-out infinite;
}
@keyframes eye-blink {
  0%, 92%, 100% { opacity: 0; }
  94%, 98% { opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin: 0;
  text-align: left;
  max-width: 16ch;
}
.hero-title-line { display: block; }
.outlined-text {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
}
.filled-image {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(110deg, var(--brand) 0%, var(--cyan) 35%, #9CC0FF 60%, var(--brand) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradient-pan 6s linear infinite;
}
@keyframes gradient-pan {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.hero-row-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-top: 56px;
}
.hero-body {
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 400;
}
.hero-body strong { color: var(--fg); font-weight: 600; }
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat {
  background: var(--ink-2);
  padding: 22px 18px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.hero-stat-num .plus { color: var(--brand); }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .hero-row-2 { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 96px; padding-bottom: 0; }
  .hero-copy { padding: 56px 0 64px; }
}

/* ---------- TICKER ---------- */
.ticker {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--fg);
  flex-shrink: 0;
}
.ticker-item.muted { color: var(--fg-4); }
.ticker-star { color: var(--brand); font-size: 18px; }

/* ---------- PROBLEM / PHONES ---------- */
.problem {
  padding: 130px 0 100px;
  background: var(--ink);
  position: relative;
}
.problem-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 90px;
}
.problem-head h2 { font-size: clamp(38px, 5.5vw, 76px); }
.problem-stack {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 52ch;
}
.problem-stack p { font-size: 17px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.problem-stack p strong { color: var(--fg); font-weight: 600; }
.problem-stack p.muted { color: var(--fg-3); }

.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.problem-card {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.problem-card.bad { border-color: rgba(255,107,92,0.25); }
.problem-card.good { border-color: rgba(58,123,240,0.35); }
.problem-card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  width: fit-content;
}
.problem-card.bad .problem-card-tag {
  background: rgba(255,107,92,0.1); color: var(--warm);
}
.problem-card.good .problem-card-tag {
  background: rgba(58,123,240,0.12); color: var(--brand-bright);
}
.problem-card h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--fg);
}
.problem-card p.sub {
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.problem-phone-wrap {
  display: flex; justify-content: center;
  position: relative;
  padding: 8px 0;
}

@media (max-width: 900px) {
  .problem-head { grid-template-columns: 1fr; gap: 32px; }
  .problem-row { grid-template-columns: 1fr; }
}

/* ---------- PHONE MOCKUP ---------- */
.phone {
  width: 256px;
  height: 510px;
  background: #0A0A12;
  border: 7px solid #1A1F2E;
  border-radius: 42px;
  position: relative;
  box-shadow:
    0 40px 60px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}
.phone-screen {
  position: absolute; inset: 0;
  background: #050505;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-body);
}
.phone-statusbar {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 26px 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  z-index: 5;
}
.phone-statusbar-right { display: flex; gap: 6px; align-items: center; }
.sb-icon {
  display: inline-block;
  width: 14px; height: 8px;
  background: currentColor;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.sb-bars { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 12" fill="currentColor"><rect x="0" y="8" width="3" height="4" rx="0.5"/><rect x="5" y="5" width="3" height="7" rx="0.5"/><rect x="10" y="2" width="3" height="10" rx="0.5"/><rect x="15" y="0" width="3" height="12" rx="0.5"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 12" fill="currentColor"><rect x="0" y="8" width="3" height="4" rx="0.5"/><rect x="5" y="5" width="3" height="7" rx="0.5"/><rect x="10" y="2" width="3" height="10" rx="0.5"/><rect x="15" y="0" width="3" height="12" rx="0.5"/></svg>'); width: 16px; height: 11px; }
.sb-wifi { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 12"><path fill="currentColor" d="M8 2c2.6 0 5 .9 6.8 2.4L13.5 5.8C12 4.6 10 4 8 4S4 4.6 2.5 5.8L1.2 4.4C3 2.9 5.4 2 8 2zm0 3c1.8 0 3.4.6 4.7 1.6l-1.3 1.4C10.5 7.4 9.3 7 8 7s-2.5.4-3.4 1L3.3 6.6C4.6 5.6 6.2 5 8 5zm0 3a3 3 0 0 1 2 .8L8.7 10.2C8.5 10 8.3 10 8 10s-.5 0-.7.2L6 8.8A3 3 0 0 1 8 8z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 12"><path fill="currentColor" d="M8 2c2.6 0 5 .9 6.8 2.4L13.5 5.8C12 4.6 10 4 8 4S4 4.6 2.5 5.8L1.2 4.4C3 2.9 5.4 2 8 2zm0 3c1.8 0 3.4.6 4.7 1.6l-1.3 1.4C10.5 7.4 9.3 7 8 7s-2.5.4-3.4 1L3.3 6.6C4.6 5.6 6.2 5 8 5zm0 3a3 3 0 0 1 2 .8L8.7 10.2C8.5 10 8.3 10 8 10s-.5 0-.7.2L6 8.8A3 3 0 0 1 8 8z"/></svg>'); width: 14px; height: 10px; }
.sb-battery {
  display: inline-flex; align-items: center; gap: 2px;
  width: 26px; height: 12px;
  border: 1px solid currentColor; border-radius: 3px;
  position: relative; padding: 1px;
}
.sb-battery::after {
  content: ""; position: absolute; right: -3px; top: 3px; width: 2px; height: 6px;
  background: currentColor; border-radius: 0 1px 1px 0;
}
.sb-battery::before {
  content: ""; flex: 1; height: 100%;
  background: currentColor; border-radius: 1px;
  width: 80%;
}

/* tiktok-style feed */
.tt-card {
  position: absolute; left: 0; right: 0; bottom: 50px; top: 38px;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #0d0d12 0%, #1a1a22 100%);
}
.tt-topbar {
  display: flex; justify-content: center; gap: 20px;
  padding: 16px 0 12px;
  font-size: 13px;
  font-weight: 600;
}
.tt-topbar .active { color: #fff; position: relative; }
.tt-topbar .active::after {
  content: ""; position: absolute; bottom: -6px; left: 20%; right: 20%;
  height: 2px; background: #fff; border-radius: 2px;
}
.tt-topbar .dim { color: rgba(255,255,255,0.55); }
.tt-video {
  flex: 1; position: relative;
  background: linear-gradient(135deg, #1a2444, #2b1a4d 50%, #4a1a3a);
  overflow: hidden;
}
.tt-video.bad { background: #18181c; }
.tt-video-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
}
.tt-video-shape.a {
  top: -20px; left: -30px; width: 180px; height: 180px;
  background: rgba(58,123,240,0.55);
  animation: blob-a 14s ease-in-out infinite;
}
.tt-video-shape.b {
  bottom: -40px; right: -40px; width: 200px; height: 200px;
  background: rgba(255,119,168,0.45);
  animation: blob-b 14s ease-in-out infinite;
}
@keyframes blob-a {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes blob-b {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(0.95); }
}

/* floating hearts in the good phone */
.tt-hearts {
  position: absolute; inset: 0;
  pointer-events: none;
}
.tt-heart {
  position: absolute;
  bottom: 80px;
  font-size: 22px;
  color: #FF3B6B;
  opacity: 0;
  animation: heart-rise 4s linear infinite;
  text-shadow: 0 0 10px rgba(255,59,107,0.5);
}
.tt-heart.h1 { left: 75%; animation-delay: 0s; }
.tt-heart.h2 { left: 65%; animation-delay: 1.3s; font-size: 16px; }
.tt-heart.h3 { left: 80%; animation-delay: 2.6s; font-size: 28px; }
.tt-heart.h4 { left: 70%; animation-delay: 0.7s; font-size: 18px; }
@keyframes heart-rise {
  0% { transform: translate(0, 0) scale(0.5); opacity: 0; }
  15% { opacity: 1; transform: translate(0, -10px) scale(1); }
  60% { opacity: 1; }
  100% { transform: translate(-30px, -240px) scale(0.7); opacity: 0; }
}

.tt-username {
  position: absolute; bottom: 14px; left: 12px; right: 76px;
  font-size: 12px;
  font-weight: 600;
  z-index: 4;
}
.tt-username .handle { font-weight: 700; }
.tt-username .caption {
  font-size: 11px; font-weight: 400; opacity: 0.92;
  margin-top: 5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.tt-sidebar {
  position: absolute;
  right: 10px; bottom: 18px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
  z-index: 5;
}
.tt-sidebar-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.tt-sidebar-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 16px;
}
.tt-sidebar-item.good .tt-sidebar-icon {
  background: linear-gradient(135deg, #FF3B6B, #FF6B5C);
  animation: heart-beat 1.6s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.15); }
  40% { transform: scale(1); }
  60% { transform: scale(1.08); }
  80% { transform: scale(1); }
}

/* like burst popping in occasionally */
.like-burst {
  position: absolute;
  top: 35%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: rgba(255,59,107,0.95);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(255,59,107,0.6));
  animation: burst 4s ease-out infinite;
}
@keyframes burst {
  0%, 80%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  85% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  95% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
}

.tt-tabbar {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around; align-items: center;
  padding: 9px 0 11px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.tt-tabbar-item.active { color: #fff; }
.tt-tabbar-plus {
  background: linear-gradient(90deg, #25F4EE, #fff, #FE2C55);
  width: 40px; height: 24px;
  border-radius: 6px;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 800px;
}
.section-head h2 { margin: 14px 0 16px; }
.section-head p { color: var(--fg-2); font-size: 18px; }

/* ---------- DIFFERENT / STATS ---------- */
.different {
  padding: 130px 0;
  background: var(--ink-2);
  position: relative;
}
.different-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 60px;
}
.different-row h2 { font-size: clamp(36px, 5vw, 72px); }
.different-row p {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 50ch;
  line-height: 1.55;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.stat-card-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.stat-card-num .unit { color: var(--brand); }
.stat-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.stat-card-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  margin-top: 4px;
}
.stat-card.feature {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  grid-column: span 2;
}
.stat-card.feature .stat-card-num { color: #fff; }
.stat-card.feature .stat-card-num .unit { color: rgba(255,255,255,0.55); }
.stat-card.feature .stat-card-label { color: rgba(255,255,255,0.85); }
.stat-card.feature .stat-card-desc { color: rgba(255,255,255,0.92); }
.stat-card.dark { background: var(--ink); }

@media (max-width: 900px) {
  .different-row { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card.feature { grid-column: span 2; }
}

/* ---------- SERVICES ---------- */
.services {
  padding: 130px 0;
  background: var(--ink);
}
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.service:first-of-type { border-top: 0; padding-top: 30px; }
.service.reverse .service-visual { order: 2; }
.service-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-3);
}
.service-cat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.service h3 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}
.service-desc {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 50ch;
}
.service-points {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; gap: 12px;
}
.service-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.service-points li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--brand);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}
.service-visual {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}

@media (max-width: 900px) {
  .service { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .service.reverse .service-visual { order: 0; }
  .service-visual { aspect-ratio: 4/3; }
}

/* ---------- SERVICE VISUAL backgrounds ---------- */
.sv-content {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,119,168,0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(58,123,240,0.3), transparent 50%),
    var(--ink-3);
}
.sv-ads {
  background:
    radial-gradient(circle at 70% 30%, rgba(58,123,240,0.35), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(155,123,255,0.2), transparent 55%),
    var(--ink-3);
}
.sv-web {
  background:
    radial-gradient(circle at 50% 50%, rgba(58,123,240,0.25), transparent 60%),
    var(--ink-3);
}

/* ---------- DIAGRAM: ORGANIC CONTENT ---------- */
.diag-organic {
  width: 86%;
  display: flex; flex-direction: column; gap: 14px;
}
.diag-organic-chart {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}
.diag-organic-chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.diag-organic-chart-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-organic-chart-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.diag-organic-chart-val .pct { color: var(--brand-bright); font-size: 14px; margin-left: 6px; }
.diag-organic-chart svg { width: 100%; height: 110px; display: block; }
.line-path {
  fill: none;
  stroke: var(--brand-bright);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 0; /* visible by default */
}
.line-path.in { animation: line-draw 2.4s cubic-bezier(0.2,0.7,0.2,1) both; }
@keyframes line-draw { from { stroke-dashoffset: 800; } to { stroke-dashoffset: 0; } }
.line-dot {
  fill: var(--brand-bright);
  opacity: 1;
}
.line-dot.in { animation: dot-fade .8s ease 2s both; }
@keyframes dot-fade { from { opacity: 0; } to { opacity: 1; } }

.diag-organic-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.diag-tile {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}
.diag-tile-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-tile-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 4px;
  color: var(--fg);
}
.diag-tile-val .small { font-size: 13px; color: var(--brand-bright); margin-left: 4px; }

.diag-organic-feed {
  display: flex; gap: 10px;
  overflow: hidden;
}
.diag-post {
  flex: 1;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  font-size: 11px;
}
.diag-post-img {
  height: 80px;
  background: linear-gradient(135deg, #FF77A8, #9B7BFF, #3A7BF0);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease-in-out infinite;
  position: relative;
}
.diag-post-img::after {
  content: "REEL";
  position: absolute; top: 6px; right: 6px;
  font-family: var(--font-mono);
  font-size: 8px; font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 2px 6px; border-radius: 4px;
}
.diag-post-img.b { background: linear-gradient(135deg, #3A7BF0, #4FC3FF, #9B7BFF); animation-delay: -2s; }
.diag-post-img.c { background: linear-gradient(135deg, #FF6B5C, #FF77A8, #9B7BFF); animation-delay: -4s; }
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}
.diag-post-meta {
  padding: 8px 10px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
}
.diag-post-meta strong { color: var(--fg); font-weight: 600; }

/* ---------- DIAGRAM: FACEBOOK ADS ---------- */
.diag-ads {
  width: 86%;
  display: flex; flex-direction: column; gap: 14px;
}
.diag-ads-head {
  display: flex; justify-content: space-between; align-items: center;
}
.diag-ads-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.diag-ads-brand-logo {
  width: 22px; height: 22px;
  background: var(--brand);
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}
.diag-ads-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-ads-live::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: #2DD47A;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(45,212,122,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(45,212,122,0); }
}
.diag-ads-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.diag-ads-tile {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}
.diag-ads-tile-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-ads-tile-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.diag-ads-tile.up .diag-ads-tile-val { color: var(--brand-bright); }
.diag-ads-tile.down .diag-ads-tile-val { color: #2DD47A; }
.diag-ads-tile-delta {
  font-family: var(--font-mono);
  font-size: 10px;
  margin-top: 2px;
}
.diag-ads-tile.up .diag-ads-tile-delta { color: var(--brand-bright); }
.diag-ads-tile.down .diag-ads-tile-delta { color: #2DD47A; }

.diag-ads-chart {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.diag-ads-chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.diag-ads-chart-head .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-ads-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  height: 80px;
  align-items: end;
}
.diag-bar {
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  border-radius: 6px 6px 0 0;
  transition: height 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* visible defaults (match data-h) so bars aren't empty if JS doesn't run */
.diag-ads-bars .diag-bar:nth-child(1) { height: 40%; }
.diag-ads-bars .diag-bar:nth-child(2) { height: 55%; }
.diag-ads-bars .diag-bar:nth-child(3) { height: 48%; }
.diag-ads-bars .diag-bar:nth-child(4) { height: 72%; }
.diag-ads-bars .diag-bar:nth-child(5) { height: 62%; }
.diag-ads-bars .diag-bar:nth-child(6) { height: 88%; }
.diag-ads-bars .diag-bar:nth-child(7) { height: 100%; }
.diag-bar.dim { background: linear-gradient(180deg, rgba(58,123,240,0.4), rgba(58,123,240,0.15)); }
.diag-ads-bars .diag-bar { transform-origin: bottom; }
.diag-ads-bars.in .diag-bar { animation: bar-grow 1s cubic-bezier(0.2,0.7,0.2,1) both; }
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.diag-ads-bars.in .diag-bar:nth-child(1) { animation-delay: 0s; }
.diag-ads-bars.in .diag-bar:nth-child(2) { animation-delay: 0.1s; }
.diag-ads-bars.in .diag-bar:nth-child(3) { animation-delay: 0.2s; }
.diag-ads-bars.in .diag-bar:nth-child(4) { animation-delay: 0.3s; }
.diag-ads-bars.in .diag-bar:nth-child(5) { animation-delay: 0.4s; }
.diag-ads-bars.in .diag-bar:nth-child(6) { animation-delay: 0.5s; }
.diag-ads-bars.in .diag-bar:nth-child(7) { animation-delay: 0.6s; }
.diag-ads-bars-axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-4);
  text-align: center;
}

/* ---------- DIAGRAM: WEB ---------- */
.diag-web {
  width: 86%;
  display: flex; flex-direction: column; gap: 14px;
}
.diag-web-frame {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.diag-web-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.diag-web-dot { width: 8px; height: 8px; border-radius: 999px; }
.diag-web-dot.r { background: #FF6058; }
.diag-web-dot.y { background: #FFBD2E; }
.diag-web-dot.g { background: #27C93F; }
.diag-web-url {
  flex: 1; margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
}
.diag-web-loadbar {
  height: 2px; background: rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.diag-web-loadbar::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 35%;
  background: var(--brand-bright);
  animation: loadbar 2.4s ease-in-out infinite;
}
@keyframes loadbar {
  0% { left: -35%; }
  100% { left: 100%; }
}
.diag-web-body {
  padding: 18px;
}
.diag-web-h {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.diag-web-p {
  font-size: 11px; color: var(--fg-3); margin-bottom: 12px;
}
.diag-web-cta {
  display: inline-flex; padding: 6px 12px;
  background: var(--brand); border-radius: 999px;
  font-size: 10px; font-weight: 600; color: #fff;
  font-family: var(--font-body);
}
.diag-web-gauges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gauge {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
}
.gauge-ring {
  position: relative;
  width: 70px; height: 70px;
}
.gauge-ring svg { transform: rotate(-90deg); }
.gauge-ring .bg { stroke: rgba(255,255,255,0.08); }
.gauge-ring .val {
  stroke: var(--brand-bright);
  stroke-linecap: round;
  stroke-dashoffset: var(--goff, 0);
}
.gauge-ring.in .val { animation: gauge-sweep 1.6s cubic-bezier(0.2,0.7,0.2,1) both; }
@keyframes gauge-sweep { from { stroke-dashoffset: 175.93; } to { stroke-dashoffset: var(--goff, 0); } }
.gauge-ring.green .val { stroke: #2DD47A; }
.gauge-ring.purple .val { stroke: var(--purple); }
.gauge-num {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.gauge-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
}

/* ---------- LOGO MARQUEE ---------- */
.logos {
  padding: 80px 0;
  background: var(--ink-2);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-head { text-align: center; margin-bottom: 40px; }
.logos-head p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.marquee {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee.reverse { animation-direction: reverse; animation-duration: 45s; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  display: flex; align-items: center;
  height: 56px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink);
  transition: color .25s, border-color .25s;
  cursor: default;
}
.logo-item:hover { color: var(--fg); border-color: var(--line-2); }
.logo-item .badge {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  background: rgba(58,123,240,0.15);
  color: var(--brand-bright);
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* process step variant */
.logo-item.proc {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 84px;
  padding: 0 30px;
  gap: 2px;
  font-size: 22px;
  position: relative;
}
.logo-item.proc .proc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.1em;
}
.logo-item.proc .proc-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-3);
  letter-spacing: 0;
}
.proc-arrow {
  flex-shrink: 0;
  display: flex; align-items: center;
  font-size: 26px;
  color: var(--fg-4);
  font-family: var(--font-display);
}
.logo-item.phrase {
  font-size: 22px;
  font-weight: 500;
  border-style: dashed;
  color: var(--fg-2);
}
.logo-item.phrase.brand { color: var(--fg); border-color: rgba(58,123,240,0.3); }
.logo-item.phrase.brand em { font-style: normal; color: var(--brand-bright); font-weight: 600; }

/* ---------- ACE VALUES ---------- */
.values {
  padding: 130px 0;
  background: var(--ink);
  position: relative;
}
.values-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 9.2vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 70px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .values-display { white-space: normal; font-size: clamp(40px, 14vw, 84px); }
}
.values-display .outlined-text { -webkit-text-stroke: 2px var(--fg-3); }
.values-display .filled { color: var(--fg); }
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.value-item {
  background: var(--ink);
  padding: 50px 36px;
  display: flex; flex-direction: column; gap: 22px;
  transition: background .3s;
  cursor: default;
  min-height: 340px;
}
.value-item:hover { background: var(--ink-3); }
.value-letter {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--brand);
  display: flex; align-items: baseline; gap: 12px;
}
.value-letter-dash {
  width: 36px; height: 4px;
  background: var(--brand);
  align-self: center;
}
.value-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.value-text {
  font-size: 15px; line-height: 1.55; color: var(--fg-2);
}

@media (max-width: 900px) {
  .values-list { grid-template-columns: 1fr; }
}

/* ---------- LOCATIONS ---------- */
.locations {
  padding: 100px 0;
  background: var(--ink-2);
  overflow: hidden;
}
.locations-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.locations-flags {
  display: flex; gap: 28px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg-2);
  flex-wrap: wrap;
}
.flag-row { display: flex; align-items: center; gap: 10px; }
.flag-row.active { color: var(--fg); font-weight: 600; }
.loc-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--fg-3);
}
.loc-badge.live {
  border-color: rgba(45,212,122,0.4);
  color: #2DD47A;
  display: inline-flex; align-items: center; gap: 6px;
}
.loc-badge.live::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px;
  background: #2DD47A;
  animation: live-pulse 1.6s ease-in-out infinite;
}
.flag-mark {
  width: 28px; height: 20px;
  border-radius: 3px; overflow: hidden;
  border: 1px solid var(--line);
}

/* ---------- KÉT ÚT DIAGRAM ---------- */
.paths {
  padding: 130px 0 110px;
  background: var(--ink);
  position: relative;
}
.paths-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.paths-head h2 { margin-top: 14px; }
.paths-diagram {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.paths-diagram svg { width: 100%; height: auto; display: block; overflow: visible; }

.path-growth, .path-stuck {
  stroke-dasharray: 1600;
  stroke-dashoffset: 0; /* visible by default — animation only draws it in */
}
.path-stuck { stroke-dasharray: 6 8; stroke-dashoffset: 0; }
.paths-diagram.in .path-growth {
  animation: draw-path 2.2s cubic-bezier(0.3,0.6,0.2,1) both;
}
.paths-diagram.in .path-stuck {
  animation: draw-stuck 1.6s ease 1.4s both;
}
@keyframes draw-path {
  from { stroke-dashoffset: 1600; }
  to { stroke-dashoffset: 0; }
}
@keyframes draw-stuck {
  from { opacity: 0; }
  to { opacity: 1; }
}
.path-growth-fill { opacity: 1; }
.paths-diagram.in .path-growth-fill { animation: fade-fill 1.4s ease 1.2s both; }
@keyframes fade-fill { from { opacity: 0; } to { opacity: 1; } }

/* milestones + labels: visible by default, pop-in is enhancement */
.paths-milestone { transform-box: fill-box; transform-origin: center; }
.paths-diagram.in .paths-milestone { animation: pop-in .5s cubic-bezier(0.3,0.7,0.2,1.4) both; }
.paths-diagram.in .paths-label { animation: rise-in .5s ease both; }
.paths-diagram.in .paths-end-label { animation: draw-stuck .6s ease both; }
@keyframes pop-in { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.paths-diagram.in .paths-milestone.growth:nth-of-type(1) { animation-delay: 0.7s; }
.paths-diagram.in .paths-milestone.growth:nth-of-type(2) { animation-delay: 1.1s; }
.paths-diagram.in .paths-milestone.growth:nth-of-type(3) { animation-delay: 1.6s; }
.paths-diagram.in .paths-label.growth:nth-of-type(1) { animation-delay: 0.8s; }
.paths-diagram.in .paths-label.growth:nth-of-type(2) { animation-delay: 1.2s; }
.paths-diagram.in .paths-label.growth.feature { animation-delay: 1.7s; }
.paths-cta { text-align: center; margin-top: 48px; }

@media (max-width: 760px) {
  .paths-diagram { overflow-x: visible; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 130px 0; background: var(--ink); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .3s, border-color .3s;
}
.test-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.test-stars { display: flex; gap: 4px; color: var(--brand); font-size: 16px; }
.test-service {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  background: rgba(58,123,240,0.12);
  color: var(--brand-bright);
  border-radius: 999px;
  align-self: flex-start;
}
.test-text {
  font-family: var(--font-display);
  font-size: 19px; line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  flex: 1;
}
.test-foot {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.test-avatar {
  width: 44px; height: 44px;
  background: var(--ink-4);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
}
.test-name { font-weight: 600; font-size: 15px; }
.test-role { font-size: 13px; color: var(--fg-3); }

@media (max-width: 900px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { padding: 130px 0; background: var(--ink-2); }
.faq-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin: 0 0 40px;
}
.faq-tab {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  background: var(--ink-3);
  transition: background .25s, color .25s, border-color .25s;
}
.faq-tab:hover { color: var(--fg); border-color: var(--line-2); }
.faq-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .3s;
}
.faq-item.open { background: var(--ink-3); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  gap: 24px;
}
.faq-sign {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--fg-2);
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-sign { background: var(--brand); border-color: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 26px;
  font-size: 15px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 70ch;
}

/* ---------- CLOSER CTA ---------- */
.closer { padding: 130px 0; background: var(--ink); text-align: center; }
.closer h2 {
  font-size: clamp(44px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 28px;
}
.closer h2 .italic { font-style: italic; font-weight: 600; }
.closer-sub { font-size: 17px; color: var(--fg-2); max-width: 50ch; margin: 0 auto 32px; }
.closer-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.foot { padding: 80px 0 36px; background: var(--ink); border-top: 1px solid var(--line); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.foot-brand-stack { max-width: 36ch; }
.foot-brand-stack p { margin-top: 16px; font-size: 14px; color: var(--fg-3); }
.foot h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { font-size: 15px; color: var(--fg-2); }
.foot-col a:hover { color: var(--fg); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--fg-3);
  font-family: var(--font-mono);
}
.foot-badges { display: flex; gap: 12px; }
.foot-badge {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; gap: 16px; }
}

/* ---------- Reveal on scroll ---------- */
/* Content is ALWAYS visible — the .in class adds a subtle entrance.
   If the observer never fires (e.g. headless capture), content still shows. */
.reveal { opacity: 1; }
.reveal > .wrap {
  transition: opacity .7s ease, transform .7s ease;
}

/* ===================== QUOTE MODAL ===================== */
.modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(6,8,15,0.85);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  padding: 40px 20px;
}
.modal.is-open { display: block; animation: modal-fade .25s ease; }
@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  animation: modal-slide .35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes modal-slide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 20px; color: var(--fg-2);
  transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover { background: var(--brand); color: #fff; transform: rotate(90deg); }
.modal-head {
  margin-bottom: 28px;
}
.modal-head p.eyebrow { margin-bottom: 12px; }
.modal-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.modal-head p.sub { color: var(--fg-2); font-size: 15px; line-height: 1.55; max-width: 50ch; }
.modal-progress {
  display: flex; gap: 4px;
  margin-bottom: 24px;
}
.modal-progress span {
  flex: 1; height: 3px; background: var(--line);
  border-radius: 999px;
  transition: background .3s;
}
.modal-progress span.done { background: var(--brand); }

.form-section {
  margin-bottom: 28px;
}
.form-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.form-section-label .num {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: rgba(58,123,240,0.15);
  color: var(--brand-bright);
  border-radius: 999px;
  font-size: 11px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .form-row, .form-row.three { grid-template-columns: 1fr; }
}
.form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.form-field label {
  font-size: 12px;
  color: var(--fg-3);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--fg);
  outline: 0;
  transition: border-color .2s, background .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--fg-4);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brand);
  background: var(--ink-4);
}
.form-field textarea { resize: vertical; min-height: 90px; }

.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  font-size: 14px;
  color: var(--fg-2);
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  cursor: pointer;
}
.chip:hover { color: var(--fg); border-color: var(--line-2); }
.chip.is-selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.02);
}
.chip-icon { display: inline-flex; margin-right: 6px; }

.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.form-foot-note {
  font-size: 12px;
  color: var(--fg-3);
  max-width: 30ch;
}

.modal-success {
  text-align: center;
  padding: 40px 20px;
}
.modal-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--brand);
  display: grid; place-items: center;
  font-size: 38px;
  color: #fff;
  animation: success-pop .5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes success-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.modal-success h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.modal-success p { color: var(--fg-2); font-size: 15px; max-width: 40ch; margin: 0 auto; }

/* ===================== UTILITIES ===================== */
.counter[data-count] { display: inline-block; min-width: 1ch; }

body.modal-open { overflow: hidden; }

/* ===================== MOBILE REFINEMENTS ===================== */
@media (max-width: 768px) {
  .wrap { padding: 0 18px; }

  /* tighter section padding */
  .problem, .different, .services, .values, .paths,
  .testimonials, .faq, .closer, .logos { padding-top: 80px; padding-bottom: 80px; }
  .locations { padding: 70px 0; }

  /* nav */
  .nav { padding: 12px 0; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .nav-brand { font-size: 16px; }

  /* hero */
  .hero { padding-top: 90px; padding-bottom: 0; }
  .hero-eyebrow-row { margin-bottom: 18px; }
  /* hero-copy */
  .hero-copy { padding: 48px 0 56px; }
  .hero-title { font-size: clamp(38px, 13vw, 72px); line-height: 1.06; }
  .hero-stats-card { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { padding: 16px 10px; }
  .hero-stat-num { font-size: clamp(22px, 6.5vw, 32px); }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.08em; }
  .hero-ctas .btn { flex: 1; justify-content: center; }

  /* ticker / process */
  .ticker-item { font-size: 20px; }
  .logo-item.proc { height: 72px; font-size: 18px; }
  .logo-item.phrase { font-size: 18px; }

  /* problem cards */
  .problem-card { padding: 26px 22px; }
  .problem-card h3 { font-size: 23px; }
  .phone { width: 220px; height: 440px; }

  /* paths diagram — let it scroll horizontally so labels don't crush */
  .paths-diagram {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .paths-diagram::-webkit-scrollbar { display: none; }
  .paths-diagram svg { min-width: 720px; }
  .paths-head h2 { font-size: clamp(28px, 8vw, 44px); }

  /* stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 22px 18px; }
  .stat-card-num { font-size: clamp(34px, 11vw, 52px); }
  .stat-card.feature { grid-column: span 2; }

  /* services */
  .service { gap: 32px; padding: 48px 0; }
  .service h3 { font-size: clamp(30px, 9vw, 44px); }
  .service-visual { aspect-ratio: 1/1; }
  .diag-organic, .diag-ads, .diag-web { width: 90%; }

  /* values */
  .value-item { padding: 38px 26px; min-height: auto; }
  .value-letter { font-size: 88px; }

  /* locations */
  .locations-flags { gap: 16px; font-size: 18px; }
  .locations-row { gap: 20px; }

  /* section heads */
  .section-head { margin-bottom: 44px; }
  .section-head p { font-size: 16px; }

  /* faq */
  .faq-q { font-size: 17px; padding: 20px 16px; }
  .faq-a { padding: 0 16px 22px; }

  /* closer */
  .closer h2 { font-size: clamp(36px, 12vw, 72px); }
  .closer-ctas .btn { flex: 1; justify-content: center; }

  /* modal */
  .modal { padding: 20px 12px; }
  .modal-inner { padding: 28px 22px; border-radius: 22px; }
  .modal-head h2 { font-size: 24px; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { justify-content: center; }
  .form-foot-note { max-width: none; text-align: center; }

  /* footer */
  .foot { padding: 60px 0 30px; }
  .foot-grid { gap: 32px; }
}

@media (max-width: 420px) {
  .hero-stats-card { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card.feature { grid-column: span 1; }
  .hero-title { font-size: clamp(30px, 11vw, 52px); }
  .hero-copy { padding: 36px 0 44px; }
}

/* ===================== FLIP CARDS ===================== */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 900px) { .flip-grid { grid-template-columns: 1fr; } }

.flip {
  position: relative;
  min-height: 340px;
  perspective: 1600px;
  cursor: pointer;
}
.flip-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(0.4, 0.1, 0.2, 1);
}
.flip.flipped .flip-inner,
.flip:hover .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.flip-front {
  background: var(--ink-3);
}
.flip-back {
  background: var(--brand);
  color: #fff;
  transform: rotateY(180deg);
}
.flip-back.dark { background: var(--ink-4); color: var(--fg); border-color: var(--line-2); }
.flip-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid; place-items: center;
  margin-bottom: auto;
}
.flip-icon svg { width: 26px; height: 26px; stroke: var(--brand-bright); }
.flip-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.flip-front h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  line-height: 1.08;
}
.flip-front p { font-size: 14px; color: var(--fg-3); line-height: 1.5; margin: 0; }
.flip-hint {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 18px;
}
.flip-hint::after {
  content: "↻"; font-size: 14px;
}
.flip-back h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 16px;
}
.flip-back.dark h4 { color: var(--fg-3); }
.flip-back-stat {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 8px;
}
.flip-back ul {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 10px;
}
.flip-back li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}
.flip-back li::before {
  content: "→"; flex-shrink: 0;
  opacity: 0.7;
}
.flip-back p {
  font-size: 15px; line-height: 1.5;
  margin: 0;
}
.flip-back .flip-back-foot {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  opacity: 0.85;
}

@media (hover: none) {
  /* on touch, disable hover-flip; rely on tap (.flipped) */
  .flip:hover .flip-inner { transform: none; }
  .flip.flipped .flip-inner { transform: rotateY(180deg); }
}

/* ===================== JOURNEY (két út, v2) ===================== */
.journey { padding: 130px 0 110px; background: var(--ink); position: relative; }
.journey-head { text-align: center; max-width: 860px; margin: 0 auto 56px; }
.journey-head h2 { margin-top: 14px; }

.journey-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
@media (max-width: 860px) { .journey-split { grid-template-columns: 1fr; gap: 16px; } }

.journey-col {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px 36px;
  position: relative;
  overflow: hidden;
}
.journey-col.grow {
  background: linear-gradient(180deg, rgba(58,123,240,0.10), rgba(58,123,240,0.02) 40%, transparent);
  border-color: rgba(58,123,240,0.35);
}
.journey-col.stay {
  background: linear-gradient(180deg, rgba(255,107,92,0.07), transparent 40%);
  border-color: rgba(255,107,92,0.22);
}
.journey-col-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.journey-col-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-col.grow .journey-col-tag { color: var(--brand-bright); }
.journey-col.stay .journey-col-tag { color: var(--warm); }
.journey-col-tag .dirico {
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 14px;
}
.journey-col.grow .dirico { background: rgba(58,123,240,0.16); }
.journey-col.stay .dirico { background: rgba(255,107,92,0.14); }
.journey-col-end {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-3);
}

/* vertical timeline */
.journey-rail { position: relative; padding-left: 38px; }
.journey-rail::before {
  content: ""; position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
}
.journey-col.grow .journey-rail::before {
  background: linear-gradient(180deg, rgba(58,123,240,0.2), var(--brand) 90%);
}
.journey-step {
  position: relative;
  padding-bottom: 30px;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-step::before {
  content: ""; position: absolute;
  left: -32px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--ink-3);
  border: 2px solid var(--line-2);
  z-index: 2;
}
.journey-col.grow .journey-step::before { border-color: var(--brand); }
.journey-col.grow .journey-step.peak::before { background: var(--brand); box-shadow: 0 0 0 5px rgba(58,123,240,0.18); }
.journey-col.stay .journey-step::before { border-color: rgba(255,107,92,0.5); }
.journey-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 6px;
}
.journey-step-row {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.journey-step-metric {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.journey-col.grow .journey-step-metric { color: var(--fg); }
.journey-col.grow .journey-step.peak .journey-step-metric { color: var(--brand-bright); }
.journey-col.stay .journey-step-metric { color: var(--fg-2); }
.journey-step-delta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.journey-col.grow .journey-step-delta { background: rgba(58,123,240,0.14); color: var(--brand-bright); }
.journey-col.stay .journey-step-delta { background: rgba(255,107,92,0.12); color: var(--warm); }
.journey-step-label {
  font-size: 14px;
  color: var(--fg-3);
  margin-top: 7px;
  line-height: 1.45;
  max-width: 36ch;
}

/* combined chart below */
.journey-chart-wrap {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-2);
  padding: 28px 30px 22px;
}
.journey-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}
.journey-chart-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em;
}
.journey-chart-legend { display: flex; gap: 18px; }
.journey-leg { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-2); }
.journey-leg::before { content: ""; width: 16px; height: 3px; border-radius: 2px; }
.journey-leg.grow::before { background: var(--brand-bright); }
.journey-leg.stay::before { background: var(--warm); }
.journey-chart-svg { width: 100%; height: auto; display: block; overflow: visible; }

.jc-line {
  fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1400; stroke-dashoffset: 0;
}
.journey-chart-wrap.in .jc-line.grow { animation: jc-draw 2.4s cubic-bezier(0.2,0.7,0.2,1) both; }
.journey-chart-wrap.in .jc-line.stay { animation: jc-draw 2s cubic-bezier(0.2,0.7,0.2,1) 0.3s both; }
@keyframes jc-draw { from { stroke-dashoffset: 1400; } to { stroke-dashoffset: 0; } }
.jc-dot { opacity: 1; }
.journey-chart-wrap.in .jc-dot { animation: jc-pop .4s ease both; }
.jc-dot.d1 { animation-delay: .4s; } .jc-dot.d2 { animation-delay: .7s; }
.jc-dot.d3 { animation-delay: 1.0s; } .jc-dot.d4 { animation-delay: 1.3s; }
.jc-dot.d5 { animation-delay: 1.6s; } .jc-dot.d6 { animation-delay: 1.9s; }
@keyframes jc-pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.jc-callout { opacity: 1; }
.journey-chart-wrap.in .jc-callout { animation: jc-fade .5s ease 2s both; }
@keyframes jc-fade { from { opacity: 0; } to { opacity: 1; } }

.journey-cta { text-align: center; margin-top: 40px; }

/* ===================== GROWTH STAIRCASE (single path) ===================== */
.grow-stair {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
  margin-top: 8px;
}
.gs-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-3);
  padding: 26px 24px;
  transition: transform .3s, border-color .3s;
}
/* ascending staircase — each card sits higher */
.gs-card:nth-child(1) { margin-bottom: 0; }
.gs-card:nth-child(2) { margin-bottom: 46px; }
.gs-card:nth-child(3) { margin-bottom: 92px; }
.gs-card:nth-child(4) { margin-bottom: 138px; }
.gs-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.gs-card.peak {
  background: var(--brand);
  border-color: var(--brand);
}
.gs-card-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.gs-card.peak .gs-card-time { color: rgba(255,255,255,0.8); }
.gs-card-metric {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--fg);
  display: flex; align-items: baseline; gap: 8px;
  flex-wrap: wrap;
}
.gs-card.peak .gs-card-metric { color: #fff; }
.gs-card-metric .badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(58,123,240,0.14);
  color: var(--brand-bright);
  white-space: nowrap;
}
.gs-card.peak .gs-card-metric .badge { background: rgba(255,255,255,0.2); color: #fff; }
.gs-card-label {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.5;
  margin-top: 14px;
}
.gs-card.peak .gs-card-label { color: rgba(255,255,255,0.92); }
.gs-card-dot {
  position: absolute;
  left: 24px; bottom: -7px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--ink-2);
  border: 2px solid var(--brand);
  z-index: 3;
}
.gs-card.peak .gs-card-dot { background: #fff; border-color: #fff; }

/* the rising connector line under the staircase */
.grow-rail {
  position: relative;
  height: 2px;
  margin: 0 24px;
  background: var(--line);
}
.grow-rail::after {
  content: "";
  position: absolute; left: 0; top: 0; height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(58,123,240,0.2), var(--brand));
  transform-origin: left;
  transform: scaleX(0);
}
.grow-stair-wrap.in .grow-rail::after { animation: rail-grow 1.6s cubic-bezier(0.3,0.6,0.2,1) .2s both; }
@keyframes rail-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.grow-stair-wrap .gs-card {
  opacity: 1;
}
.grow-stair-wrap.in .gs-card { animation: gs-rise .6s cubic-bezier(0.3,0.7,0.2,1.2) both; }
.grow-stair-wrap.in .gs-card:nth-child(1) { animation-delay: .15s; }
.grow-stair-wrap.in .gs-card:nth-child(2) { animation-delay: .35s; }
.grow-stair-wrap.in .gs-card:nth-child(3) { animation-delay: .55s; }
.grow-stair-wrap.in .gs-card:nth-child(4) { animation-delay: .75s; }
@keyframes gs-rise { from { transform: translateY(24px); } to { transform: translateY(0); } }

@media (max-width: 1024px) {
  .grow-stair { grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch; }
  .gs-card:nth-child(1), .gs-card:nth-child(2),
  .gs-card:nth-child(3), .gs-card:nth-child(4) { margin-bottom: 0; }
  .grow-rail { display: none; }
}
@media (max-width: 460px) {
  .grow-stair { grid-template-columns: 1fr; }
}

/* ===================== QUOTE PAGE ===================== */
.qpage { min-height: 100vh; }
.qhero {
  padding: 130px 0 50px;
  position: relative;
  overflow: hidden;
}
.qhero .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 70%);
  pointer-events: none;
}
.qhero-inner { max-width: 760px; }
.qhero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 18px 0 18px;
}
.qhero h1 em { font-style: normal; color: var(--brand-bright); }
.qhero p.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--fg-2); line-height: 1.55; max-width: 56ch; }
.qhero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
}
.qhero-trust span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--fg-2);
}
.qhero-trust span::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--brand);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}

.qmain {
  padding: 20px 0 120px;
}
.qgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 920px) { .qgrid { grid-template-columns: 1fr; gap: 28px; } }

.qcard {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
}
@media (max-width: 600px) { .qcard { padding: 26px 22px; } }

/* step progress */
.qsteps {
  display: flex; align-items: center;
  gap: 8px;
  margin-bottom: 34px;
}
.qstep-pill {
  display: flex; align-items: center; gap: 10px;
  flex: 1;
}
.qstep-dot {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
  background: var(--ink-2);
  transition: background .3s, color .3s, border-color .3s;
}
.qstep-name {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
  white-space: nowrap;
  transition: color .3s;
}
@media (max-width: 600px) { .qstep-name { display: none; } }
.qstep-line {
  flex: 1; height: 1px; background: var(--line);
}
.qstep-pill.active .qstep-dot { background: var(--brand); border-color: var(--brand); color: #fff; }
.qstep-pill.active .qstep-name { color: var(--fg); }
.qstep-pill.done .qstep-dot { background: rgba(58,123,240,0.15); border-color: var(--brand); color: var(--brand-bright); }
.qstep-pill.done .qstep-name { color: var(--fg-2); }

/* step panels — always visible; slide is enhancement only (never gates content) */
.qstep-panel { display: none; }
.qstep-panel.active { display: block; animation: qfade .4s ease; }
@keyframes qfade { from { transform: translateY(10px); } to { transform: translateY(0); } }
.qstep-panel h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.qstep-panel > p.hint { font-size: 14px; color: var(--fg-3); margin: 0 0 26px; }

.qnav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.qnav .btn-back {
  color: var(--fg-3);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.qnav .btn-back:hover { color: var(--fg); }
.qnav .btn-back[hidden] { visibility: hidden; }

/* side summary */
.qside {
  position: sticky; top: 90px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-2);
  padding: 30px 28px;
}
.qside h3 {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 500;
  margin: 0 0 20px;
}
.qside-logo { width: 64px; margin-bottom: 22px; }
.qsummary-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.qsummary-row:last-of-type { border-bottom: 0; }
.qsummary-row .k { color: var(--fg-3); }
.qsummary-row .v { color: var(--fg); font-weight: 500; text-align: right; }
.qsummary-row .v.empty { color: var(--fg-4); font-weight: 400; }
.qside-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(58,123,240,0.08);
  border: 1px solid rgba(58,123,240,0.2);
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.qside-note strong { color: var(--fg); }

/* success */
.qsuccess { display: none; text-align: center; padding: 30px 10px; }
.qsuccess.show { display: block; animation: qfade .5s ease; }
.qsuccess-icon {
  width: 88px; height: 88px; margin: 0 auto 24px;
  border-radius: 999px; background: var(--brand);
  display: grid; place-items: center;
  font-size: 42px; color: #fff;
  animation: success-pop .5s cubic-bezier(0.2,0.7,0.2,1.4);
}
.qsuccess h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px; }
.qsuccess p { color: var(--fg-2); font-size: 16px; max-width: 44ch; margin: 0 auto 28px; line-height: 1.55; }
.qsuccess-meta {
  display: inline-flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  padding: 20px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 28px;
}
.qsuccess-meta div { text-align: center; }
.qsuccess-meta .n { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--brand-bright); }
.qsuccess-meta .l { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* ===================== IPHONE SHOWCASE (annotated) ===================== */
.showcase {
  padding: 130px 0 120px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.showcase-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.showcase-head h2 { margin-top: 14px; }
.showcase-head p { color: var(--fg-2); font-size: 18px; margin-top: 16px; }

.showcase-stage {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ambient glow behind phone */
.showcase-stage::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(58,123,240,0.16), transparent 65%);
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* the phone unit (phone + thumb) */
.iphone-unit {
  position: relative;
  z-index: 3;
  transform: rotate(-5deg);
  animation: phone-bob 7s ease-in-out infinite;
}
@keyframes phone-bob {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-14px); }
}

/* iPhone 17 Pro Max */
.iphone {
  position: relative;
  width: 312px;
  height: 660px;
  border-radius: 58px;
  padding: 7px;
  background:
    linear-gradient(145deg, #43474d 0%, #23262b 18%, #34383e 40%, #1c1f24 70%, #3a3e44 100%);
  box-shadow:
    0 50px 90px -30px rgba(0,0,0,0.75),
    0 0 0 1.5px rgba(0,0,0,0.6),
    inset 0 0 2px 1px rgba(255,255,255,0.18);
}
/* titanium edge highlight */
.iphone::before {
  content: "";
  position: absolute; inset: 1.5px;
  border-radius: 56px;
  padding: 1.5px;
  background: linear-gradient(150deg, rgba(255,255,255,0.45), transparent 25%, transparent 70%, rgba(255,255,255,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
/* side buttons */
.iphone-btn {
  position: absolute;
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, #2a2d32, #14161a);
}
.iphone-btn.action { left: -3px; top: 120px; height: 30px; }
.iphone-btn.vol-up { left: -3px; top: 172px; height: 52px; }
.iphone-btn.vol-down { left: -3px; top: 238px; height: 52px; }
.iphone-btn.power { right: -3px; top: 188px; height: 84px; }

.iphone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 51px;
  overflow: hidden;
  background: #000;
}
/* Dynamic Island */
.dyn-island {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 118px; height: 34px;
  background: #000;
  border-radius: 999px;
  z-index: 20;
  display: flex; align-items: center; justify-content: center;
  transition: width .5s cubic-bezier(0.3,0.7,0.2,1.2);
}
.dyn-island::after {
  content: "";
  position: absolute; right: 14px;
  width: 8px; height: 8px; border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #2a6, #062);
  box-shadow: 0 0 6px rgba(45,212,122,0.6);
}
/* expanded island notification */
.dyn-island.expanded {
  width: 250px; height: 44px;
  border-radius: 22px;
  padding: 0 14px;
  justify-content: flex-start;
  gap: 8px;
}
.dyn-notif {
  display: none;
  align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
}
.dyn-island.expanded .dyn-notif { display: flex; }
.dyn-island.expanded::after { display: none; }
.dyn-notif-ico {
  width: 22px; height: 22px; border-radius: 7px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid; place-items: center;
  font-size: 12px; flex-shrink: 0;
}
.dyn-notif strong { font-weight: 600; }
.dyn-notif .amt { margin-left: auto; color: #2DD47A; font-weight: 700; font-family: var(--font-display); }

/* screen content: live social feed */
.ip-screen-inner {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, #0c1322 0%, #131a2e 50%, #1a1430 100%);
  display: flex; flex-direction: column;
}
.ip-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 30px 0;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; color: #fff;
  z-index: 5;
}
.ip-status-right { display: flex; gap: 6px; align-items: center; }
.ip-feed {
  flex: 1; position: relative;
  margin-top: 8px;
  overflow: hidden;
}
.ip-reel-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,119,168,0.5), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(58,123,240,0.55), transparent 50%),
    linear-gradient(160deg, #241a3e, #15233f);
}
.ip-reel-bg .blob {
  position: absolute; border-radius: 999px; filter: blur(38px);
}
.ip-reel-bg .blob.x { width: 160px; height: 160px; top: 12%; left: -10%; background: rgba(108,164,255,0.5); animation: blob-a 12s ease-in-out infinite; }
.ip-reel-bg .blob.y { width: 200px; height: 200px; bottom: 6%; right: -16%; background: rgba(255,119,168,0.45); animation: blob-b 12s ease-in-out infinite; }
/* play glyph */
.ip-play {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  animation: play-pulse 2.4s ease-in-out infinite;
}
.ip-play::after { content: "▶"; color: #fff; font-size: 18px; margin-left: 3px; }
@keyframes play-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.9; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}
/* right action rail */
.ip-rail {
  position: absolute; right: 12px; bottom: 90px;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  z-index: 6;
}
.ip-rail-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.ip-rail-ico {
  width: 42px; height: 42px; border-radius: 999px;
  background: rgba(255,255,255,0.16);
  display: grid; place-items: center; font-size: 18px;
}
.ip-rail-item.liked .ip-rail-ico {
  background: linear-gradient(135deg, #FF3B6B, #FF6B5C);
  animation: heart-beat 1.6s ease-in-out infinite;
}
/* caption */
.ip-caption {
  position: absolute; left: 14px; right: 70px; bottom: 84px;
  z-index: 6;
  color: #fff;
}
.ip-caption .user { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; }
.ip-caption .user .av { width: 26px; height: 26px; border-radius: 999px; background: linear-gradient(135deg,#FF77A8,#6CA4FF); border: 1.5px solid #fff; }
.ip-caption .txt { font-size: 11px; margin-top: 7px; line-height: 1.4; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.ip-caption .cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 9px; padding: 6px 12px;
  background: #fff; color: #0c1322;
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
/* floating hearts */
.ip-hearts { position: absolute; inset: 0; pointer-events: none; z-index: 6; }
.ip-hearts .h {
  position: absolute; bottom: 110px; right: 26px;
  color: #FF3B6B; font-size: 20px; opacity: 0;
  animation: heart-rise 4s linear infinite;
  text-shadow: 0 0 8px rgba(255,59,107,0.5);
}
.ip-hearts .h:nth-child(1) { animation-delay: 0s; }
.ip-hearts .h:nth-child(2) { animation-delay: 1.3s; right: 40px; font-size: 15px; }
.ip-hearts .h:nth-child(3) { animation-delay: 2.6s; right: 18px; font-size: 26px; }
/* bottom tab bar */
.ip-tab {
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 0 24px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  font-size: 18px; color: rgba(255,255,255,0.55);
  z-index: 6;
}
.ip-tab .mid {
  width: 36px; height: 24px; border-radius: 7px;
  background: linear-gradient(90deg,#25F4EE,#fff,#FE2C55);
}


/* ===================== COMPARE (modern vs) ===================== */
.compare { padding: 130px 0 120px; background: var(--ink-2); position: relative; }
.compare-head { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.compare-head h2 { margin-top: 14px; }
.compare-head p { color: var(--fg-2); font-size: 18px; margin-top: 16px; }

.compare-board {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-3);
  padding: 34px 36px 30px;
  position: relative;
  overflow: hidden;
}
.compare-board-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 26px;
}
.compare-board-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
}
.compare-board-title span { color: var(--fg-3); font-weight: 400; font-size: 14px; display: block; margin-top: 4px; font-family: var(--font-body); }
.compare-legend { display: flex; gap: 20px; flex-wrap: wrap; }
.compare-leg { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; }
.compare-leg .sw { width: 22px; height: 4px; border-radius: 2px; }
.compare-leg.grow { color: var(--fg); }
.compare-leg.grow .sw { background: var(--brand-bright); }
.compare-leg.flat { color: var(--fg-3); }
.compare-leg.flat .sw { background: var(--fg-4); }

.compare-chart { width: 100%; height: auto; display: block; overflow: visible; }

/* lines */
.cmp-line { fill: none; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.cmp-line.grow { stroke: url(#cmpGrad); }
.cmp-line.flat { stroke: var(--fg-4); stroke-dasharray: 7 7; }
/* draw enhancement (only when motion ok); line stays visible if it doesn't run */
.cmp-line.grow { stroke-dasharray: 1600; stroke-dashoffset: 0; }
@media (prefers-reduced-motion: no-preference) {
  .compare-board.in .cmp-line.grow { animation: cmp-draw 2.4s cubic-bezier(0.2,0.7,0.2,1); }
}
@keyframes cmp-draw { from { stroke-dashoffset: 1600; } to { stroke-dashoffset: 0; } }
/* growth gap fill — visible by default, never gated */
.cmp-gap { opacity: 1; }
.compare-board.in .cmp-gap { animation: cmp-fill 1.4s ease .4s; }
@keyframes cmp-fill { from { opacity: 0; } to { opacity: 1; } }
.cmp-gap-label {
  font-family: var(--font-display); font-weight: 600;
  fill: var(--brand-bright);
}
.cmp-dot { fill: #fff; stroke: var(--brand); stroke-width: 3; }
.cmp-end-grow { fill: var(--brand); }
.cmp-axis { font-family: var(--font-mono); font-size: 12px; fill: var(--fg-4); }

.compare-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--fg-4);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* two outcome cards */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}
@media (max-width: 760px) { .compare-cards { grid-template-columns: 1fr; } }
.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.compare-card.flat { background: var(--ink-3); }
.compare-card.grow {
  background: linear-gradient(160deg, rgba(58,123,240,0.12), transparent 60%);
  border-color: rgba(58,123,240,0.35);
}
.compare-card-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.compare-card.flat .compare-card-tag { color: var(--fg-3); }
.compare-card.grow .compare-card-tag { color: var(--brand-bright); }
.compare-card-tag .ic {
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center; font-size: 14px;
}
.compare-card.flat .ic { background: var(--ink-4); }
.compare-card.grow .ic { background: rgba(58,123,240,0.18); }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.compare-card li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; line-height: 1.45; color: var(--fg-2);
}
.compare-card li::before {
  flex-shrink: 0; margin-top: 1px;
  font-family: var(--font-mono); font-weight: 600;
}
.compare-card.flat li::before { content: "—"; color: var(--fg-4); }
.compare-card.grow li::before { content: "↗"; color: var(--brand-bright); }
.compare-card .big {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.compare-card.grow .big { color: var(--brand-bright); }
.compare-card.flat .big { color: var(--fg-2); }
.compare-card .big-sub { font-size: 13px; color: var(--fg-3); margin-bottom: 20px; }

.compare-cta { text-align: center; margin-top: 40px; }

/* ===================== HAMBURGER MENU ===================== */
/* ======== NAV — Burger + Mobile Drawer ======== */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-burger:hover { background: rgba(255,255,255,0.11); }
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .32s cubic-bezier(0.22,1,0.36,1), opacity .2s ease, width .2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 920px) { .nav-burger { display: flex; } }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 78px 24px 36px;
  background: rgba(5, 7, 14, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-direction: column;
  gap: 0;
  transform: translateY(-110%);
  transition: transform .42s cubic-bezier(0.3, 0.7, 0.2, 1);
}
.nav-mobile.open { transform: translateY(0); }
@media (max-width: 920px) { .nav-mobile { display: flex; } }

.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(196,202,217,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color .2s ease, padding-left .2s ease;
}
.nav-mobile-link::after {
  content: '→';
  font-size: 18px;
  opacity: 0.2;
  transition: opacity .2s, transform .2s;
}
.nav-mobile-link:hover, .nav-mobile-link:active {
  color: var(--fg);
  padding-left: 8px;
}
.nav-mobile-link:hover::after { opacity: 0.6; transform: translateX(5px); }

.nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 18px 28px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: -0.02em;
  box-shadow: 0 0 30px rgba(58,123,240,0.4);
  transition: background .2s, transform .2s;
}
.nav-mobile-cta:hover { background: var(--brand-deep); transform: translateY(-1px); }

/* ===================== SERVICES NEW ===================== */

.svc-new {
  padding: clamp(60px,10vw,120px) 0 0;
  background: var(--ink);
  overflow: hidden;
}
.svc-new .section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(50px,8vw,90px);
}

/* Stage panels */
.svc-stage {
  position: relative;
  padding: clamp(70px,10vw,130px) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.svc-stage-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.svc-bg-num {
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  font-family: var(--font-display);
  font-size: clamp(130px,26vw,300px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.svc-stage-alt .svc-bg-num { right: auto; left: -0.04em; }
.svc-bg-glow { position: absolute; inset: 0; }
.svc-bg-01 { background: linear-gradient(135deg,rgba(255,119,168,0.05) 0%,transparent 55%); }
.svc-bg-02 { background: linear-gradient(225deg,rgba(58,123,240,0.06) 0%,transparent 55%); }
.svc-bg-03 { background: linear-gradient(135deg,rgba(79,195,255,0.05) 0%,transparent 55%); }

.svc-stage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
}

/* Text column */
.svc-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.svc-num-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 4px 10px;
  border-radius: 999px;
}
.svc-cat-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--brand-bright);
  background: rgba(108,164,255,0.08);
  border: 1px solid rgba(108,164,255,0.18);
  padding: 4px 12px;
  border-radius: 999px;
}
.svc-h {
  font-family: var(--font-display);
  font-size: clamp(28px,3.8vw,48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 18px;
}
.svc-p {
  font-size: clamp(14px,1.3vw,16px);
  line-height: 1.7;
  color: var(--fg-2);
  margin-bottom: 26px;
  max-width: 460px;
}
.svc-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 11px;
}
.svc-ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.4;
}
.svc-ul li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(108,164,255,0.09);
  border: 1px solid rgba(108,164,255,0.2);
  border-radius: 50%;
  font-size: 10px;
  color: var(--brand-bright);
  font-weight: 700;
}

/* Visual column */
.svc-vis {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======== SERVICE FRAMES ======== */
.svc-frame {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(8, 10, 18, 0.8);
  border: 1px solid rgba(255,255,255,0.07);
}
/* Gradient top accent line */
.svc-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sfc, rgba(108,164,255,0.5)), transparent);
  border-radius: 1px;
}
/* Radial top glow */
.svc-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 0%, var(--sfc-glow, rgba(108,164,255,0.06)), transparent 60%);
  pointer-events: none;
}

/* Corner marks */
.sfc-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--sfc, rgba(108,164,255,0.4));
  border-style: solid;
  opacity: 0.8;
}
.sfc-corner.c-tl { top: 14px; left: 14px; border-width: 1.5px 0 0 1.5px; border-radius: 3px 0 0 0; }
.sfc-corner.c-tr { top: 14px; right: 14px; border-width: 1.5px 1.5px 0 0; border-radius: 0 3px 0 0; }
.sfc-corner.c-bl { bottom: 14px; left: 14px; border-width: 0 0 1.5px 1.5px; border-radius: 0 0 0 3px; }
.sfc-corner.c-br { bottom: 14px; right: 14px; border-width: 0 1.5px 1.5px 0; border-radius: 0 0 3px 0; }

/* Service-specific accent colors */
.svc-frame-01 {
  --sfc: rgba(255,119,168,0.5);
  --sfc-glow: rgba(255,119,168,0.07);
  box-shadow: 0 0 60px rgba(255,119,168,0.05), 0 28px 64px rgba(0,0,0,0.45);
}
.svc-frame-02 {
  --sfc: rgba(108,164,255,0.5);
  --sfc-glow: rgba(108,164,255,0.07);
  box-shadow: 0 0 60px rgba(108,164,255,0.06), 0 28px 64px rgba(0,0,0,0.45);
}
.svc-frame-03 {
  --sfc: rgba(79,195,255,0.5);
  --sfc-glow: rgba(79,195,255,0.06);
  box-shadow: 0 0 60px rgba(79,195,255,0.05), 0 28px 64px rgba(0,0,0,0.45);
}

@media (max-width: 860px) {
  .svc-frame { padding: 24px 20px; border-radius: 22px; }
}

/* ---- PULSE RADAR ---- */
.pulse-radar {
  position: relative;
  width: min(400px,85vw);
  height: min(400px,85vw);
  flex-shrink: 0;
}
.pr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,119,168,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.pr-r1 { width: 28%; height: 28%; border-color: rgba(255,119,168,0.45); }
.pr-r2 { width: 58%; height: 58%; border-color: rgba(255,119,168,0.22); }
.pr-r3 { width: 90%; height: 90%; border-color: rgba(255,119,168,0.1); }

.pr-sweep {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,transparent 75%,rgba(255,119,168,0.35) 90%,rgba(255,119,168,0.08) 100%);
  animation: pr-sweep-spin 3s linear infinite;
  pointer-events: none;
}
@keyframes pr-sweep-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.pr-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,119,168,0.55),rgba(155,123,255,0.35));
  border: 2px solid rgba(255,119,168,0.55);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow: 0 0 28px rgba(255,119,168,0.35), 0 0 8px rgba(255,119,168,0.5);
  z-index: 2;
}

.pr-bubble {
  position: absolute;
  background: rgba(8,12,24,0.88);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: #fff;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  z-index: 3;
}
.pr-bubble-img {
  width: 28px; height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}
.pr-b1 {
  top: 6%; left: 54%;
  animation: pr-float-a 4.2s ease-in-out infinite;
}
.pr-b2 {
  bottom: 18%; right: -2%;
  animation: pr-float-b 3.8s ease-in-out infinite;
  animation-delay: 1.3s;
}
.pr-b3 {
  top: 50%; left: -2%;
  transform: translateY(-50%);
  animation: pr-float-c 5s ease-in-out infinite;
  animation-delay: 0.6s;
}
@keyframes pr-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes pr-float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes pr-float-c { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 7px))} }

.pr-stat {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  background: rgba(255,119,168,0.07);
  border: 1px solid rgba(255,119,168,0.14);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 3;
}
.pr-s1 { bottom: 6%; left: 8%; }
.pr-s2 { top: 36%; right: 0%; }
.pr-s3 { bottom: 28%; left: 4%; }

.pr-heart {
  position: absolute;
  font-size: 15px;
  color: #FF77A8;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
}
.ph1 { left: 49%; bottom: 47%; animation: pr-heart-rise 2.8s ease-out infinite; }
.ph2 { left: 53%; bottom: 49%; animation: pr-heart-rise 3.4s ease-out infinite; animation-delay: 1.1s; }
.ph3 { left: 46%; bottom: 45%; animation: pr-heart-rise 2.5s ease-out infinite; animation-delay: 0.55s; }
@keyframes pr-heart-rise {
  0%   { opacity:0; transform:translateY(0) scale(0.7); }
  15%  { opacity:1; }
  70%  { opacity:0.5; }
  100% { opacity:0; transform:translateY(-65px) scale(1.2); }
}

/* ---- AD FUNNEL ---- */
.ad-funnel {
  background: rgba(8,12,24,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  width: min(440px,90vw);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.af-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.af-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2DD47A;
  box-shadow: 0 0 8px rgba(45,212,122,0.7);
  animation: af-dot-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes af-dot-pulse {
  0%,100% { opacity:1; box-shadow:0 0 8px rgba(45,212,122,0.65); }
  50%      { opacity:0.45; box-shadow:0 0 3px rgba(45,212,122,0.25); }
}
.af-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.38);
}
.af-stages { padding: 20px 18px; display: grid; gap: 14px; }
.af-row {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 10px;
}
.af-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.38);
  text-align: right;
}
.af-bar {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  overflow: hidden;
}
.af-fill {
  height: 100%;
  width: 0%;
  background: var(--fc, rgba(108,164,255,0.5));
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.af-row-win .af-bar { height: 10px; }
.af-val {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  min-width: 45px;
  text-align: right;
}
.af-val-win { color: #2DD47A; font-weight: 700; font-size: 12px; }
.af-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.af-metric {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.af-metric:last-child { border-right: none; }
.af-m-val {
  font-family: var(--font-display);
  font-size: clamp(17px,2.2vw,21px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.af-m-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
}
.af-m-delta { font-size: 11px; font-weight: 600; }
.af-m-delta.up   { color: #2DD47A; }
.af-m-delta.down { color: #2DD47A; }

/* ---- WEB BUILD ---- */
.web-build {
  width: min(440px,90vw);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wb-browser {
  background: rgba(8,12,24,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.wb-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wb-dot { width: 10px; height: 10px; border-radius: 50%; }
.wb-dot.r { background: #FF5F57; }
.wb-dot.y { background: #FFBD2E; }
.wb-dot.g { background: #28C940; }
.wb-url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 4px 10px;
}
.wb-progress-bar { height: 2px; background: rgba(255,255,255,0.05); overflow: hidden; }
.wb-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,var(--brand),var(--cyan));
}
.wb-screen { min-height: 180px; padding: 16px; position: relative; }
/* skeleton */
.wb-skeleton { display: flex; flex-direction: column; gap: 10px; }
.sk-hero-bar {
  height: 22px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  width: 68%;
  position: relative; overflow: hidden;
}
.sk-hero-bar::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.07),transparent); animation:sk-shimmer 1.6s infinite; }
.sk-row { display:flex; gap:8px; }
.sk-block {
  flex:1; height:62px;
  background:rgba(255,255,255,0.05);
  border-radius:8px;
  position:relative; overflow:hidden;
}
.sk-block::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.07),transparent); animation:sk-shimmer 1.6s infinite; animation-delay:0.2s; }
.sk-line {
  height:12px;
  background:rgba(255,255,255,0.05);
  border-radius:4px;
  width:100%;
  position:relative; overflow:hidden;
}
.sk-line::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.07),transparent); animation:sk-shimmer 1.6s infinite; animation-delay:0.4s; }
.sk-line.short { width:52%; }
@keyframes sk-shimmer {
  from { transform:translateX(-100%); }
  to   { transform:translateX(200%); }
}
/* live site */
.wb-live { display:flex; flex-direction:column; gap:0; }
.wl-nav { height:13px; background:rgba(108,164,255,0.13); border-radius:4px; margin-bottom:18px; }
.wl-hero { display:flex; flex-direction:column; gap:8px; }
.wl-h {
  font-family:var(--font-display);
  font-size:17px; font-weight:700;
  letter-spacing:-0.02em;
  color:var(--fg);
  min-height:22px;
}
.wl-h::after { content:'|'; animation:cur-blink 0.75s step-end infinite; color:var(--brand-bright); }
@keyframes cur-blink { 50%{opacity:0;} }
.wl-sub { font-size:11px; color:rgba(255,255,255,0.38); }
.wl-cta {
  display:inline-flex; align-items:center;
  padding:5px 14px;
  background:var(--brand);
  color:#fff; font-size:11px; font-weight:600;
  border-radius:999px;
  margin-top:6px;
  width:fit-content;
}
/* scores */
.wb-scores { display:flex; gap:10px; justify-content:center; }
.wb-score-item { display:flex; flex-direction:column; align-items:center; gap:4px; position:relative; }
.wb-score-svg { width:56px; height:56px; transform:rotate(-90deg); }
.ws-arc { transition:stroke-dashoffset 1.4s cubic-bezier(0.22,1,0.36,1); }
.ws-num {
  position:absolute;
  top:50%; left:50%; transform:translate(-50%,-54%);
  font-family:var(--font-display);
  font-size:13px; font-weight:700; color:var(--fg);
  pointer-events:none;
}
.ws-lbl { font-family:var(--font-mono); font-size:10px; letter-spacing:0.07em; color:rgba(255,255,255,0.32); }
/* vitals */
.wb-vitals { display:flex; gap:8px; justify-content:center; }
.wv-item {
  display:flex; flex-direction:column; align-items:center; gap:2px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:10px;
  padding:8px 14px;
  flex:1;
}
.wv-val { font-family:var(--font-display); font-size:15px; font-weight:700; letter-spacing:-0.02em; color:#2DD47A; }
.wv-l  { font-family:var(--font-mono); font-size:10px; letter-spacing:0.09em; color:rgba(255,255,255,0.28); }

/* ---- SVC MOBILE ---- */
@media (max-width:920px) {
  .svc-stage-inner {
    grid-template-columns:1fr;
    gap:36px;
  }
  .svc-stage-alt .svc-vis { order:2; }
  .svc-stage-alt .svc-text { order:1; }
  .svc-vis { justify-content:center; }
  .svc-bg-num { font-size:clamp(80px,22vw,160px); }
  .pulse-radar { width:min(340px,84vw); height:min(340px,84vw); }
  .ad-funnel,.web-build { width:min(400px,88vw); }
}
@media (max-width:480px) {
  .svc-stage { padding:52px 0; }
  .svc-h { font-size:clamp(24px,7vw,36px); }
  .pulse-radar { width:min(290px,88vw); height:min(290px,88vw); }
  .pr-b3 { display:none; }
  .pr-s2,.pr-s3 { display:none; }
  .af-row { grid-template-columns:62px 1fr auto; gap:8px; }
  .af-metric { padding:12px 8px; }
  .af-m-val { font-size:16px; }
  .wb-scores { gap:8px; }
  .pr-core { width:42px; height:42px; font-size:10px; }
}

/* ===================== iPHONE 17 PRO MAX + KÉZ ===================== */

/* Scene wrapper — perspective container for 3D tilt */
.ip17-scene {
  position: relative;
  z-index: 3;
  perspective: 1300px;
  perspective-origin: 50% 42%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

/* Ambient background glows */
.ip17-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.ip17-g1 {
  width: 320px; height: 320px;
  background: rgba(108,164,255,0.22);
  top: 5%; left: 50%; transform: translateX(-50%);
  animation: ip17-glow-a 7s ease-in-out infinite;
}
.ip17-g2 {
  width: 240px; height: 240px;
  background: rgba(255,119,168,0.2);
  bottom: 12%; left: 32%;
  animation: ip17-glow-b 8s ease-in-out infinite;
  animation-delay: 3.5s;
}
.ip17-g3 {
  width: 180px; height: 180px;
  background: rgba(79,195,255,0.14);
  top: 30%; right: 20%;
  animation: ip17-glow-b 9s ease-in-out infinite;
  animation-delay: 1.5s;
}
@keyframes ip17-glow-a {
  0%,100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}
@keyframes ip17-glow-b {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.28); }
}

/* Parallax tilt layer */
.ip17-tilt {
  position: relative;
  z-index: 2;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}

/* Bob floating animation layer */
.ip17-bob {
  display: inline-flex;
  position: relative;
  animation: ip17-bob-anim 8s ease-in-out infinite;
  transform-origin: 50% 65%;
}
@keyframes ip17-bob-anim {
  0%,100% { transform: rotate(-7deg) translateY(0px); }
  28%     { transform: rotate(-6.4deg) translateY(-15px); }
  60%     { transform: rotate(-7.6deg) translateY(-7px); }
}

/* ---- iPHONE 17 PRO MAX FRAME ---- */
.iphone17 {
  position: relative;
  width: 334px;
  height: 714px;
  border-radius: 62px;
  padding: 5.5px;
  /* Black Titanium: very dark with subtle metallic variation */
  background: linear-gradient(160deg,
    #52575f 0%, #2e323a 5%,
    #1e2228 14%, #161a1f 28%,
    #1b1e25 45%, #24282f 62%,
    #191c21 76%, #2a2e36 88%,
    #1c1f25 100%
  );
  box-shadow:
    0 90px 130px -25px rgba(0,0,0,0.95),
    0 30px 65px -10px rgba(0,0,0,0.65),
    0  8px 24px -4px rgba(0,0,0,0.8),
    0 0 0 1px rgba(0,0,0,0.92),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    inset 1px 0 0 rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.16);
}
/* Titanium specular ring */
.iphone17::before {
  content: "";
  position: absolute; inset: 1.5px;
  border-radius: 60px;
  padding: 1.5px;
  background: linear-gradient(155deg,
    rgba(255,255,255,0.4)  0%,
    rgba(255,255,255,0.06) 13%,
    transparent 36%,
    transparent 67%,
    rgba(255,255,255,0.08) 84%,
    rgba(255,255,255,0.3)  100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 12;
}
/* Bottom inner shadow (depth illusion) */
.iphone17::after {
  content: "";
  position: absolute; inset: 5.5px;
  border-radius: 57px;
  box-shadow: inset 0 -28px 40px rgba(0,0,0,0.55), inset 0 28px 30px rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 11;
}

/* ---- HARDWARE BUTTONS ---- */
.ip17-btn {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(160deg, #2c3038, #0d0e12);
  box-shadow:
    inset 0 1px rgba(255,255,255,0.11),
    inset 0 -1px rgba(0,0,0,0.7);
}
/* Action button (left top) */
.ip17-action  { left: -4.5px; top: 106px; width: 4.5px; height: 36px; border-radius: 3px 0 0 3px; }
/* Volume up/down */
.ip17-vol-up  { left: -4.5px; top: 160px; width: 4.5px; height: 60px; border-radius: 3px 0 0 3px; }
.ip17-vol-dn  { left: -4.5px; top: 232px; width: 4.5px; height: 60px; border-radius: 3px 0 0 3px; }
/* Power */
.ip17-power   { right: -4.5px; top: 185px; width: 4.5px; height: 92px; border-radius: 0 3px 3px 0; }
/* Camera Control (new in iPhone 16/17 — capacitive, elongated, on right below power) */
.ip17-camctrl {
  right: -4.5px; top: 298px; width: 4.5px; height: 52px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(160deg, #363b44, #0c0e12);
  animation: ip17-cam-shimmer 5s ease-in-out infinite;
}
@keyframes ip17-cam-shimmer {
  0%,100% { box-shadow: inset 0 1px rgba(255,255,255,0.1); }
  50% { box-shadow: inset 0 1px rgba(255,255,255,0.38), 2px 0 10px rgba(108,164,255,0.4); }
}

/* USB-C at bottom */
.ip17-usbc {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 11px;
  border-radius: 6px;
  background: linear-gradient(180deg, #07090c, #181b21);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.9), 0 1px rgba(255,255,255,0.05);
}
.ip17-usbc::after {
  content: "";
  position: absolute;
  top: 2.5px; left: 5px; right: 5px; bottom: 2.5px;
  border-radius: 3px;
  background: rgba(0,0,0,0.75);
  border: 0.5px solid rgba(255,255,255,0.04);
}

/* ---- SCREEN ---- */
.iphone17 .iphone-screen {
  border-radius: 57px;
}
/* Screen glare sweep */
.ip17-glare {
  position: absolute; inset: 0;
  border-radius: 57px;
  background: linear-gradient(
    118deg,
    transparent 15%,
    rgba(255,255,255,0.025) 35%,
    rgba(255,255,255,0.09)  44%,
    rgba(255,255,255,0.025) 53%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 22;
  animation: ip17-glare-sweep 10s ease-in-out infinite;
}
@keyframes ip17-glare-sweep {
  0%   { opacity: 0; transform: translateX(-100px) skewX(-8deg); }
  8%   { opacity: 1; }
  52%  { opacity: 0.75; transform: translateX(0px) skewX(-8deg); }
  72%  { opacity: 0; transform: translateX(80px) skewX(-8deg); }
  100% { opacity: 0; transform: translateX(-100px) skewX(-8deg); }
}

/* ---- HAND CSS REMOVED (kéz eltávolítva) ---- */

/* ---- FLOATING NOTIFICATION BADGES ---- */
.ip17-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(5,8,18,0.88);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 9px 16px 9px 11px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: #fff;
  white-space: nowrap;
  box-shadow:
    0 10px 32px rgba(0,0,0,0.48),
    0 0 0 0.5px rgba(255,255,255,0.06);
  opacity: 0;
  z-index: 14;
  pointer-events: none;
}
.ib-ico { font-size: 18px; flex-shrink: 0; }
.ib1 { top: 13%; right: -10%;   animation: ip17-badge-pop 7.5s ease-in-out infinite; }
.ib2 { top: 50%; right: -14%;   animation: ip17-badge-pop 7.5s ease-in-out infinite; animation-delay: 2.5s; }
.ib3 { bottom: 25%; left: -13%; animation: ip17-badge-pop 7.5s ease-in-out infinite; animation-delay: 5s; }
@keyframes ip17-badge-pop {
  0%   { opacity: 0; transform: translateY(10px) scale(0.92); }
  12%  { opacity: 1; transform: translateY(0) scale(1); }
  70%  { opacity: 1; transform: translateY(0); }
  88%  { opacity: 0; transform: translateY(-7px) scale(0.96); }
  100% { opacity: 0; }
}

/* ---- PNG PHONE MOCKUP ---- */
.phone-mockup-wrap {
  position: relative;
  width: 320px;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup-img {
  width: 320px;
  height: auto;
  position: relative;
  z-index: 4;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.7)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
/* Screen content sits behind the PNG frame */
.phone-screen-layer {
  position: absolute;
  top: 2%; left: 3.1%; right: 3.1%; bottom: 1.6%;
  z-index: 2;
  border-radius: 33px;
  overflow: hidden;
  background: #000;
}
.phone-screen-layer .iphone-screen {
  position: static;
  width: 100%; height: 100%;
  border-radius: 0;
}
.phone-screen-layer .ip17-glare { border-radius: 33px; }

/* ---- MODERN SHOWCASE DATA CARDS ---- */
.sc-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.sc-card {
  position: absolute;
  min-width: 172px;
  background: rgba(5,7,16,0.75);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 16px 18px 14px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.5),
    0 0 0 0.5px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: auto;
}
/* Accent top edge */
.sc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc, rgba(108,164,255,0.7)), transparent);
  border-radius: 1px;
}
/* Connector dot toward phone */
.sc-left::after {
  content: "";
  position: absolute;
  right: -4px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--acc, var(--brand-bright));
  box-shadow: 0 0 10px var(--acc, var(--brand-bright)), 0 0 4px var(--acc, var(--brand-bright));
}
.sc-right::after {
  content: "";
  position: absolute;
  left: -4px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--acc, var(--brand-bright));
  box-shadow: 0 0 10px var(--acc, var(--brand-bright)), 0 0 4px var(--acc, var(--brand-bright));
}

/* Reveal */
.showcase-stage.in .sc-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.showcase-stage.in .sc-c1 { transition-delay: 0.18s; }
.showcase-stage.in .sc-c2 { transition-delay: 0.32s; }
.showcase-stage.in .sc-c3 { transition-delay: 0.46s; }
.showcase-stage.in .sc-c4 { transition-delay: 0.26s; }
.showcase-stage.in .sc-c5 { transition-delay: 0.40s; }

/* Tag */
.sc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--acc, var(--brand-bright));
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 7px;
}
.sc-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--acc, var(--brand-bright));
  box-shadow: 0 0 6px var(--acc, var(--brand-bright));
  animation: sc-pulse 2s ease-in-out infinite;
}
@keyframes sc-pulse { 0%,100%{opacity:1} 50%{opacity:0.38} }

/* Main number */
.sc-main {
  font-family: var(--font-display);
  font-size: clamp(22px,2.4vw,28px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.sc-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
  line-height: 1.4;
}
/* Progress bar */
.sc-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
  margin: 8px 0 4px;
}
.sc-bar {
  height: 100%;
  width: 0%;
  background: var(--acc, var(--brand-bright));
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 0 8px var(--acc, var(--brand-bright));
}
.showcase-stage.in .sc-bar { width: var(--bw, 60%); }

/* Inline detail row */
.sc-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
/* Pill badge */
.sc-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
}
.sc-pill.green {
  background: rgba(45,212,122,0.12);
  border: 1px solid rgba(45,212,122,0.25);
  color: #2DD47A;
}
.sc-pill.blue {
  background: rgba(108,164,255,0.1);
  border: 1px solid rgba(108,164,255,0.22);
  color: var(--brand-bright);
}
.sc-amount {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #2DD47A;
  letter-spacing: -0.02em;
}

/* Card positions */
.sc-c1 { top: 7%;  left: 2%;  --acc: #2DD47A; }
.sc-c2 { top: 34%; left: 0%;  --acc: var(--brand-bright); }
.sc-c3 { bottom: 18%; left: 2%; --acc: #FF77A8; }
.sc-c4 { top: 14%; right: 1%; --acc: var(--brand-bright); }
.sc-c5 { bottom: 24%; right: 0%; --acc: #9B7BFF; }

/* ---- MOBILE OVERRIDES for iPhone 17 scene ---- */
@media (max-width: 1040px) {
  .ip17-badge { display: none; }
  .sc-cards { display: none; }
}
@media (max-width: 768px) {
  .phone-mockup-wrap { width: 260px; min-height: 540px; }
  .phone-mockup-img { width: 260px; }
  .phone-screen-layer { border-radius: 26px; }
  .phone-screen-layer .ip17-glare { border-radius: 26px; }
  .ip17-g1 { width: 200px; height: 200px; }
  .ip17-g2 { width: 150px; height: 150px; }
}

/* ===================== STAT CARD STAGGER ===================== */
/* Cards start hidden; JS adds .stat-animated after animate-in so hover still works */
.stats-grid .stat-card:not(.stat-animated) {
  opacity: 0;
  transform: translateY(28px);
}

/* ===================== MOBILE OVERRIDES (improved) ===================== */
@media (max-width: 768px) {

  /* --- HERO (3D canvas, csak tagek) --- */
  .hero { padding-top: 80px; padding-bottom: 0; }
  .hero-eyebrow-row { margin-bottom: 14px; flex-direction: column; align-items: flex-start; gap: 8px; }

  /* --- HERO COPY (szöveg a 3D alatt) --- */
  .hero-copy { padding: 44px 0 52px; }
  .hero-copy::before { height: 60px; top: -60px; }
  .hero-title { font-size: clamp(32px, 11vw, 58px); max-width: 100%; }
  .hero-title-line { display: block; }
  .hero-body { font-size: 15px; }
  .hero-row-2 { margin-top: 28px; gap: 24px; grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 22px; }
  .hero-ctas .btn { justify-content: center; text-align: center; width: 100%; }

  /* stats card kompakt */
  .hero-stats-card {
    grid-template-columns: repeat(3, 1fr);
    border-radius: var(--radius);
  }
  .hero-stat { padding: 14px 8px; }
  .hero-stat-num { font-size: clamp(18px, 5.5vw, 26px); }
  .hero-stat-label { font-size: 8px; letter-spacing: 0.06em; margin-top: 6px; }

  /* --- TICKER --- */
  .ticker { padding: 16px 0; }
  .ticker-item { font-size: 18px; }
  .ticker-track { gap: 40px; }

  /* --- SHOWCASE (iPhone) --- */
  .showcase { padding: 80px 0 70px; }
  .showcase-head h2 { font-size: clamp(26px, 7vw, 40px); }
  .showcase-head p { font-size: 15px; }
  .iphone {
    width: 240px;
    height: 508px;
    border-radius: 46px;
  }
  .dyn-island { width: 96px; height: 28px; }
  .hand-thumb { display: none; }

  /* --- COMPARE --- */
  .compare { padding: 80px 0; }
  .compare-head h2 { font-size: clamp(26px, 7vw, 42px); }
  .compare-head p { font-size: 15px; }
  .compare-board { padding: 22px 18px 20px; }
  .compare-board-title { font-size: 16px; }
  .compare-board-title span { font-size: 12px; }
  .compare-chart { overflow: visible; }
  .compare-card { padding: 22px 18px; }
  .compare-card .big { font-size: clamp(22px, 6vw, 32px); }
  .compare-card-tag { font-size: 10px; }

  /* --- DIFFERENT / STATS --- */
  .different { padding: 80px 0; }
  .different-row { gap: 18px; margin-bottom: 36px; }
  .different-row h2 { font-size: clamp(28px, 8vw, 48px); }
  .different-row p { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 18px 14px; gap: 8px; border-radius: var(--radius); }
  .stat-card-num { font-size: clamp(28px, 8vw, 42px); }
  .stat-card.feature { grid-column: span 2; }
  .stat-card-desc { font-size: 12px; }

  /* flip cards */
  .flip-grid { gap: 14px; }
  .flip { min-height: 300px; }
  .flip-front h3 { font-size: 22px; }
  .flip-back-stat { font-size: clamp(32px, 8vw, 50px); }

  /* --- SERVICES --- */
  .services { padding: 80px 0; }
  .service { padding: 44px 0; gap: 28px; }
  .service h3 { font-size: clamp(26px, 7vw, 40px); }
  .service-desc { font-size: 15px; }
  .service-points li { font-size: 14px; }
  .service-visual { aspect-ratio: 4/3; border-radius: var(--radius-lg); }
  .diag-organic, .diag-ads, .diag-web { width: 92%; }

  /* --- LOGOS / PROCESS --- */
  .logos { padding: 60px 0; }
  .logo-item.proc { height: 68px; font-size: 16px; padding: 0 20px; }
  .logo-item.proc .proc-sub { font-size: 11px; }
  .logo-item.phrase { font-size: 16px; height: 48px; padding: 0 18px; }

  /* --- VALUES --- */
  .values { padding: 80px 0; }
  .values-display { font-size: clamp(36px, 12vw, 72px); }
  .value-item { padding: 32px 22px; min-height: auto; gap: 16px; }
  .value-letter { font-size: 72px; }
  .value-name { font-size: 20px; }
  .value-text { font-size: 14px; }

  /* --- LOCATIONS --- */
  .locations { padding: 60px 0; }
  .locations-row { gap: 16px; margin-bottom: 22px; }
  .locations-flags { font-size: 18px; gap: 14px; }

  /* --- TESTIMONIALS --- */
  .testimonials { padding: 80px 0; }
  .test-grid { gap: 14px; }
  .test-card { padding: 26px 20px; border-radius: var(--radius-lg); }
  .test-text { font-size: 16px; }

  /* --- FAQ --- */
  .faq { padding: 80px 0; }
  .faq-tabs { gap: 6px; }
  .faq-tab { padding: 10px 14px; font-size: 13px; }
  .faq-q { font-size: 16px; padding: 18px 14px; gap: 16px; }
  .faq-sign { width: 28px; height: 28px; font-size: 18px; }
  .faq-a { padding: 0 14px 20px; font-size: 14px; }

  /* --- CLOSER CTA --- */
  .closer { padding: 80px 0; }
  .closer h2 { font-size: clamp(32px, 10vw, 64px); }
  .closer-sub { font-size: 15px; }
  .closer-ctas { flex-direction: column; align-items: stretch; }
  .closer-ctas .btn { justify-content: center; }

  /* --- FOOTER --- */
  .foot { padding: 50px 0 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .foot-brand-stack { max-width: none; }
  .foot h5 { margin-bottom: 12px; }
  .foot-col ul { gap: 8px; }
  .foot-col a { font-size: 14px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .foot-badges { justify-content: center; }

  /* --- SECTION HEADS --- */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 42px); }
  .section-head p { font-size: 15px; }
  .h-section { font-size: clamp(26px, 7vw, 48px); }

  /* --- EYEBROW --- */
  .eyebrow { font-size: 11px; letter-spacing: 0.14em; }
}

@media (max-width: 480px) {
  .hero-stats-card { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-num { font-size: clamp(16px, 5vw, 22px); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card.feature { grid-column: span 1; }
  .flip-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(28px, 9.5vw, 42px); }
  .hero-stat-num { font-size: 15px; }
  .hero-stat-label { font-size: 7px; }
  .nav-brand { font-size: 15px; }
  .nav-brand-mark { width: 30px; height: 30px; }
}

/* ============================================================
   SVC MEDIA — real image/video replacing animated frames
   ============================================================ */
.svc-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
}

.svc-media-01 { box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,119,168,0.15), 0 0 60px rgba(255,119,168,0.05); }
.svc-media-01 .svc-media-img { object-position: center 58%; }
.svc-media-02 { box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(108,164,255,0.15), 0 0 60px rgba(108,164,255,0.06); }
.svc-media-03 { box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,195,255,0.15), 0 0 60px rgba(79,195,255,0.05); }

.svc-media-img,
.svc-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
  max-height: 480px;
}

.svc-media-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(8,10,18,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}

.svc-media-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2DD47A;
  flex-shrink: 0;
  animation: svc-dot-pulse 1.8s ease-in-out infinite;
}
.svc-media-dot.blue { background: var(--brand-bright); }
.svc-media-dot.cyan { background: #4FC3FF; }

@keyframes svc-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.65); }
}

@media (max-width: 860px) {
  .svc-media-img, .svc-media-video { min-height: 220px; max-height: 320px; }
}

/* ============================================================
   PHONE SHOWCASE
   ============================================================ */
.pshowcase { padding: 100px 0 80px; }

.pshowcase-head { text-align: center; margin-bottom: 60px; }
.pshowcase-head .h-section { margin-top: 10px; }

.pshowcase-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

/* Phone */
.pshowcase-phone-wrap {
  position: relative;
  width: clamp(200px, 22vw, 280px);
  flex-shrink: 0;
}

.pshowcase-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.pshowcase-g1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(108,164,255,0.18), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.pshowcase-g2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,119,168,0.12), transparent 70%);
  bottom: 10%; right: -20%;
}

/* Phone keret: sötét háttér kell a multiply blend-hez */
.pshowcase-phone-wrap {
  background: var(--ink, #080A12);
  overflow: hidden;
}

/* Telefon PNG — multiply kimetzi a fehér hátteret */
.pshowcase-phone-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}

/* ============================================================
   TIKTOK KÉPERNYŐ
   ============================================================ */
.tt-screen {
  position: absolute;
  top: 11%;
  left: 25%;
  right: 25%;
  bottom: 6%;
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

/* Animált videó háttér */
.tt-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d0221 0%, #1a0a3a 35%, #0a1a3a 65%, #1a0d0a 100%);
  overflow: hidden;
}

.tt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: tt-blob-move 6s ease-in-out infinite alternate;
}
.tt-blob-1 {
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(255,60,120,0.55), transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}
.tt-blob-2 {
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(50,100,255,0.5), transparent 70%);
  bottom: 15%; right: -5%;
  animation-delay: -2s;
}
.tt-blob-3 {
  width: 40%; height: 40%;
  background: radial-gradient(circle, rgba(100,255,200,0.3), transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -4s;
}
@keyframes tt-blob-move {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.2) translate(8%, 8%); }
}

/* Középső nagy szám a "videóban" */
.tt-vid-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  text-align: center;
  z-index: 1;
}
.tt-big-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 0 40px rgba(255,100,150,0.8), 0 2px 16px rgba(0,0,0,0.8);
  line-height: 1;
}
.tt-big-label {
  font-size: clamp(8px, 1.5vw, 13px);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.tt-hashtags {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.tt-hashtags span {
  font-size: clamp(6px, 1.2vw, 10px);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2px 7px;
}

/* TikTok UI overlay (topbar, side, bottom, nav) */
.tt-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

/* Felső sáv */
.tt-topbar {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 3vw, 18px);
  padding: clamp(6px, 2vw, 12px) 0 4px;
  font-size: clamp(7px, 1.4vw, 11px);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.tt-tb-act {
  color: #fff;
  border-bottom: 1.5px solid #fff;
  padding-bottom: 1px;
}

/* Jobb oldali akció gombok */
.tt-side {
  position: absolute;
  right: clamp(4px, 1.5vw, 8px);
  bottom: clamp(60px, 12%, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2.5vw, 18px);
}
.tt-side-ava-wrap { position: relative; }
.tt-side-ava {
  width: clamp(24px, 5vw, 36px);
  height: clamp(24px, 5vw, 36px);
  border-radius: 50%;
  background: linear-gradient(135deg, #FF77A8, #9B7BFF);
  border: 1.5px solid #fff;
}
.tt-side-plus {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(10px, 2vw, 14px);
  height: clamp(10px, 2vw, 14px);
  border-radius: 50%;
  background: #FF3B5C;
  color: #fff;
  font-size: clamp(7px, 1.3vw, 10px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tt-side-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: clamp(5px, 1vw, 8px);
  color: rgba(255,255,255,0.75);
}
.tt-side-ico {
  font-size: clamp(14px, 3vw, 22px);
  line-height: 1;
}
.tt-heart { color: #FF4D6A; }
.tt-vinyl {
  width: clamp(18px, 3.5vw, 26px);
  height: clamp(18px, 3.5vw, 26px);
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #111);
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
  animation: tt-spin 3s linear infinite;
}
.tt-vinyl::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: #222;
  border: 1px solid rgba(255,255,255,0.15);
}
@keyframes tt-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Alap info */
.tt-bottom {
  position: absolute;
  bottom: clamp(42px, 9%, 70px);
  left: clamp(6px, 2vw, 10px);
  right: clamp(44px, 10vw, 60px);
}
.tt-uname {
  font-size: clamp(8px, 1.6vw, 12px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.tt-cap {
  font-size: clamp(6px, 1.3vw, 10px);
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin-bottom: 5px;
}
.tt-music-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(6px, 1.1vw, 9px);
  color: rgba(255,255,255,0.7);
  overflow: hidden;
}
.tt-music-note { flex-shrink: 0; }
.tt-music-name {
  white-space: nowrap;
  animation: tt-scroll 8s linear infinite;
}
@keyframes tt-scroll {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-40%); }
  100% { transform: translateX(0); }
}

/* Navigáció */
.tt-nav {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: clamp(36px, 7%, 52px);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.tt-nv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: clamp(5px, 1vw, 8px);
  color: rgba(255,255,255,0.5);
  min-width: 0;
}
.tt-nv-active { color: #fff; }
.tt-nv-ico {
  font-size: clamp(10px, 2vw, 15px);
  line-height: 1;
}
.tt-nv-plus {
  width: clamp(22px, 4.5vw, 32px);
  height: clamp(14px, 3vw, 20px);
  background: linear-gradient(90deg, #69C9D0, #EE1D52);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(10px, 2vw, 16px);
  font-weight: 700;
  color: #fff;
}

.psh-reel {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.psh-reel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1a3a 40%, #1a0d2e 100%);
}
.psh-reel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,100,150,0.25), transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(80,120,255,0.2), transparent 60%);
}

.psh-play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-60%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.psh-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
}

.psh-overlay {
  position: relative;
  z-index: 2;
  padding: 10px 8px 6px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.psh-user {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.psh-av {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF77A8, #9B7BFF);
  display: inline-block;
  flex-shrink: 0;
}

.psh-caption {
  font-size: 8px;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  margin-bottom: 4px;
}

.psh-cta-btn {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 7px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.psh-rail {
  position: absolute;
  right: 6px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  text-align: center;
}

.psh-rail-item {
  font-size: 7px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  line-height: 1.4;
}

.psh-rail-item.liked { color: #FF4D6A; }

/* Annotation cards */
.psc-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.psc-card {
  background: rgba(12, 16, 30, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
}

.psc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,164,255,0.3), transparent);
}

.psc-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.psc-main {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.psc-main-sm { font-size: clamp(16px, 1.8vw, 22px); }

.psc-sub {
  font-size: 11px;
  color: var(--fg-3);
}

.psc-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin: 8px 0 6px;
  overflow: hidden;
}

.psc-bar {
  height: 100%;
  width: var(--pw, 50%);
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  border-radius: 2px;
}

.psc-card-live { border-color: rgba(45,212,122,0.2); }
.psc-card-live::before { background: linear-gradient(90deg, transparent, rgba(45,212,122,0.3), transparent); }

.psc-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2DD47A;
  position: absolute;
  top: 14px; right: 14px;
  animation: svc-dot-pulse 1.8s ease-in-out infinite;
}

.psc-amount {
  font-size: 18px;
  font-weight: 700;
  color: #2DD47A;
  margin-top: 2px;
}

.psc-pill-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.psc-pill {
  background: rgba(108,164,255,0.12);
  border: 1px solid rgba(108,164,255,0.25);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--brand-bright);
}

@media (max-width: 900px) {
  .pshowcase { padding: 72px 0 56px; }
  .pshowcase-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .pshowcase-phone-wrap {
    grid-column: 1 / -1;
    margin: 0 auto;
    width: clamp(180px, 45vw, 260px);
    order: -1;
  }
  .psc-col { gap: 12px; }
}

@media (max-width: 540px) {
  .pshowcase-stage { grid-template-columns: 1fr; }
  .pshowcase-phone-wrap { grid-column: 1; }
}

/* ============================================================
   CERT BADGES — footer
   ============================================================ */
.foot-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid;
}

.cert-gdpr {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.35);
}

.cert-aes {
  background: rgba(184,134,11,0.1);
  border-color: rgba(184,134,11,0.3);
}

.cert-badge-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(37,99,235,0.8);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-badge-icon svg { width: 14px; height: 14px; }

.cert-badge-icon-aes {
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.4);
}

.cert-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.cert-badge-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--fg);
}

.cert-badge-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin-top: 2px;
}

.cert-status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #2DD47A;
  font-weight: 600;
  margin-left: 4px;
}

.cert-live-dot-sm {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2DD47A;
  flex-shrink: 0;
  animation: svc-dot-pulse 1.8s ease-in-out infinite;
}

@media (max-width: 600px) {
  .foot-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cert-status-row { display: none; }
}

/* ============================================================
   STORY — A történetünk
   ============================================================ */
.story { padding: 100px 0; }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-col { position: relative; }

.story-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
}

.story-img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.story-badge-ico { font-size: 15px; }

.story-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-text-col .h-section {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.18;
}

.story-text-col p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--fg-2);
  margin: 0;
}

.story-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.story-cta-note {
  font-size: 13px;
  color: var(--fg-3);
}

@media (max-width: 860px) {
  .story { padding: 72px 0; }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-img-frame { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .story { padding: 56px 0; }
  .story-text-col p { font-size: 15px; }
}
