*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #142233;
  --navy-card:  #1A2E42;
  --amber:      #F5A623;
  --amber-dark: #D48E1A;
  --white:      #FFFFFF;
  --gray-bg:    #F4F6F9;
  --gray-text:  #94A3B8;
  --body-muted: #CBD5E1;
  --text-dark:  #1A2B3C;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
}

/* ─── NAV ─── */
nav {
  background: var(--navy);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.nav-brand-main {
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.3px;
}

.nav-brand-sub {
  color: var(--amber);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #9DB3C8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--amber);
  color: var(--navy) !important;
  font-weight: 800 !important;
  padding: 9px 22px;
  border-radius: 7px;
  transition: background .2s, transform .2s !important;
}

.nav-cta:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  padding: 96px 48px 104px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.28);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  max-width: 720px;
  margin: 0 auto 22px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero p {
  color: var(--body-muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 40px;
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-amber {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--amber);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: rgba(13,27,42,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTIONS ─── */
.sec {
  padding: 88px 48px;
}

.sec-dark  { background: var(--navy); }
.sec-gray  { background: var(--gray-bg); }
.sec-white { background: var(--white); }
.sec-center { text-align: center; }

.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.sec-title-light { color: var(--white); }
.sec-title-dark  { color: var(--navy); }

.sec-sub {
  font-size: 17px;
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto 52px;
}

.sec-sub-light { color: var(--body-muted); }
.sec-sub-dark  { color: #4B5E73; }

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feat-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color .25s, transform .25s;
}

.feat-card:hover {
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-3px);
}

.feat-icon {
  width: 46px;
  height: 46px;
  background: rgba(245,166,35,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feat-card h3 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feat-card p {
  color: var(--gray-text);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ─── COMPARISON ─── */
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.comp-card {
  border-radius: 14px;
  padding: 34px 28px;
  text-align: left;
}

.comp-card.them {
  background: var(--white);
  border: 1.5px solid #DDE4ED;
}

.comp-card.us {
  background: var(--navy);
  border: 1.5px solid var(--amber);
}

.comp-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
}

.comp-label.them-lbl { color: #94A3B8; }
.comp-label.us-lbl   { color: var(--amber); }

.comp-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 26px;
}

.comp-card.them h3 { color: var(--navy); }
.comp-card.us h3   { color: var(--white); }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.comp-list.them-list li { color: #64748B; }
.comp-list.us-list   li { color: var(--body-muted); }

.ic-check { color: var(--amber);  font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.ic-cross  { color: #EF4444; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1.5px solid #DDE4ED;
  border-radius: 16px;
  padding: 36px 26px 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  text-align: left;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.09);
}

.price-card.featured {
  border-color: var(--amber);
  box-shadow: 0 10px 36px rgba(245,166,35,0.18);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-period {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 10px;
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px;
}

.price-amount .dollar {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.price-amount .number {
  font-size: 54px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.price-amount .per {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  padding-bottom: 6px;
}

.price-equiv {
  font-size: 12.5px;
  color: var(--gray-text);
  min-height: 18px;
  margin-bottom: 6px;
}

.price-save {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: #B07A14;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
  min-height: 22px;
}

.price-divider {
  height: 1px;
  background: #E8EDF3;
  margin-bottom: 22px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #4B5E73;
}

.btn-price-amber {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}

.btn-price-amber:hover { background: var(--amber-dark); }

.btn-price-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid #C8D5E0;
  transition: border-color .2s, color .2s;
}

.btn-price-outline:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
}

.price-note {
  font-size: 11.5px;
  color: var(--gray-text);
  text-align: center;
  margin-top: 10px;
}

/* ─── FAQ ─── */
.faq-stack {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid #DDE4ED;
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background .2s;
}

.faq-q:hover { background: #F8FAFB; }

.faq-chevron {
  color: var(--amber);
  font-size: 18px;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 14px;
  color: #4B5E73;
  line-height: 1.72;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 250px;
  padding: 0 24px 22px;
}

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  background: var(--navy);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── FOOTER ─── */
footer {
  background: #080F18;
  padding: 28px 48px;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-copy {
  color: #8A9BB0;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-policy {
  font-size: 13px;
}

.footer-policy a {
  color: #8A9BB0;
  text-decoration: none;
  transition: color .2s;
}

.footer-policy a:hover { color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .sec { padding: 68px 22px; }
  .hero { padding: 72px 22px 80px; }
  .trust-bar { padding: 14px 22px; gap: 14px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .comparison-wrap { grid-template-columns: 1fr; }
  .bottom-cta { padding: 72px 22px; }
  footer { padding: 36px 22px; }
}
