/* ============================================================
   FlyStudio Самара — style.css  v4
   ============================================================ */

/* ── Design tokens ───────────────────────────────────────── */
:root {
  /* Custom hero background: replace assets/images/hero-bg.webp to change image */
  --hero-custom-bg: url("./assets/images/hero-bg.webp");

  --blue:        #4A82F5;
  --cyan:        #08B5CC;
  --sea:         #0891B2;
  --lav:         #7C8EE8;

  --bg-page:     #F2F8FE;
  --bg-card:     rgba(255,255,255,0.80);

  --text-1:      #1A3A6B;
  --text-2:      #374151;
  --text-3:      #6B7280;

  --hero-bg:     #07111F;

  --radius-card: 28px;
  --shadow-card: 0 18px 50px rgba(30,70,110,0.08);
  --border-card: 1px solid rgba(80,130,180,0.16);

  --nav-h: 68px;

  /* Cursor glow — set by JS initCursorGlow */
  --mouse-x: 50%;
  --mouse-y: 50%;
  --card-x:  50%;
  --card-y:  50%;
}

/* ── Reset / Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-page);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

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

/* ── Typography ──────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  background: linear-gradient(90deg, #1d6fff 0%, #00bfd8 28%, #58e0ff 50%, #1d6fff 72%, #00bfd8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: titleShift 7s ease-in-out infinite;
}
.section-title.text-left { text-align: left; }

.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 640px;
  line-height: 1.7;
}

.section-chip {
  display: inline-block;
  background: linear-gradient(135deg, rgba(74,130,245,0.13), rgba(8,181,204,0.13));
  color: var(--sea);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(8,181,204,0.2);
  margin-bottom: 14px;
}
.section-chip--light {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ── Glass card ──────────────────────────────────────────── */
.glass-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(70,160,255,0.18);
  border-radius: var(--radius-card);
  box-shadow:
    0 16px 48px rgba(0,100,255,0.07),
    0 0 0 0.5px rgba(70,160,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(8,181,204,0.05);
  transition: transform 0.36s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.36s ease,
              border-color 0.36s ease;
}
/* Cursor radial highlight */
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    300px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(255,255,255,0.10) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}
.glass-card.card-lit::after { opacity: 1; }
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,180,255,0.32);
  box-shadow:
    0 20px 56px rgba(0,160,255,0.12),
    0 0 0 1px rgba(30,180,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.65),
    inset 0 -1px 0 rgba(8,181,204,0.08);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.93rem;
  border-radius: 14px;
  padding: 13px 28px;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #4A82F5 0%, #08B5CC 100%);
  color: #fff;
  /* softer ambient glow — premium not aggressive */
  box-shadow:
    0 6px 24px rgba(74,130,245,0.30),
    0 2px 8px  rgba(8,181,204,0.18);
  position: relative;
  overflow: hidden;
}
/* thin top highlight bead */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  pointer-events: none;
}
.btn-primary:hover {
  box-shadow:
    0 12px 34px rgba(74,130,245,0.42),
    0 0 0 2px rgba(8,181,204,0.16),
    0 4px 12px rgba(8,181,204,0.12);
  transform: translateY(-2px);
}
.btn-glass {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.22s, color 0.22s;
}
.btn-glass::after {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(8,181,204,0.36);
  color: #fff;
  box-shadow: 0 6px 24px rgba(8,181,204,0.16), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 16px; }
.btn-full { width: 100%; display: flex; }
.btn-full-cta { width: 100%; display: flex; }

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Per-section tinted backgrounds + blobs */
#trust {
  background:
    radial-gradient(circle at 50% 0%, rgba(0,180,255,0.10) 0%, transparent 34%),
    linear-gradient(180deg, #dff5ff 0%, #eefaff 42%, #F2F8FE 100%);
}
#trust::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(8,177,204,0.10) 0%, transparent 70%);
  top: -120px; right: -120px;
  pointer-events: none;
  filter: blur(2px);
}
/* Subtle dot grid texture */
#trust::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(74,130,245,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

#format {
  background: linear-gradient(145deg, #EEF6FF 0%, #E5F5FA 100%);
}
#format::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,177,204,0.09) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  pointer-events: none;
  filter: blur(2px);
}

#conditions {
  background: linear-gradient(155deg, #E5F2FF 0%, #E0F5FA 100%);
}
#conditions::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,130,245,0.09) 0%, transparent 70%);
  top: -160px; right: -160px;
  pointer-events: none;
  filter: blur(2px);
}

/* #calculator bg/glows now handled by .calc-dark-zone wrapper */
#calculator {
  background: transparent;
}
#calculator::before,
#calculator::after {
  display: none !important;
  content: none !important;
}

#why-us {
  background: linear-gradient(148deg, #EAF5FF 0%, #E3F7FB 100%);
}
#why-us::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(74,130,245,0.09) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  filter: blur(2px);
}

#bonuses {
  background: linear-gradient(152deg, #E5F3FF 0%, #DCF5FA 100%);
}
#bonuses::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(8,177,204,0.10) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
  filter: blur(2px);
}

#how-to-start {
  background: linear-gradient(150deg, #E8F4FF 0%, #E2F7FA 100%);
}
#how-to-start::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,177,204,0.09) 0%, transparent 70%);
  top: -80px; left: -60px;
  pointer-events: none;
  filter: blur(2px);
}

#reviews {
  background: linear-gradient(145deg, #EBF4FF 0%, #E0F6FA 100%);
}
#reviews::before {
  content: '';
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(8,177,204,0.10) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(2px);
}

#faq {
  background: linear-gradient(155deg, #E8F4FF 0%, #DCF6FA 100%);
  background-image: none;
}
#faq::before,
#faq::after {
  display: none !important;
  content: none !important;
}

/* ── CTA primary button — breathing glow, без молнии ─────── */
.btn-primary-wrap {
  position: relative;
  display: inline-flex;
  border-radius: 20px;
}
.btn-primary-wrap::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 22px;
  background: radial-gradient(ellipse at center,
    rgba(8,181,204,0.28) 0%,
    rgba(74,130,245,0.14) 50%,
    transparent 70%);
  animation: ctaBreath 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.btn-primary-wrap .btn-primary {
  position: relative;
  z-index: 1;
}
@keyframes ctaBreath {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.04); }
}

/* ── Hero grid — hidden when custom photo bg is active ──── */
.hero-grid {
  display: none;
}

/* ── Haze veil — air over the grid ──────────────────────── */
.hero-haze {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5,18,38,0.14)  0%,
    rgba(7,22,44,0.22)  45%,
    rgba(7,24,48,0.08)  100%
  );
}

/* ── Ambient glow — luxury depth, slow drift, no cursor ─── */
/* ── Shared keyframe for gradient title shift ────────────── */
@keyframes titleShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

@keyframes glowDriftA {
  0%   { transform: translate(0,    0);    }
  50%  { transform: translate(12px, -14px); }
  100% { transform: translate(0,    0);    }
}
@keyframes glowDriftB {
  0%   { transform: translate(0,    0);    }
  50%  { transform: translate(-10px, 16px); }
  100% { transform: translate(0,    0);    }
}
@keyframes glowDriftC {
  0%   { transform: translate(0,   0);    }
  50%  { transform: translate(8px, 10px); }
  100% { transform: translate(0,   0);    }
}
@keyframes glowDriftD {
  0%   { transform: translate(0,    0);    }
  50%  { transform: translate(-8px, -10px); }
  100% { transform: translate(0,    0);    }
}
@keyframes glowDriftE {
  0%   { transform: translate(0,   0);   }
  50%  { transform: translate(10px, 8px); }
  100% { transform: translate(0,   0);   }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
/* Glow 1 — headline zone, left — richer ambient */
.hero-glow-l {
  width: 640px; height: 600px;
  left: -110px; top: 30px;
  background: radial-gradient(circle, rgba(60,140,255,0.24) 0%, rgba(50,110,255,0.09) 48%, transparent 70%);
  filter: blur(155px);
  animation: glowDriftA 20s ease-in-out infinite;
}
/* Glow 2 — cards zone, right — softer teal depth */
.hero-glow-r {
  width: 600px; height: 600px;
  right: -110px; top: 90px;
  background: radial-gradient(circle, rgba(14,200,255,0.20) 0%, rgba(8,180,220,0.08) 48%, transparent 70%);
  filter: blur(175px);
  animation: glowDriftB 24s ease-in-out infinite;
}
/* Glow 3 — CTA zone, lower-left */
.hero-glow-c {
  width: 520px; height: 460px;
  left: 7%; bottom: 5%;
  background: radial-gradient(circle, rgba(70,120,255,0.16) 0%, rgba(40,90,255,0.05) 55%, transparent 72%);
  filter: blur(150px);
  animation: glowDriftC 17s ease-in-out infinite;
}
/* Glow 4 — top-center, deep navy depth veil */
.hero-glow-d {
  width: 760px; height: 380px;
  left: 50%; top: -60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(8,30,70,0.32) 0%, rgba(6,20,50,0.12) 50%, transparent 72%);
  filter: blur(110px);
  animation: glowDriftD 30s ease-in-out infinite;
}
/* Glow 5 — right-center, very muted cyan accent */
.hero-glow-e {
  width: 440px; height: 400px;
  right: 10%; top: 25%;
  background: radial-gradient(circle, rgba(8,160,200,0.09) 0%, rgba(6,120,170,0.03) 55%, transparent 72%);
  filter: blur(140px);
  animation: glowDriftE 23s ease-in-out infinite 4s;
}

/* ── Global cursor glow (site-wide, fixed overlay) ──────── */
/* z-index: 1 keeps it behind all content (navbar, cards, text) */
.global-cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    600px circle at var(--mouse-x, -300px) var(--mouse-y, -300px),
    rgba(8,181,204,0.04) 0%,
    transparent 70%
  );
}
@media (pointer: coarse)            { .global-cursor-glow { display: none; } }
@media (prefers-reduced-motion: reduce) { .global-cursor-glow { display: none; } }

/* ── Hero two-column layout ──────────────────────────────── */
.hero-layout {
  max-width: 1416px;
  display: grid;
  grid-template-columns: 620px minmax(0, 640px);
  column-gap: 84px;
  align-items: start;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 80px;
  padding-left: 32px;
  padding-right: 32px;
  min-height: 100vh;
  position: relative;
  z-index: 4;
}

/* ── Grid cards — строгая сетка, никакого absolute ────────── */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 160px 194px 194px;
  column-gap: 20px;
  row-gap: 18px;
  align-content: start;
  pointer-events: none;
  position: relative;
  margin-top: 18px;
}
/* Ambient glow behind card area */
.hero-cards::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 50% 35%, rgba(35, 135, 255, 0.12), transparent 58%);
  pointer-events: none;
  z-index: -1;
}

/* Base card — premium glass, ближе к luxury-референсу */
.hc-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 15% 0%, rgba(90, 180, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(22, 46, 80, 0.78), rgba(8, 18, 34, 0.84));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(116, 198, 255, 0.46);
  border-radius: 26px;
  padding: 24px 24px 22px;
  min-height: 110px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -32px 70px rgba(28, 112, 210, 0.10),
    0 16px 52px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(55, 170, 255, 0.18);
  color: #fff;
  will-change: transform;
  pointer-events: auto;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
/* Corner glare — даёт ощущение стеклянной поверхности */
.hc-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 22%,
    transparent 52%
  );
  opacity: 0.72;
  z-index: 0;
}
/* Content above the glare layer */
.hc-card > * {
  position: relative;
  z-index: 1;
}
.hc-card:hover {
  border-color: rgba(120, 195, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -32px 70px rgba(35, 130, 220, 0.14),
    0 28px 90px rgba(0, 0, 0, 0.44),
    0 0 70px rgba(45, 160, 255, 0.24);
}

/* ── Card 1: income — верхняя строка, доминирующая ── */
.hc-card-1 {
  grid-column: 1 / -1;
  animation: floatA 7s ease-in-out infinite;
  padding: 24px 30px;
  border-radius: 28px;
  min-height: 160px;
  border-color: rgba(110, 220, 255, 0.56);
  background:
    radial-gradient(circle at 14% 0%, rgba(90, 210, 255, 0.22), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(0, 190, 255, 0.10), transparent 35%),
    linear-gradient(180deg, rgba(28, 56, 94, 0.82), rgba(8, 20, 38, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -36px 80px rgba(0, 190, 255, 0.10),
    0 18px 60px rgba(0, 0, 0, 0.38),
    0 0 58px rgba(35, 190, 255, 0.24);
}
.hc-card-1:hover {
  border-color: rgba(105, 220, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -34px 76px rgba(0, 190, 255, 0.14),
    0 34px 110px rgba(0, 0, 0, 0.52),
    0 0 90px rgba(34, 190, 255, 0.32);
}
/* Stronger glow on income icon */
.hc-card-1 .hc-icon-teal {
  box-shadow:
    0 0 28px rgba(8, 181, 204, 0.40),
    0 0 10px rgba(8, 181, 204, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
/* ── Card 2: no experience ── */
.hc-card-2 { animation: floatB 8.5s ease-in-out infinite 1.2s; }
/* ── Card 3: comfort ── */
.hc-card-3 { animation: floatC 9s ease-in-out infinite 0.5s; }
/* ── Card 4: support ── */
.hc-card-4 { animation: floatD 7.8s ease-in-out infinite 2s; }
/* ── Card 5: calm start ── */
.hc-card-5 { animation: floatB 8s ease-in-out infinite 0.8s; }

/* Subtle float — transform не ломает grid-layout */
@keyframes floatA {
  0%, 100% { transform: rotate(-0.8deg) translateY(0); }
  50%       { transform: rotate(-0.2deg) translateY(-5px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(0.9deg)  translateY(0); }
  50%       { transform: rotate(0.3deg)  translateY(-4px); }
}
@keyframes floatC {
  0%, 100% { transform: rotate(-0.5deg) translateY(0); }
  50%       { transform: rotate(-0.1deg) translateY(-6px); }
}
@keyframes floatD {
  0%, 100% { transform: rotate(0.7deg)  translateY(0); }
  50%       { transform: rotate(0.2deg)  translateY(-3px); }
}

/* Card top row: icon + title on same line */
.hc-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hc-card-top .hc-icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
}
.hc-card-top .hc-text-head { margin-bottom: 0; }

/* Earnings stack — value + month, flex col inside card-top */
.hc-card-income {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

/* Icon wrapper */
.hc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.hc-icon-teal   {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(180deg, rgba(8,181,204,0.30), rgba(6,130,150,0.52));
  border: 1px solid rgba(8,181,204,0.30);
  color: #22D3EE;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 20px rgba(8,181,204,0.22);
}
.hc-icon-blue   {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(180deg, rgba(74,130,245,0.30), rgba(50,90,190,0.52));
  border: 1px solid rgba(74,130,245,0.30);
  color: #7EB4FF;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 20px rgba(74,130,245,0.20);
}
.hc-icon-purple {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(180deg, rgba(139,92,246,0.30), rgba(100,60,200,0.52));
  border: 1px solid rgba(139,92,246,0.30);
  color: #C4B5FD;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 20px rgba(139,92,246,0.20);
}
.hc-icon-cyan   {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(180deg, rgba(6,182,212,0.30), rgba(4,130,160,0.52));
  border: 1px solid rgba(6,182,212,0.30);
  color: #67E8F9;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 20px rgba(6,182,212,0.22);
}
.hc-icon-lav    {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(180deg, rgba(124,142,232,0.30), rgba(90,110,200,0.52));
  border: 1px solid rgba(124,142,232,0.30);
  color: #A8B8F0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 20px rgba(124,142,232,0.18);
}

/* ── Card 1: income-specific layout ── */
.hc-c1-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.hc-c1-badge {
  flex-shrink: 0;
  margin-bottom: 0;
}
.hc-headline {
  font-size: 1.50rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hc-line2 {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 6px;
}
.hc-line3 {
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(255,255,255,0.66);
  line-height: 1.5;
}

/* Card text hierarchy — остальные карточки */
.hc-value {
  font-size: 1.80rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hc-month {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.hc-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  line-height: 1.45;
}
.hc-text-head {
  font-size: 0.96rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hc-text-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.42;
  max-width: 240px;
}
/* legacy */
.hc-label { display: none; }
.hc-sub   { display: none; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(12,20,32,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(24,212,240,0.35));
  transition: filter 0.3s ease;
}
.logo:hover .logo-icon {
  filter: drop-shadow(0 0 14px rgba(24,212,240,0.65));
}
.logo-fly    { color: var(--blue); }
.logo-studio { color: #fff; }
.footer-studio { color: rgba(255,255,255,0.84); }

/* Footer brand — premium left column */
.footer-brand .logo {
  font-size: 1.52rem;
}
.footer-brand .logo-fly {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(74,130,245,0.45);
}
/* ── City selector + dropdown ────────────────────────────── */
.city-selector-wrap {
  position: relative;
  flex-shrink: 0;
}
.city-selector {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.90rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid rgba(8,181,204,0.38);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
  text-shadow: 0 0 18px rgba(8,181,204,0.28);
}
.city-selector:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.40);
}
.city-chevron {
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s;
}
.city-selector:hover .city-chevron,
.city-selector.open .city-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown outer — border-radius + overflow:hidden clips the scrollbar */
.city-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: rgba(10, 20, 36, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(120, 190, 255, 0.18);
  border-radius: 14px;
  overflow: hidden; /* clips scrollbar inside rounded corners */
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 1100;
}
.city-dropdown.open { display: block; }

/* Inner scroller — scroll happens here, clipped by parent */
.city-dropdown-inner {
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(8,181,204,0.40) transparent;
}
.city-dropdown-inner::-webkit-scrollbar { width: 5px; }
.city-dropdown-inner::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
.city-dropdown-inner::-webkit-scrollbar-thumb {
  background: rgba(8,181,204,0.38);
  border-radius: 3px;
}
.city-dropdown-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(8,181,204,0.65);
}
.city-option {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.78);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.city-option:hover {
  background: rgba(8,181,204,0.12);
  color: #fff;
}
.city-option.active {
  background: rgba(8,181,204,0.10);
  color: #22D3EE;
  font-weight: 600;
}

/* City popup overlay */
.city-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 36, 0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.city-popup {
  position: relative;
  background: rgba(10, 20, 36, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(120, 190, 255, 0.22);
  border-radius: 20px;
  padding: 30px 32px 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 28px 72px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.07);
  overflow: hidden;          /* clip inner scrollbar to border-radius */
}
.city-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.48);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
  z-index: 2;
}
.city-popup-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* Confirm view */
.city-popup-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.city-popup-title strong { color: #22D3EE; }
.city-popup-hint {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 22px;
  line-height: 1.5;
}
.city-popup-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
@media (min-width: 480px) {
  .city-popup-btns {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.city-popup-change {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: rgba(255,255,255,0.72);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 18px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.city-popup-change:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

/* Picker view */
.city-picker-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.city-search-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(120,190,255,0.22);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.city-search-input::placeholder { color: rgba(255,255,255,0.32); }
.city-search-input:focus {
  border-color: rgba(8,181,204,0.55);
  background: rgba(255,255,255,0.10);
}
.city-picker-list-wrap {
  border-radius: 12px;
  border: 1px solid rgba(120,190,255,0.12);
  overflow: hidden;          /* clips scrollbar inside rounded corners */
  max-height: 260px;
}
.city-picker-list {
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(8,181,204,0.28) transparent;
}
.city-picker-list::-webkit-scrollbar { width: 4px; }
.city-picker-list::-webkit-scrollbar-track { background: transparent; }
.city-picker-list::-webkit-scrollbar-thumb {
  background: rgba(8,181,204,0.28);
  border-radius: 4px;
}
.city-pick-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.city-pick-btn:last-child { border-bottom: none; }
.city-pick-btn:hover {
  background: rgba(0,210,255,0.10);
  color: #fff;
}

.btn-sm { padding: 11px 24px; font-size: 0.87rem; border-radius: 12px; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.72);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  margin-left: auto;
  transition: background 0.2s;
}
.burger:hover { background: rgba(255,255,255,0.08); }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12,20,32,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 1.45rem;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 16px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.mobile-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.mobile-cta {
  color: var(--blue) !important;
  margin-top: 16px;
  background: rgba(91,143,249,0.12) !important;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 110px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(8, 18, 32, 0)    0%,
    rgba(8, 18, 32, 0.45) 45%,
    rgba(15, 45, 68, 0.72) 100%
  );
}
.hero-base {
  position: absolute;
  inset: 0;
  /* Light navy accents — pulled back so photo shows through cleanly */
  background:
    radial-gradient(ellipse 100% 70% at 10% 0%,   rgba(14,51,86,0.50)  0%, transparent 52%),
    radial-gradient(ellipse 80%  55% at 88% 100%,  rgba(9,27,46,0.40)   0%, transparent 58%),
    /* Dark overlay: left darker for text, centre/right photo shows through */
    linear-gradient(90deg,
      rgba(5, 12, 24, 0.54) 0%,
      rgba(5, 12, 24, 0.28) 50%,
      rgba(5, 12, 24, 0.34) 100%
    ),
    /* Custom hero background: replace assets/images/hero-bg.webp to change image */
    var(--hero-custom-bg);
  background-size:
    auto, auto,
    auto,
    cover;
  background-position:
    top left, top left,
    top left,
    center;
  background-repeat: no-repeat;
}
.hero-dots {
  display: none; /* removed — white noise kills the premium feel */
}
.hero-particles {
  display: none; /* particles hidden — custom photo bg is the visual focus */
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 50%, rgba(12,20,32,0.4) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 620px;
}
/* .hero-location removed — city/age moved to navbar .nav-location */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffffff 0%, #d8ebff 32%, #ffffff 55%, #c2daff 82%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: titleShift 9s ease-in-out infinite;
}
.hero-accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 35%, #58e0ff 55%, var(--blue) 80%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: titleShift 7s ease-in-out infinite;
}
.hero-subtitle {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.55;
  max-width: 620px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.hero-actions-zone {
  width: 620px;
}
.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  column-gap: 20px;
  row-gap: 16px;
  width: 620px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.hero-benefit-pill {
  width: 300px;
  height: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  background:
    radial-gradient(circle at 12% 50%, rgba(75, 170, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(13, 31, 55, 0.64), rgba(7, 18, 34, 0.74));
  border: 1px solid rgba(90, 175, 255, 0.30);
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.32;
  padding: 0 22px;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 20px rgba(0, 153, 255, 0.10),
    0 8px 20px rgba(8, 34, 84, 0.22);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.hero-benefit-pill:hover {
  border-color: rgba(33,190,255,0.40);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.056),
    inset 0 1px 0   rgba(255,255,255,0.16),
    0 8px 28px rgba(0,0,0,0.36),
    0 0 28px rgba(33,190,255,0.14);
  transform: translateY(-2px);
}
.hero-cta-row {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  column-gap: 20px;
  width: 620px;
  margin-top: 30px;
}
.hero-cta-row .btn-primary-wrap {
  display: flex;
  width: 100%;
  height: 66px;
}
.hero-cta-btn {
  width: 100%;
  height: 66px;
  box-sizing: border-box;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 700;
  gap: 6px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  animation: scrollPulse 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ── Trust section ───────────────────────────────────────── */
.trust-head {
  text-align: center;
  margin-bottom: 52px;
}
.trust-head .section-sub { margin: 12px auto 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.trust-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(74,130,245,0.20);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(30,70,110,0.07), 0 0 0 0.5px rgba(74,130,245,0.06), inset 0 1px 0 rgba(255,255,255,0.60);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(255,255,255,0.13) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}
.trust-card.card-lit::after { opacity: 1; }
.trust-card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: 0 22px 56px rgba(30,70,110,0.13), 0 0 24px rgba(8,181,204,0.07), inset 0 1px 0 rgba(255,255,255,0.70);
  border-color: rgba(8,181,204,0.36);
}
.trust-num {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2B72E8, #08BFD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: -0.03em;
}
.trust-body h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.trust-body p {
  font-size: 0.87rem;
  color: #4B5563;
  line-height: 1.65;
}

/* ── Format section ──────────────────────────────────────── */
.format-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.format-text .section-chip { margin-bottom: 16px; }
.format-desc {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: 16px;
}
.format-note {
  margin-top: 22px;
  padding: 16px 20px;
  background: rgba(91,143,249,0.07);
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}
.format-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fh-card {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(74,130,245,0.20);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(30,70,110,0.06), 0 0 0 0.5px rgba(74,130,245,0.06), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.fh-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    240px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(255,255,255,0.12) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}
.fh-card.card-lit::after { opacity: 1; }
.fh-card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 16px 44px rgba(30,70,110,0.12), 0 0 20px rgba(8,181,204,0.07), inset 0 1px 0 rgba(255,255,255,0.65);
  border-color: rgba(8,181,204,0.34);
}
.fh-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(91,143,249,0.14), rgba(26,187,208,0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.fh-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 5px;
}
.fh-card p {
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.6;
}

/* ── Colorful ADHD-friendly icons ────────────────────────── */
.color-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.13);
}
.ci-blue   { background: linear-gradient(135deg, #4A82F5 0%, #6B9BFF 100%); }
.ci-purple { background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%); }
.ci-pink   { background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%); }
.ci-orange { background: linear-gradient(135deg, #F97316 0%, #FB923C 100%); }
.ci-green  { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }
.ci-teal   { background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%); }
.ci-indigo { background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%); }
.ci-amber  { background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%); }

/* ── Why-us section ──────────────────────────────────────── */
.why-head {
  text-align: center;
  margin-bottom: 52px;
}
.why-head .section-sub { margin: 12px auto 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.why-card {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
}
.why-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 14px 0 6px;
  line-height: 1.35;
}
.why-card p {
  font-size: 0.84rem;
  color: #4B5563;
  line-height: 1.62;
  flex: 1;
}

/* ── Bonuses section ─────────────────────────────────────── */
.bonus-head {
  text-align: center;
  margin-bottom: 52px;
}
.bonus-head .section-sub { margin: 12px auto 0; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
}
.bonus-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 16px 0 8px;
  line-height: 1.35;
}
.bonus-card p {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.65;
}

/* ── Conditions section ──────────────────────────────────── */
.conditions-head {
  text-align: center;
  margin-bottom: 48px;
}
.conditions-head .section-sub { margin: 12px auto 0; }

.conditions-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cond-panel {
  padding: 40px 36px;
}
.cond-col-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.cond-col-head h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-1);
}
.cond-col-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cond-col-icon--blue { background: linear-gradient(135deg, #5B8FF9, #1ABBD0); }
.cond-col-icon--cyan { background: linear-gradient(135deg, #1ABBD0, #8896E8); }

.cond-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cond-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.55;
  padding: 12px 14px;
  background: rgba(74,130,245,0.04);
  border: 1px solid rgba(74,130,245,0.10);
  border-radius: 10px;
}
.cond-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue);
}

/* ── Calculator dark zone wrapper ────────────────────────── */
.calc-dark-zone {
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* Particles for calc dark zone — reuses particleRise keyframe */
.calc-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Section content above particles, pseudo-element layers */
.calc-dark-zone > section {
  position: relative;
  z-index: 3;
}
.calc-particles span {
  position: absolute;
  display: block;
  bottom: -12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(120,220,255,0.90) 0%, rgba(120,220,255,0.30) 45%, rgba(120,220,255,0) 100%);
  box-shadow: 0 0 12px rgba(84,197,255,0.18);
  opacity: 0;
  animation-name: particleRise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.calc-particles span:nth-child(1) { left:8%;  width:4px; height:4px; --drift-x:14px;  --rise-distance:700px; animation-duration:10.4s; animation-delay:0s; }
.calc-particles span:nth-child(2) { left:22%; width:3px; height:3px; --drift-x:-10px; --rise-distance:640px; animation-duration:8.6s;  animation-delay:1.8s; }
.calc-particles span:nth-child(3) { left:40%; width:5px; height:5px; --drift-x:16px;  --rise-distance:740px; animation-duration:11.5s; animation-delay:3.2s; }
.calc-particles span:nth-child(4) { left:58%; width:3px; height:3px; --drift-x:-13px; --rise-distance:670px; animation-duration:9.8s;  animation-delay:0.6s; }
.calc-particles span:nth-child(5) { left:74%; width:4px; height:4px; --drift-x:11px;  --rise-distance:620px; animation-duration:10.1s; animation-delay:2.4s; }
.calc-particles span:nth-child(6) { left:90%; width:6px; height:6px; --drift-x:-8px;  --rise-distance:780px; animation-duration:12.2s; animation-delay:4.0s; }

/* Dark-context overrides for calc elements */
.calc-dark-zone .section-title {
  color: #fff;
}
.calc-dark-zone .section-sub {
  color: rgba(255,255,255,0.62);
}
.calc-dark-zone .glass-card {
  background:
    radial-gradient(circle at 14% 8%, rgba(96,190,255,0.12), transparent 34%),
    linear-gradient(180deg, rgba(24,47,82,0.84) 0%, rgba(10,22,40,0.90) 100%);
  border: 1px solid rgba(115,205,255,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 50px rgba(0,0,0,0.32),
    0 0 36px rgba(60,180,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.calc-dark-zone .calc-hd-label {
  color: #fff;
}
.calc-dark-zone .calc-label {
  color: rgba(255,255,255,0.72);
}
.calc-dark-zone .calc-label strong {
  color: #fff;
}
.calc-dark-zone .curr-toggle {
  background: rgba(255,255,255,0.10);
}
.calc-dark-zone .curr-btn {
  color: rgba(255,255,255,0.52);
}
.calc-dark-zone .slider-marks {
  color: rgba(255,255,255,0.42);
}
.calc-dark-zone .kpi-card {
  background: rgba(74,130,245,0.12);
  border-color: rgba(74,130,245,0.22);
}
.calc-dark-zone .kpi-card--main {
  background: linear-gradient(135deg, rgba(74,130,245,0.18), rgba(26,187,208,0.12));
  border-color: rgba(74,130,245,0.30);
}
.calc-dark-zone .kpi-label {
  color: rgba(255,255,255,0.50);
}
.calc-dark-zone .calc-ctx-list li {
  color: rgba(255,255,255,0.70);
}
.calc-dark-zone .calc-disclaimer {
  background: rgba(74,130,245,0.10);
  border-color: rgba(74,130,245,0.22);
  color: rgba(255,255,255,0.55);
}
.calc-dark-zone .calc-disclaimer svg {
  color: rgba(255,255,255,0.45);
}
.calc-dark-zone .goals-section {
  border-top-color: rgba(255,255,255,0.10);
}
.calc-dark-zone .goals-head p {
  color: rgba(255,255,255,0.52);
}
.calc-dark-zone .goals-disclaimer {
  color: rgba(255,255,255,0.38);
}
.calc-dark-zone .goal-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(70,170,255,0.22);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.calc-dark-zone .goal-card:hover {
  border-color: rgba(40,190,255,0.45);
  box-shadow: 0 20px 52px rgba(0,180,255,0.16);
}
.calc-dark-zone .goal-name {
  color: #fff;
}
.calc-dark-zone .goal-price,
.calc-dark-zone .goal-desc {
  color: rgba(255,255,255,0.48);
}

/* ── Calculator section ──────────────────────────────────── */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  margin-top: 48px;
}
.calc-card {
  padding: 40px;
}
.calc-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.calc-hd-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calc-hd-label {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-1);
  flex: 1;
}
.curr-toggle {
  display: flex;
  gap: 3px;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 3px;
}
.curr-btn {
  font-family: inherit;
  font-size: 0.77rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.2s;
}
.curr-btn.active {
  background: var(--blue);
  color: #fff;
}

.calc-label {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}
.calc-label strong { color: var(--text-1); }

.slider-wrap { margin-bottom: 28px; }
.calc-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  margin-bottom: 6px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(91,143,249,0.45);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(91,143,249,0.45);
  cursor: pointer;
}
.slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-3);
  padding: 0 1px;
  margin-top: 4px;
}

/* KPI grid */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.kpi-card {
  padding: 18px 20px;
  background: rgba(91,143,249,0.06);
  border: 1px solid rgba(91,143,249,0.14);
  border-radius: 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.kpi-card--main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(91,143,249,0.10), rgba(26,187,208,0.07));
  border-color: rgba(91,143,249,0.22);
}
.kpi-label {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.kpi-value {
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2B72E8 0%, #08BFD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.kpi-card--main .kpi-value {
  font-size: 1.75rem;
}

/* Calc context */
.calc-context {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.calc-ctx-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #1d6fff 0%, #00bfd8 55%, #58e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc-ctx-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}
.calc-ctx-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}
.calc-ctx-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue);
}
.calc-disclaimer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(74,130,245,0.05);
  border: 1px solid rgba(74,130,245,0.15);
  border-radius: 12px;
  font-size: 0.79rem;
  color: var(--text-2);
  line-height: 1.55;
}
.calc-disclaimer svg { flex-shrink: 0; margin-top: 1px; }

/* Goals section */
.goals-section {
  margin-top: 60px;
  padding-top: 52px;
  border-top: 1px solid rgba(80,130,180,0.16);
}
.goals-head {
  text-align: center;
  margin-bottom: 36px;
}
.goals-head h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #1d6fff 0%, #00bfd8 55%, #58e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.goals-head p {
  font-size: 0.92rem;
  color: var(--text-3);
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.goal-card {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(70,170,255,0.22);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,130,255,0.06), 0 0 0 0.5px rgba(70,170,255,0.08);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, border-color 0.28s ease;
}
.goal-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(40,190,255,0.42);
  box-shadow: 0 20px 52px rgba(0,180,255,0.12);
}
.goal-emoji {
  font-size: 1.9rem;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
  transition: transform 0.28s ease;
}
.goal-card:hover .goal-emoji { transform: scale(1.15); }
.goal-name {
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 4px;
}
.goal-price {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 6px;
}
.goal-desc {
  font-size: 0.77rem;
  color: var(--text-3);
  margin-bottom: 12px;
  line-height: 1.45;
}
.goal-time {
  font-size: 0.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2B72E8, #08BFD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}
.goals-disclaimer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── How to start ────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.step {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(74,130,245,0.20);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(30,70,110,0.06), 0 0 0 0.5px rgba(74,130,245,0.06), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    260px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(255,255,255,0.12) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}
.step.card-lit::after { opacity: 1; }
.step:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 16px 44px rgba(30,70,110,0.12), 0 0 20px rgba(8,181,204,0.07), inset 0 1px 0 rgba(255,255,255,0.65);
  border-color: rgba(8,181,204,0.34);
}
.step-n {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A82F5, #08B5CC);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(8,177,204,0.38);
}
.step-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}
.steps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px 28px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(74,130,245,0.20);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(30,70,110,0.07), 0 0 0 0.5px rgba(74,130,245,0.06), inset 0 1px 0 rgba(255,255,255,0.60);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.review-card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: 0 22px 56px rgba(30,70,110,0.13), 0 0 22px rgba(8,181,204,0.07), inset 0 1px 0 rgba(255,255,255,0.70);
  border-color: rgba(8,181,204,0.36);
}
/* Cursor highlight on review cards (::before is the quote mark) */
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(255,255,255,0.11) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}
.review-card.card-lit::after { opacity: 1; }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 22px;
  font-size: 6rem;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(135deg, #2B72E8, #08BFD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  pointer-events: none;
  font-family: Georgia, serif;
}
.review-stars {
  font-size: 0.88rem;
  color: #F59E0B;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.92rem;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-foot {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 0.88rem; color: var(--text-1); font-weight: 700; }
.review-meta span   { font-size: 0.78rem; color: var(--text-3); }

/* ── Reviews CTA ─────────────────────────────────────────── */
.reviews-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.btn-review-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(74,130,245,0.22);
  color: var(--blue);
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(74,130,245,0.10);
}
.btn-review-open:hover {
  background: rgba(255,255,255,0.90);
  border-color: rgba(74,130,245,0.40);
  box-shadow: 0 8px 28px rgba(74,130,245,0.18);
  transform: translateY(-2px);
}

/* ── Review form modal ───────────────────────────────────── */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,36,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.review-modal-inner {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(10,20,36,0.28);
  animation: slideUp 0.25s cubic-bezier(0.22,1,0.36,1);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.review-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(107,114,128,0.10);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: background 0.15s, color 0.15s;
}
.review-modal-close:hover { background: rgba(107,114,128,0.18); color: var(--text-1); }

.review-modal-title { font-size: 1.25rem; font-weight: 800; color: var(--text-1); margin-bottom: 6px; }
.review-modal-sub   { font-size: 0.84rem; color: var(--text-3); margin-bottom: 24px; }

.review-form { display: flex; flex-direction: column; gap: 16px; }
.rf-row { display: flex; gap: 14px; }
.rf-row-2 > .rf-field { flex: 1; }
.rf-field { display: flex; flex-direction: column; gap: 6px; }
.rf-label { font-size: 0.82rem; font-weight: 600; color: var(--text-2); }
.rf-input {
  padding: 11px 14px;
  border: 1.5px solid rgba(30,70,110,0.15);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.91rem;
  color: var(--text-1);
  background: #F8FAFD;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.rf-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(74,130,245,0.13); background: #fff; }
.rf-input.error { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.rf-textarea { resize: vertical; min-height: 100px; }
.rf-submit { align-self: stretch; margin-top: 4px; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10,20,36,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 0.90rem;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(8,181,204,0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.toast svg { color: #22D3EE; flex-shrink: 0; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 780px; }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(80,130,180,0.14);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: rgba(91,143,249,0.28);
  box-shadow: 0 4px 20px rgba(30,70,110,0.07);
}
.faq-item.open {
  border-color: rgba(91,143,249,0.35);
  box-shadow: 0 8px 28px rgba(30,70,110,0.09);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-1);
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--sea); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.25s ease, color 0.2s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--sea);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.26s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 24px 22px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   hero-bg-clone — ТОЧНАЯ копия hero background в CSS-классе
   Источник: .hero-base, .hero-grid, .hero-glow-l/r/c, .hero-haze
   ══════════════════════════════════════════════════════════ */
.hero-bg-clone {
  /* Exact copy of .hero-base */
  background:
    radial-gradient(ellipse 120% 80% at 18% 0%,   #0E3356 0%, transparent 52%),
    radial-gradient(ellipse 100% 65% at 86% 100%,  #091B2E 0%, transparent 58%),
    radial-gradient(ellipse 55%  38% at 62% 48%,   #081930 0%, transparent 44%),
    linear-gradient(170deg, #07111F 0%, #050C18 55%, #07111F 100%);
}

/* Exact copy of .hero-grid */
.hero-bg-clone::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(80,150,255,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,150,255,0.065) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 44%, black 0%, rgba(0,0,0,0.5) 35%, transparent 72%);
  mask-image:         radial-gradient(ellipse 60% 60% at 50% 44%, black 0%, rgba(0,0,0,0.5) 35%, transparent 72%);
  opacity: 0.38;
}

/* Combined copy of .hero-glow-l/r/c + .hero-haze */
.hero-bg-clone::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* hero-glow-l: left, headline zone */
    radial-gradient(640px circle at -8%  8%,  rgba(60,140,255,0.22) 0%, rgba(50,110,255,0.08) 48%, transparent 70%),
    /* hero-glow-r: right, cards zone */
    radial-gradient(600px circle at 107% 18%, rgba(14,200,255,0.18) 0%, rgba(8,180,220,0.07) 48%, transparent 70%),
    /* hero-glow-c: lower-left CTA zone */
    radial-gradient(520px circle at 10%  88%, rgba(70,120,255,0.14) 0%, rgba(40,90,255,0.04) 55%, transparent 72%),
    /* hero-haze overlay */
    linear-gradient(180deg, rgba(5,18,38,0.14) 0%, rgba(7,22,44,0.22) 45%, rgba(7,24,48,0.08) 100%);
  filter: blur(60px);
}

.hero-bg-clone > * {
  position: relative;
  z-index: 3;
}

/* ── Bottom dark zone wrapper ────────────────────────────── */
.bottom-dark-zone {
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Consultation form card — hero glass style */
.cta-right {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 36px 32px;
  background:
    radial-gradient(circle at 14% 8%, rgba(96, 190, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(24, 47, 82, 0.86) 0%, rgba(10, 22, 40, 0.92) 100%);
  border: 1px solid rgba(115, 205, 255, 0.40);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(68, 170, 255, 0.06),
    0 22px 60px rgba(0,0,0,0.34),
    0 0 42px rgba(60, 180, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
/* Inner top highlight */
.cta-right::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.00) 24%),
    radial-gradient(circle at 16% 0%, rgba(120, 205, 255, 0.18), transparent 32%);
  z-index: 0;
}
/* Outer glow ring */
.cta-right::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(112, 205, 255, 0.10),
    0 0 36px rgba(58, 175, 255, 0.12);
  z-index: 0;
}
/* Ensure form content is above pseudo-elements */
.cta-right > * {
  position: relative;
  z-index: 1;
}

/* ── CTA rising particles — span full bottom-dark-zone ───── */
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-particles span {
  position: absolute;
  display: block;
  bottom: -12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(120,220,255,0.95) 0%, rgba(120,220,255,0.35) 45%, rgba(120,220,255,0) 100%);
  box-shadow: 0 0 14px rgba(84,197,255,0.22);
  opacity: 0;
  animation-name: particleRise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* rise-distance 500–620px to travel from bottom of footer to top of CTA */
.cta-particles span:nth-child(1)  { left:6%;  width:4px; height:4px; --drift-x:16px;  --rise-distance:932px;  animation-duration:10.1s; animation-delay:0s; }
.cta-particles span:nth-child(2)  { left:15%; width:6px; height:6px; --drift-x:-12px; --rise-distance:1001px; animation-duration:11.8s; animation-delay:1.4s; }
.cta-particles span:nth-child(3)  { left:26%; width:3px; height:3px; --drift-x:20px;  --rise-distance:880px;  animation-duration:8.7s;  animation-delay:2.6s; }
.cta-particles span:nth-child(4)  { left:38%; width:5px; height:5px; --drift-x:-18px; --rise-distance:966px;  animation-duration:11.2s; animation-delay:0.7s; }
.cta-particles span:nth-child(5)  { left:50%; width:4px; height:4px; --drift-x:14px;  --rise-distance:897px;  animation-duration:9.6s;  animation-delay:3.0s; }
.cta-particles span:nth-child(6)  { left:62%; width:6px; height:6px; --drift-x:-14px; --rise-distance:1035px; animation-duration:12.3s; animation-delay:1.9s; }
.cta-particles span:nth-child(7)  { left:72%; width:3px; height:3px; --drift-x:10px;  --rise-distance:845px;  animation-duration:9.2s;  animation-delay:3.4s; }
.cta-particles span:nth-child(8)  { left:81%; width:5px; height:5px; --drift-x:-16px; --rise-distance:941px;  animation-duration:10.8s; animation-delay:0.4s; }
.cta-particles span:nth-child(9)  { left:91%; width:4px; height:4px; --drift-x:12px;  --rise-distance:914px;  animation-duration:10.3s; animation-delay:2.2s; }
.cta-particles span:nth-child(10) { left:33%; width:2px; height:2px; --drift-x:-9px;  --rise-distance:863px;  animation-duration:8.3s;  animation-delay:4.2s; }

@keyframes particleRise {
  0%   { transform: translate3d(0, 0, 0) scale(0.85);                                          opacity: 0; }
  8%   {                                                                                         opacity: 0.18; }
  20%  {                                                                                         opacity: 0.38; }
  55%  {                                                                                         opacity: 0.30; }
  100% { transform: translate3d(var(--drift-x), calc(-1 * var(--rise-distance)), 0) scale(1.04); opacity: 0; }
}

/* ── CTA / Contact section — bg comes from .bottom-dark-zone ─ */
.cta-section {
  position: relative;
  padding: 110px 0 100px;
  background: transparent;
  color: #fff;
  z-index: 1;
}
/* Cursor glow on dark CTA section */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px circle at var(--mouse-x) var(--mouse-y),
    rgba(74,130,245,0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}
.cta-base {
  position: absolute;
  inset: 0;
  background: transparent;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-orb-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,143,249,0.12) 0%, transparent 70%);
  top: -150px; left: -150px;
}
.cta-orb-b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,187,208,0.10) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}
.cta-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ffffff 0%, #d4e8ff 30%, #ffffff 55%, #c0deff 85%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: titleShift 9s ease-in-out infinite;
  margin-top: 12px;
}
.cta-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-point {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}
.cta-point svg { flex-shrink: 0; color: var(--cyan); }

/* .cta-right styled above in .dark-hero-bg context */

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.02em;
}
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.93rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255,255,255,0.28);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(91,143,249,0.6);
  background: rgba(255,255,255,0.1);
}
.form-group input.error, .form-group textarea.error {
  border-color: #F87171;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-opt { opacity: 0.5; font-weight: 400; }
.form-note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.32);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  gap: 16px;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(91,143,249,0.45);
}
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: #fff; }
.form-success p  { font-size: 0.93rem; color: rgba(255,255,255,0.68); }

/* ── Footer ──────────────────────────────────────────────── */
/* ── Footer: bg comes from .bottom-dark-zone wrapper ─────── */
.footer {
  background: transparent;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.74;
  margin-top: 18px;
  max-width: 280px;
  color: rgba(255,255,255,0.80);
}
.footer-note {
  font-size: 0.80rem;
  margin-top: 10px;
  color: rgba(255,255,255,0.44);
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h5, .footer-contact h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
}
.footer-nav a, .footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-addr { font-size: 0.84rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll-to-top button ────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(91,143,249,0.45);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── Parallax layer z-stacking ───────────────────────────── */
/* Only raise .container children — never touch position:absolute siblings
   like .cta-base / .cta-orb which must stay absolute-positioned */
.section > .container {
  position: relative;
  z-index: 1;
}
/* The blob layer itself */
.parallax-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* ── Utilities ───────────────────────────────────────────── */
.br-d { display: block; }

/* ── Studio trust block ──────────────────────────────────── */
#studio {
  background: linear-gradient(165deg, #E8F4FF 0%, #DFF6FB 55%, #EDF9FF 100%);
}
#studio::before {
  content: '';
  position: absolute;
  width: 720px; height: 360px;
  background: radial-gradient(ellipse, rgba(8,177,204,0.10) 0%, transparent 70%);
  top: -60px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(2px);
}

.studio-head {
  text-align: center;
  margin-bottom: 56px;
}
.studio-head .section-sub { margin: 14px auto 0; max-width: 680px; }

.studio-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

/* Left: info cards */
.studio-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.studio-card {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 22px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(74,130,245,0.18);
  border-radius: 20px;
  box-shadow:
    0 6px 24px rgba(30,70,110,0.07),
    0 0 0 0.5px rgba(74,130,245,0.06),
    inset 0 1px 0 rgba(255,255,255,0.62);
  transition:
    transform 0.32s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.studio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    260px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(255,255,255,0.14) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}
.studio-card.card-lit::after { opacity: 1; }
.studio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8,181,204,0.32);
  box-shadow:
    0 16px 44px rgba(30,70,110,0.12),
    0 0 18px rgba(8,181,204,0.07),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.studio-card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
}
.si-icon-1 { background: linear-gradient(135deg, #4A82F5 0%, #6B9BFF 100%); }
.si-icon-2 { background: linear-gradient(135deg, #0891B2 0%, #08B5CC 100%); }
.si-icon-3 { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }

.studio-card-body h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
  line-height: 1.3;
}
.studio-card-body p {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.65;
}

/* Right: photo grid 2×2 */
.studio-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.studio-photo-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(74,130,245,0.14);
  box-shadow:
    0 12px 40px rgba(30,70,110,0.14),
    0 0 0 0.5px rgba(74,130,245,0.08),
    inset 0 1px 0 rgba(255,255,255,0.10);
  aspect-ratio: 4 / 3;
  transition:
    transform 0.36s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.36s ease;
  cursor: default;
}
.studio-photo-item:hover {
  transform: translateY(-5px) scale(1.014);
  box-shadow:
    0 22px 60px rgba(30,70,110,0.22),
    0 0 0 1px rgba(8,181,204,0.20),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.studio-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Photo placeholders — premium interior, layered gradients ── */

/* Photo 1: рабочая комната, тёплый свет настольной лампы, слева сверху */
.spi-1 {
  background:
    radial-gradient(ellipse 52% 48% at 28% 26%,
      rgba(255,195,80,0.32)  0%,
      rgba(220,150,50,0.12)  38%,
      transparent 62%),
    radial-gradient(ellipse 78% 78% at 2%  100%,
      rgba(6,16,44,0.84)  0%,
      transparent 56%),
    radial-gradient(ellipse 78% 78% at 100% 100%,
      rgba(4,12,36,0.76) 0%,
      transparent 52%),
    linear-gradient(150deg, #1c3154 0%, #0d1e3c 55%, #060f22 100%);
}
/* Photo 2: вторая рабочая зона, мерцание монитора, cyan/blue */
.spi-2 {
  background:
    radial-gradient(ellipse 48% 52% at 74% 36%,
      rgba(8,181,204,0.28) 0%,
      rgba(74,130,245,0.15) 42%,
      transparent 64%),
    radial-gradient(ellipse 68% 68% at 0%  82%,
      rgba(4,14,42,0.86) 0%,
      transparent 54%),
    radial-gradient(ellipse 58% 58% at 100% 6%,
      rgba(8,22,58,0.72) 0%,
      transparent 50%),
    linear-gradient(142deg, #0f2244 0%, #081732 60%, #040d1c 100%);
}
/* Photo 3: пространство студии, нейтральный широкоугольный свет */
.spi-3 {
  background:
    radial-gradient(ellipse 88% 38% at 50% 18%,
      rgba(74,130,245,0.20) 0%,
      rgba(8,181,204,0.09) 52%,
      transparent 72%),
    radial-gradient(ellipse 52% 52% at 6%  90%,
      rgba(3,12,34,0.88) 0%,
      transparent 48%),
    radial-gradient(ellipse 52% 52% at 94% 90%,
      rgba(3,12,34,0.84) 0%,
      transparent 48%),
    linear-gradient(174deg, #162a42 0%, #0c1c36 52%, #060d1e 100%);
}
/* Photo 4: свет и оборудование, кольцевой свет по центру */
.spi-4 {
  background:
    radial-gradient(ellipse 38% 38% at 50% 45%,
      rgba(255,248,215,0.46) 0%,
      rgba(255,218,120,0.22) 36%,
      transparent 60%),
    radial-gradient(ellipse 100% 100% at 0%   0%,
      rgba(3,10,28,0.94) 0%,
      transparent 52%),
    radial-gradient(ellipse 100% 100% at 100% 0%,
      rgba(3,10,28,0.92) 0%,
      transparent 52%),
    radial-gradient(ellipse 100% 100% at 0%   100%,
      rgba(3,10,28,0.90) 0%,
      transparent 48%),
    radial-gradient(ellipse 100% 100% at 100% 100%,
      rgba(3,10,28,0.90) 0%,
      transparent 48%),
    linear-gradient(168deg, #101e36 0%, #071220 100%);
}

/* Scene micro-details — тонкие линии, предполагающие интерьер */
.spi-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Photo 1: горизонтали рабочего стола */
.spi-scene-1::before {
  content: '';
  position: absolute;
  left: 14%; right: 8%;
  bottom: 31%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,200,80,0.24), transparent);
}
.spi-scene-1::after {
  content: '';
  position: absolute;
  left: 8%; right: 14%;
  bottom: 26%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,200,80,0.12), transparent);
}
/* Photo 2: вертикальный край монитора */
.spi-scene-2::before {
  content: '';
  position: absolute;
  right: 28%; top: 14%; bottom: 28%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(8,181,204,0.34), transparent);
}
/* Photo 3: линия пола */
.spi-scene-3::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  bottom: 24%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,130,245,0.20), transparent);
}
/* Photo 4: кольцо кольцевого света */
.spi-scene-4::before {
  content: '';
  position: absolute;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  width: 82px; height: 82px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,244,190,0.26);
  box-shadow:
    0 0 28px rgba(255,228,120,0.18),
    inset 0 0 20px rgba(255,228,120,0.12);
}

/* Подписи поверх фото */
.studio-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 38px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(3, 10, 28, 0.92) 0%,
    rgba(3, 10, 28, 0.66) 56%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.spc-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.spc-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
}

/* ── Responsive ──────────────────────────────────────────── */

/* At ≤1100px скрываем карточки, текст занимает всю ширину */
@media (max-width: 1100px) {
  .hero-layout  { grid-template-columns: 1fr; gap: 0; }
  .hero-cards   { display: none; }
}

@media (max-width: 960px) {
  .hero-layout        { grid-template-columns: 1fr; gap: 0; }
  .hero-cards         { display: none; }
  .hero-content       { max-width: 600px; }
  .format-layout      { grid-template-columns: 1fr; gap: 36px; }
  .conditions-panels  { grid-template-columns: 1fr; }
  .calc-wrap          { grid-template-columns: 1fr; }
  .goals-grid         { grid-template-columns: repeat(2, 1fr); }
  .cta-inner          { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid         { grid-template-columns: repeat(2, 1fr); }
  /* Studio block: single column */
  .studio-layout      { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section            { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .burger             { display: flex; }
  .trust-grid         { grid-template-columns: 1fr; }
  .steps              { grid-template-columns: 1fr; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-row  { flex-direction: column; gap: 6px; text-align: center; }
  .hero-title         { font-size: 2rem; }
  .hero-actions-zone  { width: 100%; }
  .hero-benefits-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .hero-benefit-pill  { width: 100%; min-height: 54px; font-size: 14px; }
  .hero-cta-row       { width: 100%; grid-template-columns: 1fr 1fr; }
  .hero-content       { max-width: 100%; }
  .cta-right          { padding: 28px 22px; }
  .form-row           { grid-template-columns: 1fr; }
  .cta-inner          { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .goals-grid         { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid           { grid-template-columns: 1fr; }
  .kpi-card--main     { grid-column: 1; }
  .hero-subtitle      { font-size: 0.97rem; }
  .cond-panel         { padding: 28px 24px; }
  .why-grid           { grid-template-columns: 1fr; }
  .bonus-grid         { grid-template-columns: 1fr; }
  .hero-benefits-grid { grid-template-columns: 1fr; }
  .hero-benefit-pill  { width: 100%; font-size: 14px; min-height: 52px; }
  .hero-cta-row       { grid-template-columns: 1fr; }
  .hero-cta-btn       { height: 58px; border-radius: 14px; }
  .hero-cta-row .btn-primary-wrap { height: 58px; }
  /* Studio: фото в 1 колонку, скрываем описания */
  .studio-photo-grid  { grid-template-columns: 1fr; gap: 12px; }
  .studio-photo-item  { aspect-ratio: 16 / 9; border-radius: 16px; }
  .spc-desc           { display: none; }
}

/* ── Mobile: reduce motion load ──────────────────────────── */
@media (pointer: coarse) {
  .cta-section::after { display: none; }
  .parallax-layer     { display: none; }
  .glass-card::after,
  .trust-card::after,
  .review-card::after,
  .step::after,
  .fh-card::after,
  .studio-card::after { display: none; }
}

/* ── Prefers reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.1s   !important;
  }
  .parallax-layer     { display: none; }
  .cta-section::after { display: none; }
}

/* ── CTA popup — мини-анкета ─────────────────────────────── */
.cta-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,14,28,0.60);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cta-popup {
  position: relative;
  background: linear-gradient(160deg, rgba(10,20,38,0.99) 0%, rgba(7,15,30,0.99) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(8,181,204,0.32);
  border-radius: 24px;
  padding: 28px 34px 24px;
  max-width: 640px;
  width: 100%;
  box-shadow:
    0 36px 90px rgba(0,0,0,0.65),
    0 0 0 0.5px rgba(8,181,204,0.16),
    0 0 64px rgba(8,181,204,0.09),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 0 44px rgba(8,181,204,0.04);
  animation: slideUp 0.30s cubic-bezier(0.22,1,0.36,1);
  /* no scrollbar on desktop — form must fit */
  overflow: hidden;
}

.cta-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.50);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.cta-popup-close:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}

/* Badge */
.cta-badge {
  display: inline-block;
  background: rgba(8,181,204,0.14);
  border: 1px solid rgba(8,181,204,0.35);
  color: #08B5CC;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.cta-popup-title {
  font-size: 1.56rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 1.22;
}
.cta-title-accent {
  background: linear-gradient(90deg, #4A82F5 0%, #08B5CC 55%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Bonus pill — dark glass, cyan border, inner glow */
.cta-bonus-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,181,204,0.07);
  border: 1px solid rgba(8,181,204,0.34);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  box-shadow:
    0 0 18px rgba(8,181,204,0.09),
    inset 0 1px 0 rgba(255,255,255,0.07);
  font-size: 0.89rem;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  line-height: 1.4;
}
.cta-bonus-icon {
  color: #08B5CC;
  flex-shrink: 0;
}
.cta-bonus-or {
  font-weight: 400;
  color: rgba(255,255,255,0.42);
}

/* Micro text — muted de-pressure line */
.cta-popup-micro {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
  line-height: 1.55;
}

/* Form layout */
.cta-form { display: flex; flex-direction: column; gap: 8px; }
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cta-field { display: flex; flex-direction: column; gap: 4px; position: relative; }

.cta-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.cta-opt {
  font-weight: 400;
  color: rgba(255,255,255,0.32);
}

.cta-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px;
  padding: 7px 11px;
  font-family: inherit;
  font-size: 0.90rem;
  color: #fff;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  -webkit-appearance: none;
}
.cta-input::placeholder { color: rgba(255,255,255,0.26); }

/* Hover: triggered by the whole .cta-field area — no dead zones */
.cta-field:hover .cta-input {
  border-color: rgba(34,211,238,0.45);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.12), 0 10px 30px rgba(0,180,255,0.08);
  transform: translateY(-1px);
}
/* Focus: :focus-within catches focus anywhere inside .cta-field */
.cta-field:focus-within .cta-input {
  border-color: rgba(34,211,238,0.75);
  background: rgba(8,181,204,0.07);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.20), 0 0 28px rgba(0,180,255,0.14);
  transform: translateY(-1px);
}
.cta-input.error {
  border-color: rgba(220,60,60,0.70) !important;
  background: rgba(220,30,30,0.06) !important;
  box-shadow: 0 0 0 3px rgba(220,60,60,0.12) !important;
}
.cta-textarea {
  resize: none;
  line-height: 1.5;
  max-height: 58px;
}

.cta-err {
  font-size: 0.76rem;
  color: rgba(255,100,100,0.90);
  min-height: 0.9em;
  line-height: 1.3;
}

/* City autocomplete widget */
.cta-city-wrap { position: relative; }
.cta-city-display { cursor: pointer; padding-right: 32px; }
.cta-city-display.open { border-color: rgba(8,181,204,0.58); background: rgba(8,181,204,0.07); }
.cta-city-arrow {
  position: absolute;
  right: 10px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.38);
  pointer-events: none;
  transition: transform 0.2s;
}
.cta-city-wrap.open .cta-city-arrow { transform: translateY(-50%) rotate(180deg); }

.cta-city-dropdown {
  position: absolute;
  top: calc(100% + 4px); left: 0; right: 0;
  background: rgba(12,22,42,0.98);
  border: 1px solid rgba(8,181,204,0.28);
  border-radius: 10px;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.cta-city-search {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  color: #fff;
  outline: none;
}
.cta-city-search::placeholder { color: rgba(255,255,255,0.30); }
.cta-city-list {
  max-height: 160px;
  overflow-y: auto;
}
.cta-city-list::-webkit-scrollbar { width: 3px; }
.cta-city-list::-webkit-scrollbar-thumb { background: rgba(8,181,204,0.25); border-radius: 3px; }
.cta-city-item {
  padding: 8px 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cta-city-item:hover, .cta-city-item.focused {
  background: rgba(8,181,204,0.12);
  color: #fff;
}
.cta-city-item.other-city {
  color: rgba(8,181,204,0.80);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-city-item.other-city:hover { color: #22D3EE; background: rgba(8,181,204,0.10); }
.cta-city-item.no-results {
  color: rgba(255,255,255,0.35);
  cursor: default;
  font-style: italic;
  font-size: 0.83rem;
}

/* Submit */
.cta-submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 15px;
  font-size: 1.00rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 24px rgba(74,130,245,0.30),
    0 0 14px rgba(8,181,204,0.22),
    0 6px 20px rgba(0,0,0,0.28);
  transition: transform 0.18s, box-shadow 0.18s;
}
.cta-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 36px rgba(74,130,245,0.42),
    0 0 22px rgba(8,181,204,0.32),
    0 10px 28px rgba(0,0,0,0.32);
}
.cta-fine {
  text-align: center;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.38);
  margin-top: 7px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ── "прямо сейчас" — cyan/blue accent gradient ─── */
.cta-now-accent {
  background: linear-gradient(90deg, #22D3EE 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ── Timer badge inside CTA popup ─────────────── */
.cta-timer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(34,211,238,0.72);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.cta-timer-badge svg { flex-shrink: 0; }
#ctaTimerDisplay {
  font-weight: 800;
  color: #22D3EE;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
/* Dim timer when expired */
.cta-timer-badge.expired { opacity: 0.35; }

/* ── Mini bonus timer in navbar ────────────────── */
.nav-bonus-timer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(8,181,204,0.10);
  border: 1px solid rgba(8,181,204,0.32);
  border-radius: 20px;
  padding: 5px 11px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: #22D3EE;
  cursor: pointer;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-bonus-timer:hover {
  background: rgba(8,181,204,0.20);
  box-shadow: 0 0 14px rgba(8,181,204,0.22);
}
#navBonusTime { letter-spacing: 0.05em; }

/* Later button */
.cta-popup-later {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.35);
  font-family: inherit;
  font-size: 0.83rem;
  cursor: pointer;
  padding: 8px 4px 0;
  text-align: center;
  transition: color 0.2s;
}
.cta-popup-later:hover { color: rgba(255,255,255,0.65); }

/* Success state */
#ctaSuccessView {
  text-align: center;
  padding: 16px 0 8px;
}
.cta-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(8,181,204,0.12);
  border: 1px solid rgba(8,181,204,0.30);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #08B5CC;
}
.cta-success-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cta-success-sub {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0;
}

/* Mobile: allow scroll when screen is too short */
@media (max-width: 560px) {
  .cta-popup {
    padding: 22px 18px 18px;
    border-radius: 18px;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .cta-popup::-webkit-scrollbar { width: 3px; }
  .cta-popup::-webkit-scrollbar-thumb { background: rgba(8,181,204,0.25); border-radius: 3px; }
  .cta-popup-title { font-size: 1.10rem; }
  .cta-bonus-pill { font-size: 0.82rem; padding: 8px 11px; }
  .cta-form-row { grid-template-columns: 1fr; gap: 8px; }
  .cta-form { gap: 8px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO PHOTO MODE — overrides (end of file = highest priority)
   ══════════════════════════════════════════════════════════════ */

/* Убрать сетку и частицы — только в hero */
.hero .hero-grid     { display: none !important; }
.hero .hero-particles { display: none !important; }

/* Haze почти убрать — лёгкая вуаль, не муть */
.hero .hero-haze { opacity: 0.25 !important; }

/* Glow-шары: ослабить каждый на 65–70%, фото выходит вперёд */
.hero .hero-glow-l { opacity: 0.28 !important; }
.hero .hero-glow-r { opacity: 0.25 !important; }
.hero .hero-glow-c { opacity: 0.22 !important; }
.hero .hero-glow-d { opacity: 0.20 !important; }
.hero .hero-glow-e { opacity: 0.20 !important; }