:root {
  --bg: #060e0a;
  --panel: #0d1712;
  --panel2: #122119;
  --text: #f3f8ef;
  --muted: #9eb1a3;
  --line: #1e3327;
  --brand: #b7ff2a;
  --brand2: #34d399;
  --brand-glow: rgba(183, 255, 42, 0.28);
  --accent: #10b981;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* iOS Safe Area Variables */
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
  --sar: env(safe-area-inset-right, 0px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

input, textarea, select {
  -webkit-touch-callout: default;
  -webkit-user-select: auto;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: radial-gradient(circle at 50% 0%, #173523 0%, #060e0a 55%, #030705 100%);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  padding-left: var(--sal);
  padding-right: var(--sar);
}

.hidden {
  display: none !important;
}

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Glassmorphism Common Style */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

/* Typography & Eyebrow */
.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-header-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.badge-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px var(--brand-glow));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.badge.highlight {
  background: rgba(183, 255, 42, 0.15);
  border-color: rgba(183, 255, 42, 0.4);
  color: var(--brand);
}

/* Header & Navigation (iOS Safe Top Padding) */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(16px, var(--sat)) 5vw 16px;
  background: rgba(6, 14, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  font-size: 22px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #060e0a;
  font-weight: 900;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.pro-tag {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  margin-left: 4px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--brand);
}

.top-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Mobile Drawer (iOS Safe Padding & dvh) */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: var(--panel);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: max(24px, var(--sat)) 24px max(24px, var(--sab));
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.close-drawer {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.drawer-link {
  color: var(--text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Buttons & Touch Optimization */
button {
  font-family: var(--font);
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  min-height: 44px;
}

.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #060e0a;
  border-radius: 16px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 24px var(--brand-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary:active {
  transform: scale(0.97);
}

.primary.glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(183, 255, 42, 0.4);
}

.primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.ghost:active {
  transform: scale(0.97);
}

.small {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 12px;
  min-height: 38px;
}

.big {
  font-size: 18px;
  padding: 18px 28px;
  border-radius: 18px;
  min-height: 54px;
}

.full {
  width: 100%;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 60px 5vw 80px;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
}

.hero h1 {
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.05;
  font-weight: 900;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.hero-card {
  padding: 16px;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-app-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-app-img {
  transform: scale(1.02);
}

.image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(6, 14, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(183, 255, 42, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(183, 255, 42, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(183, 255, 42, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(183, 255, 42, 0); }
}

/* General Sections */
.section {
  padding: 90px 5vw;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

/* Split Section & How it Works */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.how-image-box {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.steps {
  display: grid;
  gap: 20px;
}

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s ease;
}

.step-card:hover {
  border-color: rgba(183, 255, 42, 0.3);
}

.step-card b {
  color: var(--brand);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.step-card h4 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Visual Quiz & Assessment Header Stepper */
.quiz-section {
  padding: 30px 5vw 100px;
}

.category-stepper-wrapper {
  max-width: 1180px;
  margin: 0 auto 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-stepper-wrapper::-webkit-scrollbar {
  display: none;
}

.category-stepper {
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.step-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.step-pill.active {
  background: rgba(183, 255, 42, 0.15);
  border-color: var(--brand);
  color: var(--brand);
}

.step-pill.done {
  background: rgba(52, 211, 153, 0.1);
  border-color: var(--brand2);
  color: var(--brand2);
}

.quiz-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: auto;
}

.quiz-aside {
  padding: 28px;
  height: max-content;
  position: sticky;
  top: 100px;
  text-align: center;
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: conic-gradient(var(--brand) var(--p, 0%), rgba(255, 255, 255, 0.08) 0);
  transition: background 0.3s ease;
}

.progress-ring span {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--panel);
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
}

.category-tag {
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  margin: 8px 0 20px;
}

.quiz-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.quiz-top {
  margin-bottom: 24px;
}

.q-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.category-pill {
  background: rgba(183, 255, 42, 0.12);
  color: var(--brand);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.progress {
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border-radius: 99px;
  transition: width 0.3s ease;
}

.quiz-card h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}

.quiz-card p#qHelp {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* Answers Grid & Visual Option Cards */
.answers-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.answer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 60px;
}

.answer-card:hover {
  border-color: rgba(183, 255, 42, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.answer-card:active {
  transform: scale(0.98);
}

.answer-card.active {
  border-color: var(--brand);
  background: rgba(183, 255, 42, 0.14);
  box-shadow: 0 4px 20px rgba(183, 255, 42, 0.15);
}

.option-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.option-icon {
  font-size: 24px;
  display: inline-block;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: transparent;
  transition: all 0.2s ease;
}

.answer-card.active .check-icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #060e0a;
  font-weight: 900;
}

/* iOS Safari Input Auto-zoom fix: 16px font-size minimum */
.input-answer {
  width: 100%;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  border-radius: var(--radius-md);
  font-size: 16px !important;
  font-weight: 700;
  font-family: var(--font);
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.input-answer:focus {
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.09);
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 16px;
}

/* Transformations & Social Proof */
.transformation-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.trans-img-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trans-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.trans-details h3 {
  font-size: 28px;
  font-weight: 900;
  margin: 14px 0 10px;
}

.trans-stats {
  font-size: 16px;
  color: var(--brand);
  margin-bottom: 20px;
}

blockquote {
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  border-left: 3px solid var(--brand);
  padding-left: 16px;
  font-size: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  padding: 28px;
}

.stars {
  font-size: 16px;
  margin-bottom: 12px;
}

.review-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.review-tag {
  color: var(--brand2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Results & Dashboard Section */
.results-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.result-header {
  padding: 40px;
  text-align: center;
}

.result-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.header-badge-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.result-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid var(--brand2);
  color: var(--brand2);
  font-size: 13px;
  font-weight: 800;
}

.result-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
}

.result-header p#resultSummary {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.score-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.score-box.highlight-box {
  background: rgba(183, 255, 42, 0.08);
  border-color: rgba(183, 255, 42, 0.3);
}

.score-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.score-box b {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
}

.score-box.highlight-box b {
  color: var(--brand);
}

.score-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin: 4px 0;
}

.score-box small {
  font-size: 12px;
  color: var(--brand2);
  font-weight: 800;
}

.results-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dashboard-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.dashboard-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.card-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.macro-bars {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.macro-info {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.macro-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.macro-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.protein-fill { background: linear-gradient(90deg, #ff6b6b, #ff8e8e); }
.carbs-fill { background: linear-gradient(90deg, #b7ff2a, #4ee58a); }
.fats-fill { background: linear-gradient(90deg, #38bdf8, #818cf8); }

.meal-image-preview, .card-preview-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-top: auto;
}

.routine-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.routine-list li {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-feature-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: auto;
}

/* Pricing Lock & Urgency */
.pricing-lock {
  text-align: center;
  margin-top: 20px;
}

.urgency-banner {
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.2), rgba(255, 165, 0, 0.2));
  border: 1px solid rgba(255, 107, 107, 0.4);
  border-radius: 999px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #ff9e9e;
  margin-bottom: 28px;
}

.urgency-banner b {
  color: var(--brand);
  font-size: 17px;
}

.pricing-sub {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 16px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 28px;
}

.price-card {
  text-align: left;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(183, 255, 42, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.price {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  margin: 12px 0 4px;
}

.price-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  gap: 12px;
}

.price-card li {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.price-card button {
  margin-top: auto;
}

/* Checkout Modal (iOS Safe Area & dvh) */
.checkout {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  padding: max(20px, var(--sat)) 20px max(20px, var(--sab));
  overflow-y: auto;
}

.checkout-card {
  width: min(540px, 100%);
  padding: 36px;
  position: relative;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
  border: none;
  line-height: 1;
  padding: 4px;
}

.checkout-header {
  margin-bottom: 24px;
}

.checkout-header h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 12px 0 4px;
}

.checkout-header p {
  color: var(--muted);
  font-size: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.form-group input {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font-size: 16px !important;
  font-family: var(--font);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus {
  border-color: var(--brand);
}

.payment-methods {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 24px;
  text-align: left;
}

.pay-title {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.tiny {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* FAQ */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq details {
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}

.faq details[open] {
  border-color: rgba(183, 255, 42, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.faq summary {
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  outline: none;
  user-select: none;
}

.faq details p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 5vw max(40px, var(--sab));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer p {
  color: var(--muted);
  font-size: 14px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
    min-height: auto;
    text-align: center;
  }

  .hero-header-badge {
    justify-content: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions, .trust-row {
    justify-content: center;
  }

  .hero-card {
    max-width: 540px;
    margin: 0 auto;
  }

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

  .transformation-banner {
    grid-template-columns: 1fr;
  }

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

  .results-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .desktop-nav, .desk-only {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  .quiz-shell {
    grid-template-columns: 1fr;
  }

  .quiz-aside {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .progress-ring {
    width: 60px;
    height: 60px;
    margin: 0;
  }

  .progress-ring span {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .category-tag {
    margin: 0;
  }

  .quiz-aside .ghost {
    display: none;
  }

  .quiz-card {
    padding: 24px;
  }

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

@media (max-width: 480px) {
  .topbar {
    padding: max(12px, var(--sat)) 16px 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-actions .primary, .hero-actions .ghost {
    width: 100%;
  }

  .score-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .score-box {
    padding: 16px 10px;
  }

  .score-box b {
    font-size: 22px;
  }

  .quiz-controls {
    position: sticky;
    bottom: max(12px, var(--sab));
    background: rgba(13, 23, 18, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 50;
  }

  .price-card {
    padding: 24px;
  }
}
