@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0d1f3c;
  --navy-light: #162d52;
  --navy-mid:   #1e3a66;
  --gold:       #c9953a;
  --gold-light: #e0b060;
  --gold-pale:  #f5e8cc;
  --offwhite:   #f9f6f0;
  --white:      #ffffff;
  --gray-1:     #f2efe8;
  --gray-2:     #e8e4db;
  --gray-3:     #9a9488;
  --text:       #1a1a1a;
  --text-mid:   #3d3d3d;
  --text-light: #6b6460;
  --success:    #2e7d4f;
  --radius:     6px;
  --shadow-sm:  0 2px 8px rgba(13,31,60,.08);
  --shadow-md:  0 6px 24px rgba(13,31,60,.14);
  --shadow-lg:  0 16px 48px rgba(13,31,60,.18);
  --transition: all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--offwhite); color: var(--text); line-height: 1.65; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); }
a  { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

.section-label { font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .6rem; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600; border-radius: var(--radius); cursor: pointer; border: none; transition: var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: .85rem 2rem; box-shadow: 0 4px 16px rgba(201,149,58,.35); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,58,.45); }
.btn-outline { background: transparent; color: var(--white); padding: .85rem 2rem; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-xl { padding: 1.15rem 3rem; font-size: 1.15rem; }

/* Nav */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 16px 0; background: rgba(13,31,60,.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,149,58,.15); transition: var(--transition); }
.navbar.scrolled { padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.8); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 1rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 0 90px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,149,58,.12) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30,58,102,.6) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(201,149,58,.15); border: 1px solid rgba(201,149,58,.3); border-radius: 100px; padding: .35rem 1rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.4rem; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; line-height: 1.1; }
.hero h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: rgba(255,255,255,.6); }
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero card */
.hero-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-card-header { background: var(--navy-light); padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.hero-card-header h4 { color: var(--white); font-size: .95rem; }
.hero-card-badge { background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 100px; letter-spacing: .05em; text-transform: uppercase; }
.hero-card-body { padding: 1.5rem; }
.price-display { text-align: center; padding: 1.5rem; background: var(--gray-1); border-radius: 8px; margin-bottom: 1.4rem; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.price-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: .4rem; }
.price-label { font-size: .8rem; color: var(--text-light); margin-top: .3rem; }
.card-checklist { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.4rem; }
.card-checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--text-mid); }
.card-checklist li::before { content: '✓'; font-weight: 700; color: var(--success); flex-shrink: 0; margin-top: .05rem; }
.card-cta { width: 100%; text-align: center; justify-content: center; }
.card-guarantee { text-align: center; font-size: .75rem; color: var(--text-light); margin-top: .8rem; }

/* Stats bar */
.stats-bar { background: var(--gold); padding: 22px 0; }
.stats-inner { display: flex; align-items: center; justify-content: space-around; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: .78rem; font-weight: 600; color: var(--navy-light); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(13,31,60,.2); }

/* How it works */
.how-it-works { background: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 580px; margin: .8rem auto 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 32px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 2px; background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number { width: 64px; height: 64px; background: var(--navy); border-radius: 50%; border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); margin: 0 auto 1.2rem; }
.step-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.step-card p  { font-size: .93rem; color: var(--text-light); }

/* What's included */
.whats-included { background: var(--offwhite); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.included-items { display: flex; flex-direction: column; gap: 16px; }
.included-item { background: var(--white); border-radius: 10px; padding: 1.2rem 1.4rem; display: flex; align-items: flex-start; gap: 1rem; border: 1px solid var(--gray-2); transition: var(--transition); }
.included-item:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.included-icon { width: 42px; height: 42px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.included-item h4 { color: var(--navy); margin-bottom: .2rem; }
.included-item p  { font-size: .88rem; color: var(--text-light); }

.included-callout { background: var(--navy); border-radius: 12px; padding: 2.5rem; position: sticky; top: 100px; }
.callout-quote { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.9); line-height: 1.6; margin-bottom: 1.5rem; padding-top: 1rem; border-top: 3px solid var(--gold); }
.callout-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.callout-logo-wrap { flex-shrink: 0; }
.callout-author-info { color: var(--white); }
.callout-author-info strong { display: block; font-size: .95rem; }
.callout-author-info span  { font-size: .8rem; color: rgba(255,255,255,.6); }
.callout-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 2rem; }
.callout-stat { background: rgba(255,255,255,.07); border-radius: 8px; padding: .9rem; text-align: center; }
.callout-stat-n { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); display: block; }
.callout-stat-l { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }
.callout-btn { width: 100%; justify-content: center; }

/* Why us */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.why-card { background: var(--offwhite); border-radius: 10px; padding: 1.8rem; border: 1px solid var(--gray-2); transition: var(--transition); position: relative; overflow: hidden; }
.why-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { border-color: transparent; box-shadow: var(--shadow-md); }
.why-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.why-card p  { font-size: .9rem; color: var(--text-light); }

/* Testimonials */
.testimonials { background: var(--navy); padding: 90px 0; }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p  { color: rgba(255,255,255,.6); }
.testimonials .section-label { color: var(--gold-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 1.8rem; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,.1); border-color: rgba(201,149,58,.3); }
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.t-text { font-style: italic; color: rgba(255,255,255,.82); font-size: .93rem; line-height: 1.65; margin-bottom: 1.2rem; }
.t-author { display: flex; align-items: center; gap: .8rem; }
.t-avatar { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: .85rem; flex-shrink: 0; }
.t-name  { font-weight: 600; color: var(--white); font-size: .9rem; }
.t-meta  { font-size: .78rem; color: rgba(255,255,255,.5); }
.t-savings { display: inline-block; background: rgba(201,149,58,.15); border: 1px solid rgba(201,149,58,.3); color: var(--gold-light); font-size: .75rem; font-weight: 600; padding: .2rem .65rem; border-radius: 100px; margin-top: .3rem; }

/* FAQ */
.faq { background: var(--offwhite); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 8px; border: 1px solid var(--gray-2); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy); text-align: left; transition: var(--transition); }
.faq-q:hover { background: var(--gray-1); }
.faq-icon { width: 22px; height: 22px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .85rem; font-weight: 900; color: var(--gold); transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.4rem 1.2rem; font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,149,58,.12) 0%, transparent 70%); }
.final-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta p  { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 2rem; }
.final-cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.final-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 1.5rem; }
.final-price sup { font-size: 1.4rem; vertical-align: top; margin-top: .4rem; }
.final-price span { font-size: 1rem; color: rgba(255,255,255,.5); font-family: 'DM Sans', sans-serif; font-weight: 400; }

/* Footer */
footer { background: #080f1e; padding: 50px 0 30px; color: rgba(255,255,255,.5); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: .88rem; margin-top: .8rem; max-width: 280px; }
.footer-col h5 { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; flex-wrap: wrap; gap: 1rem; }
.footer-disclaimer { font-size: .75rem; color: rgba(255,255,255,.3); max-width: 700px; line-height: 1.6; margin-bottom: 1rem; }
.badge-row { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: .3rem .75rem; font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.6); }
.trust-badge span { color: var(--gold); font-size: .9rem; }

/* Sticky mobile CTA */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--navy); border-top: 2px solid var(--gold); padding: 12px 20px; box-shadow: 0 -8px 24px rgba(0,0,0,.3); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sticky-cta-text { font-size: .85rem; color: var(--white); font-weight: 500; }
.sticky-cta-text strong { color: var(--gold); display: block; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .included-grid { grid-template-columns: 1fr; }
  .included-callout { position: static; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .sticky-cta { display: block; }
  .hero-actions .btn-xl, .final-cta-actions .btn { width: 100%; justify-content: center; }
  .nav-logo-img { height: 36px; }
}
