/* ============================================================
   ECOMORA — main stylesheet
   ============================================================ */
:root {
  --ink: #0e1116;
  --ink-soft: #4b5563;
  --bg: #ffffff;
  --bg-gray: #f6f7f9;
  --line: #e7e9ee;
  --accent: #3d5afe;
  --accent-dark: #2a41d8;
  --accent-soft: #eef1ff;
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 10px 40px rgba(14, 17, 22, .08);
  --shadow-lg: 0 24px 64px rgba(14, 17, 22, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

/* lucide icons */
[data-lucide], .lucide { width: 20px; height: 20px; stroke-width: 2; flex-shrink: 0; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(61, 90, 254, .3); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #232a35; }
.btn--white { background: #fff; color: var(--ink); box-shadow: 0 8px 24px rgba(0, 0, 0, .15); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--ink); }
.btn--ghost { background: var(--bg-gray); color: var(--ink); }
.btn--ghost:hover { background: var(--line); }
.btn--ghost-light { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .25); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .2); }

/* ============ EYEBROW / SECTION HEAD ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent); background: var(--accent-soft);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.eyebrow [data-lucide] { width: 15px; height: 15px; }
.eyebrow--light { color: #fff; background: rgba(255, 255, 255, .12); }
.section { padding: 110px 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--ink); color: #fff; }
.section__head { max-width: 640px; margin-bottom: 64px; }
.section__head--light h2 { color: #fff; }

/* ============ HEADER ============ */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(255, 255, 255, .85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.header.is-scrolled { border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark { width: 36px; height: 36px; }
.logo__text { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: .02em; }
.logo__dot { color: var(--accent); }
.nav { display: flex; gap: 30px; }
.nav a { font-weight: 500; font-size: .92rem; color: var(--ink-soft); transition: color .2s; }
.nav a:hover { color: var(--ink); }
.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; font-family: var(--font-display); }
.header__phone [data-lucide] { width: 16px; height: 16px; color: var(--accent); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ============ HERO ============ */
.hero { position: relative; padding: 170px 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .5;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; }
.hero__glow--1 { width: 480px; height: 480px; background: #c7d2fe; top: -160px; right: -80px; animation: drift 12s ease-in-out infinite alternate; }
.hero__glow--2 { width: 360px; height: 360px; background: #dbeafe; bottom: -120px; left: -100px; animation: drift 14s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(40px, 30px); } }

.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero__title { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 700; margin-bottom: 24px; }
.hero__title .serif { font-size: 1.04em; }
.hero__swap { display: inline-block; overflow: hidden; height: 1.12em; vertical-align: bottom; color: var(--accent); }
.hero__swap-track { display: flex; flex-direction: column; transition: transform .6s cubic-bezier(.65, 0, .35, 1); }
.hero__swap-track span { height: 1.12em; line-height: 1.12; }
.hero__sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 42px; }
.hero__trust-item strong { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
.hero__trust-item span { font-size: .85rem; color: var(--ink-soft); }

/* --- orbit animation --- */
.hero__visual { display: flex; justify-content: center; }
.orbit { position: relative; width: 440px; height: 440px; }
.orbit__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 20px 26px; box-shadow: var(--shadow-lg); z-index: 3;
}
.orbit__center svg { width: 44px; height: 44px; }
.orbit__center span { font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .08em; }
.orbit__ring { position: absolute; top: 50%; left: 50%; border: 1.5px dashed var(--line); border-radius: 50%; }
.orbit__ring--1 { width: 270px; height: 270px; margin: -135px 0 0 -135px; animation: spin 26s linear infinite; }
.orbit__ring--2 { width: 420px; height: 420px; margin: -210px 0 0 -210px; animation: spin 42s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit__chip {
  position: absolute; top: 50%; left: 50%;
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  box-shadow: var(--shadow); white-space: nowrap;
  transform: rotate(var(--angle)) translateX(calc(var(--ring-r, 135px))) rotate(calc(-1 * var(--angle)));
}
.orbit__ring--1 .orbit__chip { --ring-r: 135px; animation: counter-spin-1 26s linear infinite; }
.orbit__ring--2 .orbit__chip { --ring-r: 210px; animation: counter-spin-2 42s linear infinite; }
@keyframes counter-spin-1 { from { transform: rotate(var(--angle)) translateX(135px) rotate(calc(-1 * var(--angle))); } to { transform: rotate(var(--angle)) translateX(135px) rotate(calc(-1 * var(--angle) - 360deg)); } }
@keyframes counter-spin-2 { from { transform: rotate(var(--angle)) translateX(210px) rotate(calc(-1 * var(--angle))); } to { transform: rotate(var(--angle)) translateX(210px) rotate(calc(-1 * var(--angle) + 360deg)); } }
.orbit__chip [data-lucide] { width: 15px; height: 15px; color: var(--accent); }
.orbit__card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
.orbit__card b { font-family: var(--font-display); font-size: 1rem; display: block; line-height: 1.2; }
.orbit__card span { font-size: .72rem; color: var(--ink-soft); }
.orbit__card [data-lucide] { color: var(--accent); width: 24px; height: 24px; }
.orbit__card--sales { top: 14px; right: -10px; }
.orbit__card--orders { bottom: 22px; left: -22px; animation-delay: 2.2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============ TICKER ============ */
.ticker { border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: var(--bg); }
.ticker__track { display: flex; align-items: center; gap: 36px; width: max-content; animation: ticker 28s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink-soft); white-space: nowrap; }
.ticker__track [data-lucide] { width: 14px; height: 14px; color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ AUDIENCE ============ */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience__card {
  background: var(--bg-gray); border-radius: var(--radius); padding: 36px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.audience__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.audience__card--accent { background: var(--accent-soft); }
.audience__icon {
  width: 52px; height: 52px; border-radius: 14px; background: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.audience__icon [data-lucide] { width: 24px; height: 24px; color: var(--accent); }
.audience__card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.audience__tag {
  align-self: flex-start; font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  background: #fff; border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px;
}

/* ============ BENTO ============ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento__cell {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bento__cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento__cell--wide { grid-column: span 2; }
.bento__cell--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.bento__cell--dark p { color: #b9c0cc; }
.bento__cell--dark .bento__icon { color: #8da2ff; }
.bento__icon { width: 28px; height: 28px; color: var(--accent); }
.bento__cell p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.bento__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bento__chips span {
  font-family: var(--font-display); font-weight: 600; font-size: .76rem;
  background: var(--bg-gray); padding: 5px 13px; border-radius: 999px;
}
.bento__cell .btn { align-self: flex-start; }

/* ============ PLATFORMS ============ */
.platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.platform {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.platform:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.platform img {
  width: 44px; height: 44px; object-fit: contain; margin-bottom: 12px;
  filter: grayscale(1) opacity(.55); transition: filter .35s ease;
}
.platform:hover img { filter: none; }
.platform b { font-family: var(--font-display); font-size: 1.05rem; }
.platform span { font-size: .82rem; color: var(--ink-soft); }
.platforms__note { text-align: center; margin-top: 40px; color: var(--ink-soft); font-size: .95rem; }
.link-btn {
  color: var(--accent); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px; transition: color .2s;
}
.link-btn:hover { color: var(--accent-dark); }

/* ============ PREP ============ */
.prep__main { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; margin-bottom: 28px; }
.prep__visual { position: relative; }
.prep__map {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(circle at 64% 33%, rgba(61, 90, 254, .12), transparent 38%),
    radial-gradient(circle at 38% 66%, rgba(61, 90, 254, .09), transparent 34%),
    linear-gradient(165deg, #fdfdfe, #eef1f7);
  box-shadow: var(--shadow);
}
.prep__map::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(#cfd6e2 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 45%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 45%, #000 40%, transparent 100%);
}
.prep__map-route { position: absolute; inset: 0; width: 100%; height: 100%; }
.prep__map-route path {
  stroke: var(--accent); stroke-width: .8; stroke-linecap: round;
  stroke-dasharray: 3 3; opacity: .65;
  animation: route-dash 1.6s linear infinite;
}
@keyframes route-dash { to { stroke-dashoffset: -6; } }
.prep__pin { position: absolute; width: 0; height: 0; }
.prep__pin--warsaw { top: 33%; left: 64%; }
.prep__pin--lodz { top: 66%; left: 38%; }
.prep__pin-dot {
  position: absolute; top: -7px; left: -7px; width: 14px; height: 14px;
  background: var(--accent); border: 3px solid #fff; border-radius: 50%;
  box-shadow: 0 4px 12px rgba(61, 90, 254, .45); z-index: 2;
}
.prep__pin-pulse {
  position: absolute; top: -22px; left: -22px; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(61, 90, 254, .22);
  animation: pin-pulse 2.4s ease-out infinite;
}
.prep__pin--lodz .prep__pin-pulse { animation-delay: 1.2s; }
@keyframes pin-pulse {
  0% { transform: scale(.3); opacity: 1; }
  70%, 100% { transform: scale(1.3); opacity: 0; }
}
.prep__pin-label {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 9px 14px; box-shadow: var(--shadow);
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  white-space: nowrap; line-height: 1.35; text-align: center;
  animation: float 5s ease-in-out infinite;
}
.prep__pin--lodz .prep__pin-label { animation-delay: 2.5s; }
.prep__pin-label b { display: block; font-size: .72rem; color: var(--ink-soft); font-weight: 500; }
.prep__map-card {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: var(--shadow-lg); pointer-events: none;
}
.prep__map-card [data-lucide] { width: 24px; height: 24px; color: var(--accent); }
.prep__map-card b { font-family: var(--font-display); display: block; font-size: .92rem; line-height: 1.3; }
.prep__map-card span { font-size: .78rem; color: var(--ink-soft); }
.prep__map-chip {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; border-radius: 999px;
  padding: 8px 16px; font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  box-shadow: var(--shadow); pointer-events: none;
}
.prep__live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: live-pulse 1.8s infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
.prep__info h3 { font-size: 1.55rem; margin-bottom: 14px; }
.prep__info > p { color: var(--ink-soft); margin-bottom: 26px; }
.prep__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.prep__list li { display: flex; gap: 14px; }
.prep__list [data-lucide] { width: 22px; height: 22px; color: var(--accent); margin-top: 3px; }
.prep__list b { font-family: var(--font-display); display: block; }
.prep__list span { font-size: .9rem; color: var(--ink-soft); }
.prep__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prep__stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  text-align: center;
}
.prep__stat b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; display: block; }
.prep__stat span { font-size: .85rem; color: var(--ink-soft); }

/* ============ JOURNEY ============ */
.journey { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.journey__step {
  position: relative; background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius);
  padding: 28px 22px; transition: background .3s, transform .3s;
}
.journey__step:hover { background: rgba(255, 255, 255, .09); transform: translateY(-5px); }
.journey__num { font-family: var(--font-serif); font-style: italic; font-size: 1.4rem; color: #8da2ff; display: block; margin-bottom: 14px; }
.journey__step [data-lucide] { width: 26px; height: 26px; color: #8da2ff; margin-bottom: 14px; }
.journey__step h3 { font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.journey__step p { font-size: .85rem; color: #aab2bf; margin-bottom: 16px; }
.journey__time {
  font-family: var(--font-display); font-weight: 600; font-size: .72rem;
  background: rgba(141, 162, 255, .14); color: #b6c3ff;
  padding: 4px 12px; border-radius: 999px;
}
.journey__cta { text-align: center; margin-top: 56px; }

/* ============ MODELS ============ */
.models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.model {
  position: relative; background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 38px 32px;
  display: flex; flex-direction: column; gap: 26px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.model:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.model--featured { border-color: var(--accent); box-shadow: 0 16px 48px rgba(61, 90, 254, .14); }
.model__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: .75rem; padding: 5px 16px; border-radius: 999px;
}
.model__head [data-lucide] { width: 30px; height: 30px; color: var(--accent); margin-bottom: 16px; }
.model__head h3 { font-size: 1.4rem; margin-bottom: 8px; }
.model__head p { color: var(--ink-soft); font-size: .92rem; }
.model ul { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.model li { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.model li [data-lucide] { width: 17px; height: 17px; color: #22c55e; }
.model .btn { width: 100%; }

/* ============ WHY ============ */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.why__text h2 { margin-bottom: 18px; }
.why__text p { color: var(--ink-soft); margin-bottom: 30px; }
.why__points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why__point {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s, box-shadow .3s;
}
.why__point:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__point [data-lucide] { width: 24px; height: 24px; color: var(--accent); }
.why__point b { font-family: var(--font-display); }
.why__point span { font-size: .87rem; color: var(--ink-soft); }

/* ============ REVIEWS ============ */
.reviews-marquee {
  display: flex; flex-direction: column; gap: 22px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-row { overflow: hidden; }
.reviews-track {
  display: flex; gap: 22px; width: max-content;
  animation: reviews-scroll 55s linear infinite;
}
.reviews-row--reverse .reviews-track { animation-direction: reverse; animation-duration: 62s; }
.reviews-row:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll { to { transform: translateX(calc(-50% - 11px)); } }
.review {
  width: 420px; flex-shrink: 0;
  background: var(--bg-gray); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.review__stars { display: flex; gap: 3px; }
.review__stars [data-lucide] { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }
.review blockquote { font-size: .95rem; color: var(--ink-soft); flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 13px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
}
.review figcaption b { font-family: var(--font-display); display: block; line-height: 1.3; }
.review figcaption span { font-size: .8rem; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.faq__item.is-open { border-color: var(--accent); box-shadow: 0 14px 36px rgba(61, 90, 254, .1); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq__icon {
  position: relative; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-soft); flex-shrink: 0;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1), background .3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--accent); border-radius: 2px;
  transition: background .3s ease;
}
.faq__icon::before { width: 13px; height: 2.2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2.2px; height: 13px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon { background: var(--accent); transform: rotate(135deg); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p {
  padding: 0 64px 24px 26px; color: var(--ink-soft); font-size: .95rem;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .4s ease .1s, transform .4s ease .1s;
}
.faq__item.is-open .faq__a p { opacity: 1; transform: none; }

/* ============ FINALE ============ */
.finale { padding-top: 0; }
.finale__card {
  position: relative; overflow: hidden;
  background: var(--ink); border-radius: 28px;
  padding: 80px 64px; text-align: center; color: #fff;
}
.finale__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(61, 90, 254, .35), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(61, 90, 254, .25), transparent 45%);
}
.finale__card > * { position: relative; }
.finale__card h2 { margin-bottom: 18px; }
.finale__card p { color: #aab2bf; max-width: 480px; margin: 0 auto 36px; }
.finale__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-gray); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.footer__brand p { font-size: .88rem; color: var(--ink-soft); margin-top: 18px; max-width: 300px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col b { font-family: var(--font-display); margin-bottom: 6px; }
.footer__col a { font-size: .9rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.footer__col a:hover { color: var(--ink); }
.footer__col [data-lucide] { width: 15px; height: 15px; color: var(--accent); }
.footer__addr { font-size: .9rem; color: var(--ink-soft); display: flex; gap: 8px; }
.footer__addr [data-lucide] { margin-top: 4px; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px 0; font-size: .82rem; color: var(--ink-soft);
}

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(14, 17, 22, .55); backdrop-filter: blur(4px); animation: fadeIn .25s ease; }
.modal__box {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 32px)); max-height: calc(100vh - 48px); overflow-y: auto;
  background: #fff; border-radius: 24px; padding: 44px 40px;
  animation: popIn .35s cubic-bezier(.18, 1.25, .4, 1);
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes popIn { from { opacity: 0; transform: translate(-50%, -46%) scale(.96); } }
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-gray); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal__close:hover { background: var(--line); }
.modal__box h3 { font-size: 1.5rem; margin-bottom: 8px; }
.modal__box > div > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .85rem; margin-bottom: 7px; }
.field label span { color: var(--ink-soft); font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 16px; transition: border-color .2s; resize: vertical; background: #fff;
}
.hp-field {
  position: absolute !important; left: -9999px; top: -9999px;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.form-error {
  margin-top: 14px; text-align: center; font-size: .88rem; font-weight: 500;
  color: #dc2626; background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-sm); padding: 11px 16px;
}
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field input.is-error, .field textarea.is-error { border-color: #ef4444; }
.modal__legal { display: block; text-align: center; font-size: .76rem; color: var(--ink-soft); margin-top: 16px; }
.modal__legal a { text-decoration: underline; }
body.modal-open { overflow: hidden; }

/* ============ STATUS PAGES (thanks / 404) ============ */
.status-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.status-page__icon {
  width: 92px; height: 92px; border-radius: 50%; margin-bottom: 30px;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  animation: pop-in .5s cubic-bezier(.18, 1.25, .4, 1);
}
.status-page__icon [data-lucide] { width: 42px; height: 42px; color: #16a34a; }
@keyframes pop-in { from { transform: scale(.4); opacity: 0; } }
.status-page h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; margin-bottom: 16px; }
.status-page > p { color: var(--ink-soft); font-size: 1.05rem; max-width: 460px; margin-bottom: 36px; }
.status-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.status-page__code {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(6rem, 18vw, 11rem); line-height: 1;
  letter-spacing: -.04em; margin-bottom: 8px;
  background: linear-gradient(135deg, #2a41d8, #6b8aff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.status-page__code .serif { color: var(--ink); -webkit-text-fill-color: var(--ink); }

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 150px 0 90px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal-page .legal-updated { color: var(--ink-soft); font-size: .9rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.35rem; margin: 40px 0 14px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: .96rem; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-page a { color: var(--accent); text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 40px; }
  .audience, .models { grid-template-columns: 1fr 1fr; }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--wide { grid-column: span 2; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .prep__main { grid-template-columns: 1fr; gap: 40px; }
  .prep__stats { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav, .header__phone { display: none; }
  .header__actions .btn { padding: 10px 18px; font-size: .85rem; }
  .burger { display: flex; }
  .nav.is-open {
    display: flex; position: fixed; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; z-index: 99;
  }
  .nav.is-open a { padding: 13px 0; border-bottom: 1px solid var(--bg-gray); }
  .hero { padding-top: 130px; }
  .audience, .models, .bento { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: 1fr 1fr; gap: 14px; }
  .platform { padding: 26px 16px; }
  .review { width: 320px; padding: 24px 22px; }
  .bento__cell--wide { grid-column: span 1; }
  .journey { grid-template-columns: 1fr; }
  .why__points { grid-template-columns: 1fr; }
  .prep__stats { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 26px; flex-wrap: wrap; }
  .orbit { width: 320px; height: 320px; }
  .orbit__ring--2 { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
  .orbit__ring--2 .orbit__chip { --ring-r: 160px; }
  @keyframes counter-spin-2 { from { transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle))); } to { transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle) + 360deg)); } }
  .orbit__ring--1 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
  .orbit__ring--1 .orbit__chip { --ring-r: 100px; }
  @keyframes counter-spin-1 { from { transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle))); } to { transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle) - 360deg)); } }
  .orbit__card--sales { right: 0; }
  .orbit__card--orders { left: 0; }
  .finale__card { padding: 56px 28px; }
  .footer__top { grid-template-columns: 1fr; }
  .modal__box { padding: 36px 24px; }
}
