:root {
  --blue: #10188C;
  --blue2: #16227E;
  --blue3: #1B2B96;
  --navy-text: #0E1790;
  --white: #FFFFFF;
  --offwhite: #F2F4FC;
  --accent: #B8E779;
  --accent-light: #D6F2AC;
  --muted-dark: #A7ADDE;
  --muted-light: #4A5178;
  --radius: 14px;
  --container: 1160px;
  --font: 'Manrope', Arial, Helvetica, sans-serif;
  --font-head: 'Anton', 'Arial Narrow', Arial, sans-serif;
  --mono: 'Courier New', Courier, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; }
.center { text-align: center; }

.gold { color: var(--accent); }
.muted { color: var(--muted-dark); }

/* ---------- background: fine grid + glow blobs (fixed, behind everything) ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--blue);
  background-image:
    radial-gradient(ellipse 55% 38% at 85% 6%, rgba(184,231,121,0.16), transparent 60%),
    radial-gradient(ellipse 50% 35% at 8% 96%, rgba(184,231,121,0.08), transparent 60%),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
}

/* ---------- terminal-cursor eyebrow accent ---------- */
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-family: var(--mono);
}
.eyebrow::before { content: ">_ "; opacity: 0.85; }
.eyebrow-dark { color: var(--navy-text); }

/* ---------- meta pill (under hero title) ---------- */
.meta-pill {
  display: inline-block;
  border: 1px solid rgba(184,231,121,0.4);
  background: rgba(184,231,121,0.06);
  color: var(--accent-light);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 999px;
  margin: 0 0 34px;
}

/* ---------- floating tag badges ---------- */
.floating-tags { position: absolute; inset: 0; pointer-events: none; }
.ftag {
  position: absolute;
  background: rgba(16,24,140,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.ftag-yellow { background: var(--accent); color: var(--blue); border-color: transparent; }
@media (max-width: 1000px) { .floating-tags { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn-gold { background: var(--accent); color: var(--blue); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline-gold { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-lg { padding: 16px 34px; font-size: 15px; }
.btn-header { display: inline-flex; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,24,140,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
}
.brand-text em { color: var(--accent); font-style: normal; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.nav a:hover { opacity: 1; color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 90px;
  overflow: hidden;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -1px;
}
.hero-slogan {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 500;
  max-width: 640px;
  margin: 0 0 22px;
  line-height: 1.35;
}
.hero-sub {
  color: var(--muted-dark);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 3px;
  margin: 0 0 30px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.growth-motif {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 240px;
  opacity: 0.9;
  pointer-events: none;
}

/* ---------- sections ---------- */
.section { padding: 90px 0; position: relative; }
.section-dark { background: var(--blue); }
.section-graphite { background: var(--blue2); }
.section-light { background: var(--offwhite); color: var(--navy-text); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}
.section-title-dark { color: var(--navy-text); }

.statement {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 26px;
  max-width: 760px;
}
.lede { font-size: 17px; margin: 0 0 44px; max-width: 620px; }
.lede-dark { font-size: 16px; color: var(--muted-light); margin: 36px auto 0; max-width: 560px; }
.caption { color: var(--muted-dark); font-size: 15px; margin: 36px auto 0; max-width: 560px; }

/* ---------- problem paths ---------- */
.paths { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.path { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.chip-weak { background: var(--blue3); color: var(--muted-dark); border: 1px solid rgba(167,173,222,0.3); }
.chip-outline { background: var(--blue3); color: var(--white); border: 1px solid rgba(184,231,121,0.4); }
.chip-gold { background: var(--accent); color: var(--blue); }
.arrow { color: var(--accent); font-weight: 700; }
.arrow-weak { color: var(--muted-dark); }

/* ---------- chain ---------- */
.chain {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.chain-step {
  background: var(--blue);
  border: 1px solid rgba(184,231,121,0.35);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 15px;
  border-radius: 999px;
  font-size: 14px;
}
.chain-key { background: var(--accent); color: var(--blue); border-color: transparent; }

/* ---------- team ---------- */
.team-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 40px;
}
.team-card {
  width: 130px;
  height: 130px;
  background: var(--blue2);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 12.5px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10,15,70,0.18);
}
.team-card .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.team-card-gold { background: var(--accent); color: var(--blue); }
.op { font-size: 22px; font-weight: 700; color: var(--muted-light); }

/* ---------- pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.price-card {
  position: relative;
  background: var(--blue3);
  border: 1px solid rgba(184,231,121,0.25);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 18px; letter-spacing: 1px; margin: 0 0 12px; }
.price-card .price { font-size: 22px; font-weight: 800; color: var(--accent); margin: 0 0 14px; }
.price-card .price span { font-size: 12px; font-weight: 500; color: var(--muted-dark); }
.price-card .price-desc { font-size: 13px; color: var(--muted-dark); margin: 0 0 20px; min-height: 40px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.price-card li {
  font-size: 13px;
  color: #E3E6FA;
  padding: 7px 0 7px 20px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price-card li:first-child { border-top: none; }
.price-card li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.price-card .btn { width: 100%; }

.price-card-accent {
  background: var(--blue);
  border: 1.5px solid var(--accent);
  box-shadow: 0 16px 40px rgba(184,231,121,0.14);
  transform: translateY(-6px);
}
.badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--accent);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card-premium .price { color: var(--accent-light); }
.price-card-pro {
  background: linear-gradient(160deg, var(--blue3), #241b6b);
  border: 1.5px solid var(--accent);
}

/* ---------- why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.why-card {
  background: var(--blue2);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 10px 24px rgba(10,15,70,0.14);
}
.why-card .num { color: var(--accent); font-weight: 800; font-size: 26px; display: block; margin-bottom: 14px; font-family: var(--mono); }
.why-card h3 { color: var(--white); font-size: 15px; letter-spacing: 0.5px; margin: 0 0 10px; line-height: 1.35; }
.why-card p { color: var(--muted-dark); font-size: 13.5px; margin: 0; line-height: 1.5; }

/* ---------- cases ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.case-card {
  background: var(--blue2);
  border: 1px solid rgba(184,231,121,0.25);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
}
.case-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.case-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.case-name { font-family: var(--font-head); font-size: clamp(22px, 2.6vw, 28px); margin: 0; letter-spacing: 0.5px; }
.case-head .btn { padding: 9px 16px; font-size: 12.5px; flex-shrink: 0; }
.case-summary {
  font-size: 14px;
  font-style: italic;
  color: var(--white);
  margin: 0 0 18px;
  line-height: 1.5;
  flex-grow: 1;
}
.case-details summary {
  cursor: pointer;
  list-style: none;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--mono);
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-details summary::-webkit-details-marker { display: none; }
.case-details summary::after { content: "+"; font-size: 16px; margin-left: auto; }
.case-details[open] summary::after { content: "−"; }
.case-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.case-list li {
  font-size: 13.5px;
  color: #E3E6FA;
  line-height: 1.5;
  padding: 0 0 12px 26px;
  position: relative;
}
.case-list li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--accent); font-size: 12px; }
@media (max-width: 700px) {
  .case-card { padding: 24px 22px 22px; }
}

/* ---------- funnel ---------- */
.funnel-lede { color: var(--muted-dark); font-size: 16px; margin: 0 0 6px; }
.funnel { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 40px; }
.funnel-row {
  width: var(--w);
  max-width: 100%;
  background: var(--blue);
  border: 1px solid rgba(184,231,121,0.35);
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 999px;
  text-align: center;
}
.funnel-key { background: var(--accent); color: var(--blue); border-color: transparent; }

/* ---------- final CTA ---------- */
.cta-final { text-align: left; }
.cta-title { font-family: var(--font-head); font-size: clamp(32px, 5vw, 48px); font-weight: 800; line-height: 1.12; margin: 0 0 24px; }
.cta-final .lede { margin-bottom: 36px; }

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 90px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text { font-size: 18px; }
.footer-tagline { color: var(--muted-dark); font-size: 13.5px; margin: 10px 0 0; font-style: italic; }
.footer-contacts { display: flex; gap: 48px; flex-wrap: wrap; }
.contact-label {
  display: block;
  color: var(--muted-dark);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.footer-contacts a { color: var(--white); font-weight: 700; font-size: 14px; text-decoration: none; }
.footer-contacts a:hover { color: var(--accent); }
.copyright { color: var(--muted-dark); font-size: 12.5px; margin-top: 50px; }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  z-index: 60;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .price-card-accent { transform: none; }
  .btn-header { display: none !important; }
}

@media (max-width: 780px) {
  .nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--blue);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    gap: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav.open { max-height: 320px; }
  .nav a { padding: 16px 24px; width: 100%; opacity: 1; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .burger { display: flex; }
  .team-row { gap: 10px; }
  .team-card { width: 100px; height: 100px; font-size: 11px; }
  .op { display: none; }
  .footer-grid { flex-direction: column; gap: 24px; }
}

@media (max-width: 520px) {
  .hero { padding: 70px 0 60px; }
  .section { padding: 64px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .growth-motif { display: none; }
  .paths { gap: 14px; }
  .path-strong { gap: 8px; }
  .chip { padding: 11px 16px; font-size: 11.5px; }
}
