/* ═══════════════════════════════════════════════════════════════
   CALNCASH — Section Styles
   1. Hero  2. Trust  3. How it works  4. Features
   5. WhatsApp  6. For who  7. Benefits  8. Simplicity
   9. Final CTA  10. Footer
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--sp-10));
  padding-bottom: var(--sp-16);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__blob {
  position: absolute;
  filter: blur(70px);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
}

.hero__blob--1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(61,74,53,0.14) 0%, transparent 70%);
  top: -80px;
  right: -100px;
  animation: blob-drift-1 14s ease-in-out infinite;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(150,176,142,0.12) 0%, transparent 70%);
  bottom: 0px;
  left: -80px;
  animation: blob-drift-2 18s ease-in-out infinite;
}

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--forest) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.04;
}

/* Decorative geometric shapes (echo logo geometry) */
.hero__geo {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  opacity: 0.04;
}

.hero__geo circle,
.hero__geo path {
  stroke: var(--forest);
  fill: none;
  stroke-width: 1;
}

.hero__geo--outer {
  animation: geo-rotate 40s linear infinite;
}

.hero__geo--inner {
  animation: geo-rotate-reverse 28s linear infinite;
  transform-origin: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  margin-bottom: var(--sp-6);
}

.hero__headline {
  font-size: var(--text-4xl);
  color: var(--forest);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.hero__headline em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: var(--weight-normal);
  color: var(--forest-muted);
  letter-spacing: -0.01em;
}

.hero__subhead {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-10);
  max-width: 420px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

@media (min-width: 380px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 160px;
  }
}

.hero__note {
  font-size: var(--text-sm);
  color: var(--forest-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.hero__note::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest-ghost);
  font-size: 10px;
  color: var(--forest);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--forest-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 1;
}

.hero__scroll-arrow {
  font-size: var(--text-lg);
}

/* Hero visual card */
.hero__visual {
  margin-top: var(--sp-12);
  position: relative;  /* required for abs-positioned wa-notif-bubble */
  z-index: 1;
  /* extra bottom room for the bubble that overhangs below */
  padding-bottom: var(--sp-8);
}

.booking-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--cream-mid);
  position: relative;
}

/* ── Booking card: date & time picker (mirrors actual product) ── */

/* Top bar: back arrow · provider info · price */
.bk-topbar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid #f0f0f0;
}

.bk-back {
  font-size: var(--text-lg);
  color: #888;
  flex-shrink: 0;
  line-height: 1;
}

.bk-topbar__meta {
  flex: 1;
  min-width: 0;
}

.bk-topbar__provider {
  font-size: var(--text-xs);
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-topbar__service {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: #111;
}

.bk-topbar__price {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: #111;
  flex-shrink: 0;
}

/* Body */
.bk-body {
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
}

.bk-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: #111;
  margin-bottom: var(--sp-1);
  letter-spacing: -0.02em;
}

.bk-subtitle {
  font-size: var(--text-sm);
  color: #888;
  margin-bottom: var(--sp-5);
  line-height: 1.4;
}

/* Date chips row */
.bk-date-row {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bk-date-row::-webkit-scrollbar { display: none; }

.bk-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: var(--sp-3) var(--sp-3);
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  flex-shrink: 0;
  min-width: 46px;
  cursor: pointer;
  transition: all 0.18s var(--ease);
}

.bk-date:hover {
  border-color: #bbb;
  background: #f8f8f8;
}

.bk-date--selected {
  background: #111;
  border-color: #111;
}

.bk-date--selected .bk-date__day,
.bk-date--selected .bk-date__num {
  color: #fff;
}

.bk-date__day {
  font-size: 10px;
  font-weight: var(--weight-medium);
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-date__num {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: #111;
  line-height: 1;
}

/* Available times */
.bk-times-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: #555;
  margin-bottom: var(--sp-3);
  letter-spacing: 0.01em;
}

.bk-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}

.bk-slot {
  padding: 10px var(--sp-2);
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: #111;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.18s var(--ease);
}

.bk-slot:hover {
  border-color: #bbb;
  background: #f8f8f8;
}

.bk-slot--selected {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Continue button */
.bk-footer {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  border-top: 1px solid #f0f0f0;
}

.bk-continue {
  width: 100%;
  padding: 14px var(--sp-6);
  background: #111;
  color: #fff;
  border-radius: var(--r-full);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease-bounce);
}

.bk-continue:hover {
  background: #333;
  transform: scale(1.01);
}

/* WA notification bubble (floats near bottom-right of booking card) */
.wa-notif-bubble {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  max-width: 240px;
  border: 1px solid var(--cream-mid);
  animation: msg-pop 0.6s var(--ease-bounce) 1.4s both;
}

.wa-notif-bubble__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-notif-bubble__icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.wa-notif-bubble__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--forest);
  margin-bottom: 2px;
}

.wa-notif-bubble__msg {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════
   2. TRUST STRIP
   ════════════════════════════════════════════════════════════ */
.trust {
  padding-block: var(--sp-8);
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
  background: var(--bg);
  overflow: hidden;
}

.trust__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.trust__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-muted);
  flex-shrink: 0;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
  white-space: nowrap;
}

.trust__marquee-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trust__track {
  white-space: nowrap;
  /* animation defined in animations.css */
}

.trust__item {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--forest-muted);
}

.trust__dot {
  font-size: 8px;
  color: var(--cream-dark);
}

/* ════════════════════════════════════════════════════════════
   3. HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--bg-alt);
}

.steps {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Animated connector line between steps */
.steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  width: 1.5px;
  height: calc(100% - 96px);
  background: linear-gradient(to bottom, var(--forest) 0%, var(--forest-pale) 100%);
  opacity: 0.2;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s var(--ease-expo) 0.3s;
}

.steps.in-view::before {
  transform: scaleY(1);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  padding-bottom: var(--sp-10);
  position: relative;
}

.step:last-child {
  padding-bottom: 0;
}

.step__number {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.step__num-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--forest);
  letter-spacing: -0.02em;
  z-index: 1;
}

.step__circle {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.step__circle-track {
  fill: none;
  stroke: var(--cream-mid);
  stroke-width: 1.5;
}

.step__circle-fill {
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.5;
  stroke-linecap: round;
  /* animation defined in animations.css */
}

.step__content {
  padding-top: var(--sp-2);
  flex: 1;
}

.step__title {
  font-size: var(--text-xl);
  color: var(--forest);
  margin-bottom: var(--sp-2);
}

.step__desc {
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* ════════════════════════════════════════════════════════════
   4. FEATURES
   ════════════════════════════════════════════════════════════ */
.features {
  background: var(--bg);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--forest);
}

.feature-item__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.feature-item__check svg {
  width: 14px;
  height: 14px;
  stroke: var(--cream);
}

.features__tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--forest-muted);
  line-height: var(--leading-snug);
}

/* Link card visual */
.link-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
  margin-top: var(--sp-10);
}

.link-card__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-muted);
  margin-bottom: var(--sp-2);
}

.link-card__url {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  font-family: var(--font-body);
  word-break: break-all;
}

.link-card__name {
  color: var(--forest);
  font-weight: var(--weight-semibold);
}

.link-card__actions {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--forest-muted);
  background: #fff;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.link-action svg {
  width: 14px;
  height: 14px;
}

.link-action:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--forest-ghost);
  transform: translateY(-1px);
}

.link-action--wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}

.link-action--wa svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.link-action--wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

.link-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--cream-mid);
}

.stat__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--forest);
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   5. WHATSAPP SECTION
   ════════════════════════════════════════════════════════════ */
.whatsapp-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.whatsapp-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,176,142,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.whatsapp-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,52,37,0.8) 0%, transparent 70%);
  pointer-events: none;
}

/* WhatsApp chat mockup */
.wa-chat {
  background: var(--wa-bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(240,232,212,0.08);
  box-shadow: var(--shadow-xl);
  margin-block: var(--sp-10);
  position: relative;
  z-index: 1;
}

.wa-chat__header {
  background: #1f2c34;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-bottom: 1px solid rgba(240,232,212,0.06);
}

.wa-chat__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: #fff;
  flex-shrink: 0;
}

.wa-chat__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: #e9edef;
  margin-bottom: 2px;
}

.wa-chat__status {
  font-size: var(--text-xs);
  color: var(--wa-green);
}

.wa-chat__messages {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 200px;
}

.wa-msg {
  max-width: 85%;
  align-self: flex-start;
}

.wa-msg__bubble {
  background: var(--wa-received);
  border-radius: 4px 12px 12px 12px;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: #e9edef;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.wa-msg__bubble strong {
  color: var(--wa-green);
}

.wa-msg__bubble small {
  display: block;
  color: rgba(233,237,239,0.5);
  font-size: 10px;
  margin-top: 2px;
}

.wa-msg__time {
  font-size: 10px;
  color: rgba(233,237,239,0.4);
  margin-top: 4px;
  padding-inline: 2px;
}

.wa-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--wa-received);
  border-radius: 4px 12px 12px 12px;
  padding: 10px 14px;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.wa-typing.visible {
  opacity: 1;
}

/* WhatsApp key points */
.wa-points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}

.wa-point {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--forest-pale);
}

.wa-point__icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.wa-tagline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--cream);
  line-height: var(--leading-snug);
  margin-top: var(--sp-10);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

/* ════════════════════════════════════════════════════════════
   6. FOR WHO
   ════════════════════════════════════════════════════════════ */
.for-who {
  background: var(--bg-alt);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

@media (min-width: 400px) {
  .who-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.who-card {
  background: var(--bg);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-align: center;
  cursor: default;
  /* hover defined in animations.css */
}

.who-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.who-card__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--forest);
  line-height: var(--leading-snug);
}

.who-card:hover .who-card__label {
  color: var(--cream);
}

/* ════════════════════════════════════════════════════════════
   7. BENEFITS
   ════════════════════════════════════════════════════════════ */
.benefits {
  background: var(--bg);
}

.benefits__headline {
  font-size: var(--text-3xl);
  color: var(--forest);
  line-height: var(--leading-snug);
  margin-bottom: var(--sp-10);
  letter-spacing: -0.025em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.benefit {
  background: var(--bg-alt);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  /* hover in animations.css */
}

.benefit__icon {
  font-size: 1.75rem;
  margin-bottom: var(--sp-4);
  line-height: 1;
}

.benefit__title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--forest);
  margin-bottom: var(--sp-2);
  line-height: var(--leading-snug);
}

.benefit__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* ════════════════════════════════════════════════════════════
   8. SIMPLICITY BLOCK
   ════════════════════════════════════════════════════════════ */
.simplicity {
  background: var(--bg-alt);
}

.simplicity__inner {
  background: var(--bg);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-sm);
}

.simplicity__title {
  font-size: var(--text-3xl);
  color: var(--forest);
  margin-bottom: var(--sp-8);
  line-height: var(--leading-snug);
}

.simplicity__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.simplicity__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-lg);
  color: var(--text-muted);
  position: relative;
}

.simplicity__cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1.5px solid var(--cream-mid);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--forest-muted);
  flex-shrink: 0;
}

/* Strikethrough line draws on scroll */
.simplicity__item-text {
  position: relative;
  display: inline-block;
}

.simplicity__item-text::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 1.5px;
  background: var(--forest-muted);
  width: 0;
  transition: width 0.6s var(--ease-expo);
  opacity: 0.4;
}

.simplicity__item.in-view .simplicity__item-text::after {
  width: 100%;
}

.simplicity__end {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--forest);
  border-top: 1px solid var(--cream-mid);
  padding-top: var(--sp-6);
}

/* ════════════════════════════════════════════════════════════
   9. FINAL CTA
   ════════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--forest-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(240,232,212,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Decorative blobs */
.final-cta::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,102,68,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__deco {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,102,68,0.35) 0%, transparent 70%);
  z-index: 0;
}

.final-cta__title {
  font-size: var(--text-4xl);
  color: var(--cream);
  margin-bottom: var(--sp-4);
  line-height: var(--leading-snug);
  letter-spacing: -0.03em;
}

.final-cta__sub {
  font-size: var(--text-lg);
  color: var(--forest-pale);
  margin-bottom: var(--sp-8);
}

/* ════════════════════════════════════════════════════════════
   10. FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--forest-dark);
  border-top: 1px solid rgba(240,232,212,0.08);
  padding-block: var(--sp-10);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}

.footer__brand {}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer__logo img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--cream);
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--forest-pale);
  line-height: var(--leading-relaxed);
  max-width: 280px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--forest-pale);
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(240,232,212,0.08);
  padding-top: var(--sp-6);
  font-size: var(--text-xs);
  color: var(--forest-muted);
}

/* ════════════════════════════════════════════════════════════
   LUCIDE ICON STYLING
   All icons sized and coloured per context
   ════════════════════════════════════════════════════════════ */

/* Global SVG reset for Lucide */
[data-lucide] {
  display: block;
  flex-shrink: 0;
}

/* Who-cards */
.who-card__icon [data-lucide] {
  width: 28px;
  height: 28px;
  stroke: var(--forest);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s var(--ease);
}

.who-card:hover .who-card__icon [data-lucide] {
  stroke: var(--cream);
}

/* Benefits */
.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--forest-ghost);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-4);
}

.benefit__icon [data-lucide] {
  width: 22px;
  height: 22px;
  stroke: var(--forest);
  stroke-width: 1.75;
  fill: none;
}

/* WhatsApp section points */
.wa-point__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(240,232,212,0.08);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.wa-point__icon [data-lucide] {
  width: 18px;
  height: 18px;
  stroke: var(--forest-pale);
  stroke-width: 1.75;
  fill: none;
}

/* Simplicity X icons */
.simplicity__cross {
  display: flex;
  align-items: center;
  justify-content: center;
}

.simplicity__cross [data-lucide] {
  width: 14px;
  height: 14px;
  stroke: var(--forest-muted);
  stroke-width: 2.5;
  fill: none;
}

/* ════════════════════════════════════════════════════════════
   CTA LOADING SCREEN
   ════════════════════════════════════════════════════════════ */
.cta-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}

.cta-loader.active {
  opacity: 1;
  pointer-events: all;
}

.cta-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.cta-loader__logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: loader-breathe 2.4s ease-in-out infinite;
}

@keyframes loader-breathe {
  0%, 100% { transform: scale(1);    box-shadow: var(--shadow-lg); }
  50%       { transform: scale(1.04); box-shadow: var(--shadow-xl); }
}

.cta-loader__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-loader__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--forest);
  letter-spacing: -0.03em;
}

.cta-loader__bar-wrap {
  width: 180px;
  height: 2px;
  background: var(--cream-mid);
  border-radius: var(--r-full);
  overflow: hidden;
}

.cta-loader__bar {
  height: 100%;
  width: 0%;
  background: var(--forest);
  border-radius: var(--r-full);
  transition: width 0.12s linear;
}

.cta-loader__hint {
  font-size: var(--text-sm);
  color: var(--forest-muted);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP LAYOUTS  (min-width: 768px and 1024px)
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablet (768px+) ─────────────────────────────────────── */
@media (min-width: 768px) {

  /* Section vertical rhythm */
  :root {
    --section-y: 100px;
  }

  /* ── Nav ──────────────────────────────────────────────── */

  /* Wider logo area */
  .nav__inner {
    max-width: none;
    width: 100%;
    padding-inline: var(--sp-10);
  }

  /* Hide hamburger */
  .nav__toggle {
    display: none;
  }

  /* Overlay becomes an absolutely-positioned inline menu (right side) */
  .nav__overlay {
    position: absolute;
    inset: 0;                     /* covers same area as nav */
    clip-path: none !important;
    background: transparent !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-inline: var(--sp-10);
    z-index: 998;                 /* below toggle (1001) so logo stays on top */
  }

  .nav__menu {
    flex-direction: row;
    gap: var(--sp-6);
    align-items: center;
  }

  .nav__link {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--forest-muted);
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }

  .nav__link:hover {
    color: var(--forest);
  }

  .nav__link::after {
    background: var(--forest-muted);
  }

  .nav__link--cta {
    font-size: var(--text-sm);
    font-family: var(--font-body);
    color: var(--forest);
    border-color: var(--cream-mid);
    border-radius: var(--r-full);
    padding: var(--sp-2) var(--sp-5);
  }

  .nav__link--cta:hover {
    background: var(--forest-ghost);
    color: var(--forest);
    border-color: var(--forest-muted);
  }

  /* ── Hero ─────────────────────────────────────────────── */
  .hero {
    padding-top: calc(var(--nav-h) + var(--sp-16));
    padding-bottom: var(--sp-20);
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }

  .hero__text {
    grid-column: 1;
  }

  .hero__visual {
    grid-column: 2;
    margin-top: 0;
    padding-bottom: var(--sp-10);
  }

  .hero__headline {
    font-size: var(--text-4xl);
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .hero__actions .btn {
    flex: 0 0 auto;
    width: auto;
  }

  /* ── Trust strip ──────────────────────────────────────── */
  .trust__label {
    padding-left: var(--sp-10);
  }

  /* ── How it works (steps side-by-side) ───────────────── */
  .steps {
    flex-direction: row;
    gap: var(--sp-8);
    align-items: flex-start;
  }

  .steps::before {
    /* Vertical connector no longer makes sense — hide it */
    display: none;
  }

  .step {
    flex: 1;
    flex-direction: column;
    gap: var(--sp-5);
    padding-bottom: 0;
    text-align: center;
    align-items: center;
  }

  .step__number {
    /* already 48px */
  }

  /* ── Features (two-column) ────────────────────────────── */
  .features .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
  }

  /* Section header spans full width */
  .features .section-header {
    grid-column: 1 / -1;
    margin-bottom: var(--sp-6);
  }

  .feature-list {
    grid-column: 1;
    margin-bottom: 0;
  }

  .features__tagline {
    grid-column: 1;
  }

  .link-card {
    grid-column: 2;
    grid-row: 2 / 4;
    margin-top: 0;
    align-self: start;
  }

  /* ── WhatsApp (two-column) ────────────────────────────── */
  .whatsapp-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }

  .whatsapp-section .section-header {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .wa-chat {
    grid-column: 2;
    grid-row: 1 / 4;
    margin-block: 0;
  }

  .wa-points {
    grid-column: 1;
    grid-row: 2;
  }

  .wa-tagline {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  /* ── For who (wider grid) ─────────────────────────────── */
  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ── Benefits (2x2 larger) ────────────────────────────── */
  .benefits-grid {
    gap: var(--sp-5);
  }

  .benefit {
    padding: var(--sp-8);
  }

  /* ── Footer (horizontal) ──────────────────────────────── */
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__nav {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: right;
  }
}

/* ── Full desktop (1024px+) ──────────────────────────────── */
@media (min-width: 1024px) {

  /* ── Nav ──────────────────────────────────────────────── */
  .nav__inner,
  .nav__overlay {
    padding-inline: var(--sp-16);
  }

  /* ── Hero ─────────────────────────────────────────────── */
  .hero__headline {
    font-size: var(--text-5xl);
  }

  .hero .container {
    gap: var(--sp-20);
  }

  /* ── Steps: more horizontal gap ──────────────────────── */
  .steps {
    gap: var(--sp-12);
  }

  /* ── For who: 6 columns ───────────────────────────────── */
  .who-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  /* ── Benefits: bigger grid ────────────────────────────── */
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  /* ── Simplicity: wider inner box ─────────────────────── */
  .simplicity__inner {
    padding: var(--sp-16);
  }

  .simplicity__title {
    font-size: var(--text-4xl);
  }

  /* ── Final CTA: bigger text ───────────────────────────── */
  .final-cta__title {
    font-size: var(--text-5xl);
  }

  /* ── Section title sizes ──────────────────────────────── */
  .section-title {
    font-size: var(--text-4xl);
  }
}
