:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F6F8FC;
  --bg-wash:      #EEF3FF;
  --ink:          #0D1B2A;
  --ink-muted:    #4A5568;
  --ink-dim:      #96A0AE;
  --line:         rgba(0, 0, 0, 0.07);
  --line-strong:  rgba(0, 0, 0, 0.12);
  --green:        #17B359;
  --green-bright: #1DCB68;
  --green-glow:   rgba(23, 179, 89, 0.22);
  --green-soft:   rgba(23, 179, 89, 0.08);
  --blue:         #0047F9;
  --shadow-sm:    0 1px 3px rgba(13,27,42,0.06), 0 4px 12px rgba(13,27,42,0.04);
  --shadow-md:    0 4px 20px rgba(13,27,42,0.08), 0 8px 40px rgba(13,27,42,0.05);
  --shadow-lg:    0 8px 40px rgba(13,27,42,0.10), 0 24px 64px rgba(13,27,42,0.07);
  --ease:         cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Background atmosphere ──────────────────────────── */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.atmosphere::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(23, 179, 89, 0.09), transparent 70%);
  filter: blur(60px);
}
.atmosphere::after {
  content: "";
  position: absolute;
  top: 35%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(closest-side, rgba(0, 71, 249, 0.06), transparent 70%);
  filter: blur(80px);
}

/* ─── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
section { position: relative; z-index: 1; padding: 120px 0; }
@media (max-width: 768px) { section { padding: 80px 0; } }

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 260ms ease, box-shadow 260ms ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(13,27,42,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.logos {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand .logos .plus {
  color: var(--ink-dim);
  font-weight: 400;
  font-size: 16px;
}
.brand .logos .bx-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand .logos .wa-logo {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #25D366 0%, #17B359 100%);
  box-shadow: 0 3px 10px rgba(23, 179, 89, 0.30);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--ink); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 220ms var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-muted);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: rgba(0,0,0,0.2);
}
.btn-primary {
  background: linear-gradient(180deg, #22D26B 0%, #17B359 100%);
  color: #03210E;
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(23, 179, 89, 0.3),
    0 8px 24px -6px rgba(23, 179, 89, 0.40),
    inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(23, 179, 89, 0.45),
    0 16px 36px -4px rgba(23, 179, 89, 0.50),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: radial-gradient(closest-side, var(--green-glow), transparent 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity 300ms ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.btn-primary:hover::after { opacity: 1; }
@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: 0.4; }
  50%       { transform: scale(1.08); opacity: 0.75; }
}
.btn-xl { padding: 18px 36px; font-size: 17px; border-radius: 14px; }

/* ─── Hero ───────────────────────────────────────────── */
.hero { padding-top: 64px; padding-bottom: 100px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(23, 179, 89, 0.20);
  font-size: 13px;
  font-weight: 600;
  color: #0E7A3D;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}
.hero-eyebrow .dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--green);
  opacity: 0.4;
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

h1.hero-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 28px;
}
.hero-title .accent {
  background: linear-gradient(135deg, #1DCB68 0%, #0E9E4A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 40px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-dim);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { color: var(--green); flex-shrink: 0; }

/* ─── Section headers ────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
h2.section-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 20px;
}
.section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0;
}
.section-head-center { text-align: center; }
.section-head-center .section-lede { margin: 0 auto; }

/* ─── Pain cards ─────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 860px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  padding: 32px;
  border-radius: 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.30);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
  margin-bottom: 22px;
}
.pain-card h3 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pain-card p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.6; }

.pain-resolve {
  margin-top: 40px;
  padding: 26px 32px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(23,179,89,0.07), rgba(23,179,89,0.02));
  border: 1.5px solid rgba(23, 179, 89, 0.18);
  display: flex;
  align-items: center;
  gap: 18px;
}
.pain-resolve-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #22D26B 0%, #17B359 100%);
  display: grid;
  place-items: center;
  color: #03210E;
  box-shadow: 0 4px 12px rgba(23,179,89,0.30);
}
.pain-resolve p { margin: 0; font-size: 16px; font-weight: 600; color: #0E5C2C; }

/* ─── How it works ───────────────────────────────────── */
.steps-wrap { margin-top: 72px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }
.steps-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green) 20%, var(--green) 80%, transparent);
  opacity: 0.25;
  z-index: 0;
}
@media (max-width: 860px) { .steps-grid::before { display: none; } }
.step {
  position: relative;
  padding: 36px 28px;
  border-radius: 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  z-index: 1;
  transition: box-shadow 240ms ease, transform 240ms ease;
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  border: 1.5px solid rgba(23, 179, 89, 0.22);
  display: grid;
  place-items: center;
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0E7A3D;
  margin-bottom: 24px;
}
.step h3 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.6; }

/* ─── Feature grid ───────────────────────────────────── */
.features-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.feature {
  grid-column: span 4;
  padding: 32px;
  border-radius: 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 260ms var(--ease);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(23, 179, 89, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.feature:hover {
  border-color: rgba(23, 179, 89, 0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature:hover::before { opacity: 1; }
.feature.span-6 { grid-column: span 6; }
.feature.span-8 { grid-column: span 8; }
@media (max-width: 860px) {
  .feature, .feature.span-6, .feature.span-8 { grid-column: span 12; }
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-soft);
  border: 1.5px solid rgba(23, 179, 89, 0.18);
  display: grid;
  place-items: center;
  color: #0E7A3D;
  margin-bottom: 22px;
}
.feature h3 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feature p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.6; }

/* ─── Pricing ────────────────────────────────────────── */
.pricing-card {
  max-width: 520px;
  margin: 64px auto 0;
  padding: 48px 48px 44px;
  border-radius: 28px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(23, 179, 89, 0.40), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.pricing-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #0E7A3D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(23,179,89,0.18);
}
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.pricing-price .amount {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0D1B2A 0%, #1DCB68 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-price .unit { font-family: "Inter Tight", sans-serif; font-weight: 500; font-size: 18px; color: var(--ink-muted); }
.pricing-subline { font-size: 15px; color: var(--ink-muted); margin: 0 0 28px; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.pricing-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--ink-muted); }
.pricing-list .check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1.5px solid rgba(23, 179, 89, 0.25);
  display: grid;
  place-items: center;
  color: #0E7A3D;
}
.pricing-card .btn-primary { width: 100%; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-layout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 240ms ease;
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  border-color: rgba(23, 179, 89, 0.28);
  box-shadow: 0 4px 20px rgba(23,179,89,0.08);
}
.faq-item summary {
  padding: 20px 22px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ink-dim);
  flex-shrink: 0;
  transition: transform 300ms var(--ease), color 200ms, background 200ms, border-color 200ms;
}
.faq-item[open] summary .plus-icon {
  transform: rotate(135deg);
  color: #0E7A3D;
  border-color: rgba(23, 179, 89, 0.40);
  background: var(--green-soft);
}
.faq-content {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease);
}
.faq-item[open] .faq-content { grid-template-rows: 1fr; }
.faq-content-inner { min-height: 0; padding: 0 22px; }
.faq-item[open] .faq-content-inner { padding: 0 22px 22px; }
.faq-content p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.65; }

/* ─── Contact card ───────────────────────────────────── */
.contact-card {
  padding: 32px;
  border-radius: 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 88px;
}
.contact-card h3 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-card > p { margin: 0 0 22px; color: var(--ink-muted); font-size: 15px; }
.field { display: block; margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.field input::placeholder { color: var(--ink-dim); }
.field input:focus {
  outline: none;
  border-color: rgba(23, 179, 89, 0.50);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(23,179,89,0.10);
}
.contact-card .btn-primary { width: 100%; margin-top: 6px; }

/* ─── Final CTA ──────────────────────────────────────── */
.final-cta {
  margin-top: 40px;
  padding: 96px 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #F0FBF5 0%, #E8F4FF 100%);
  border: 1.5px solid rgba(23,179,89,0.16);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(23, 179, 89, 0.12), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta h2 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
}
.final-cta p { font-size: 18px; color: var(--ink-muted); margin: 0 0 38px; position: relative; }
.final-cta .btn-primary { position: relative; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink-muted);
  font-size: 14px;
}

/* Top row: brand + contacts */
.footer-top {
  padding: 56px 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.footer-brand-row .bx-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
}
.footer-brand-row .wa-logo {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #25D366 0%, #17B359 100%);
  flex-shrink: 0;
}
.footer-brand-row .plus {
  color: var(--ink-dim);
  font-weight: 400;
}
.footer-tagline {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  max-width: 320px;
}

/* Contacts */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 720px) {
  .footer-contacts { align-items: flex-start; }
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 180ms ease;
}
.footer-contact-item:hover { color: var(--green); }
.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
  transition: border-color 180ms ease, background 180ms ease;
}
.footer-contact-item:hover .footer-contact-icon {
  border-color: rgba(23,179,89,0.35);
  background: var(--green-soft);
}

/* Bottom bar */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy strong { color: var(--ink-muted); font-weight: 600; }
.footer-copy a {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer-copy a:hover { color: var(--green); }
.footer-copy .sep {
  color: var(--line-strong);
}

/* Payment logos */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-logo {
  height: 26px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Privacy policy page ────────────────────────────── */
.policy-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.policy-hero .section-eyebrow { margin-bottom: 14px; }
.policy-hero h1 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 16px;
}
.policy-hero .policy-meta {
  font-size: 14px;
  color: var(--ink-dim);
}

.policy-body {
  padding: 72px 0 96px;
}
.policy-content {
  max-width: 780px;
}
.policy-section {
  margin-bottom: 48px;
}
.policy-section h2 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
}
.policy-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 14px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
  padding-left: 0;
  margin: 12px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-section ul li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  padding-left: 20px;
  position: relative;
}
.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.7;
}
.policy-section a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(23,179,89,0.25);
  transition: border-color 180ms ease, color 180ms ease;
}
.policy-section a:hover {
  color: #0E7A3D;
  border-bottom-color: rgba(23,179,89,0.6);
}
.policy-term {
  font-weight: 600;
  color: var(--ink);
}

/* Numbered sub-items (1.1., 4.1.1. etc.) */
.policy-item {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 12px;
  padding-left: 0;
}
.policy-item:last-child { margin-bottom: 0; }

/* Dash / bullet sub-lists inside items */
.policy-dash-list {
  padding-left: 0;
  margin: 10px 0 14px 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.policy-dash-list li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  padding-left: 18px;
  position: relative;
}
.policy-dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  top: 2px;
}

/* Requisites card (last section) */
.policy-requisites {
  margin-top: 8px;
  padding: 28px 32px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}
@media (max-width: 600px) {
  .policy-requisites { grid-template-columns: 1fr; }
}
.req-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.req-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.req-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.req-value a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(23,179,89,0.25);
  transition: border-color 180ms ease, color 180ms ease;
}
.req-value a:hover { color: #0E7A3D; border-bottom-color: rgba(23,179,89,0.6); }

/* ─── Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay:   0ms; }
.stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay:  80ms; }
.stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 160ms; }
.stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 320ms; }
.stagger.in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
.stagger.in > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 480ms; }

.hero-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 900ms var(--ease) forwards;
}
.hero-stagger > *:nth-child(1) { animation-delay:  80ms; }
.hero-stagger > *:nth-child(2) { animation-delay: 200ms; }
.hero-stagger > *:nth-child(3) { animation-delay: 320ms; }
.hero-stagger > *:nth-child(4) { animation-delay: 440ms; }
.hero-stagger > *:nth-child(5) { animation-delay: 560ms; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.float { animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ─── Hero visual (dark chat mockup) ────────────────── */
.hero-visual { position: relative; min-height: 520px; }
.hero-visual-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  max-width: 520px;
  margin: 0 auto;
}
.hv-panel {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(180deg, #151D34, #0D1525);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px -16px rgba(13,27,42,0.30), 0 8px 24px rgba(13,27,42,0.14);
}
.hv-main {
  left: 6%; top: 8%;
  width: 78%; height: 84%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.hv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hv-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22D26B, #17B359);
  display: grid;
  place-items: center;
  color: #03210E;
  font-weight: 700;
  font-size: 14px;
  font-family: "Inter Tight", sans-serif;
}
.hv-header-text { flex: 1; }
.hv-header-text .name  { font-size: 14px; font-weight: 600; color: #F0F4FA; }
.hv-header-text .status {
  font-size: 11px;
  color: #22D26B;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hv-header-text .status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22D26B;
  box-shadow: 0 0 8px #17B359;
}
.hv-bubbles { display: flex; flex-direction: column; gap: 10px; flex: 1; overflow: hidden; }
.hv-bubble {
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 82%;
  opacity: 0;
  animation: bubbleIn 520ms var(--ease) forwards;
}
.hv-bubble.in {
  background: rgba(255,255,255,0.07);
  color: #D8E0EE;
  border-top-left-radius: 4px;
  align-self: flex-start;
}
.hv-bubble.out {
  background: linear-gradient(180deg, #22D26B, #17B359);
  color: #03210E;
  border-top-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.hv-bubble:nth-child(1) { animation-delay:  800ms; }
.hv-bubble:nth-child(2) { animation-delay: 1400ms; }
.hv-bubble:nth-child(3) { animation-delay: 2000ms; }
.hv-bubble:nth-child(4) { animation-delay: 2600ms; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hv-input-row {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hv-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.30);
  font-size: 12px;
}
.hv-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #22D26B, #17B359);
  display: grid;
  place-items: center;
  color: #03210E;
}
.hv-badge {
  right: 2%; top: 22%;
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(180deg, #1A2440, #111A30);
  border: 1px solid rgba(23,179,89,0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.20);
  animation: float 6s ease-in-out infinite;
  animation-delay: -1s;
}
.hv-badge .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(23, 179, 89, 0.14);
  display: grid;
  place-items: center;
  color: #22D26B;
}
.hv-badge .label { font-size: 11px; color: rgba(255,255,255,0.38); }
.hv-badge .value { font-family: "Inter Tight", sans-serif; font-size: 18px; font-weight: 700; color: #F0F4FA; line-height: 1.1; }
.hv-lead {
  left: 0; bottom: 4%;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1A2440, #111A30);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.20);
  animation: float 8s ease-in-out infinite;
  animation-delay: -3s;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.hv-lead .b-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #0047F9;
  box-shadow: 0 0 10px rgba(0,71,249,0.6);
  flex-shrink: 0;
}
.hv-lead .text .label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.hv-lead .text .value { font-family: "Inter Tight", sans-serif; font-size: 14px; font-weight: 600; color: #F0F4FA; }

/* ─── Stats strip ────────────────────────────────────── */
.stats-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 48px;
  border-top: 1.5px solid var(--line);
}
@media (max-width: 720px) { .stats-strip { grid-template-columns: 1fr; gap: 28px; } }
.stat .value {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 6px;
}
.stat .value .suffix { color: var(--green); }
.stat .label { font-size: 14px; color: var(--ink-muted); }

/* ─── Section bg alternation ─────────────────────────── */
.section-soft { background: var(--bg-soft); }

@media (max-width: 520px) {
  .brand {
    flex-direction: column;
  }

  .final-cta {
    padding-inline: 16px;
  }

  .btn-xl {
    max-width: 100%;
  }

  .pricing-card {
    padding-inline: 24px;
  }
}