/* ============================================================
   Zenbara Landing Page — Premium Edition
   Inspired by Getfaceit's narrative arc, dressed in Zenbara warmth.
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-primary: #FFF8F0;
  --bg-alt: #FAF3E8;
  --bg-card: #FFFFFF;
  --bg-warm-deep: #2A1F18;
  --bg-warm-mid: #4A382C;

  /* Text */
  --text-primary: #3A2E26;
  --text-secondary: #6E6259;
  --text-muted: #9B8E82;
  --text-on-dark: #FFF8F0;

  /* Accents */
  --accent-primary: #E46F5A;
  --accent-primary-hover: #D25E49;
  --accent-soft: #F4C7A1;
  --accent-sage: #A8B89A;
  --accent-warm: #C77E54;

  /* Borders & Shadows */
  --border-light: #E9DED2;
  --border-dark: #5A4838;
  --shadow-card: 0 2px 12px rgba(58, 46, 38, 0.06);
  --shadow-elevated: 0 8px 32px rgba(58, 46, 38, 0.10);
  --shadow-deep: 0 16px 48px rgba(58, 46, 38, 0.16);

  /* Fonts */
  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;
  --text-base: 17px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-primary);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

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

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

/* ---- Section labels (eyebrow chapter markers) ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-primary);
  text-align: center;
  margin: 0 0 16px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(228, 111, 90, 0.08);
  border-radius: 100px;
  width: auto;
}
.section-label.truth-label,
.section-label.final-label {
  background: rgba(255, 248, 240, 0.08);
  color: var(--accent-soft);
}
.section-label-wrap {
  text-align: center;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-label { font-size: 13px; }
}

/* ---- Section heading ---- */
.section-heading {
  font-size: 34px;
  line-height: 1.08;
  text-align: center;
  margin: 0 auto 18px;
  max-width: 900px;
}
.section-subline {
  text-align: center;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .section-heading { font-size: 52px; margin-bottom: 24px; }
  .section-subline { font-size: 19px; margin-bottom: 64px; }
  :root { --text-base: 18px; }
}
@media (min-width: 1024px) {
  .section-heading { font-size: 60px; }
}

/* Center section labels via wrapper */
.problem-loop > .container > .section-label,
.cost-section > .container > .section-label,
.teardown-section > .container > .section-label,
.comparison-section > .container > .section-label,
.how-it-works > .container > .section-label,
.features > .container > .section-label,
.audio-sample > .container > .section-label,
.testimonials > .container > .section-label,
.versus-section > .container > .section-label,
.pricing > .container > .section-label,
.faq > .container > .section-label {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  line-height: 1.2;
  padding: 14px 28px;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(228, 111, 90, 0.28);
}
.btn-primary:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(228, 111, 90, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  padding: 12px 26px;
}
.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-1px);
}
.btn-lg { padding: 18px 36px; font-size: 17px; min-height: 56px; }
.btn-sm { padding: 10px 22px; font-size: 14px; min-height: 42px; }

/* ---- Fade-in ---- */
.js-fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.js-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}
.header-nav { display: none; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-cta {
  white-space: nowrap;
  font-size: 13px;
  padding: 8px 16px;
  min-height: 36px;
}

.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(58, 46, 38, 0.06);
  border-radius: 100px;
  padding: 2px;
}
.lang-toggle button {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
}
.lang-toggle button.active {
  background: #fff;
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(58, 46, 38, 0.1);
}

@media (min-width: 768px) {
  .site-header { height: 80px; }
  .header-inner { padding: 0 40px; }
  .header-actions { gap: 12px; }
  .header-cta { font-size: 14px; padding: 10px 22px; min-height: 42px; }
}
@media (min-width: 1024px) {
  .header-inner { padding: 0 60px; }
  .header-nav {
    display: flex;
    gap: 28px;
  }
  .header-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
  }
  .header-nav a:hover { color: var(--accent-primary); }
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  padding: 110px 0 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 199, 161, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 10% 70%, rgba(168, 184, 154, 0.18) 0%, transparent 55%),
    var(--bg-primary);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-primary);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(228, 111, 90, 0.10);
  border-radius: 100px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-size: 38px;
  line-height: 1.06;
  margin-bottom: 22px;
  font-weight: 700;
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  align-items: center;
}
.hero-microcopy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-card);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}
.stars-row {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 1px;
}
.rating-text {
  font-size: 13px;
  color: var(--text-secondary);
}
.rating-text strong {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 15px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 0;
  overflow: visible;
}
.phone-tilt {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: rotate(-2deg);
}
.phone-tilt:hover { transform: rotate(0deg) scale(1.02); }
.hero-card-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
}
.hero-floater {
  position: absolute;
  background: var(--bg-card);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--shadow-elevated);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  z-index: 2;
}
.hero-floater-icon {
  font-size: 16px;
}
.hero-floater-1 {
  top: -2%;
  left: -10%;
  animation: floatA 6s ease-in-out infinite;
}
.hero-floater-2 {
  bottom: 8%;
  right: -2%;
  background: var(--accent-primary);
  color: #fff;
  border-color: transparent;
  animation: floatB 7s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 600px) {
  .hero-floater-1 { top: 4%; left: 2%; font-size: 11px; padding: 8px 12px; }
  .hero-floater-2 { bottom: 6%; right: 2%; font-size: 11px; padding: 8px 12px; }
}

@media (min-width: 768px) {
  .hero { padding: 130px 0 100px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
  .hero h1 { font-size: 52px; }
  .hero-card-img { max-width: 420px; }
}
@media (min-width: 1024px) {
  .hero { padding: 140px 0 110px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
  .hero h1 { font-size: 62px; line-height: 1.05; }
  .hero-subtitle { font-size: 19px; }
  .hero-card-img { max-width: 460px; }
}
@media (min-width: 1280px) {
  .hero h1 { font-size: 68px; }
  .hero-card-img { max-width: 480px; }
}

/* ============================================================
   2. PROBLEM LOOP
   ============================================================ */
.problem-loop {
  background: var(--bg-alt);
  padding: 80px 0;
}
.problem-cards {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.problem-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.problem-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 16px;
}

@media (min-width: 768px) {
  .problem-loop { padding: 120px 0; }
  .problem-cards { grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
  .problem-card { padding: 44px 36px; }
  .problem-card h3 { font-size: 26px; }
  .problem-card p { font-size: 17px; }
  .problem-num { font-size: 44px; }
}

/* ============================================================
   3. COST OF INACTION
   ============================================================ */
.cost-section {
  background: var(--bg-primary);
  padding: 80px 0;
}
.cost-spiral {
  max-width: 720px;
  margin: 48px auto 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cost-step {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 28px 28px;
  box-shadow: var(--shadow-card);
  width: 100%;
  text-align: center;
  border-left: 4px solid var(--accent-soft);
  transition: transform 0.3s, border-color 0.3s;
}
.cost-step:hover { transform: translateX(4px); }
.cost-step:nth-child(1) { border-left-color: #F4C7A1; }
.cost-step:nth-child(3) { border-left-color: #E8A88A; }
.cost-step:nth-child(5) { border-left-color: #D88A6E; }
.cost-step-final { border-left-color: var(--accent-primary) !important; }
.cost-num {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 10px;
}
.cost-step p {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.4;
  color: var(--text-primary);
  font-weight: 600;
}
.cost-arrow {
  font-size: 24px;
  color: var(--accent-soft);
  font-weight: 300;
}
.cost-closing {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.4;
  color: var(--accent-primary);
  font-weight: 600;
  font-style: italic;
  max-width: 720px;
  margin: 32px auto 0;
}

@media (min-width: 768px) {
  .cost-section { padding: 120px 0; }
  .cost-step { padding: 32px 40px; }
  .cost-step p { font-size: 22px; }
  .cost-closing { font-size: 28px; margin-top: 48px; }
}

/* ============================================================
   4. PAINFUL TRUTH (warm dark section)
   ============================================================ */
.truth-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(228, 111, 90, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(199, 126, 84, 0.22) 0%, transparent 55%),
    var(--bg-warm-deep);
  padding: 100px 0;
  color: var(--text-on-dark);
}
.truth-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.truth-section h2 {
  color: var(--text-on-dark);
  font-size: 32px;
  line-height: 1.1;
  margin: 14px 0 32px;
  letter-spacing: -0.02em;
}
.truth-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 248, 240, 0.78);
  margin-bottom: 32px;
}
.truth-emphasis {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.35;
  color: var(--accent-soft);
  font-weight: 600;
  font-style: italic;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 248, 240, 0.15);
  border-bottom: 1px solid rgba(255, 248, 240, 0.15);
  display: inline-block;
}

@media (min-width: 768px) {
  .truth-section { padding: 140px 0; }
  .truth-section h2 { font-size: 52px; }
  .truth-body { font-size: 20px; }
  .truth-emphasis { font-size: 30px; padding: 28px 48px; }
}
@media (min-width: 1024px) {
  .truth-section h2 { font-size: 60px; }
}

/* ============================================================
   5. ANTI-COMPETITION TEARDOWN
   ============================================================ */
.teardown-section {
  background: var(--bg-primary);
  padding: 80px 0;
}
.teardown-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.teardown-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
}
.teardown-cross {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(228, 111, 90, 0.12);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.teardown-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  text-decoration: line-through;
  text-decoration-color: rgba(228, 111, 90, 0.5);
  text-decoration-thickness: 2px;
}
.teardown-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 16px;
}
@media (min-width: 768px) {
  .teardown-section { padding: 120px 0; }
  .teardown-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
  .teardown-card { padding: 44px 36px; }
  .teardown-card h3 { font-size: 26px; }
  .teardown-card p { font-size: 17px; }
}

/* ============================================================
   6. BEFORE / AFTER COMPARISON
   ============================================================ */
.comparison-section {
  background: var(--bg-alt);
  padding: 80px 0;
}
.compare-grid {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}
.compare-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
}
.compare-before {
  background: #F5EFE6;
  border-color: rgba(155, 142, 130, 0.3);
}
.compare-after {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 100%);
  border: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-elevated);
}
.compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(155, 142, 130, 0.18);
  color: var(--text-muted);
  margin-bottom: 24px;
}
.compare-tag-after {
  background: var(--accent-primary);
  color: #fff;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
}
.compare-before .compare-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(155, 142, 130, 0.2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.compare-after .compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.compare-result {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-weight: 600;
}
.compare-result-after {
  color: var(--accent-primary);
}

@media (min-width: 768px) {
  .comparison-section { padding: 120px 0; }
  .compare-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .compare-card { padding: 44px 36px; }
  .compare-list li { font-size: 17px; }
  .compare-result { font-size: 18px; }
}

/* ============================================================
   7. HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--bg-primary);
  padding: 80px 0;
}
.steps-grid {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}
.step-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.step-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 12px;
  line-height: 1;
}
.step-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 16px;
}

@media (min-width: 768px) {
  .how-it-works { padding: 120px 0; }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .step-card { padding: 44px 36px; }
  .step-card h3 { font-size: 28px; }
}

/* ============================================================
   8. FEATURE CARDS
   ============================================================ */
.features {
  background: var(--bg-alt);
  padding: 80px 0;
}
.card-showcase {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}
.card-showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.feature-block {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.showcase-card {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.feature-block-text {
  padding: 0 8px 8px;
}
.feature-block-text h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-block-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.feature-inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 0;
}
.feature-inline-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

@media (min-width: 768px) {
  .features { padding: 120px 0; }
  .card-showcase { gap: 40px; }
  .card-showcase-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-block { padding: 28px; }
  .feature-block-text h4 { font-size: 22px; }
  .feature-block-text p { font-size: 16px; }
  .feature-inline-cta { padding: 48px 0; }
  .feature-inline-sub { font-size: 14px; }
}

/* ============================================================
   AUDIO SAMPLE
   ============================================================ */
.audio-sample {
  background: var(--bg-primary);
  padding: 80px 0;
}
.audio-cards {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.audio-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 16px;
  align-items: center;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}
.audio-card-icon {
  font-size: 32px;
  grid-row: 1 / 3;
}
.audio-card-info { min-width: 0; }
.audio-card-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: normal;
  line-height: 1.3;
}
.audio-card-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  grid-row: 1 / 3;
  flex-shrink: 0;
}
.audio-play-btn:hover {
  transform: scale(1.08);
  background: var(--accent-primary-hover);
}
.audio-play-btn.playing svg { display: none; }
.audio-play-btn.playing::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}
.audio-wave {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-top: 12px;
  padding-top: 4px;
}
.audio-wave span {
  flex: 1;
  background: var(--accent-sage);
  border-radius: 2px;
  opacity: 0.3;
  transition: height 0.2s, opacity 0.2s;
}
.audio-wave span:nth-child(1) { height: 40%; }
.audio-wave span:nth-child(2) { height: 65%; }
.audio-wave span:nth-child(3) { height: 45%; }
.audio-wave span:nth-child(4) { height: 80%; }
.audio-wave span:nth-child(5) { height: 55%; }
.audio-wave span:nth-child(6) { height: 90%; }
.audio-wave span:nth-child(7) { height: 50%; }
.audio-wave span:nth-child(8) { height: 70%; }
.audio-wave span:nth-child(9) { height: 35%; }
.audio-wave span:nth-child(10) { height: 60%; }
.audio-wave span:nth-child(11) { height: 75%; }
.audio-wave span:nth-child(12) { height: 45%; }
.audio-card.active .audio-wave span {
  opacity: 0.7;
  animation: waveAnim 0.8s ease-in-out infinite alternate;
}
.audio-card.active .audio-wave span:nth-child(2) { animation-delay: 0.1s; }
.audio-card.active .audio-wave span:nth-child(3) { animation-delay: 0.2s; }
.audio-card.active .audio-wave span:nth-child(4) { animation-delay: 0.05s; }
.audio-card.active .audio-wave span:nth-child(5) { animation-delay: 0.15s; }
.audio-card.active .audio-wave span:nth-child(6) { animation-delay: 0.25s; }
.audio-card.active .audio-wave span:nth-child(7) { animation-delay: 0.12s; }
.audio-card.active .audio-wave span:nth-child(8) { animation-delay: 0.08s; }
.audio-card.active .audio-wave span:nth-child(9) { animation-delay: 0.18s; }
.audio-card.active .audio-wave span:nth-child(10) { animation-delay: 0.22s; }
.audio-card.active .audio-wave span:nth-child(11) { animation-delay: 0.06s; }
.audio-card.active .audio-wave span:nth-child(12) { animation-delay: 0.16s; }
@keyframes waveAnim {
  0% { transform: scaleY(0.6); }
  100% { transform: scaleY(1.2); }
}
@media (min-width: 768px) {
  .audio-sample { padding: 120px 0; }
  .audio-card { padding: 28px 32px; }
  .audio-card-info h3 { font-size: 18px; }
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
  background: var(--bg-alt);
  padding: 80px 0;
}
.founder-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.founder-image {
  display: flex;
  justify-content: center;
}
.founder-image img {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
}
.founder-text .section-label {
  margin-bottom: 14px;
}
.founder-text h2 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.founder-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.founder-signature {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent-primary);
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

@media (min-width: 900px) {
  .founder-section { padding: 120px 0; }
  .founder-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
  .founder-text h2 { font-size: 44px; }
  .founder-text p { font-size: 18px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-primary);
  padding: 80px 0;
}
.rating-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.big-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  padding: 28px 48px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}
.big-rating-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.big-rating-stars {
  color: #F5A623;
  font-size: 20px;
  letter-spacing: 3px;
}
.big-rating p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.testimonial-grid {
  display: grid;
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.stars {
  font-size: 18px;
  color: #F5A623;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.quote {
  font-family: var(--font-heading);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.author {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
}
.appstore-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.appstore-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-warm-deep);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(42, 31, 24, 0.25);
}
.appstore-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(42, 31, 24, 0.35);
}
.appstore-small {
  font-size: 11px;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.appstore-big {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}
.appstore-pill > div {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .testimonials { padding: 120px 0; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .quote { font-size: 18px; }
  .big-rating-number { font-size: 64px; }
  .big-rating { padding: 32px 56px; }
}

/* ============================================================
   VERSUS TABLE
   ============================================================ */
.versus-section {
  background: var(--bg-alt);
  padding: 80px 0;
}
.versus-table-wrap {
  max-width: 960px;
  margin: 48px auto 0;
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-elevated);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}
.versus-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.versus-table th,
.versus-table td {
  padding: 18px 16px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}
.versus-table th {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--text-primary);
  font-size: 13px;
  background: var(--bg-alt);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
}
.versus-table th:first-child,
.versus-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  padding-left: 24px;
}
.versus-table tbody tr:last-child td { border-bottom: none; }
.versus-table tbody tr:hover { background: rgba(228, 111, 90, 0.04); }
.versus-table .versus-us {
  background: rgba(228, 111, 90, 0.06);
  font-weight: 700;
  color: var(--accent-primary);
}
.versus-table tbody .versus-us {
  font-family: var(--font-heading);
  font-size: 17px;
}
.versus-yes {
  color: var(--accent-sage);
  font-weight: 700;
  font-size: 18px;
}
.versus-no {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 18px;
  opacity: 0.5;
}
.versus-table tbody tr:last-child td:not(:first-child) {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .versus-section { padding: 120px 0; }
  .versus-table th,
  .versus-table td { padding: 22px 18px; font-size: 15px; }
  .versus-table th:first-child,
  .versus-table td:first-child { padding-left: 32px; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--bg-primary);
  padding: 80px 0;
}
.pricing-grid {
  display: grid;
  gap: 20px;
  margin: 16px 0 48px;
}
.pricing-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card-featured {
  border: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-deep);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFAF4 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.12em;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-save {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-top: 6px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23A8B89A'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-4.5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.pricing-btn { width: 100%; }
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.pricing-legal {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
}

/* Risk reversal */
.risk-reversal {
  display: grid;
  gap: 24px;
  max-width: 960px;
  margin: 16px auto 0;
  background: var(--bg-card);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.risk-icon { flex-shrink: 0; margin-top: 2px; }
.risk-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.risk-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .pricing { padding: 120px 0; }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .pricing-card { padding: 40px 32px; }
  .pricing-card-featured { padding: 48px 32px; transform: translateY(-12px); }
  .pricing-header h3 { font-size: 24px; }
  .price-amount { font-size: 48px; }
  .pricing-features li { font-size: 16px; }
  .risk-reversal {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px 36px;
  }
  .risk-item strong { font-size: 18px; }
  .risk-item p { font-size: 15px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg-alt);
  padding: 80px 0;
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent-primary);
}
.faq-item summary:hover { color: var(--accent-primary); }
.faq-item p {
  padding: 0 0 22px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 16px;
}

@media (min-width: 768px) {
  .faq { padding: 120px 0; }
  .faq-item summary { font-size: 20px; padding: 26px 0; }
}

/* ============================================================
   FINAL CTA — Binary Choice
   ============================================================ */
.final-cta {
  background:
    radial-gradient(circle at 15% 20%, rgba(228, 111, 90, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(199, 126, 84, 0.18) 0%, transparent 55%),
    var(--bg-warm-deep);
  padding: 90px 0;
  color: var(--text-on-dark);
}
.final-cta-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.final-cta h2 {
  color: var(--text-on-dark);
  font-size: 36px;
  line-height: 1.1;
  margin: 16px 0 48px;
}
.binary-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}
.binary-option {
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 248, 240, 0.12);
  background: rgba(255, 248, 240, 0.03);
}
.binary-option-left {
  opacity: 0.78;
}
.binary-option-right {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 16px 48px rgba(228, 111, 90, 0.25);
}
.binary-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 248, 240, 0.1);
  color: rgba(255, 248, 240, 0.6);
  margin-bottom: 18px;
}
.binary-tag-recommended {
  background: var(--accent-primary);
  color: #fff;
}
.binary-option h3 {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.binary-option-left h3 {
  color: var(--text-on-dark);
  opacity: 0.9;
}
.binary-option p {
  line-height: 1.65;
  font-size: 16px;
}
.binary-option-left p {
  color: rgba(255, 248, 240, 0.65);
}
.binary-option-right p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.final-cta-btn {
  width: 100%;
  margin-top: 8px;
}
.final-cta-closing {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--accent-soft);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 600;
}

@media (min-width: 768px) {
  .final-cta { padding: 120px 0; }
  .final-cta h2 { font-size: 56px; }
  .binary-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .binary-option { padding: 40px 36px; }
  .binary-option h3 { font-size: 32px; }
  .binary-option p { font-size: 17px; }
  .final-cta-closing { font-size: 22px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1F160F;
  color: rgba(255, 248, 240, 0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFF8F0;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 248, 240, 0.4);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #FFF8F0; }
.footer-disclaimer {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: 24px;
  margin-bottom: 24px;
}
.footer-disclaimer p {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.45);
  text-align: center;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
}
.footer-lang button { color: rgba(255, 248, 240, 0.4); }
.footer-lang button.active {
  background: rgba(255, 248, 240, 0.1);
  color: #FFF8F0;
  box-shadow: none;
}
.footer-lang { background: rgba(255, 248, 240, 0.06); }

@media (min-width: 768px) {
  .site-footer { padding: 80px 0 40px; }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.4s, transform 0.4s;
}
.sticky-mobile-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-mobile-cta .btn {
  width: 100%;
  box-shadow: 0 12px 32px rgba(228, 111, 90, 0.45);
}
@media (min-width: 768px) {
  .sticky-mobile-cta { display: none; }
}

/* ============================================================
   SMALL-SCREEN REFINEMENTS
   ============================================================ */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .section-heading { font-size: 28px; }
  .truth-section h2 { font-size: 28px; }
  .truth-emphasis { font-size: 18px; padding: 18px 22px; }
  .btn-lg { padding: 16px 26px; font-size: 15px; }
  .cost-step p { font-size: 17px; }
  .cost-closing { font-size: 18px; }
  .compare-card { padding: 28px 22px; }
  .feature-block { padding: 18px; }
  .pricing-card { padding: 28px 22px; }
  .binary-option { padding: 26px 22px; }
  .binary-option h3 { font-size: 22px; }
  .final-cta h2 { font-size: 28px; }
  .faq-item summary { font-size: 16px; }
  .quote { font-size: 15px; }
  .big-rating-number { font-size: 44px; }
  .big-rating { padding: 22px 28px; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-content h1 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  margin-bottom: 8px;
}
.legal-content .legal-date {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}
.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin: 48px 0 16px;
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 12px;
}
.legal-content p, .legal-content li {
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}
.legal-content a {
  color: var(--accent-primary);
  text-decoration: underline;
}
