/* ============================================
   MOTILLI LANDING PAGE — PV-INSPIRED DESIGN
   Architecture: Primal Viking editorial pattern
   Adapted: Warm, editorial health aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --accent: #3D8B7A;
  --accent-light: #5BBFAE;
  --accent-bg: #EBF5F2;
  --accent-dark: #2E6B5E;
  --cta: #D97B5A;
  --cta-hover: #C46A4A;
  --dark: #1E2D2F;
  --dark-2: #263538;
  --dark-text: #2C3338;
  --body-bg: #FDFBF7;
  --light-bg: #F5F1EB;
  --border: #E2DDD5;
  --star: #D4A03C;
  --success: #3D8B7A;
  --danger: #C0392B;
  --muted: #7A7568;
  --white: #FFFFFF;
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-text);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

strong { font-weight: 700; }

.accent { color: var(--accent); }
.accent-light { color: var(--accent-light); }


/* ==========================================
   STICKY BANNER
   ========================================== */

.banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}


/* ==========================================
   HERO — Split layout: image left, text right
   ========================================== */

.hero {
  background: var(--light-bg);
  padding: 48px 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-image {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero-product-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.press-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.press-bar span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-stars {
  font-size: 20px;
  color: var(--star);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.hero-stars span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 8px;
  vertical-align: middle;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16px;
  color: var(--dark-text);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-guarantee {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}


/* ==========================================
   CTA BUTTON — shared
   ========================================== */

.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(217, 123, 90, 0.3);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 123, 90, 0.4);
}

.btn-cta-large {
  padding: 20px 48px;
  font-size: 17px;
}


/* ==========================================
   SYMPTOM ICONS BAR
   ========================================== */

.symptom-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
}

.symptom-bar-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.symptom-item {
  text-align: center;
}

.symptom-icon {
  font-size: 32px;
  margin-bottom: 6px;
}

.symptom-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--dark-text);
  text-transform: uppercase;
}

.symptom-result {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}


/* ==========================================
   MECHANISM SECTION — dark bg
   ========================================== */

.mechanism-section {
  background: var(--dark);
  color: var(--white);
  padding: 64px 32px;
}

.mechanism-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.mechanism-header h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--white);
}

.mechanism-subtitle {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.mechanism-header p {
  color: #C8C3BA;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.mechanism-card {
  max-width: 900px;
  margin: 0 auto 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
}

.mechanism-card.reverse {
  flex-direction: row-reverse;
}

.mechanism-card-img {
  flex: 0 0 280px;
  max-width: 280px;
}

.mechanism-card-img img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.mechanism-card-text {
  flex: 1;
  min-width: 0;
}

.mechanism-card-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 14px;
}

.mechanism-card-text p {
  color: #C8C3BA;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}


/* ==========================================
   CTA BREAKS
   ========================================== */

.cta-break {
  text-align: center;
  padding: 48px 24px;
  background: var(--body-bg);
}

.cta-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 500;
}


/* ==========================================
   ANCHOR TESTIMONIAL
   ========================================== */

.anchor-testimonial {
  padding: 64px 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.anchor-testimonial h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.2;
  color: var(--dark-text);
  margin-bottom: 32px;
}

.anchor-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.anchor-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

.anchor-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.anchor-meta strong {
  font-size: 16px;
  color: var(--dark-text);
}

.verified-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--accent-bg);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.stars-inline {
  color: var(--star);
  font-size: 16px;
  letter-spacing: 2px;
}

.anchor-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.anchor-image {
  flex: 0 0 300px;
  max-width: 300px;
}

.anchor-image img {
  width: 100%;
  border-radius: 10px;
}


/* ==========================================
   SCROLLING MARQUEE
   ========================================== */

.marquee {
  background: var(--dark);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-alt {
  background: var(--accent-dark);
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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


/* ==========================================
   TIMELINE SECTION
   ========================================== */

.timeline-section {
  background: var(--body-bg);
  padding: 64px 32px;
}

.timeline-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 12px;
}

.timeline-intro {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}

.tl-stage {
  display: flex;
  gap: 28px;
  margin-bottom: 8px;
}

.tl-stage.last .tl-marker .tl-line { display: none; }

.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
}

.tl-dot {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--accent-bg);
  flex-shrink: 0;
}

.tl-line {
  width: 3px;
  flex: 1;
  background: var(--accent);
  opacity: 0.3;
}

.tl-content {
  flex: 1;
  padding-bottom: 40px;
}

.tl-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tl-testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.tl-testimonial-card strong {
  display: block;
  font-size: 14px;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.tl-testimonial-card p {
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.tl-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tl-benefit h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.tl-benefit p {
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.65;
}


/* ==========================================
   TEARDOWN / COMPARISON SECTION
   ========================================== */

.teardown-section {
  background: var(--body-bg);
  padding: 64px 32px 48px;
}

.teardown-inner {
  max-width: 900px;
  margin: 0 auto;
}

.teardown-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 12px;
}

.teardown-sub {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.teardown-diagram {
  max-width: 500px;
  margin: 0 auto 36px;
}

.teardown-diagram img {
  width: 100%;
  border-radius: 10px;
}

.teardown-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 48px;
}

.teardown-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.5;
  min-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.teardown-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.teardown-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.teardown-table tbody tr:last-child td {
  border-bottom: none;
}

.teardown-table .row-highlight td {
  background: var(--accent-bg);
}

.teardown-table .check {
  color: var(--success);
  font-weight: 800;
}

.teardown-table .cross {
  color: var(--danger);
  font-weight: 500;
}

.cabinet-comparison {
  text-align: center;
}

.cabinet-comparison h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 20px;
}

.cabinet-img {
  max-width: 500px;
  margin: 0 auto 24px;
}

.cabinet-img img {
  width: 100%;
  border-radius: 10px;
}

.cabinet-comparison p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 12px;
}


/* ==========================================
   ORIGIN / DISCOVERY SECTION — dark bg
   ========================================== */

.origin-section {
  background: var(--dark);
  color: var(--white);
  padding: 64px 32px;
}

.origin-inner {
  max-width: 800px;
  margin: 0 auto;
}

.origin-inner h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 16px;
  color: var(--white);
}

.origin-intro {
  text-align: center;
  color: #C8C3BA;
  font-size: 16px;
  margin-bottom: 32px;
}

.origin-hero-img {
  max-width: 400px;
  margin: 0 auto 32px;
  border-radius: 12px;
  overflow: hidden;
}

.urgency-hero-img {
  max-width: 600px;
  margin: 0 auto 32px;
  border-radius: 12px;
  overflow: hidden;
}

.origin-inner > p {
  color: #C8C3BA;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.origin-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}

.origin-block h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}

.origin-block p {
  color: #C8C3BA;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.ingredients-trio {
  margin-top: 48px;
  text-align: center;
}

.ingredients-trio h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 28px;
}

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

.ingredient-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
}

.ingredient-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.ingredient-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 13px;
  color: #C8C3BA;
  line-height: 1.6;
}

.ingredient-summary {
  color: #C8C3BA;
  font-size: 15px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}


/* ==========================================
   FEEDBACK LOOP SECTION
   ========================================== */

.feedback-section {
  background: var(--body-bg);
  padding: 64px 32px;
}

.feedback-inner {
  max-width: 800px;
  margin: 0 auto;
}

.feedback-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 12px;
}

.feedback-intro {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}

.feedback-img {
  max-width: 500px;
  margin: 0 auto 36px;
}

.feedback-img img {
  width: 100%;
  border-radius: 10px;
}

.feedback-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.feedback-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}

.feedback-step p {
  font-size: 15px;
  line-height: 1.65;
}

.feedback-highlight {
  font-size: 17px;
  line-height: 1.7;
  background: var(--accent-bg);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 36px;
}

.waiting-block {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 32px;
}

.waiting-block h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 16px;
}

.waiting-block p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}


/* ==========================================
   INVESTMENT SECTION
   ========================================== */

.investment-section {
  background: var(--body-bg);
  padding: 64px 32px;
}

.investment-inner {
  max-width: 900px;
  margin: 0 auto;
}

.investment-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 8px;
}

.investment-lead {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 36px;
}

.investment-content {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.investment-img {
  flex: 0 0 260px;
  max-width: 260px;
}

.investment-img img {
  width: 100%;
  border-radius: 10px;
}

.investment-text {
  flex: 1;
}

.investment-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}


/* ==========================================
   FORMAT SECTION — dark bg
   ========================================== */

.format-section {
  background: var(--dark);
  color: var(--white);
  padding: 64px 32px;
}

.format-inner {
  max-width: 900px;
  margin: 0 auto;
}

.format-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 36px;
  color: var(--white);
}

.format-content {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.format-img {
  flex: 0 0 260px;
  max-width: 260px;
}

.format-img img {
  width: 100%;
  border-radius: 10px;
}

.format-text {
  flex: 1;
}

.format-text p {
  color: #C8C3BA;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.format-checklist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.format-checklist li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #C8C3BA;
  font-size: 15px;
}

.format-checklist li::before {
  content: '\2714';
  color: var(--accent-light);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 14px;
}


/* ==========================================
   PRODUCT REINTRO SECTION
   ========================================== */

.reintro-section {
  background: var(--body-bg);
  padding: 64px 32px;
}

.reintro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.reintro-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.reintro-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

.reintro-product-img {
  max-width: 280px;
  margin: 0 auto 32px;
  border-radius: 12px;
}

.reintro-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: left;
}

.reintro-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.reintro-testimonial blockquote {
  margin: 0;
}

.reintro-testimonial blockquote p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 12px;
}


/* ==========================================
   URGENCY SECTION — dark bg
   ========================================== */

.urgency-section {
  background: var(--dark);
  color: var(--white);
  padding: 64px 32px;
}

.urgency-inner {
  max-width: 800px;
  margin: 0 auto;
}

.urgency-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 12px;
  color: var(--white);
}

.urgency-lead {
  text-align: center;
  color: #C8C3BA;
  font-size: 16px;
  margin-bottom: 36px;
}

.urgency-paths {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.urgency-path {
  flex: 1;
  border-radius: 10px;
  padding: 24px;
}

.path-without {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
}

.path-with {
  background: rgba(61, 139, 122, 0.15);
  border: 1px solid rgba(61, 139, 122, 0.3);
}

.path-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.path-without .path-label { color: #E74C3C; }
.path-with .path-label { color: var(--accent-light); }

.path-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #C8C3BA;
}

.urgency-inner > p {
  color: #C8C3BA;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: center;
}


/* ==========================================
   FINAL CTA SECTION — dark bg
   ========================================== */

.final-cta-section {
  background: var(--dark-2);
  color: var(--white);
  padding: 64px 32px;
  text-align: center;
}

.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--white);
  margin-bottom: 28px;
}

.final-product-img {
  max-width: 280px;
  margin: 0 auto 28px;
  border-radius: 12px;
}

.final-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.final-cta-inner > p {
  color: #C8C3BA;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-checklist {
  list-style: none;
  text-align: left;
  max-width: 440px;
  margin: 28px auto;
  padding: 0;
}

.final-checklist li {
  padding: 5px 0 5px 28px;
  font-size: 14px;
  color: #C8C3BA;
  position: relative;
}

.final-checklist li::before {
  content: '\2714';
  color: var(--accent-light);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 13px;
}

.scarcity {
  font-size: 15px;
  color: var(--cta);
  font-weight: 700;
  margin: 24px 0 8px;
  line-height: 1.6;
}

.final-cta-section .btn-cta {
  margin: 16px 0;
}


/* ==========================================
   STICKY MOBILE CTA
   ========================================== */

.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.btn-cta-sticky {
  display: block;
  background: var(--cta);
  color: var(--white);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}


/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--dark);
  color: var(--muted);
  text-align: center;
  padding: 28px 20px;
  font-size: 11.5px;
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer .disclaimer {
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}


/* ==========================================
   RESPONSIVE — Tablet
   ========================================== */

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    flex: none;
    max-width: 340px;
    margin: 0 auto;
  }

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

  .anchor-inner {
    flex-direction: column;
  }

  .anchor-image {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .anchor-image img {
    max-width: 320px;
    margin: 0 auto;
  }

  .mechanism-card,
  .mechanism-card.reverse {
    flex-direction: column;
  }

  .mechanism-card-img {
    flex: none;
    max-width: 100%;
  }

  .investment-content {
    flex-direction: column;
    align-items: center;
  }

  .investment-img {
    flex: none;
    max-width: 240px;
  }

  .format-content {
    flex-direction: column;
    align-items: center;
  }

  .format-img {
    flex: none;
    max-width: 240px;
  }

  .ingredient-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 24px;
  }

  .urgency-paths {
    flex-direction: column;
  }
}


/* ==========================================
   RESPONSIVE — Mobile
   ========================================== */

@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: block;
  }

  body {
    padding-bottom: 70px;
    font-size: 16px;
  }

  .banner {
    font-size: 10px;
    padding: 10px 12px;
    letter-spacing: 1px;
  }

  .hero {
    padding: 32px 0;
  }

  .hero-inner {
    padding: 0 20px;
    gap: 28px;
  }

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

  .hero-sub {
    font-size: 15px;
  }

  .btn-cta {
    padding: 16px 28px;
    font-size: 14px;
    width: 100%;
  }

  .btn-cta-large {
    padding: 18px 28px;
    font-size: 15px;
  }

  .symptom-bar-inner {
    gap: 12px;
  }

  .symptom-icon {
    font-size: 24px;
  }

  .symptom-label {
    font-size: 10px;
  }

  .symptom-result {
    font-size: 10px;
  }

  .mechanism-section {
    padding: 40px 20px;
  }

  .mechanism-header h2 {
    font-size: 26px;
  }

  .mechanism-card {
    padding: 20px;
    gap: 20px;
  }

  .mechanism-card-text h3 {
    font-size: 20px;
  }

  .anchor-testimonial {
    padding: 40px 20px;
  }

  .anchor-testimonial h2 {
    font-size: 26px;
  }

  .timeline-section {
    padding: 40px 20px;
  }

  .timeline-section h2 {
    font-size: 26px;
  }

  .cta-break {
    padding: 36px 20px;
  }

  .teardown-section {
    padding: 40px 20px;
  }

  .teardown-inner h2 {
    font-size: 26px;
  }

  .origin-section {
    padding: 40px 20px;
  }

  .origin-inner h2 {
    font-size: 26px;
  }

  .feedback-section {
    padding: 40px 20px;
  }

  .feedback-inner h2 {
    font-size: 26px;
  }

  .investment-section {
    padding: 40px 20px;
  }

  .investment-inner h2 {
    font-size: 26px;
  }

  .format-section {
    padding: 40px 20px;
  }

  .format-inner h2 {
    font-size: 26px;
  }

  .reintro-section {
    padding: 40px 20px;
  }

  .reintro-inner h2 {
    font-size: 26px;
  }

  .urgency-section {
    padding: 40px 20px;
  }

  .urgency-inner h2 {
    font-size: 26px;
  }

  .final-cta-section {
    padding: 40px 20px;
  }

  .final-cta-inner h2 {
    font-size: 28px;
  }

  .final-checklist {
    max-width: 100%;
  }
}

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

  .mechanism-header h2,
  .anchor-testimonial h2,
  .timeline-section h2,
  .teardown-inner h2,
  .origin-inner h2,
  .feedback-inner h2,
  .investment-inner h2,
  .format-inner h2,
  .reintro-inner h2,
  .urgency-inner h2 {
    font-size: 23px;
  }

  .final-cta-inner h2 {
    font-size: 25px;
  }

  .press-bar {
    gap: 6px;
  }

  .press-bar span {
    font-size: 9px;
    padding: 4px 8px;
  }

  .tl-stage {
    gap: 16px;
  }
}
