:root {
  --navy: #0B1B3D;
  --orange: #FF4B14;
  --blue: #166BFF;
  --green: #18A957;
  --bg: #F5F9FF;
  --card: #FFFFFF;
  --line: #E4ECF7;
  --muted: #53657f;
  --purple: #7c3aed;
  --shadow: 0 22px 55px rgba(11, 27, 61, .11);
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; text-decoration: none; }

.hero-stage {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f7fbff 0%, #eef7ff 58%, #f5f9ff 100%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 95px 0 -95px 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(245, 249, 255, .98) 0%, rgba(245, 249, 255, .9) 38%, rgba(245, 249, 255, .28) 66%, rgba(245, 249, 255, .08) 100%),
    url("images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0), #fff 84%);
  pointer-events: none;
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 24px 14px;
  background: rgba(245, 249, 255, .22);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 8px;
  min-width: 260px;
}

.brand strong {
  font-size: 34px;
  font-weight: 900;
  line-height: .92;
}

.brand strong span { color: var(--orange); }

.brand small {
  color: #194a9e;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 900;
}

.main-nav a { white-space: nowrap; }
.main-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
}

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(11, 27, 61, .08);
}

.top-cta,
.cta,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(255, 75, 20, .25);
}

.top-cta {
  min-height: 48px;
  padding: 0 22px;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 690px;
  background: transparent;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 165px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 82%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, .95fr);
  gap: 36px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 24px 44px;
}

h1 {
  max-width: 660px;
  margin: 0 0 24px;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 1.09;
  letter-spacing: 0;
  color: var(--navy);
}

h1 span { color: var(--orange); }

.lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.status-tracker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 630px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.status-tracker div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--navy);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.status-tracker div:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 18px;
  right: -11px;
  color: #a6b5cc;
  font-size: 18px;
}

.status-tracker i,
.why-icon,
.path-card .path-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.why-icon svg,
.path-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-tracker i {
  width: 42px;
  height: 42px;
  font-size: 17px;
}

.green, .green-bg, .green-icon { background: var(--green); }
.blue, .blue-bg, .blue-icon { background: var(--blue); }
.orange, .orange-bg, .orange-icon { background: var(--orange); }
.purple, .purple-icon { background: var(--purple); }

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.cta {
  min-height: 62px;
  padding: 0 22px;
  gap: 16px;
  font-size: 17px;
}

.cta span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(11, 27, 61, .08);
}

.cta,
.secondary-cta {
  white-space: nowrap;
}

.secondary-cta span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #d8e6fb;
  border-radius: 50%;
  color: var(--navy);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  color: #214467;
  font-size: 13px;
  font-weight: 900;
}

.trust-row span { color: #1d4365; }
.trust-row span::first-letter { color: var(--green); }

.hero-visual {
  position: relative;
  min-height: 600px;
  overflow: visible;
}

.floating-card,
.level-card,
.why-grid article,
.path-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 18px;
}

.offer-stat {
  left: 0;
  top: 15px;
  width: 230px;
}

.offer-stat h3 {
  margin: 0 0 13px;
  font-size: 14px;
}

.offer-stat p {
  display: grid;
  grid-template-columns: 13px 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 9px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.offer-stat a {
  display: inline-block;
  margin-top: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.revenue-stat {
  right: 0;
  top: 42px;
  width: 230px;
}

.profit-stat {
  right: 0;
  top: 254px;
  width: 185px;
}

.revenue-stat span,
.profit-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.revenue-stat strong,
.profit-stat strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 30px;
}

.revenue-stat svg {
  width: 100%;
  height: 62px;
  margin-top: 12px;
}

.dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.donut {
  position: relative;
  width: 72px;
  height: 72px;
  margin-top: 14px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 42%, var(--green) 42% 72%, var(--purple) 72% 100%);
}

.donut::after {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: #fff;
}

.levels-section,
.growth-path,
.why-section,
.pricing-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 24px;
}

.section-title {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.section-title p {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

.level-card {
  display: grid;
  gap: 16px;
  min-height: 520px;
  padding: 26px 24px 24px;
  text-align: center;
}

.badge {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.starter .badge { background: var(--green); }
.growth .badge { background: var(--blue); }
.builder .badge { background: var(--orange); }

.level-card h3,
.price-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.starter h3 { color: #0b6735; }
.growth h3 { color: #0756d9; }
.builder h3 { color: var(--orange); }

.level-lead {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.level-card ul,
.price-card ul {
  display: grid;
  gap: 17px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.level-card li,
.price-card li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
}

.level-card li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--green);
  font-weight: 900;
}

.level-card em,
.price-card em {
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dff7e9;
  color: #0b6735;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.level-result {
  align-self: end;
  margin-top: 12px;
  padding: 18px;
  border-radius: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.starter .level-result {
  border: 1px solid #a7e7bd;
  background: #ecfff3;
  color: #0b6735;
}

.growth .level-result {
  border: 1px solid #b5d0ff;
  background: #edf5ff;
  color: #0756d9;
}

.builder .level-result {
  border: 1px solid #ffc6b2;
  background: #fff2ed;
  color: #c8320b;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.path-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 165px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: none;
}

.path-card .path-icon {
  position: relative;
  width: 76px;
  height: 76px;
}

.path-card .path-icon b {
  position: absolute;
  top: -9px;
  left: -8px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(11, 27, 61, .13);
}

.green-path .path-icon { background: #ddfae9; color: var(--green); box-shadow: 0 0 0 9px rgba(24,169,87,.08); }
.blue-path .path-icon { background: #e8f1ff; color: var(--blue); box-shadow: 0 0 0 9px rgba(22,107,255,.08); }
.orange-path .path-icon { background: #fff0eb; color: var(--orange); box-shadow: 0 0 0 9px rgba(255,75,20,.08); }
.green-path .path-icon b { background: var(--green); }
.blue-path .path-icon b { background: var(--blue); }
.orange-path .path-icon b { background: var(--orange); }

.path-card h3 {
  margin: 0;
  font-size: 20px;
}

.path-grid i {
  color: #6182ad;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 13px;
  min-height: 230px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(11, 27, 61, .07);
}

.why-icon {
  width: 58px;
  height: 58px;
  box-shadow: 0 14px 32px rgba(11, 27, 61, .09);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.why-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.why-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-grid-with-help {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, .9fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px 26px 24px;
  overflow: hidden;
}

.pricing-top .price-card {
  min-height: 530px;
}

.price-card.featured {
  border: 2px solid var(--blue);
  transform: translateY(-8px);
}

.popular {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  place-items: center;
  min-height: 27px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.price-card.featured .badge { margin-top: 10px; }

.price-card strong {
  display: block;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
}

.price-card strong small {
  font-size: 18px;
  font-weight: 700;
}

.price-card p {
  margin: -6px 0 8px;
  color: var(--navy);
  font-weight: 700;
}

.price-card a {
  min-height: 52px;
  margin-top: 10px;
  width: 100%;
}

.price-card.growth a { background: var(--blue); box-shadow: 0 18px 34px rgba(22,107,255,.25); }
.price-card.starter a { background: var(--green); box-shadow: 0 18px 34px rgba(24,169,87,.22); }

.price-card > small {
  color: #53657f;
  text-align: center;
  text-decoration: underline;
  font-weight: 700;
}

.pricing-help-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 40px rgba(11, 27, 61, .07);
}

.pricing-help-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.pricing-help-card details {
  border: 1px solid #edf2fb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(11, 27, 61, .04);
}

.pricing-help-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  padding: 0 14px;
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.pricing-help-card summary::-webkit-details-marker {
  display: none;
}

.pricing-help-card summary::after {
  content: "⌄";
  color: #617390;
  font-size: 18px;
}

.pricing-help-card details[open] summary::after {
  transform: rotate(180deg);
}

.pricing-help-card p {
  margin: -2px 14px 14px;
  color: #53657f;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.help-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.help-more span {
  font-size: 28px;
}

.trust-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding: 30px max(24px, calc((100vw - 1440px) / 2 + 24px));
  background: linear-gradient(135deg, #061b42, #082e66);
  color: #fff;
}

.trust-footer div {
  display: grid;
  gap: 4px;
}

.trust-footer strong {
  font-size: 24px;
}

.trust-footer span {
  color: #dce9ff;
  font-weight: 700;
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    font-weight: 900;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.open .main-nav,
  .site-header.open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .site-header.open .main-nav a,
  .site-header.open .header-actions a {
    padding: 10px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .level-grid,
  .pricing-grid,
  .trust-footer {
    grid-template-columns: 1fr;
  }

  .pricing-grid-with-help {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-grid i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 28px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero-inner,
  .levels-section,
  .growth-path,
  .why-section,
  .pricing-section {
    padding-inline: 18px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .status-tracker {
    grid-template-columns: 1fr;
  }

  .status-tracker div:not(:last-child)::after {
    display: none;
  }

  .cta,
  .secondary-cta,
  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

}
