@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-2: #0f2040;
  --navy-3: #1a3260;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-light: #fb923c;
  --green: #15803d;
  --green-dark: #14532d;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --muted: #94a3b8;
  --border: rgba(255,255,255,0.1);
  --border-dark: #e2e8f0;
  --text: #0a1628;
  --panel: #f8fafc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

/* ── NAV ── */
.nav-wrap {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--orange);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-text span {
  color: var(--orange);
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

/* ── HERO ── */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(234,88,12,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(21,128,61,0.08) 0%, transparent 50%);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.subhead {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-points li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── HERO CARD ── */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(234,88,12,0.3);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 16px 16px 0 0;
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 20px;
}

.price-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-amount small {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.text-link {
  color: var(--orange-light);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-orange {
  background: var(--orange);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  margin-bottom: 12px;
}

.section-label.light {
  color: var(--orange-light);
  border-color: var(--orange-light);
}

/* ── CARDS ── */
.cards {
  display: grid;
  gap: 20px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(10,22,40,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(234,88,12,0.1);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.card.dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.card.dark h3 { color: var(--white); }
.card.dark p { color: #94a3b8; }

.card.accent-top {
  border-top: 3px solid var(--orange);
}

.big-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin: 12px 0 8px;
}

.big-price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: var(--orange);
  opacity: 0.3;
  z-index: 0;
}

.step {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

/* ── CTA PANEL ── */
.cta-panel {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(234,88,12,0.25);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.cta-panel h2 { color: var(--white); }
.cta-panel p { color: #94a3b8; max-width: 480px; }

.cta-stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq { display: grid; gap: 10px; }

details {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

details[open] {
  box-shadow: 0 4px 16px rgba(10,22,40,0.08);
  border-color: var(--orange);
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 20px;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}

details[open] summary::after {
  content: '−';
}

summary::-webkit-details-marker { display: none; }

details p {
  padding: 0 20px 18px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 16px 0;
  border-top: 1px solid rgba(234,88,12,0.2);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.trust-item span {
  font-size: 1.1rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.footer a { color: #94a3b8; transition: color 0.2s; }
.footer a:hover { color: var(--orange); }
.footer p { font-size: 0.88rem; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── MOBILE HAMBURGER ── */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--white);
  font-size: 1.2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid,
  .steps,
  .cards.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards.two { grid-template-columns: 1fr; }

  .hero { padding: 40px 0 52px; }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .steps::before { display: none; }
  .step { text-align: left; }
  .num { margin: 0 0 14px; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 16px;
    border-top: 1px solid rgba(234,88,12,0.3);
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-wrap { position: relative; }

  h1 { font-size: 2.4rem; }

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

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

  .section { padding: 56px 0; }

  .cta-panel { padding: 24px 20px; }

  .trust-items { gap: 20px; justify-content: flex-start; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .btn { padding: 13px 18px; font-size: 0.9rem; }
}
/* ── HIGH-CONVERTING MOBILE LANDING PAGE POLISH ── */
@media (max-width: 700px) {

  .hero {
    padding: 34px 0 44px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 0.95;
    margin-bottom: 14px;
  }

  .subhead {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 340px;
    margin-bottom: 22px;
  }

  .cta-row {
    margin-bottom: 26px;
  }

  .cta-row .btn,
  .hero-card .btn,
  .cta-stack .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  .btn-primary {
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.32);
  }

  .hero-points {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    gap: 12px;
    max-width: 320px;
  }

  .hero-card {
    padding: 24px 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  }

  .price-amount {
    font-size: 3.4rem !important;
  }

  .trust-bar {
    padding: 18px 0;
  }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-item {
    justify-content: center;
    font-size: 0.9rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-label {
    border-left: none;
    padding-left: 0;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 4px;
  }

  .card {
    padding: 22px 18px;
    box-shadow: 0 8px 24px rgba(10,22,40,0.06);
  }

  .card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .big-price {
    font-size: 3.4rem;
  }

  #pricing .card {
    border: 2px solid var(--orange);
    box-shadow: 0 16px 36px rgba(234,88,12,0.14);
  }

  .cta-panel {
    border-radius: 14px;
    padding: 30px 20px;
    box-shadow: 0 16px 36px rgba(10,22,40,0.18);
  }

  .cta-panel p {
    margin-left: auto;
    margin-right: auto;
  }

  details {
    text-align: left;
  }

  summary {
    font-size: 1rem;
    line-height: 1.25;
  }

  .footer {
    padding-bottom: 88px;
  }

  /* Sticky mobile CTA */
  .mobile-sticky-cta {
    display: none;
  }
  
  @media (max-width: 700px) {
    .mobile-sticky-cta {
      display: block;
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 14px;
      z-index: 999;
      background: var(--orange);
      color: var(--white);
      font-weight: 800;
      text-align: center;
      padding: 15px 18px;
      border-radius: 8px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.28);
    }
  }
}