:root {
  --navy: #102a43;
  --gold: #c9a227;
  --gold-light: #e7c85c;
  --cream: #f8f5ef;
  --white: #ffffff;
  --gray: #5c6773;
  --light-gray: #eef2f6;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.5px;
}

.brand span {
  color: var(--gold);
}

.nav nav {
  display: flex;
  gap: 2rem;
}

.nav nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
}

.nav-cta,
.primary-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #b8860b,
    #d4af37,
    #f5d76e,
    #d4af37,
    #b8860b
  );
  color: #000;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.secondary-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--cream),
    var(--white)
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 1rem 0;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card,
.form-card,
.pricing-card,
.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.hero-card li {
  margin-bottom: .75rem;
}

.section {
  padding: 90px 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.center {
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin: .5rem 0 2rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 3rem;
  align-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pricing-section {
  background: var(--light-gray);
}

.pricing-card {
  max-width: 500px;
  margin: auto;
  text-align: center;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

details {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-section {
  background: var(--cream);
}

.form-placeholder {
  color: var(--gray);
  font-style: italic;
}

.small-note {
  margin-top: 1rem;
  color: var(--gray);
  font-size: .9rem;
}

.site-footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 3rem 0;
}

.footer-disclaimer {
  margin-top: .5rem;
  opacity: .8;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .steps {
    grid-template-columns: 1fr;
  }

  .nav nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}

.trust-bar {
  background: var(--navy);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.trust-bar p {
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.family-photo-band {
  padding: 0 0 70px;
  background: linear-gradient(
    180deg,
    var(--white),
    var(--cream)
  );
}

.family-photo-band img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
}

@media (max-width: 600px) {
  .nav {
    height: auto;
    min-height: unset;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 0;
  }

  .brand {
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .brand span {
    display: inline;
  }

  .nav-cta {
    width: auto;
    max-width: none;
    padding: 12px 24px;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
  }
}
.why-us-section {
  background: var(--white);
}

.why-us-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  color: var(--gray);
  font-size: 1.1rem;
}

.why-us-section .step-card {
  border-top: 5px solid var(--gold);
}
.documents-section {
  background: var(--cream);
}

.documents-section .steps {
  grid-template-columns: repeat(3, 1fr);
}

.documents-section .step-card {
  border-left: 5px solid var(--gold);
}

@media (max-width: 900px) {
  .documents-section .steps {
    grid-template-columns: 1fr;
  }
}
.guidance-section {
  background: var(--white);
}

.guidance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.guidance-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
}

.guidance-content h2 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: .75rem 0 1.5rem;
}

.guidance-content p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.guidance-list {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
}

.guidance-list li {
  margin-bottom: .75rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .guidance-grid {
    grid-template-columns: 1fr;
  }
}
.guide-cover {
  margin-top: 2rem;
  max-width: 360px;
}

.guide-cover img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.ghl-form-wrap {
  width: 100%;
}
#lead-magnet h2 {
  font-size: 1.25rem;
  line-height: 1.25;
  max-width: 560px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.plan-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 42, 67, 0.08);
  position: relative;
}

.featured-plan {
  border: 2px solid var(--gold);
}

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.plan-subtitle {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.plan-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.plan-card li {
  margin-bottom: .65rem;
}

.plan-prices {
  background: var(--cream);
  padding: 1rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

.plan-prices p {
  margin-bottom: .35rem;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.invisible-badge {
  visibility: hidden;
}

.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-prices {
  margin-top: auto;
}

.plan-card .primary-btn {
  align-self: flex-start;
}
.pricing-grid {
  max-width: 850px;
  margin: 0 auto;
}

.plan-actions {
  margin-top: auto;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.plan-card {
  min-height: 560px;
}

.plan-card .primary-btn,
.plan-card .secondary-btn {
  padding: 12px 20px;
  font-size: .95rem;
}
.plan-actions .secondary-btn {
  background: linear-gradient(
    135deg,
    #b8860b,
    #d4af37,
    #f5d76e,
    #d4af37,
    #b8860b
  );
  color: #000;
  border: none;
  box-shadow: var(--shadow);
}
.plan-actions {
  justify-content: center;
}

.plan-card .primary-btn,
.plan-card .secondary-btn {
  text-align: center;
}
.contact-section .two-column {
  grid-template-columns: 0.8fr 650px;
}
.contact-section .form-card {
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.contact-section .ghl-form-wrap iframe {
  min-width: 700px;
}
.plan-price {
    margin-top: auto;
    padding-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2b4d;
    text-align: center;
}

.plan-price span {
    color: #caa12c;
}
.plan-price {
  margin-top: auto;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.plan-card .primary-btn {
  align-self: center;
}
.plan-price {
    font-size: 1rem;
    font-weight: 600;
}
@media (max-width: 900px) {
  .contact-section .two-column {
    grid-template-columns: 1fr;
  }

  .contact-section .form-card {
    width: 100%;
    padding: 2rem;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .contact-section .ghl-form-wrap iframe {
    min-width: 0;
    width: 100%;
    height: 620px;
  }
}

@media (max-width: 600px) {
  .contact-section h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .contact-section {
    overflow-x: hidden;
  }
}
.thank-you-section {
  min-height: 80vh;
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    var(--cream),
    var(--white)
  );
  display: flex;
  align-items: center;
}

.thank-you-section .container {
  max-width: 850px;
}

.thank-you-section h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 1rem 0;
}

.thank-you-text {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.thank-you-box {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.thank-you-box h3 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.thank-you-box p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.faq-grid {
  max-width: 950px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.7;
}
.legal-page {
  background: var(--white);
}

.legal-container {
  max-width: 900px;
}

.legal-container h1 {
  font-size: 3rem;
  margin: 1rem 0;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin: 2rem 0 .75rem;
}

.legal-container p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.legal-container ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.legal-container li {
  margin-bottom: .5rem;
  color: var(--gray);
}