/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f2a44;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent { color: #2f7fbf; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background-color: #2f7fbf;
  color: #ffffff;
  border-color: #2f7fbf;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 42, 68, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(47, 127, 191, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav-brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: #2f7fbf; }

.nav-cta {
  background-color: #2f7fbf;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  color: #ffffff !important;
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 42, 68, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 80px;
}

#hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-sub.white { color: #ffffff; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* =====================================================
   CREDENTIALS STRIP
   ===================================================== */
#credentials {
  background-color: #0a1e30;
  border-top: 1px solid rgba(47, 127, 191, 0.25);
  border-bottom: 1px solid rgba(47, 127, 191, 0.25);
  padding: 1.25rem 1.5rem;
}

.credentials-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

.cred-item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.cred-sep {
  color: rgba(47, 127, 191, 0.6);
  font-size: 1.1rem;
  line-height: 1;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
#how-it-works {
  background-color: #ffffff;
  padding: 5rem 0;
}

#how-it-works h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f2a44;
  margin-bottom: 2.5rem;
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hiw-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #2f7fbf;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.hiw-steps h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2a44;
  margin-bottom: 0.35rem;
}

.hiw-steps p {
  font-size: 0.95rem;
  color: #3a4a5a;
  line-height: 1.65;
}

.hiw-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(15, 42, 68, 0.18);
}

/* =====================================================
   PRICING
   ===================================================== */
#pricing {
  background-color: #0f2a44;
  padding: 5rem 0;
}

#pricing h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #132f4a;
  border: 1px solid rgba(47, 127, 191, 0.3);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card--featured {
  border-color: #2f7fbf;
}

.price-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.plan-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2f7fbf;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.plan-features li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1.25rem;
  position: relative;
}

.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #2f7fbf;
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* =====================================================
   ABOUT
   ===================================================== */
#about {
  background-color: #ffffff;
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-img-main {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  max-height: 520px;
}

.about-text {
  padding-top: 0.5rem;
}

#about h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f2a44;
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2f7fbf;
  margin-bottom: 1.5rem;
}

.about-body {
  font-size: 0.98rem;
  color: #3a4a5a;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  background-color: #0f2a44;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* =====================================================
   BOOK
   ===================================================== */
#book {
  background-color: #0f2a44;
  padding: 5rem 0 3rem;
}

.book-content {
  text-align: center;
}

#book h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.book-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

.calendly-inline-widget {
  border-radius: 6px;
  overflow: hidden;
}

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background-color: #0a1e30;
  border-top: 1px solid rgba(47, 127, 191, 0.2);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-left {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer-right a {
  color: rgba(255,255,255,0.7);
  transition: color 0.15s ease;
}

.footer-right a:hover { color: #2f7fbf; }

.footer-sep {
  color: rgba(255,255,255,0.3);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hiw-image {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0a1e30;
    border-top: 1px solid rgba(47, 127, 191, 0.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }

  .nav-cta {
    background-color: transparent !important;
    padding: 0.9rem 1.5rem !important;
    border-radius: 0 !important;
  }

  #navbar {
    position: fixed;
  }

  .cred-sep {
    display: none;
  }

  .credentials-inner {
    gap: 0.6rem;
  }

  .cred-item {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

  #how-it-works,
  #pricing,
  #about,
  #book {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 2.1rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}
