/* ============================================
   ZODION — Global Styles
   Mobile-first, single-page landing
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-navy: #0F1A2B;
  --color-navy-center: #12203A;
  --color-navy-light: #142236;
  --color-gold: #C6B37E;
  --color-sand: #F3EFE8;
  --color-sand-alt: #EDE8DF;
  --color-charcoal: #1C1C1E;
  --color-gray: #C9CBD6;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --space-4: 4px;
  --space-8: 8px;
  --space-16: 16px;
  --space-32: 32px;
  --space-64: 64px;
  --space-120: 120px;

  --max-width: 1100px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

p {
  line-height: 1.75;
  max-width: 640px;
}

/* Reset max-width for structural containers */
.container p,
.for-you-block p,
.step p,
.element-tile p,
.slider-slide p,
.footer p,
.microcopy {
  max-width: 100%;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-16);
  padding-right: var(--space-16);
  text-align: center;
}

/* --- Buttons --- */
.cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  border: none;
  border-radius: 7px;
  padding: 16px 30px;
  cursor: pointer;
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 120ms ease;
}

.cta--on-dark {
  background-color: var(--color-sand);
  color: var(--color-navy);
}

.cta--on-dark:hover {
  background-color: #E6E0D6;
  box-shadow: 0 6px 20px rgba(15, 26, 43, 0.08);
}

.cta--on-dark:active {
  background-color: #DED8CE;
  transform: translateY(1px);
  box-shadow: 0 3px 12px rgba(15, 26, 43, 0.06);
}

.cta--on-light {
  background-color: var(--color-navy);
  color: var(--color-sand);
}

.cta--on-light:hover {
  background-color: #16233A;
  box-shadow: 0 6px 20px rgba(15, 26, 43, 0.12);
}

.cta--on-light:active {
  transform: translateY(1px);
  box-shadow: 0 3px 12px rgba(15, 26, 43, 0.08);
}

/* Form CTA — full-width, larger, on light card */
.cta--form {
  font-size: 17px;
  padding: 16px 0;
  width: 100%;
  margin-top: 16px;
  background-color: var(--color-navy);
  color: var(--color-sand);
}

.cta--form:hover {
  background-color: #16233A;
  box-shadow: 0 6px 20px rgba(15, 26, 43, 0.12);
}

/* --- CTA Wrapper — intentional isolation --- */
.cta-wrapper {
  margin-top: 48px;
  margin-bottom: 0;
}

/* --- Microcopy --- */
.microcopy {
  font-size: 14px;
  opacity: 0.75;
  margin-top: var(--space-8);
}

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--color-gray);
  margin: var(--space-32) 0;
}

/* --- Section Orbital Dividers --- */
.section-divider {
  line-height: 0;
  background-color: var(--color-sand);
}

.section-divider--alt {
  background-color: var(--color-sand-alt);
}

/* Hero (navy) → Problem (sand) */
.section-divider--from-hero {
  background-color: var(--color-navy);
}

/* Dark variant — sits above or below a dark section */
.section-divider--to-dark {
  background-color: #EAE5DC;
}

.section-divider--from-dark {
  background-color: var(--color-navy);
}

.section-divider--from-dark svg path {
  stroke: rgba(201, 203, 214, 0.2);
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 32px;
}

/* --- Section Header Marker (ZODION system marker) --- */
.section-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-32);
  position: relative;
}

.section-marker::before {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--color-gray);
  opacity: 0.4;
  max-width: 120px;
  margin-left: auto;
}

.section-marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--color-gray);
  opacity: 0.4;
  max-width: 120px;
  margin-right: auto;
}

.section-marker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-gray);
  opacity: 0.5;
  flex-shrink: 0;
  margin: 0 12px;
}

/* --- Section Headings (H2 editorial titles) --- */
.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 48px;
}

/* Dark variant for navy backgrounds */
.section-marker--dark::before,
.section-marker--dark::after {
  background-color: var(--color-sand);
  opacity: 0.2;
}

.section-marker--dark .section-marker-dot {
  background-color: var(--color-gold);
  opacity: 0.4;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   HERO LOGO
   — logo přímo v hero sekci, nad H1
   ============================================ */
.hero-logo-link {
  display: inline-block;
  margin-bottom: 42px;
  text-decoration: none;
}

.hero-logo-img {
  height: 144px;
  width: auto;
  display: block;
  margin: 0 auto;
}


/* ============================================
   HERO SECTION
   — radial gradient, grain texture, glow, fade-in
   ============================================ */
.hero {
  background: var(--color-navy);
  color: var(--color-sand);
  padding: 38px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Orbital depth element — barely visible structural ellipse */
.hero-orbital {
  position: absolute;
  right: -20%;
  top: 10%;
  width: 60%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(198, 179, 126, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: hero-breathe 8s ease-in-out infinite;
}

@keyframes hero-breathe {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Fade-in for hero elements — tuned timings */
.hero-fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: hero-fade-up 400ms ease-out forwards;
}

.hero-fade-in:nth-child(1) { animation-delay: 0ms; }
.hero-fade-in:nth-child(2) { animation-delay: 150ms; }
.hero-fade-in:nth-child(3) { animation-delay: 300ms; }
.hero-fade-in:nth-child(4) { animation-delay: 400ms; }

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.hero h2 {
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.75;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  opacity: 0.85;
}

.hero .microcopy {
  color: var(--color-sand);
}


/* ============================================
   PROBLEM SECTION
   — editorial structure: tension → pause → breakthrough
   ============================================ */
.problem-section {
  background-color: var(--color-sand);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Zodion symbol — pravý dekorativní prvek, mobile skrytý */
.problem-symbol {
  display: none;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 28vw, 420px);
  height: auto;
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

.problem-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-left: var(--space-16);
  padding-right: var(--space-16);
  position: relative;
}

/* Headline — centrovaný */
.problem-intro {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 64px;
}

/* Quotes blok — vlevo na desktopu */
.problem-quotes {
  max-width: 640px;
  text-align: center;
  margin-top: 0;
}

/* První citace — dominantní */
.problem-quotes p:first-child {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  color: var(--color-charcoal);
  margin-bottom: 32px;
}

/* Ostatní citace — klidnější */
.problem-quotes p:not(:first-child) {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-charcoal);
  opacity: 0.8;
  margin-bottom: 20px;
}

.problem-quotes p:last-child {
  margin-bottom: 0;
}

/* Oddělovací linie */
.problem-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gray);
  margin: 100px auto;
}

/* „The truth is different." — centrovaný průlom */
.problem-truth {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--color-navy);
  margin-top: 0;
  margin-bottom: 28px;
}

/* Vysvětlující text pod průlomem */
.problem-explanation {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-charcoal);
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}


/* ============================================
   ELEMENTS / TILE GRID
   — alternate background, icons, soft hover
   ============================================ */
.elements {
  background-color: var(--color-sand-alt);
  padding: 120px 0 128px;
}

.elements-intro {
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--space-32);
  color: var(--color-charcoal);
}

.elements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  margin-bottom: 48px;
}

/* Element icons — large alchemical style */
.element-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-16);
  opacity: 0.7;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
}

.element-tile {
  border: 1px solid var(--color-gray);
  border-radius: var(--radius);
  padding: 40px var(--space-32);
  text-align: center;
  background-color: var(--color-sand);
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.element-tile:hover {
  background-color: #EEE9E0;
  border-color: #A8AAB4;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 26, 43, 0.06);
}

.element-tile:hover .element-icon {
  opacity: 1;
  transform: translateY(-2px);
}

.element-tile h3 {
  font-size: 18px;
  margin-bottom: var(--space-8);
  color: var(--color-charcoal);
}

.element-tile p {
  font-size: 16px;
  color: var(--color-charcoal);
}


/* ============================================
   HOW IT WORKS
   — slightly deeper sand for rhythm variation
   ============================================ */
.how-it-works {
  background-color: #EAE5DC;
  padding: 128px 0 160px;
}

.how-it-works h2 {
  font-size: 24px;
  margin-bottom: var(--space-32);
  color: var(--color-charcoal);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Step card */
.step-card {
  border: 1px solid var(--color-gray);
  border-radius: 8px;
  padding: 32px;
  background: #FFFFFF;
  max-width: 480px;
  width: 100%;
  text-align: left;
}

/* Vertical connector between cards */
.step-card + .step-card {
  position: relative;
  margin-top: 48px;
}

.step-card + .step-card::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--color-gray);
  opacity: 0.6;
}

.step h3 {
  font-size: 18px;
  margin-bottom: var(--space-8);
  color: var(--color-charcoal);
}

.step p {
  font-size: 16px;
  color: var(--color-charcoal);
}


/* ============================================
   SOCIAL PROOF / SLIDER
   — dark-mode contrast block for page rhythm
   ============================================ */
.social-proof {
  background-color: var(--color-navy);
  padding: 120px 0 140px;
}

.social-proof .section-heading {
  color: var(--color-sand);
}

.social-proof .section-marker::before,
.social-proof .section-marker::after {
  background-color: var(--color-sand);
  opacity: 0.15;
}

.social-proof .section-marker-dot {
  background-color: var(--color-gold);
  opacity: 0.5;
}

/* ---- Slider base (shared) ---- */
.slider {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  text-align: left;
  border: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Inner card */
.slider-slide-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 203, 214, 0.12);
  border-radius: 8px;
  padding: 32px 28px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.slider-slide p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: var(--color-sand);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slider-slide footer {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-gold);
  text-align: left;
}


/* ============================================
   FOR YOU / NOT FOR YOU
   ============================================ */
.for-you {
  background-color: var(--color-sand);
  padding: 140px 0 120px;
}

.for-you-columns {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  position: relative;
}

.for-you-block {
  text-align: left;
}

.for-you-block h3 {
  font-size: 20px;
  margin-bottom: var(--space-16);
  color: var(--color-charcoal);
}

.for-you-block ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.for-you-block--yes li::before {
  content: '\2714';
  margin-right: var(--space-8);
  color: var(--color-charcoal);
}

.for-you-block--no li::before {
  content: '\2716';
  margin-right: var(--space-8);
  color: var(--color-charcoal);
}

/* Vertical divider between columns (visible on mobile as horizontal) */
.for-you-divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  opacity: 0.2;
  margin: 0 auto;
}


/* ============================================
   MAIN CONVERSION SECTION
   — safe space: +30% padding, larger CTA, champagne focus glow
   ============================================ */

/* Horizont symbol nad formulářem */
.conversion-symbol-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 33px;
}

.conversion-symbol {
  width: clamp(72px, 11vw, 128px);
  height: auto;
  opacity: 0.55;
  display: block;
}

.conversion {
  background-color: #0F1A2B;
  color: var(--color-sand);
  padding: 52px 0 200px;
}

/* Isolated form card */
.form-card {
  background-color: var(--color-sand);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 480px;
  margin: 0 auto;
  color: var(--color-charcoal);
}

.form-card h2 {
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.form-card p {
  max-width: 100%;
}

.conversion-reassurance {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.conversion-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.conversion-form label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-charcoal);
}

.conversion-form input[type="email"] {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px var(--space-16);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius);
  background-color: var(--color-sand);
  color: var(--color-charcoal);
  width: 100%;
  text-align: center;
  transition: border-color 300ms ease-out, box-shadow 300ms ease-out;
}

.conversion-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(198, 179, 126, 0.15);
}

.conversion-form .microcopy {
  color: var(--color-charcoal);
}

/* Success state with fade transition */
.conversion-success {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.conversion-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.conversion-success p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-navy);
}

/* Form fade-out */
.conversion-form.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 300ms ease-in, transform 300ms ease-in;
}


/* ============================================
   FINAL REASSURANCE
   ============================================ */
.final-reassurance {
  background-color: var(--color-sand-alt);
  padding: 120px 0 80px;
}

.final-reassurance p {
  font-size: 18px;
  color: var(--color-charcoal);
  margin-bottom: var(--space-32);
}

/* Sand horizont symbol pod CTA */
.final-symbol-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 0 0;
}

.final-symbol {
  width: clamp(64px, 10vw, 112px);
  height: auto;
  opacity: 0.5;
  display: block;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-sand);
  border-top: 1px solid var(--color-gray);
  padding: var(--space-32) 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

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


/* ============================================
   DESKTOP BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding-left: var(--space-32);
    padding-right: var(--space-32);
  }

  .hero {
    padding: 43px 0 140px;
  }

  .hero-logo-img {
    height: 176px;
  }

  .hero h1 {
    /* clamp handles scaling; max-width set globally */
    max-width: 520px;
  }

  .hero h2 {
    font-size: 20px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-card {
    max-width: 560px;
  }

  .section-divider svg {
    height: 48px;
  }

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

  /* Problem section — desktop asymmetry */
  .problem-section {
    padding: 140px 0;
  }

  /* Symbol viditelný až na desktopu */
  .problem-symbol {
    display: block;
  }

  .problem-container {
    padding-left: var(--space-32);
    padding-right: var(--space-32);
  }

  /* Citace vlevo na desktopu */
  .problem-quotes {
    text-align: left;
    margin-left: 0;
  }

  .problem-quotes p:first-child {
    font-size: 28px;
  }

  .problem-quotes p:not(:first-child) {
    font-size: 20px;
  }


  .how-it-works h2 {
    font-size: 32px;
  }

  .slider-slide-inner {
    padding: 40px;
    text-align: left;
  }

  .slider-slide footer {
    text-align: left;
  }

  .slider-slide p {
    font-size: 24px;
  }

  .form-card {
    padding: 56px 48px;
  }

  .footer .container {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-32);
  }

  .final-reassurance p {
    font-size: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-32);
  }

  /* For You — two columns with vertical divider on desktop */
  .for-you-columns {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }

  .for-you-block {
    flex: 1;
    padding: 0 var(--space-32);
  }

  .for-you-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    margin: 0;
    background-color: var(--color-gold);
    opacity: 0.15;
  }

  /* Section headings — desktop */
  .section-heading {
    font-size: 43px;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
  }

  /* Section marker lines extend on desktop */
  .section-marker::before,
  .section-marker::after {
    max-width: 200px;
  }

  /* Logo size on desktop handled by .logo-img above */
}

/* --- Reduced motion preference --- */
@media (prefers-reduced-motion: reduce) {
  .hero-fade-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-glow {
    animation: none;
    opacity: 0.7;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .slider-track {
    transition: none;
  }

  .conversion-success,
  .conversion-form.is-hiding {
    transition: none;
  }

  .element-tile {
    transition: none;
  }
}

/* ============================================
   MOBILE OVERRIDES (max-width: 767px)
   — spacing, typography, tap targets, performance
   ============================================ */
@media (max-width: 767px) {

  /* --- Hero --- */
  .hero {
    padding: 32px 0 72px;
  }

  .hero-logo-link {
    margin-bottom: 28px;
  }

  .hero-logo-img {
    height: 100px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .hero h2 {
    font-size: 16px;
    line-height: 1.65;
  }

  .cta-wrapper {
    margin-top: 32px;
  }

  /* Full-width CTA on mobile */
  .hero .cta-wrapper .cta,
  .final-reassurance .cta-wrapper .cta,
  .elements .cta-wrapper .cta {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 16px var(--space-16);
    text-align: center;
  }

  /* --- Section spacing --- */
  .problem-section {
    padding: 72px 0;
  }

  .problem-intro {
    margin-bottom: 40px;
  }

  .problem-divider {
    margin: 64px auto;
  }

  .problem-quotes p:first-child {
    font-size: 22px;
  }

  .problem-quotes p:not(:first-child) {
    font-size: 17px;
  }

  .problem-quotes {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .elements {
    padding: 72px 0 80px;
  }

  .how-it-works {
    padding: 72px 0 88px;
  }

  .social-proof {
    padding: 72px 0 80px;
  }

  /* --- Slider mobile: full-viewport width, no partial peek --- */
  .slider {
    /* Break out of container padding so slides fill 100vw precisely */
    width: 100vw;
    margin-left: calc(-1 * var(--space-16));
    margin-right: calc(-1 * var(--space-16));
    max-width: none;
    overflow: hidden;
  }

  .slider-slide-inner {
    padding: 28px 24px;
    margin: 0 var(--space-16);
    text-align: center;
  }

  .slider-slide footer {
    text-align: center;
  }

  .for-you {
    padding: 72px 0 72px;
  }

  .conversion {
    padding: 40px 0 80px;
  }

  .final-reassurance {
    padding: 72px 0 56px;
  }

  /* --- Element tiles --- */
  .element-tile {
    padding: 28px var(--space-16);
    /* Disable elevation on touch — no hover state on mobile */
    transition: none;
  }

  .element-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 12px;
  }

  .element-tile h3 {
    font-size: 17px;
  }

  .element-tile p {
    font-size: 15px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- Section heading --- */
  .section-heading {
    font-size: 26px;
    margin-bottom: 32px;
    letter-spacing: -0.015em;
  }

  /* --- How it works --- */
  .how-it-works h2 {
    font-size: 22px;
  }

  .step-card {
    padding: 24px var(--space-16);
  }

  .step-card + .step-card {
    margin-top: 36px;
  }

  .step-card + .step-card::before {
    top: -36px;
    height: 36px;
  }

  /* --- For You --- */
  .for-you-block h3 {
    font-size: 18px;
  }

  /* --- Conversion form --- */
  .form-card {
    padding: 36px 24px;
    border-radius: 8px;
  }

  .conversion-form input[type="email"] {
    min-height: 52px;
    font-size: 16px;
    padding: 14px var(--space-16);
  }

  .cta--form {
    min-height: 52px;
    font-size: 16px;
  }

  /* --- Final reassurance --- */
  .final-reassurance p {
    font-size: 17px;
  }

  /* --- Reduce scroll reveal distance on mobile --- */
  .reveal {
    transform: translateY(12px);
  }

  /* --- Disable heavy tile shadow on touch devices --- */
  .element-tile:hover {
    transform: none;
    box-shadow: none;
    background-color: var(--color-sand);
    border-color: var(--color-gray);
  }

  .element-tile:hover .element-icon {
    transform: none;
    opacity: 0.7;
  }

}
