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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== BUTTONS ========== */
.btn-cream-pill {
  display: inline-block;
  padding: 12px 32px;
  background: #f0e2b5;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cream-pill:hover {
  background: #e8d49e;
  transform: translateY(-1px);
}

/* ========== MEGA CTA (below quiz) ========== */
.mega-cta {
  display: inline-block;
  padding: 22px 64px;
  background: #f0e2b5;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow:
    0 0 20px rgba(240,226,181,0.3),
    0 0 60px rgba(201,168,76,0.15);
  animation: megaPulse 2s ease-in-out infinite;
}
.mega-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 30px rgba(240,226,181,0.5),
    0 0 80px rgba(201,168,76,0.25);
}
@keyframes megaPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(240,226,181,0.3), 0 0 60px rgba(201,168,76,0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(240,226,181,0.5), 0 0 80px rgba(201,168,76,0.3);
  }
}

.btn-outline-pill {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-pill:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

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

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img, .nav-logo svg { display: block; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.nav-links a:hover { color: #c9a84c; }
.nav-links .btn-cream-pill { padding: 8px 20px; font-size: 13px; color: #1a1a1a; }
.nav-links .btn-cream-pill:hover { color: #1a1a1a; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  padding: 24px; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(10,10,10,0.95);
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 16px; color: #fff; }

/* ========== HERO + QUIZ WRAPPER ========== */
.hero-quiz-wrapper {
  background: url('images/mountain-hero.jpg') center top / cover no-repeat;
  position: relative;
}

.hero-quiz-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.88) 100%);
  pointer-events: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  text-align: center;
  padding: 80px 24px 12px;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 650px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 56px;
  background: #f0e2b5;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  border-radius: 60px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  background: #e8d49e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.btn-hero span {
  font-size: 22px;
  transition: transform 0.3s;
}

.btn-hero:hover span {
  transform: translateX(4px);
}

.hero-divider {
  width: 2px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  margin: 48px auto;
}

.hero-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-video iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}

.hero-video-section {
  background: #0a0a0a;
  padding: 60px 0;
}

/* ========== HERO EXTRAS ========== */
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #f5edd4;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-tag {
  font-size: 15px;
  font-weight: 700;
  color: #e2c56e;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-vsl {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  max-width: 550px;
  margin: 10px auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.hero-vsl iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 0;
  letter-spacing: 0.3px;
}

.hero-avatars {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a0a0a;
  margin-left: -8px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-tag-inline {
  color: #e2c56e;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-rating {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.hero-stars {
  color: #c9a84c;
  font-size: 16px;
  letter-spacing: 2px;
  margin-right: 8px;
}

/* ========== SECTION LABEL ========== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}

/* ========== SECTION HEADING ========== */
.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

/* ========== STATS BAR ========== */
.stats-bar {
  padding: 40px 0;
  background: rgba(201, 168, 76, 0.06);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.stats-bar-heading {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #e2c56e;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-bar-grid--inline {
  margin-bottom: 48px;
}

.stats-bar-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #c9a84c;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stats-bar-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ========== WHAT WE DO ========== */
.what-we-do-section {
  padding: 72px 0 60px;
}

.wwd-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.wwd-left {
  text-align: left;
}

.wwd-left .section-label {
  text-align: left;
}

.wwd-left .section-heading {
  text-align: left;
}

.what-we-do-body {
  max-width: 600px;
}

.what-we-do-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.what-we-do-body strong {
  color: #f0e2b5;
}

.what-we-do-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.wwd-point {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.wwd-point h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2c56e;
  margin-bottom: 4px;
}

.wwd-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Sticker book photos */
.wwd-right {
  position: relative;
}

.wwd-sticker-book {
  position: relative;
  width: 100%;
  height: 480px;
}

.wwd-photo {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wwd-photo:hover {
  z-index: 10;
  transform: scale(1.05) !important;
  box-shadow: 0 12px 40px rgba(201,168,76,0.2), 0 4px 12px rgba(0,0,0,0.4);
}

.wwd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwd-photo-1 {
  width: 195px;
  height: 240px;
  top: 0;
  left: 5px;
  transform: rotate(-3deg);
  z-index: 2;
}

.wwd-photo-2 {
  width: 195px;
  height: 240px;
  top: 0;
  right: 5px;
  transform: rotate(2deg);
  z-index: 3;
}

.wwd-photo-3 {
  width: 195px;
  height: 210px;
  top: 255px;
  left: 15px;
  transform: rotate(1.5deg);
  z-index: 4;
}

.wwd-photo-4 {
  width: 195px;
  height: 210px;
  top: 255px;
  right: 15px;
  transform: rotate(-2deg);
  z-index: 5;
}

.wwd-caption {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #e2c56e;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .wwd-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wwd-left {
    text-align: center;
  }
  .wwd-left .section-label,
  .wwd-left .section-heading {
    text-align: center;
  }
  .what-we-do-body {
    margin: 0 auto;
  }
  .wwd-sticker-book {
    height: 360px;
    max-width: 360px;
    margin: 0 auto;
  }
  .wwd-photo-1 {
    width: 180px;
    height: 230px;
  }
  .wwd-photo-2 {
    width: 160px;
    height: 210px;
  }
  .wwd-photo-3 {
    width: 170px;
    height: 220px;
    left: 60px;
  }
}

@media (max-width: 768px) {
  .who-checklist {
    grid-template-columns: 1fr;
  }
}

/* ========== AI OPERATORS ========== */
.ai-operators-section {
  padding: 80px 0;
  text-align: center;
}

.hl-gold {
  color: #e2c56e;
}

.ai-operators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 48px;
}

.ai-op-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(226,197,110,0.15);
  border-radius: 16px;
  padding: 32px 20px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.ai-op-card:hover {
  border-color: rgba(226,197,110,0.4);
  transform: translateY(-4px);
}

.ai-op-icon-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  background: rgba(226,197,110,0.08);
  border: 1px solid rgba(226,197,110,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-op-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ai-op-focus {
  font-size: 14px;
  color: #e2c56e;
  margin-bottom: 14px;
  min-height: 20px;
}

.ai-op-detail {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  text-align: left;
}

.ai-op-detail strong {
  color: rgba(255,255,255,0.8);
}

.ai-op-detail:last-child {
  margin-bottom: 0;
}

.ai-op-tools-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ai-op-tools-row img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1a1a1a;
}

.ai-op-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
}

.ai-op-banner p {
  font-size: 17px;
  color: #1a1a1a;
  line-height: 1.5;
}

.ai-op-banner strong {
  color: #0a0a0a;
  font-weight: 800;
}

.ai-op-banner .btn-cream-pill {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .ai-operators-grid { grid-template-columns: 1fr 1fr; }
  .ai-op-banner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 540px) {
  .ai-operators-grid { grid-template-columns: 1fr; }
}

/* ========== LINKEDIN COMPARISON ========== */
.linkedin-compare-section {
  padding: 60px 0;
  text-align: center;
}

.linkedin-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  text-align: left;
}

.linkedin-msg-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.linkedin-msg--boring .linkedin-msg-label {
  color: rgba(255,255,255,0.5);
}

.linkedin-msg--video .linkedin-msg-label {
  color: #c9a84c;
}

.linkedin-msg-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  min-height: 320px;
}

.linkedin-msg--boring .linkedin-msg-card {
  opacity: 0.7;
}

.linkedin-msg--video .linkedin-msg-card {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
}

.linkedin-msg-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.linkedin-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
}

.linkedin-avatar--gold {
  background: linear-gradient(135deg, #c9a84c, #f0e2b5);
}

.linkedin-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.linkedin-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.linkedin-time {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.linkedin-msg-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.linkedin-msg-body p {
  margin-bottom: 12px;
}

.linkedin-msg-body p:last-child {
  margin-bottom: 0;
}

.linkedin-video-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
  aspect-ratio: 16/9;
  background: #111;
}

.linkedin-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.linkedin-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.linkedin-msg-result {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

.linkedin-msg-result--gold {
  color: #4caf50;
  font-size: 18px;
}

.linkedin-icon {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.8;
}

.linkedin-voice-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 8px 14px;
  margin: 10px 0;
}

.linkedin-voice-play {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.linkedin-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.linkedin-waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
}

.linkedin-waveform span:nth-child(1) { height: 8px; }
.linkedin-waveform span:nth-child(2) { height: 14px; }
.linkedin-waveform span:nth-child(3) { height: 20px; }
.linkedin-waveform span:nth-child(4) { height: 12px; }
.linkedin-waveform span:nth-child(5) { height: 24px; }
.linkedin-waveform span:nth-child(6) { height: 16px; }
.linkedin-waveform span:nth-child(7) { height: 10px; }
.linkedin-waveform span:nth-child(8) { height: 22px; }
.linkedin-waveform span:nth-child(9) { height: 18px; }
.linkedin-waveform span:nth-child(10) { height: 8px; }
.linkedin-waveform span:nth-child(11) { height: 14px; }
.linkedin-waveform span:nth-child(12) { height: 26px; }
.linkedin-waveform span:nth-child(13) { height: 20px; }
.linkedin-waveform span:nth-child(14) { height: 10px; }
.linkedin-waveform span:nth-child(15) { height: 16px; }
.linkedin-waveform span:nth-child(16) { height: 22px; }
.linkedin-waveform span:nth-child(17) { height: 12px; }
.linkedin-waveform span:nth-child(18) { height: 8px; }
.linkedin-waveform span:nth-child(19) { height: 18px; }
.linkedin-waveform span:nth-child(20) { height: 24px; }
.linkedin-waveform span:nth-child(21) { height: 14px; }
.linkedin-waveform span:nth-child(22) { height: 10px; }
.linkedin-waveform span:nth-child(23) { height: 20px; }
.linkedin-waveform span:nth-child(24) { height: 16px; }
.linkedin-waveform span:nth-child(25) { height: 12px; }
.linkedin-waveform span:nth-child(26) { height: 22px; }
.linkedin-waveform span:nth-child(27) { height: 8px; }
.linkedin-waveform span:nth-child(28) { height: 18px; }
.linkedin-waveform span:nth-child(29) { height: 14px; }
.linkedin-waveform span:nth-child(30) { height: 10px; }

.linkedin-reply-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 12px;
}

.linkedin-reply-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667, #99a);
  flex-shrink: 0;
  object-fit: cover;
}

.linkedin-reply-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.linkedin-reply-body p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .linkedin-compare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========== WHO IS THIS FOR ========== */
.who-section {
  padding: 18px 0 14px;
  text-align: center;
}

.who-section .section-heading {
  margin-bottom: 12px;
  font-size: 22px;
}

.who-checklist {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
  text-align: left;
}

.who-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  padding: 3px 0;
}

.check-icon {
  color: #c9a84c;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

/* ========== KEN'S STORY (handwritten) ========== */
/* ========== KEN'S JOURNEY ========== */
.ken-section-title {
  font-family: 'Caveat', cursive;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}

.ken-journey {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
  align-items: start;
}

/* Letter card */
.ken-letter {
  background: #fdf6e3;
  border-radius: 6px;
  padding: 28px 32px 24px 180px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  position: relative;
  min-height: 420px;
}

.ken-letter-avatar {
  position: absolute;
  left: -20px;
  top: 20px;
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  border: 4px solid #fdf6e3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 2;
}

.ken-letter-header {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ken-letter-meta strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.ken-letter-meta span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(0,0,0,0.45);
}

.ken-letter-meta a {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
}

.ken-letter-meta a:hover { text-decoration: underline; }

.ken-letter-body {
  font-family: 'Caveat', cursive;
  font-size: 19px;
  line-height: 1.45;
  color: #2a2a2a;
  margin-bottom: 6px;
}

.ken-letter .hl {
  color: #b8860b;
  font-weight: 700;
}

.ken-letter-sign {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: #1a1a1a;
  margin-top: 10px;
  font-weight: 700;
}

/* Sticker book photos */
.ken-journey-imgs {
  position: relative;
  height: 540px;
}

.ken-journey-imgs img {
  position: absolute;
  width: 240px;
  height: 170px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  border: 5px solid #f5e6c8;
}

.ken-journey-imgs img:nth-child(1) {
  top: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 1;
}

.ken-journey-imgs img:nth-child(2) {
  top: 185px;
  right: 20px;
  transform: rotate(-1.5deg);
  z-index: 2;
}

.ken-journey-imgs img:nth-child(3) {
  top: 360px;
  right: 10px;
  transform: rotate(1deg);
  z-index: 3;
}

@media (max-width: 900px) {
  .ken-journey { grid-template-columns: 1fr; gap: 24px; }
  .ken-letter { padding-left: 32px; min-height: auto; }
  .ken-letter-avatar { position: static; width: 100%; height: 200px; margin-bottom: 16px; }
  .ken-section-title { font-size: 28px; }
  .ken-journey-imgs { position: static; height: auto; display: flex; flex-wrap: wrap; gap: 12px; }
  .ken-journey-imgs img { position: static; width: 48%; height: 140px; transform: none; }
}

/* ========== SUZANNE SPOTLIGHT ========== */
.suzanne-spotlight {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
  align-items: start;
}

.suzanne-letter {
  background: none;
  padding: 0;
}

.suzanne-letter h4 {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.suzanne-letter .hl {
  color: #e2c56e;
  font-weight: 700;
}

.suzanne-letter p {
  font-family: 'Caveat', cursive;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.suzanne-letter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suzanne-letter li {
  font-family: 'Caveat', cursive;
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  padding: 3px 0;
}

.suzanne-letter li::before {
  content: '\2713';
  color: #e2c56e;
  font-weight: 700;
  margin-right: 8px;
}

.suzanne-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  border: 5px solid #f5e6c8;
  transform: rotate(1deg);
}

@media (max-width: 900px) {
  .suzanne-spotlight { grid-template-columns: 1fr; }
}

/* ========== CLIENT RESULTS ========== */
.results-sticker-grid {
  columns: 3;
  column-gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.results-sticker-grid .result-card {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.results-sticker-grid .result-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.results-sticker-grid .result-card--video {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.results-sticker-grid .result-card--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .results-sticker-grid { columns: 1; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .results-sticker-grid { columns: 2; }
}

/* ========== COMPARISON ========== */
.comparison-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #0a0a0a, #111, #0a0a0a);
  text-align: center;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.comparison-card {
  padding: 40px 32px;
  border-radius: 16px;
  text-align: left;
}

.comparison-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.comparison-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.comparison-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.comparison-card--bad {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.comparison-card--bad h3 {
  color: rgba(255,255,255,0.6);
}

.comparison-card--bad li::before {
  background: rgba(255,100,100,0.5);
}

.comparison-card--good {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.comparison-card--good h3 {
  color: #f0e2b5;
}

.comparison-card--good li::before {
  background: #c9a84c;
}

.comparison-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #c9a84c;
}

/* ========== HOW IT WORKS ========== */
.how-it-works-section {
  padding: 72px 0;
  text-align: center;
}

.steps-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  color: #c9a84c;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f0e2b5;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ========== SERVICE CARDS ========== */
.assistants-section { padding: 72px 0; text-align: center; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  background: #151515;
  transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-4px); }

.card-full { grid-column: auto; max-width: 100%; }

.card-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.card-arrow {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.card-body { padding: 28px; }

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
  text-align: left;
}

.card-list { display: flex; flex-direction: column; gap: 14px; }

.card-list li {
  display: flex; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ========== MARQUEE ========== */
.marquee-section {
  padding: 24px 0 48px;
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-inner {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== RESULTS ========== */
.results-section {
  padding: 60px 0;
  text-align: center;
}

.results-pills {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.result-pill {
  padding: 28px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.result-pill-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #c9a84c;
  letter-spacing: -2px;
  margin-bottom: 6px;
}

.result-pill-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 60px 0 80px;
  overflow: hidden;
}

.testimonials-carousel {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 340px; max-width: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  flex-shrink: 0;
  transition: 0.4s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,76,0.15);
}

.stars {
  color: #c9a84c;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.carousel-controls {
  display: flex; justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: #c9a84c;
  color: #c9a84c;
}

/* ========== TIMELINE ========== */
.timeline-section {
  padding: 72px 0;
  text-align: center;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-block {
  padding: 32px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: left;
  position: relative;
}

.timeline-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, rgba(201,168,76,0.3));
  border-radius: 16px 16px 0 0;
}

.timeline-range {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 10px;
}

.timeline-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ========== THE NUMBERS ========== */
.numbers-section {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a, #111, #0a0a0a);
}

.numbers-simple {
  max-width: 800px;
  margin: 0 auto 48px;
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.numbers-col {
  padding: 32px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.numbers-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.numbers-val {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.8);
}

.numbers-col--highlight {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
}

.numbers-col--highlight .numbers-val {
  color: #f0e2b5;
}

.numbers-col--save {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.35);
}

.numbers-col--save .numbers-val {
  color: #c9a84c;
}

.numbers-bottom {
  max-width: 600px;
  margin: 0 auto;
}

.numbers-bottom p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.6;
}

.numbers-bottom strong {
  color: #f0e2b5;
}

.numbers-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #c9a84c;
  margin-top: 16px;
  letter-spacing: -0.5px;
}

/* ========== WHY SOUTH AFRICA ========== */
.south-africa-section {
  padding: 72px 0;
}

.sa-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.sa-left {
  text-align: left;
}

.sa-left .section-label {
  text-align: left;
}

.sa-left .section-heading {
  text-align: left;
}

.sa-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.sa-point {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-align: left;
}

.sa-point h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #e2c56e;
  margin-bottom: 4px;
}

.sa-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Globe */
.sa-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sa-globe-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}

.sa-globe-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.sa-globe-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 50%, #0a0a0a 75%);
  pointer-events: none;
}

/* Tenure comparison */
.sa-tenure-compare {
  text-align: center;
  margin-top: 4px;
}

.sa-tenure-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
}

.sa-tenure-label {
  font-size: 11px;
  font-weight: 500;
}

.sa-tenure-val {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.sa-tenure-row--gold .sa-tenure-label {
  color: #f0e2b5;
}

.sa-tenure-row--gold .sa-tenure-val {
  color: #e2c56e;
}

.sa-tenure-row--dim .sa-tenure-label {
  color: rgba(255,255,255,0.35);
}

.sa-tenure-row--dim .sa-tenure-val {
  color: rgba(255,255,255,0.4);
}

/* ========== GUARANTEE ========== */
.guarantee-section {
  padding: 60px 0;
  text-align: center;
}

.guarantee-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 40px;
  background: rgba(201, 168, 76, 0.04);
  border: 1.5px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
}

.guarantee-badge {
  margin-bottom: 20px;
}

.guarantee-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #f0e2b5;
  margin-bottom: 16px;
}

.guarantee-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.guarantee-bold {
  font-weight: 700;
  color: #c9a84c !important;
  font-size: 17px !important;
  margin-top: 8px;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 72px 0;
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover { color: #c9a84c; }

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: #c9a84c;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 72px 0;
  text-align: center;
}

.final-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.final-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 36px;
}

.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f0e2b5;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex; justify-content: center;
  gap: 28px;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-links a:hover { color: #c9a84c; }

.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ========== QUIZ KEYFRAMES ========== */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-60px); }
}
@keyframes popIn {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 20px 4px rgba(201,168,76,0.25); }
}
@keyframes checkPop {
  0% { transform: translateY(-60%) rotate(45deg) scale(0); }
  60% { transform: translateY(-60%) rotate(45deg) scale(1.2); }
  100% { transform: translateY(-60%) rotate(45deg) scale(1); }
}

/* ========== QUIZ ========== */
.quiz-section {
  padding: 0 0 48px;
  position: relative;
  z-index: 1;
}

.quiz-container {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  box-shadow:
    0 0 120px 40px rgba(201,168,76,0.08),
    0 0 60px 20px rgba(201,168,76,0.05),
    inset 0 1px 0 0 rgba(255,255,255,0.08),
    0 4px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.quiz-header {
  text-align: center;
  margin-bottom: 20px;
}

.quiz-main-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #f0e2b5;
}

.quiz-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  text-align: center;
  font-weight: 400;
}

/* Progress bar */
.quiz-progress {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c9a84c, #f0e2b5);
  border-radius: 5px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}

.quiz-progress-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: right;
  margin-bottom: 20px;
  transition: opacity 0.3s;
  display: none;
}

/* Quiz body & slide transitions */
.quiz-body {
  position: relative;
  overflow: hidden;
}

.quiz-slide {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.quiz-slide.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.quiz-slide.exit {
  display: block;
  pointer-events: none;
  animation: slideOutLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Question text */
.quiz-question {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 28px;
}

.quiz-hint {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: -20px;
  margin-bottom: 28px;
}

/* Option tiles */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-option:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.35);
  color: #f0e2b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.08);
}

.quiz-option:active {
  transform: scale(0.98);
}

.quiz-option.selected {
  background: rgba(201, 168, 76, 0.2);
  border-color: #c9a84c;
  color: #fff;
  animation: popIn 0.25s ease;
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}

/* Dim unselected when one is chosen */
.quiz-options.has-selection .quiz-option:not(.selected) {
  opacity: 0.5;
  transform: scale(0.98);
}

/* Yes / No row layout */
.quiz-options-row {
  flex-direction: row;
  gap: 16px;
}

.quiz-option-yn {
  flex: 1;
  text-align: center;
  min-height: 72px;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Multi-select with checkbox indicator */
.quiz-option-multi {
  padding-left: 52px;
  position: relative;
}

.quiz-option-multi::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-option-multi.selected::before {
  background: #c9a84c;
  border-color: #c9a84c;
  transform: translateY(-50%) scale(1.05);
}

.quiz-option-multi.selected::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  width: 6px;
  height: 11px;
  border: solid #0a0a0a;
  border-width: 0 2.5px 2.5px 0;
  animation: checkPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Multi-select: don't dim unselected */
.quiz-options.has-selection .quiz-option-multi:not(.selected) {
  opacity: 1;
  transform: none;
}

/* Continue button for sliders, multi-select, cards */
.quiz-continue {
  display: block;
  margin: 32px auto 0;
  min-width: 200px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-continue:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none !important;
}

.quiz-continue:not(:disabled) {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Slider styling */
.quiz-slider-wrap {
  padding: 16px 0 8px;
}

.quiz-slider-value {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.quiz-slider-value span {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--slider-color, #c9a84c);
  letter-spacing: -3px;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.quiz-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
  position: relative;
}

/* Slider track fill — set via JS as CSS custom property */
.quiz-slider {
  background: linear-gradient(
    to right,
    var(--slider-color, #c9a84c) 0%,
    var(--slider-color, #c9a84c) var(--slider-pct, 50%),
    rgba(255,255,255,0.1) var(--slider-pct, 50%),
    rgba(255,255,255,0.1) 100%
  );
  transition: background 0.1s;
}

.quiz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slider-color, #c9a84c);
  border: 3px solid #0a0a0a;
  box-shadow: 0 0 0 2px var(--slider-color, #c9a84c), 0 2px 12px rgba(0,0,0,0.5);
  cursor: grab;
  transition: transform 0.15s, box-shadow 0.3s;
}

.quiz-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.quiz-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.2);
  box-shadow: 0 0 0 3px var(--slider-color, #c9a84c), 0 4px 20px rgba(0,0,0,0.5);
}

.quiz-slider::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slider-color, #c9a84c);
  border: 3px solid #0a0a0a;
  box-shadow: 0 0 0 2px var(--slider-color, #c9a84c), 0 2px 12px rgba(0,0,0,0.5);
  cursor: grab;
}

.quiz-slider::-moz-range-track {
  height: 8px;
  border-radius: 4px;
  background: transparent;
}

.quiz-slider-ticks {
  display: flex;
  justify-content: space-between;
  padding: 10px 2px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

.quiz-slider-labels {
  display: flex;
  justify-content: space-between;
  padding: 4px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* Insight / Intra-quiz cards */
.quiz-insight-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 4px solid #c9a84c;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.quiz-insight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.insight-badge {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #f0e2b5;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.quiz-insight-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}

.quiz-insight-card p:last-of-type {
  margin-bottom: 0;
}

.quiz-insight-card strong {
  color: #f0e2b5;
  font-size: 16px;
}

.insight-highlight {
  font-weight: 700;
  color: #c9a84c !important;
  font-size: 16px !important;
  margin-top: 8px;
}

/* Insight card continue button — outline style */
[data-type="card"] .quiz-continue {
  background: transparent;
  border: 1.5px solid rgba(201,168,76,0.5);
  color: #f0e2b5;
}
[data-type="card"] .quiz-continue:hover {
  background: rgba(201,168,76,0.1);
  border-color: #c9a84c;
}

/* Email gate */
.quiz-email-gate {
  text-align: center;
}

/* Report preview mockup */
.quiz-report-preview {
  width: 220px;
  margin: 0 auto 28px;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(255,255,255,0.03));
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  position: relative;
}

.quiz-report-preview .report-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: rgba(201,168,76,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-report-preview .report-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #f0e2b5;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.quiz-report-preview .report-name {
  font-size: 13px;
  color: #c9a84c;
  font-weight: 600;
  min-height: 18px;
}

.quiz-report-preview .report-lines {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quiz-report-preview .report-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
}
.quiz-report-preview .report-line:nth-child(2) { width: 75%; }
.quiz-report-preview .report-line:nth-child(3) { width: 60%; }

.quiz-email-label {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.quiz-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
  transition: all 0.25s;
}

.quiz-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.quiz-input:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.quiz-submit {
  margin-top: 4px;
  width: 100%;
  text-align: center;
  font-size: 17px;
  min-height: 56px;
}

.quiz-email-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 16px;
  line-height: 1.5;
}

/* Quiz Results */
.quiz-results {
  text-align: center;
}

.quiz-result-icon {
  margin-bottom: 20px;
}

.quiz-result-title {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: #f0e2b5;
}

.quiz-result-summary {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.quiz-result-stat {
  padding: 24px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-align: center;
}

.result-stat-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #c9a84c;
  letter-spacing: -1px;
  margin-bottom: 6px;
  line-height: 1.1;
}

.result-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ========== RESPONSIVE ========== */

/* Quiz responsive */
@media (max-width: 768px) {
  .quiz-container { padding: 32px 24px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-result-stats { grid-template-columns: 1fr; }
  .quiz-options-row { flex-direction: row; }
  .quiz-option { min-height: 52px; padding: 16px 20px; }
  .quiz-slider::-webkit-slider-thumb { width: 36px; height: 36px; }
  .quiz-slider::-moz-range-thumb { width: 36px; height: 36px; }
  .quiz-continue { width: 100%; min-height: 52px; }
}

@media (max-width: 480px) {
  .quiz-container { padding: 28px 18px; }
  .quiz-question { font-size: 19px; }
  .quiz-slider-value span { font-size: 48px; }
  .quiz-option { font-size: 14px; padding: 16px 18px; }
  .quiz-option-multi { padding-left: 46px; }
  .quiz-insight-card { padding: 28px 22px; }
  .quiz-insight-card p { font-size: 14px; }
}

/* General responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero-title { font-size: clamp(20px, 5.5vw, 32px); letter-spacing: -1px; }
  .hero { padding: 90px 16px 20px; }

  .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

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

  .cards-grid { grid-template-columns: 1fr; }
  .card-full { max-width: 100%; }

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

  .numbers-row { grid-template-columns: 1fr; }

  .sa-layout { grid-template-columns: 1fr; }
  .sa-left { text-align: center; }
  .sa-left .section-label, .sa-left .section-heading { text-align: center; }
  .sa-globe-wrap { width: 300px; height: 300px; margin: 0 auto; }

  .section-heading { font-size: clamp(28px, 6vw, 40px); }
}

@media (max-width: 480px) {
  .stats-bar-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-bar { padding: 32px 0; }

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

  .guarantee-inner { padding: 32px 24px; }

  .result-pill { min-width: 100%; }
  .results-pills { flex-direction: column; align-items: center; }

  .hero-badge { font-size: 12px; padding: 8px 20px; }
}
