:root {
  --navy: #0e2a4d;
  --navy-2: #071a33;
  --blue: #123a66;
  --lime: #c8e600;
  --lime-soft: #e0f366;
  --gold: #c9a24b;
  --red: #d90116;
  --ink: #14243f;
  --muted: rgba(20, 36, 63, 0.68);
  --line: rgba(20, 36, 63, 0.12);
  --panel: #ffffff;
  --panel-soft: #f4f7fb;
  --radius: 16px;
  --shadow: 0 20px 55px rgba(7, 26, 51, 0.12), 0 4px 14px rgba(7, 26, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  letter-spacing: 0;
}

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

p {
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--navy-2);
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 230, 0, 0.16);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
  color: var(--muted);
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--navy-2);
  font-weight: 900;
  background: var(--lime);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 720px;
  padding: clamp(44px, 7vw, 90px) clamp(20px, 6vw, 86px) 56px;
  background:
    linear-gradient(135deg, rgba(200, 230, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 950;
  color: var(--navy-2);
}

.lead {
  max-width: 680px;
  margin: 20px 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 720;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  color: var(--navy-2);
  background: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--navy-2);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(200, 230, 0, 0.28);
}

.button.secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.free-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.phone {
  position: absolute;
  width: 295px;
  border-radius: 40px;
  padding: 12px;
  background: #050b14;
  box-shadow: var(--shadow);
}

.phone-main {
  right: 120px;
  top: 10px;
  transform: rotate(-5deg);
}

.phone-side {
  right: 0;
  top: 118px;
  transform: rotate(7deg) scale(0.92);
}

.phone-top {
  width: 86px;
  height: 21px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #080f1d;
}

.screen {
  min-height: 500px;
  border-radius: 28px;
  padding: 18px;
  background: #fff;
}

.dark-screen {
  background: #000;
  color: #fff;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 950;
}

.avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}

.progress-panel {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: var(--navy);
}

.progress-panel span,
.progress-panel small {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 900;
}

.progress-panel strong {
  display: block;
  margin: 12px 0;
  font-size: 48px;
  line-height: 1;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.start-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 15px;
  border-radius: 16px;
  color: var(--navy-2);
  background: var(--lime);
}

.start-card small {
  display: block;
  margin-top: 3px;
  opacity: 0.75;
  font-weight: 800;
}

.start-card b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,0.18);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.mini-grid span {
  padding: 18px 12px;
  border-radius: 14px;
  background: var(--panel-soft);
  font-size: 13px;
  font-weight: 900;
}

.question-chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(200,230,0,0.12);
  font-size: 12px;
  font-weight: 950;
}

.question-text {
  margin: 24px 0;
  color: #eaf1fb;
  font-size: 18px;
  font-weight: 650;
}

.answer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  color: #eaf1fb;
  background: rgba(255,255,255,0.06);
}

.answer.selected {
  color: var(--lime);
  border-color: rgba(200,230,0,0.65);
  background: rgba(200,230,0,0.14);
}

.ai-box {
  margin-top: 20px;
  padding: 13px;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(201,162,75,0.14);
  font-weight: 900;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 6vw, 86px);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
  transform: translateY(-28px);
  box-shadow: var(--shadow);
}

.metrics div {
  padding: 24px;
  background: #fff;
}

.metrics strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 70px clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2,
.legal h1 {
  color: var(--navy-2);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 950;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article,
.price-card,
.steps div,
.mock-card,
.matter-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: 22px;
}

.feature-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 13px;
  color: var(--navy-2);
  background: var(--lime);
  font-weight: 950;
}

.feature-grid h3,
.steps h3,
.price-card h3 {
  color: var(--navy-2);
  font-size: 20px;
}

.feature-grid p,
.steps p,
.price-card p,
.matter-copy,
.faq p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
  background: var(--panel-soft);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.steps div {
  padding: 20px;
}

.steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--navy-2);
  background: var(--lime);
}

.matter-section {
  margin: 70px clamp(20px, 6vw, 86px);
  padding-left: clamp(20px, 5vw, 54px);
  padding-right: clamp(20px, 5vw, 54px);
}

.matter-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
}

.matter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.matter-list span {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(18, 58, 102, 0.08);
  font-weight: 850;
  font-size: 13px;
}

.gallery {
  background: var(--navy-2);
}

.gallery .section-heading h2,
.gallery .section-heading p:not(.eyebrow) {
  color: #fff;
}

.gallery .section-heading p:not(.eyebrow) {
  opacity: 0.7;
}

.carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.slides {
  position: relative;
  min-height: 330px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-2);
  background: var(--lime);
  font-size: 34px;
  cursor: pointer;
}

.mock-card {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 26px;
  text-align: center;
}

.mock-card h3 {
  font-size: 34px;
}

.mock-card.navy {
  color: #fff;
  background: var(--navy);
}

.mock-card.lime {
  color: var(--navy-2);
  background: var(--lime);
}

.mock-card.white {
  background: #fff;
}

.mock-card.dark {
  color: #fff;
  background: #000;
  border-color: rgba(255,255,255,0.16);
}

.pricing {
  background: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  padding: 24px;
}

.price-card.highlighted {
  border-color: rgba(200, 230, 0, 0.7);
  box-shadow: 0 24px 70px rgba(200, 230, 0, 0.2);
}

.badge {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--navy-2);
  background: var(--lime);
  font-size: 11px;
  font-weight: 950;
}

.badge.quiet {
  color: var(--navy);
  background: rgba(201,162,75,0.2);
}

.price {
  margin: 18px 0 6px;
  color: var(--navy-2) !important;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.price span {
  font-size: 15px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 750;
}

.price-card .button {
  width: 100%;
}

.faq {
  background: var(--panel-soft);
}

details {
  max-width: 880px;
  margin: 10px auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

summary {
  cursor: pointer;
  color: var(--navy-2);
  font-weight: 900;
}

.final-cta {
  margin: 70px clamp(20px, 6vw, 86px);
  padding: clamp(32px, 6vw, 70px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  text-align: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: rgba(255,255,255,0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 28px;
  padding: 46px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer h4 {
  margin: 0 0 8px;
  color: var(--navy-2);
}

.site-footer .brand {
  color: var(--navy);
}

.disclaimer {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-size: 13px;
}

.legal-page {
  background: var(--panel-soft);
}

.legal-header,
.legal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(20px, 6vw, 86px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}

.legal {
  max-width: 860px;
  margin: 38px auto;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal h1 {
  margin-bottom: 8px;
}

.legal h2 {
  margin-top: 30px;
  color: var(--navy);
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.72;
}

.legal a {
  color: var(--blue);
  font-weight: 850;
}

.updated {
  color: var(--blue) !important;
  font-weight: 850;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .phone-main {
    left: 4vw;
    right: auto;
  }

  .phone-side {
    right: 6vw;
  }

  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .matter-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 34px 18px 28px;
  }

  h1 {
    font-size: 42px;
  }

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

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

  .phone {
    width: 255px;
  }

  .phone-main {
    left: 0;
  }

  .phone-side {
    right: -18px;
    top: 190px;
  }

  .screen {
    min-height: 440px;
  }

  .metrics,
  .feature-grid,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin: 0 18px;
    transform: none;
  }

  .section,
  .matter-section {
    margin: 0;
    padding: 54px 18px;
  }

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

  .carousel-btn {
    display: none;
  }

  .site-footer {
    padding: 34px 18px;
  }

  .legal-header,
  .legal-footer {
    padding: 14px 18px;
  }

  .legal {
    margin: 18px;
  }
}
