:root {
  --navy: #1a3a5c;
  --blue: #2563eb;
  --blue-light: #e8f0fb;
  --gold: #f59e0b;
  --green: #16a34a;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --text: #111827;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.3px; }
.nav-brand span { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f7c 100%);
  color: var(--white);
  padding: 72px 24px 64px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: #b8cfe8;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.45); }
.hero-sub2 {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #8aa8c8;
}

/* SOCIAL PROOF BAR */
.proof-bar {
  background: var(--blue-light);
  border-top: 1px solid #d0e2f8;
  border-bottom: 1px solid #d0e2f8;
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-item {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.proof-item::before { content: "✓"; color: var(--green); font-weight: 800; }

/* CONTAINER */
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* PRODUCT CARDS */
.products-section { padding: 64px 24px; background: var(--white); }
.section-title { text-align: center; font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--gray); margin-bottom: 40px; }

.product-card {
  background: var(--white);
  border: 2px solid #e0eaf8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.product-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-name { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.product-tagline { color: var(--gray); margin-bottom: 20px; font-size: 0.95rem; }
.product-includes { list-style: none; margin-bottom: 24px; }
.product-includes li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.product-includes li:last-child { border-bottom: none; }
.check-icon { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.product-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.65; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.product-price { font-size: 2rem; font-weight: 800; color: var(--navy); }
.product-price sub { font-size: 0.9rem; font-weight: 500; color: var(--gray); }
.buy-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.buy-btn:hover { background: #1d4ed8; transform: translateY(-1px); }

/* WHY SECTION */
.why-section { background: var(--gray-light); padding: 64px 24px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 32px auto 0;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(26,58,92,0.07);
}
.why-icon { font-size: 1.8rem; margin-bottom: 10px; }
.why-title { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-section { padding: 64px 24px; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 32px auto 0;
}
.testimonial {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--blue);
}
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 12px; font-size: 0.95rem; line-height: 1.65; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.88rem; }
.testimonial-role { font-size: 0.82rem; color: var(--gray); }
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 8px; }

/* FAQ */
.faq-section { background: var(--gray-light); padding: 64px 24px; }
.faq-list { max-width: 680px; margin: 32px auto 0; }
.faq-item { background: var(--white); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 12px; }
.faq-q { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faq-a { color: var(--gray); font-size: 0.93rem; line-height: 1.6; }

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f7c 100%);
  color: white;
  padding: 72px 24px;
  text-align: center;
}
.final-cta h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.final-cta p { color: #b8cfe8; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* FOOTER */
footer {
  background: #0f2238;
  color: #7a9ab8;
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
}
footer a { color: #7a9ab8; }

@media (max-width: 600px) {
  .proof-bar { gap: 16px; }
  .product-card { padding: 24px; }
  .product-footer { flex-direction: column; align-items: flex-start; }
}
