/* ===== CSS Variables ===== */
:root {
  --brand-navy: #0B1A5C;
  --brand-navy-hover: #142470;
  --brand-navy-light: #1a2d7c;
  --brand-crimson: #8B1A1A;
  --brand-green: #00E676;
  --bg-dark: #0B1A5C;
  --bg-light: #F0F1F5;
  --bg-white: #FFFFFF;
  --text-light: #FFFFFF;
  --text-dark: #0B1A5C;
  --text-body: #2a3a6a;
  --text-muted: #4a5a8a;
  --text-faint: #8892b0;
  --border-light: #e2e4ea;
  --card-shadow: 0 4px 24px rgba(11, 26, 92, 0.08);
  --card-shadow-hover: 0 8px 32px rgba(11, 26, 92, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

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

/* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-body);
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: var(--text-dark);
}

.text-accent {
  color: var(--brand-green);
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-header-light h2 {
  color: var(--text-light);
}

.section-header-light p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--brand-navy);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(11, 26, 92, 0.25);
}

.btn-primary:hover {
  background: var(--brand-navy-hover);
  box-shadow: 0 6px 24px rgba(11, 26, 92, 0.35);
  transform: translateY(-1px);
}

.btn-hero {
  background: var(--text-light);
  color: var(--brand-navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-weight: 800;
}

.btn-hero:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 28px;
  font-size: 0.88rem;
  border-radius: 30px;
  background: var(--text-light);
  color: var(--brand-navy);
  font-weight: 700;
}

.btn-nav:hover {
  background: #f0f0f0;
}

.price-strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 500;
  margin-right: 4px;
}

/* ===== (Using PayPal direct payment links) ===== */
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.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: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-white {
  background: var(--bg-white);
}

.section-gray {
  background: var(--bg-light);
}

.section-dark {
  background: var(--bg-dark);
}

.section-dark h2 {
  color: var(--text-light);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Hero ===== */
.hero {
  background: var(--bg-dark);
  padding: 140px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(20, 36, 112, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(139, 26, 26, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 230, 118, 0.15);
  color: var(--brand-green);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Selar Alternate Checkout Button ===== */
.btn-selar {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  font-size: 0.92rem;
}
.btn-selar:hover {
  border-color: #00E676 !important;
  background: rgba(0, 230, 118, 0.08) !important;
}
.offer-cta .btn-selar {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
  background: transparent !important;
}
.offer-cta .btn-selar:hover {
  background: rgba(11, 26, 92, 0.06) !important;
}
.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.final-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Faces */
.hero-faces {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-faces-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-face {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-faces-row .hero-face:first-child {
  margin-left: 0;
}

.hero-faces-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Hero Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  perspective: 800px;
}

.mockup-cover {
  width: 280px;
  height: 380px;
  background: linear-gradient(135deg, #142470 0%, #0B1A5C 40%, #1a2d7c 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateY(-6deg) rotateX(2deg);
  position: relative;
  overflow: hidden;
}

.mockup-cover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 230, 118, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.mockup-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-green);
  background: rgba(0, 230, 118, 0.12);
  padding: 4px 14px;
  border-radius: 20px;
}

.mockup-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.mockup-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.mockup-pages {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ===== Problem Recognition ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-card {
  background: var(--bg-light);
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

.problem-card-highlight {
  background: var(--brand-navy);
  grid-column: 1 / -1;
}

.problem-card-highlight p {
  color: var(--text-light);
}

.problem-card-highlight strong {
  color: var(--text-light);
}

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== Two Column Section ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 1.25rem;
}

.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Feature Cards ===== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-light);
}

.feature-icon-blue {
  background: linear-gradient(135deg, #0B1A5C, #1a2d7c);
}

.feature-icon-green {
  background: linear-gradient(135deg, #00C866, #00E676);
}

.feature-icon-crimson {
  background: linear-gradient(135deg, #8B1A1A, #b52020);
}

/* ===== Checklist ===== */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.checklist-item:last-child {
  border-bottom: none;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item div strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.checklist-item div span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Offer Stack ===== */
.offer-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.offer-stack {
  overflow: hidden;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border-light);
}

.offer-item:last-of-type {
  border-bottom: none;
}

.offer-item-header {
  flex: 1;
}

.offer-item-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.offer-item-detail {
  display: block;
  font-size: 0.85rem;
  color: var(--text-faint);
  line-height: 1.5;
}

.offer-item-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.offer-item-original {
  display: block;
  font-size: 0.82rem;
  color: var(--text-faint);
  text-decoration: line-through;
  font-weight: 400;
}

.offer-item-free {
  color: var(--brand-green);
  font-weight: 700;
}

.offer-item-highlight {
  background: rgba(0, 230, 118, 0.04);
}

.offer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: var(--brand-navy);
  color: var(--text-light);
}

.offer-total-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.offer-total-amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.price-was-light {
  text-decoration: line-through;
  opacity: 0.7;
}

.offer-total-pay {
  text-align: right;
}

.offer-total-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
}

.offer-cta {
  padding: 32px;
  text-align: center;
}

.offer-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ===== Fit / Not Fit ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.fit-card {
  background: var(--bg-white);
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.fit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-light);
}

.fit-card-yes h3 {
  border-bottom-color: var(--brand-green);
}

.fit-card-no h3 {
  border-bottom-color: var(--brand-crimson);
}

.fit-card ul {
  list-style: none;
}

.fit-card ul li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.fit-card-yes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--brand-green);
  font-size: 1rem;
}

.fit-card-no ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--brand-crimson);
  font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.testimonial-name {
  display: block;
  color: var(--text-light);
  font-size: 0.92rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Email Capture ===== */
.email-capture {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 40px 48px;
  border-radius: 16px;
}

.email-capture-text h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.email-capture-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.email-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.email-input {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 14px 20px;
  border: 2px solid var(--border-light);
  border-radius: 30px;
  outline: none;
  width: 260px;
  transition: border-color 0.2s ease;
  color: var(--text-dark);
}

.email-input:focus {
  border-color: var(--brand-navy);
}

.email-input::placeholder {
  color: var(--text-faint);
}

.email-btn {
  padding: 14px 28px;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(11, 26, 92, 0.04);
  overflow: hidden;
}

.faq-item summary {
  padding: 22px 28px;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--brand-navy-light);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  width: 24px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== Final CTA ===== */
.section-final {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20, 36, 112, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 26, 26, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.final-content {
  position: relative;
  z-index: 1;
}

.section-final h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-final p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  font-size: 1.08rem;
}

.final-ctas {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.final-trust {
  display: flex;
  justify-content: center;
}

.final-trust .hero-faces {
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-faint);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-navy);
}

/* ===== Fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-faces {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--brand-navy);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .nav-actions.active {
    display: block;
  }

  .nav-actions .btn-nav {
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section-final h2 {
    font-size: 1.7rem;
  }

  .section-final {
    padding: 80px 0;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .email-capture {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .email-form {
    flex-direction: column;
    width: 100%;
  }

  .email-input {
    width: 100%;
  }

  .offer-item {
    flex-direction: column;
    gap: 8px;
    padding: 18px 24px;
  }

  .offer-item-value {
    text-align: left;
  }

  .offer-total {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 24px;
  }

  .offer-total-pay {
    text-align: center;
  }

  .offer-cta {
    padding: 24px;
  }

  .footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-faces {
    flex-direction: column;
    gap: 8px;
  }

  .btn-lg {
    padding: 16px 36px;
    font-size: 0.95rem;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  .section-final h2 {
    font-size: 1.45rem;
  }

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

  .stat-cards {
    flex-direction: row;
    gap: 12px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.92rem;
  }

  .btn-lg {
    padding: 14px 32px;
  }
}

/* ===== Locked Content (hidden until quiz complete) ===== */
.locked-content {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.locked-content.unlocked {
  display: block;
  opacity: 1;
}

/* ===== Decision Lock Quiz ===== */
.section-quiz {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #142470 100%);
  padding: 80px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.quiz-intro {
  text-align: center;
  margin-bottom: 36px;
}

.quiz-badge {
  display: inline-block;
  background: rgba(0, 230, 118, 0.15);
  color: var(--brand-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.quiz-headline {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.quiz-subhead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.quiz-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Progress */
.quiz-progress-text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.quiz-progress-bar {
  background: var(--bg-light);
  border-radius: 20px;
  height: 8px;
  margin-bottom: 32px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-green));
  border-radius: 20px;
  width: 0%;
  transition: width 0.5s ease;
}

/* Slides */
.quiz-slide {
  display: none;
  animation: quizFadeIn 0.4s ease;
}

.quiz-slide.active {
  display: block;
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-q-number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}

.quiz-q-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 22px;
  line-height: 1.4;
}

/* Options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
}

.quiz-option:hover {
  border-color: var(--brand-navy);
  background: #f8f9fd;
  transform: translateX(4px);
}

.quiz-option.selected {
  border-color: var(--brand-navy);
  background: rgba(11, 26, 92, 0.06);
  color: var(--brand-navy);
  font-weight: 600;
}

.quiz-option-letter {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.quiz-option.selected .quiz-option-letter {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
}

/* Quiz Nav */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}

.btn-quiz {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-quiz:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-quiz-prev {
  background: var(--bg-light);
  color: var(--text-muted);
}

.btn-quiz-prev:hover:not(:disabled) {
  background: #e0e2ea;
}

.btn-quiz-next {
  background: var(--brand-navy);
  color: #fff;
}

.btn-quiz-next:hover:not(:disabled) {
  background: var(--brand-navy-hover);
  transform: translateY(-1px);
}

/* Results */
.quiz-result {
  text-align: center;
  padding: 20px 0;
}

.quiz-result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.quiz-result-icon.result-high {
  background: rgba(139, 26, 26, 0.1);
}

.quiz-result-icon.result-medium {
  background: rgba(11, 26, 92, 0.1);
}

.quiz-result-icon.result-low {
  background: rgba(0, 230, 118, 0.15);
}

.quiz-result-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.quiz-result-score {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.quiz-result-score-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quiz-result-score-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-crimson);
}

.quiz-result-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Archetype badge */
.quiz-result-archetype-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.quiz-result-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}

.quiz-result-divider {
  width: 60px;
  height: 3px;
  background: var(--brand-navy);
  margin: 20px auto;
  border-radius: 2px;
}

.quiz-result-divider-light {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

.quiz-result-pain {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: left;
}

.quiz-result-pitch-box {
  background: var(--bg-light);
  border-left: 4px solid var(--brand-navy);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: left;
}

.quiz-result-pitch-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.quiz-result-pitch {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.quiz-result-pdf {
  display: inline-block;
  background: rgba(0, 230, 118, 0.1);
  color: #0a7c42;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid rgba(0, 230, 118, 0.3);
  margin-bottom: 28px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.quiz-result-pdf:hover {
  background: rgba(0, 230, 118, 0.2);
  transform: translateY(-1px);
}

.quiz-result-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.quiz-cta-primary {
  width: 100%;
  max-width: 380px;
  text-align: center;
  justify-content: center;
}

.quiz-result-or {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.quiz-cta-secondary {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
  padding: 14px 32px;
  border: 2px solid var(--brand-navy);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.quiz-cta-secondary:hover {
  background: var(--brand-navy);
  color: #fff;
  transform: translateY(-1px);
}

/* Nav quiz button */
.btn-nav-quiz {
  background: transparent;
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  margin-right: 8px;
}

.btn-nav-quiz:hover {
  background: var(--brand-green);
  color: var(--brand-navy);
}

/* Quiz responsive */
@media (max-width: 768px) {
  .section-quiz {
    padding: 70px 0 40px;
  }
  .quiz-headline {
    font-size: 1.7rem;
  }
  .quiz-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .quiz-q-text {
    font-size: 1.05rem;
  }
  .quiz-option {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  .btn-quiz {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
