﻿:root {
  --navy: #06336b;
  --blue: #0a4da3;
  --orange: #ff9d00;
  --yellow: #ffd21f;
  --text: #2d2d2d;
  --muted: #666;
  --line: #e6e6e6;
  --soft: #f7f8fb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  /* position: sticky; */
  top: 0;
  z-index: 10;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -.02em;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffb000, #0b3c78);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 18px rgba(6, 51, 107, .2);
}

.logo span {
  display: block;
}

.logo small {
  display: block;
  color: #f18600;
  font-size: 14px;
  letter-spacing: 0;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  text-align: center;
}

  .btn:hover {
    transform: translateY(-1px);
  }

.btn-primary {
  color: #111;
  background: linear-gradient(#ffe665, var(--yellow) 55%, #f3a500);
  box-shadow: 0 8px 0 #d47a00, 0 16px 25px rgba(255, 157, 0, .25);
  border: 2px solid #f2b400;
}

.btn-secondary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 51, 107, .22);
}

.btn-outline {
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
}

.hero {
  padding: 56px 0 34px;
  background: radial-gradient(circle at top right, #e8f5ff, transparent 45%), linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 0 0 18px;
}

  h1 strong {
    color: var(--blue);
  }

.hero-copy {
  font-size: clamp(21px, 2.4vw, 31px);
  font-weight: 800;
  margin: 0 0 28px;
  color: #3a3a3a;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 28px 0 22px;
}

.microcopy {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e8edf3;
}

  .hero-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

.section {
  padding-top: 50px;
  padding-bottom: 70px;
}

.section-soft {
  background: var(--soft);
}

.center {
  text-align: center;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: 22px;
  color: #444;
  font-weight: 700;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.benefit, .step {
  text-align: center;
}

  .icon,
  .step::before {
    margin-left: auto;
    margin-right: auto;
  }

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
}

.benefit h3 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.benefit p {
  margin: 0;
  font-size: 18px;
  color: #555;
}

.offer-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.offer {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}

  .offer.featured {
    border-color: var(--orange);
  }

.offer-label {
  display: inline-block;
  background: #fff4ce;
  color: #7a4a00;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.offer h3 {
  font-size: 36px;
  margin: 0 0 12px;
  letter-spacing: -.03em;
}

.price {
  font-size: 54px;
  font-weight: 900;
  color: var(--navy);
  margin: 8px 0 18px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

  .checklist li {
    position: relative;
    padding-left: 34px;
    margin: 12px 0;
    font-size: 18px;
  }

    .checklist li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: -2px;
      color: #1b9b45;
      font-size: 24px;
      font-weight: 900;
    }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

  .gallery img {
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
    border: 1px solid #e5e5e5;
  }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
}

  .step::before {
    content: counter(steps);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: #111;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 16px;
  }

  .step h3 {
    margin: 0 0 8px;
    font-size: 24px;
  }

  .step p {
    margin: 0;
    font-size: 18px;
    color: #555;
  }

.final-cta {
  background: linear-gradient(135deg, var(--navy), #001b3d);
  color: #fff;
  padding: 78px 0;
}

  .final-cta p {
    color: #e4eefc;
  }

  .final-cta .btn-outline {
    color: #fff;
    border-color: #fff;
    background: transparent;
  }

.footer {
  padding: 28px 0;
  background: #f1f1f1;
  color: #555;
  font-size: 14px;
}

.guide-offer-section {
  padding: 60px 20px;
  background: #f7f9fc;
}

.guide-offer-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 42px 34px;
  background: #ffffff;
  border: 1px solid #e5eaf2;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.guide-kicker {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #f28c28;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.guide-headline {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: #14213d;
}

.guide-subheadline {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.6;
  color: #4a5568;
}

.guide-benefits {
  max-width: 560px;
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
  text-align: left;
}

  .guide-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.45;
    color: #2d3748;
  }

    .guide-benefits li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      font-weight: 800;
      color: #f28c28;
    }

.guide-button {
  display: inline-block;
  padding: 15px 28px;
  background: #f28c28;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
}

  .guide-button:hover {
    background: #df7d1f;
    color: #ffffff;
    transform: translateY(-1px);
  }

.guide-small-text {
  margin: 18px 0 0;
  font-size: 14px;
  color: #718096;
}

@media (max-width: 600px) {
  .guide-offer-section {
    padding: 44px 16px;
  }

  .guide-offer-box {
    padding: 32px 22px;
  }

  .guide-subheadline {
    font-size: 16px;
  }

  .guide-benefits li {
    font-size: 16px;
  }

  .guide-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

.video-headline {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

  .video-headline span {
    color: #2f80ed; /* your blue accent */
  }

.video-subtext {
  text-align: center;
  font-size: 18px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .video-headline {
    font-size: 22px;
    padding: 0 10px;
  }
}

.video-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* space between buttons */
    margin-top: 25px;
    flex-wrap: wrap; /* stacks nicely on mobile */
}

.video-cta-wrapper a {
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s ease;
}

/* Orange Button (Free Call) */
.btn-orange {
    background-color: #f5a623;
    color: #fff;
}

.btn-orange:hover {
    background-color: #e6951f;
}

/* Blue Button (Paid Call) */
.btn-blue {
    background-color: #1f4e8c;
    color: #fff;
}

.btn-blue:hover {
    background-color: #173a66;
}

@media (max-width: 600px) {
  .video-cta-wrapper {
    flex-direction: column;
    gap: 12px;
  }

    .video-cta-wrapper a {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-cta {
    width: 100%;
  }

    .nav-cta .btn {
      flex: 1;
      padding-left: 12px;
      padding-right: 12px;
    }

  .hero-grid, .offer-box, .benefits, .steps, .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }
}

/* Waitlist Start */

.guide-waitlist-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f7f9fc;
}

.guide-waitlist-box {
  max-width: 640px;
  width: 100%;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.guide-waitlist-kicker {
  font-size: 14px;
  font-weight: 700;
  color: #f28c28;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.guide-waitlist-headline {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #14213d;
  margin-bottom: 16px;
  line-height: 1.2;
}

.guide-waitlist-subheadline {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.5;
}

.guide-waitlist-description {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 24px;
  line-height: 1.5;
}

.guide-waitlist-highlight {
  background: #fff4e5;
  border: 1px solid #ffe0b2;
  padding: 18px;
  border-radius: 12px;
  font-size: 15px;
  color: #8a5a00;
  margin-bottom: 24px;
  line-height: 1.5;
}

.guide-waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.guide-input {
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #d1d9e6;
  outline: none;
  transition: border 0.2s ease;
}

  .guide-input:focus {
    border-color: #1f4e8c;
  }

.guide-submit-btn {
  padding: 14px;
  background: #f28c28;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

  .guide-submit-btn:hover {
    background: #df7d1f;
    transform: translateY(-1px);
  }

.guide-waitlist-small {
  font-size: 13px;
  color: #718096;
  margin-top: 10px;
}

.guide-back-link {
  margin-top: 20px;
}

  .guide-back-link a {
    font-size: 14px;
    color: #1f4e8c;
    text-decoration: none;
  }

    .guide-back-link a:hover {
      text-decoration: underline;
    }

/* Mobile */
@media (max-width: 600px) {
  .guide-waitlist-box {
    padding: 30px 20px;
  }

  .guide-waitlist-subheadline {
    font-size: 16px;
  }

  .guide-waitlist-description {
    font-size: 15px;
  }
}

/* Waitlist End */

/* =========================================================
   CALL PREP SECTION
========================================================= */

.prep-section {
  max-width: 1100px;
  margin: 50px auto 40px auto;
  text-align: left;
}

.prep-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 35px auto;
}

  .prep-header h2 {
    margin-bottom: 14px;
  }

.prep-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #556;
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.prep-card {
  background: #fff;
  border: 1px solid #e3e7eb;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

  .prep-card h3 {
    margin-bottom: 14px;
    color: #1e3d2f;
  }

  .prep-card ul {
    margin: 0;
    padding-left: 20px;
  }

  .prep-card li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #445;
  }

.prep-highlight {
  margin-top: 30px;
  background: #f3f8f5;
  border: 1px solid #cfe6d8;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}

  .prep-highlight p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334;
  }

