/* JAWLINE PLAN — Mina-Style Pink Edition */

:root {
  --bg: #FFFFFF;
  --bg-pink: #FFE5EE;
  --bg-pink-soft: #FFF1F6;
  --text: #0F0F12;
  --text-soft: #6E6E76;
  --pink: #FF5F92;
  --pink-hover: #FF4585;
  --pink-light: #FFB8CF;
  --border: #F0E8EC;
  --max-width: 720px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO — pink gradient */
.hero {
  padding: 56px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-pink) 0%, var(--bg-pink-soft) 60%, var(--bg) 100%);
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,.85);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--pink-light);
}
.hero-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 7vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--pink);
  font-style: normal;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.cta-primary {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(255, 95, 146, 0.35);
}
.cta-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 95, 146, 0.45);
}
.cta-full { width: 100%; }
.cta-secondary {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  margin-top: 24px;
  transition: all 0.15s;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 95, 146, 0.35);
}
.cta-secondary:hover { background: var(--pink-hover); }

.micro {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
  padding: 6px 14px;
  border-radius: 999px;
}
.creator-line {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 24px;
}
.creator-line a { color: var(--text); font-weight: 600; }

/* TRUST BAR */
.trust-bar {
  background: var(--bg-pink-soft);
  padding: 32px 0;
}
.trust-bar .trust-creator {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-item { text-align: center; }
.trust-num {
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 6px;
  font-weight: 500;
}

/* SECTION DEFAULTS */
section { padding: 64px 0; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  text-align: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 38px);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* TESTIMONIALS — auf white */
.testimonials {
  text-align: center;
  background: white;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 28px;
}
.video-placeholder {
  aspect-ratio: 9/16;
  background: var(--bg-pink);
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-placeholder::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: white;
  background: var(--pink);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}
.video-placeholder:hover { transform: scale(1.02); }
.video-fallback {
  padding: 12px;
  background: white;
  width: calc(100% - 16px);
  margin: 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}
.video-icon { display: none; }
.video-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* STATS — pink stripe */
.stats {
  background: var(--bg-pink);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-num {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  margin-top: 8px;
  color: var(--text-soft);
  font-weight: 500;
}

/* INCLUDED — white */
.included { background: white; }
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
.included-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.included-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--bg-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.included-text { font-size: 14px; line-height: 1.4; }
.included-text strong { display: block; margin-bottom: 2px; font-weight: 700; font-size: 14px; }
.footnote {
  text-align: center;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 13px;
}

/* RESULTS — light pink BG */
.results { background: var(--bg-pink-soft); }
.result-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.ba-img { position: relative; }
.ba-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #F4E0E8 0%, #E8C8D6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ba-after { background: linear-gradient(135deg, #FFCEDA 0%, #FFA8C2 100%); color: rgba(0,0,0,.3); }
.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  color: var(--text);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.ba-tag.pink {
  background: var(--pink);
  color: white;
  left: auto;
  right: 10px;
}
.result-title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--pink);
  letter-spacing: -0.01em;
}
.result-quote {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.55;
}
.result-author { font-size: 14px; font-weight: 600; }
.result-meta { color: var(--text-soft); font-size: 13px; font-weight: 400; }
.disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 12px;
}

/* RISK — pink box */
.risk { background: white; padding: 64px 24px; }
.risk-inner {
  background: var(--bg-pink-soft);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 640px;
  margin: 0 auto;
}
.risk-icon-top {
  width: 64px;
  height: 64px;
  background: var(--pink);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}
.risk h2 {
  text-align: center;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.risk-sub {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 32px;
  font-size: 14px;
}
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.risk-item {
  text-align: center;
  padding: 0 8px;
}
.risk-item .risk-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--pink);
}
.risk-item h3 {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 700;
}
.risk-item p { color: var(--text-soft); font-size: 12px; line-height: 1.5; }

/* QUIZ */
.quiz {
  background: white;
  scroll-margin-top: 24px;
}
.quiz-progress {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  margin-bottom: 16px;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--pink);
  width: 20%;
  transition: width 0.3s;
}
.quiz-step-num {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 24px;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q {
  font-weight: 800;
  font-size: clamp(26px, 4vw, 34px);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.quiz-q-sub {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 28px;
  font-size: 14px;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 28px auto 0;
}
.quiz-options.full-width { grid-template-columns: 1fr; }
.quiz-opt {
  background: white;
  border: 1.5px solid var(--border);
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  font-weight: 600;
  color: var(--text);
}
.quiz-opt:hover {
  border-color: var(--pink);
  background: var(--bg-pink-soft);
}
.quiz-opt.selected {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}
.quiz-email {
  max-width: 480px;
  margin: 0 auto;
}
.quiz-email input {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  margin-bottom: 14px;
  background: white;
}
.quiz-email input:focus {
  outline: none;
  border-color: var(--pink);
}

/* FAQ */
.faq { background: white; }
.faq-list {
  max-width: 600px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item summary {
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding-right: 24px;
  position: relative;
}
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  position: absolute;
  right: 0;
  transition: transform 0.2s;
  color: var(--text-soft);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--pink);
}
.faq-item p {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

/* FINAL CTA — pink button on white */
.final-cta {
  text-align: center;
  background: white;
  padding: 64px 24px;
}
.final-cta h2 {
  font-weight: 800;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.final-cta-sub {
  color: var(--text-soft);
  margin-bottom: 28px;
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: white;
  text-align: center;
  padding: 40px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.footer-tagline {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 13px;
}
.footer-meta {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.footer-links {
  font-size: 12px;
  color: var(--text-soft);
}
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  margin: 0 4px;
}
.footer-links a:hover { color: var(--pink); }

/* MOBILE */
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding: 48px 0 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .video-grid { max-width: 320px; gap: 10px; }
  .included-grid { grid-template-columns: 1fr; }
  .ba-grid { gap: 6px; }
  .quiz-options { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; gap: 24px; }
  .risk-inner { padding: 36px 24px; }
}
