/* ============================================
   HomePro.Systems — Global Stylesheet
   Brand: Navy #1a2d50 | Orange #e87722 | White #fff
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Montserrat:wght@700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #e87722; text-decoration: none; transition: color .2s; }
a:hover { color: #c5651b; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1a2d50;
  line-height: 1.25;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-orange { color: #e87722; }
.bg-navy   { background: #1a2d50; color: #fff; }
.bg-light  { background: #f7f8fa; }
.bg-orange { background: #e87722; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }

.btn-orange {
  background: #e87722;
  color: #fff;
}
.btn-orange:hover { background: #d06a1d; color: #fff; }

.btn-white {
  background: #fff;
  color: #1a2d50;
}
.btn-white:hover { background: #f0f0f0; color: #1a2d50; }

.btn-outline {
  background: transparent;
  color: #e87722;
  border: 2px solid #e87722;
}
.btn-outline:hover { background: #e87722; color: #fff; }

.btn-navy {
  background: #1a2d50;
  color: #fff;
}
.btn-navy:hover { background: #0f1e38; color: #fff; }

.btn-lg { padding: 16px 40px; font-size: 1.15rem; }

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a2d50;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: #e87722; }

/* --- Products Mega Dropdown --- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: color .2s;
}
.nav-dropdown-btn:hover { color: #e87722; }
.nav-chevron {
  transition: transform .25s;
}
.nav-dropdown-btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}
.nav-mega {
  display: none;
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 720px;
  max-width: calc(100vw - 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.nav-mega.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.nav-mega-inner {
  background: #12213d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  padding: 28px 28px 16px;
  position: relative;
}
/* triangle pointer */
.nav-mega-inner::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: #12213d;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav-mega-heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* Coming-soon cards span the full width as a compact sub-grid */
.nav-mega-soon-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}
.nav-vertical-card {
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.06);
  transition: background .2s, border-color .2s;
}
.nav-vertical--active {
  background: rgba(255,255,255,.03);
}
.nav-vertical--active:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.nav-vertical--soon {
  opacity: .45;
  padding: 8px 12px;
  background: rgba(255,255,255,.02);
  flex: 0 0 auto;
}
.nav-vertical--soon .nav-vertical-name {
  font-size: .78rem;
}
.nav-vertical--soon .nav-vertical-dot {
  width: 8px;
  height: 8px;
}
.nav-vertical-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-vertical-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--v-accent);
  flex-shrink: 0;
}
.nav-vertical-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}
.nav-soon-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}
.nav-vertical-products {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nav-product-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s;
  flex: 1;
}
.nav-product-link:hover {
  background: rgba(255,255,255,.06);
}
.nav-product-link img {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.nav-product-link span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}
.nav-product-link small {
  font-size: .75rem;
  font-weight: 700;
  color: var(--v-accent);
  margin-top: 2px;
}
.nav-product-link:hover span {
  color: #fff;
}
.nav-mega-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mega-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: background .2s, color .2s;
}
.nav-mega-cta:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.nav-mega-cta strong {
  color: #e87722;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
.lang-switch:hover { border-color: #e87722; color: #e87722; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #1a2d50 0%, #263f6a 60%, #1a2d50 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,119,34,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hero .subtitle {
  font-size: 1.2rem;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hero .btn { margin: 6px; position: relative; }

/* Hero with product images */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
}
.hero-text {
  flex: 1;
  text-align: left;
  max-width: 560px;
}
.hero-text h1 {
  margin-left: 0;
  margin-right: 0;
}
.hero-text .subtitle {
  margin-left: 0;
  margin-right: 0;
}
.hero-covers {
  flex: 0 0 320px;
  position: relative;
  height: 380px;
}
.hero-covers img {
  position: absolute;
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transition: transform .3s;
}
.hero-covers img:first-child {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.hero-covers img:last-child {
  top: 30px;
  left: 80px;
  transform: rotate(4deg);
  z-index: 2;
}
.hero-covers:hover img:first-child {
  transform: rotate(-8deg) translateY(-4px);
}
.hero-covers:hover img:last-child {
  transform: rotate(2deg) translateY(-4px);
}

/* --- Sections --- */
.section {
  padding: 64px 0;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.card-icon img {
  margin: 0 auto;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.card p {
  color: #555;
  font-size: .95rem;
}

/* --- Systems Grid (8 systems) --- */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.system-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.system-card:hover {
  border-color: #e87722;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(232,119,34,.12);
}

/* Premium system icon style */
.system-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1a2d50, #2a4a7a);
  box-shadow: 0 3px 12px rgba(26,45,80,.25);
}
.system-icon--launch { background: linear-gradient(135deg, #e87722, #f59e4d); }
.system-icon--service { background: linear-gradient(135deg, #2d8f5e, #4ec98a); }
.system-icon--sales { background: linear-gradient(135deg, #3b7dd8, #6ca6f0); }
.system-icon--gold { background: linear-gradient(135deg, #d4a017, #f5cf5f); }
.system-icon--crew { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.system-icon--profit { background: linear-gradient(135deg, #16a34a, #4ade80); }
.system-icon--route { background: linear-gradient(135deg, #0891b2, #67e8f9); }
.system-icon--brand { background: linear-gradient(135deg, #e11d48, #fb7185); }

.system-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.system-card p {
  font-size: .85rem;
  color: #666;
}

/* --- Product Hero --- */
.product-hero {
  background: linear-gradient(135deg, #1a2d50 0%, #263f6a 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,119,34,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.product-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
}
.product-hero-text { flex: 1; }
.product-hero-text h1 { color: #fff; font-size: 2.2rem; margin-bottom: 12px; }
.product-hero-text .price {
  font-size: 2rem;
  font-weight: 700;
  color: #e87722;
  margin-bottom: 8px;
}
.product-hero-text .price-note {
  font-size: .9rem;
  opacity: .8;
  margin-bottom: 20px;
}
.product-hero-image {
  flex: 0 0 300px;
  text-align: center;
}
.product-hero-image img {
  width: 260px;
  border-radius: 8px;
  box-shadow: 8px 8px 32px rgba(0,0,0,.35);
  transition: transform .3s;
}
.product-hero-image img:hover {
  transform: scale(1.03) rotate(1deg);
}
/* Legacy mockup fallback */
.product-hero-image .book-mockup {
  width: 220px;
  height: 300px;
  background: linear-gradient(135deg, #e87722, #d06a1d);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  padding: 20px;
  box-shadow: 8px 8px 24px rgba(0,0,0,.3);
}

/* --- Features List --- */
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
}
.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e87722;
  font-weight: 700;
}

/* --- Steps (1-2-3) --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e87722;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: #666; font-size: .95rem; }

/* --- Testimonial --- */
.testimonial-card {
  background: #fff;
  border-left: 4px solid #e87722;
  padding: 32px 36px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 4rem;
  color: rgba(232,119,34,.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
  position: relative;
  padding-left: 8px;
}
.testimonial-card .attribution {
  font-size: .9rem;
  color: #888;
  font-weight: 600;
}

/* --- Author Bio --- */
.author-bio {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: #f7f8fa;
  border-radius: 10px;
}
.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e87722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  flex-shrink: 0;
}
.author-info h3 { margin-bottom: 4px; }
.author-info p { color: #555; font-size: .95rem; }

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}
.faq-question {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1a2d50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: #e87722;
  transition: transform .2s;
}
.faq-question.active::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: #555;
  font-size: .95rem;
  line-height: 1.6;
}
.faq-answer.open {
  max-height: 500px;
  padding-top: 12px;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #1a2d50;
  margin-bottom: 6px;
  font-size: .95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e87722;
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* --- Waitlist form --- */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 6px;
  font-size: 1rem;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.waitlist-form input::placeholder { color: rgba(255,255,255,.6); }
.waitlist-form input:focus {
  outline: none;
  border-color: #e87722;
  background: rgba(255,255,255,.15);
}

/* --- About / Founder --- */
.founder-story {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.founder-story h2 {
  margin-top: 36px;
  margin-bottom: 12px;
}
.founder-story p {
  margin-bottom: 16px;
}
.founder-signature {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 2px solid #eee;
}
.founder-signature h3 {
  color: #e87722;
  margin-bottom: 4px;
}
.founder-signature p {
  color: #888;
  font-style: italic;
  font-size: .95rem;
}

/* --- Footer --- */
.site-footer {
  background: #1a2d50;
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: .95rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: #e87722; }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #e87722, #d06a1d);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 24px;
}

/* --- Product Cards (Homepage grid) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.product-card-img {
  width: 100%;
  padding: 28px 28px 0;
}
.product-card-img img {
  width: 180px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 4px 4px 20px rgba(0,0,0,.15);
  transition: transform .3s;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04) rotate(1deg);
}
.product-card-body {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.product-card .product-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.product-card .product-card-desc {
  color: #555;
  font-size: .95rem;
  margin-bottom: 16px;
  flex: 1;
}
.product-card .product-card-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e87722;
  margin-bottom: 16px;
}
.product-card .btn {
  width: 100%;
  max-width: 260px;
}

/* --- Bundle Card --- */
.bundle-card {
  background: linear-gradient(135deg, #1a2d50, #263f6a);
  color: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  max-width: 640px;
  margin: 0 auto;
}
.bundle-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.bundle-card .bundle-desc {
  opacity: .85;
  font-size: 1rem;
  margin-bottom: 16px;
}
.bundle-card .bundle-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.bundle-card .bundle-original {
  font-size: 1.1rem;
  text-decoration: line-through;
  opacity: .6;
}
.bundle-card .bundle-price {
  font-size: 2rem;
  font-weight: 700;
  color: #e87722;
}
.bundle-card .bundle-savings {
  background: #e87722;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 700;
}

/* --- What's Inside / Highlights Section --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.highlight-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e87722, #f59e4d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(232,119,34,.25);
}
.highlight-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: #1a2d50;
}
.highlight-item p {
  font-size: .9rem;
  color: #666;
  margin: 0;
}

/* --- WhatsApp Chat Mockup (ProPilot) --- */
.phone-mockup {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.phone-frame {
  background: #1a2d50;
  border-radius: 36px;
  padding: 16px 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.phone-screen {
  background: #e5ddd5;
  border-radius: 24px;
  overflow: hidden;
}
.chat-header {
  background: #075e54;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', Arial, sans-serif;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e87722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}
.chat-header-info strong {
  display: block;
  font-size: .95rem;
}
.chat-header-info span {
  font-size: .75rem;
  opacity: .8;
}
.chat-messages {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c1.5 0 3 .5 3 1.5S31.5 8 30 8s-3-.5-3-1.5S28.5 5 30 5z' fill='%23d4cfc4' fill-opacity='.3'/%3E%3C/svg%3E");
  min-height: 200px;
}
.chat-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.45;
  position: relative;
}
.chat-bubble-user {
  background: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.chat-bubble-bot {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
}
.chat-bubble .chat-time {
  display: block;
  text-align: right;
  font-size: .7rem;
  color: #999;
  margin-top: 4px;
}

/* --- Sneak Peek / What's Inside for Product Pages --- */
.sneak-peek-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.sneak-peek-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.sneak-peek-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a2d50, #2a4a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.sneak-peek-item h4 {
  font-size: .95rem;
  margin-bottom: 2px;
}
.sneak-peek-item p {
  font-size: .85rem;
  color: #666;
  margin: 0;
}

/* --- Chapter List --- */
.chapter-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.chapter-list li {
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #444;
}
.chapter-list li:last-child {
  border-bottom: none;
}
.chapter-list li::before {
  content: attr(data-chapter);
  position: absolute;
  left: 0;
  color: #e87722;
  font-weight: 700;
  font-size: .9rem;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 8px;
  color: #555;
}
.legal-content .effective-date {
  font-size: .9rem;
  color: #888;
  margin-bottom: 32px;
}
.legal-content .highlight-box {
  background: #f7f8fa;
  border-left: 4px solid #e87722;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.legal-content .highlight-box p {
  margin-bottom: 8px;
}
.legal-content .highlight-box p:last-child {
  margin-bottom: 0;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  font-size: .95rem;
}
.legal-content th {
  color: #1a2d50;
  font-weight: 700;
  border-bottom: 2px solid #ddd;
}

/* --- 404 Page --- */
.error-page {
  text-align: center;
  padding: 80px 0;
}
.error-page h1 {
  font-size: 6rem;
  color: #e87722;
  margin-bottom: 8px;
}
.error-page h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.error-page p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-page .btn { margin: 6px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #1a2d50;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  .nav-links.open { display: flex; }

  /* Mobile dropdown overrides */
  .nav-mega {
    position: static;
    transform: none;
    min-width: auto;
    width: 100%;
  }
  .nav-mega.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-mega-inner {
    background: rgba(255,255,255,.04);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 16px;
  }
  .nav-mega-inner::before { display: none; }
  .nav-mega-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nav-vertical-products {
    flex-direction: column;
    gap: 8px;
  }

  .hero { padding: 50px 0; }
  .hero h1 { font-size: 1.9rem; }
  .hero .subtitle { font-size: 1.05rem; }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-text .subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-covers {
    flex: none;
    height: 240px;
    width: 260px;
    margin: 0 auto;
  }
  .hero-covers img {
    width: 160px;
  }

  .product-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .product-hero-image { flex: none; }
  .product-hero-text h1 { font-size: 1.8rem; }

  .section { padding: 40px 0; }
  .section-title { font-size: 1.6rem; }

  .author-bio { flex-direction: column; text-align: center; }

  .waitlist-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .sneak-peek-grid { grid-template-columns: 1fr; }

  .phone-mockup { max-width: 340px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .hero-covers { height: 200px; width: 220px; }
  .hero-covers img { width: 130px; }
}
