

/* ── 1. BOTANICAL HERO ───────────────────────── */
 /* =============================================
   SYLVA — hero NUOVO (fullscreen forest)
   Sostituisce il blocco "1. BOTANICAL HERO"
   in home.css
   ============================================= */

/* ── HERO FULLSCREEN ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0; /* no nav offset — nav è trasparente sopra */
}

/* ── BACKGROUND IMAGE ────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/static/img/landing/hero-forest.jpg'); /* la tua immagine nebbiosa */
  background-size: cover;
  background-position: center 60px;
  background-repeat: no-repeat;
  /* Nessun fade mask — vogliamo che l'immagine rimanga integra */
}

/* Overlay leggero per leggibilità testo */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 252, 248, 0.18) 0%,
    rgba(245, 250, 243, 0.08) 40%,
    rgba(255, 255, 255, 0.72) 100%
  );
  z-index: 1;
}

/* Noise texture leggera sopra */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── HEADER TEXT — centrato sull'immagine ─────── */
.hero__header {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
  /* posizionato nella metà alta del hero, sopra gli alberi */
  margin-bottom: 12vh;
  margin-top: -30vh;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.62);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(47, 81, 50, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage-light);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  color: var(--sage-mid);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: white;
  background: var(--sage);
  padding: 0.8125rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(47, 81, 50, 0.28);
}
.hero__btn-primary:hover {
  background: #1e3422;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(47, 81, 50, 0.36);
}
.hero__btn-primary svg { width: 14px; height: 14px; }

.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-500);
  text-decoration: none;
  padding: 0.8125rem 1.25rem;
  transition: color 0.15s;
}
.hero__btn-secondary:hover { color: var(--gray-900); }
.hero__btn-secondary svg { width: 13px; height: 13px; }



/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
  .hero__sub {
    max-width: 100%;
  }
  .hero__header {
    margin-bottom: 6vh;
  }
  .hero__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero__btn-primary,
  .hero__btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── 2. CONTAINER SCROLL ─────────────────────── */
.h-scroll-space {
  position: relative;
  height: 220vh;
  margin-bottom: 7rem;
}

.h-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  gap: 2.5rem;
  padding: 3rem 1.5rem 0;
}

/* Intro text */
.h-scroll-intro {
  text-align: center;
  max-width: 540px;
  flex-shrink: 0;
}
.h-scroll-intro .h-eyebrow { margin-bottom: 0.75rem; }
.h-scroll-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.h-scroll-intro p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Device frame */
.h-scroll-device {
  width: min(960px, 90vw);
  flex-shrink: 0;
  transform: perspective(1100px) rotateX(22deg) scale(0.88);
  transform-origin: center bottom;
  will-change: transform;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
}
.h-scroll-device__bar {
  background: #1e1e1e;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.h-scroll-device__dots { display: flex; gap: 6px; }
.h-scroll-device__dots span { width: 11px; height: 11px; border-radius: 50%; }
.h-scroll-device__dots span:nth-child(1) { background: #ff5f57; }
.h-scroll-device__dots span:nth-child(2) { background: #ffbd2e; }
.h-scroll-device__dots span:nth-child(3) { background: #28c840; }
.h-scroll-device__url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 0.3rem 0.875rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.h-scroll-device__screen {
  background: var(--white);
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.h-scroll-device__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.h-scroll-device__placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-300);
}
.h-scroll-device__placeholder svg   { width: 36px; height: 36px; }
.h-scroll-device__placeholder span  { font-size: 0.8rem; letter-spacing: 0.06em; }


/* =============================================
   SYLVA — come_funziona.css
   Sezione "Come funziona" — stepper interattivo
   Da aggiungere in fondo a home.css
   (oppure importare separatamente)
   ============================================= */

/* ── SECTION WRAPPER ─────────────────────────── */
.cf-section {
  background: #ffffff;
  padding: 5rem 0 6rem;
}

.cf-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.625rem;
}

/* ── PROGRESS STEPPER ────────────────────────── */
.cf-prog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 1.5rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.cf-prog-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  transition: background 0.2s;
}
.cf-prog-step:hover { background: rgba(47, 81, 50, 0.06); }

.cf-prog-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #d8d8d2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #b0b0aa;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cf-prog-step.active .cf-prog-num {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
  box-shadow: 0 3px 12px rgba(47, 81, 50, 0.28);
}
.cf-prog-step.done .cf-prog-num {
  background: #ffffff;
  border-color: var(--sage-light);
  color: var(--sage-mid);
}

.cf-prog-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: #b0b0aa;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.cf-prog-step.active .cf-prog-lbl { color: var(--sage-mid); }
.cf-prog-step.done   .cf-prog-lbl { color: var(--sage-light); }

.cf-prog-line {
  flex: 1;
  max-width: 60px;
  height: 1.5px;
  background: #d8d8d2;
  transition: background 0.4s ease;
  flex-shrink: 0;
}
.cf-prog-line.done { background: var(--sage-light); }

/* ── PANELS ──────────────────────────────────── */
.cf-panels {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cf-panel {
  display: none;
  animation: cfFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cf-panel.active { display: block; }

@keyframes cfFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STEP 1: Question cards ──────────────────── */
.cf-step1-intro {
  margin-bottom: 2rem;
}
.cf-step1-intro h2 {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 0.625rem;
}
.cf-step1-intro h2 em {
  font-style: italic;
  color: var(--sage-mid);
}
.cf-step1-intro p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.cf-qcards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cf-qcard {
  background: #ffffff;
  border: 1.5px solid #e8e8e4;
  border-radius: 14px;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  outline: none;
}
.cf-qcard:hover {
  border-color: rgba(47, 81, 50, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 81, 50, 0.1);
}
.cf-qcard:focus-visible {
  box-shadow: 0 0 0 3px rgba(47, 81, 50, 0.25);
}
.cf-qcard.selected {
  border-color: var(--sage);
  background: var(--sage);
}

.cf-qcard-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--sage-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  color: var(--sage-mid);
}
.cf-qcard-icon svg { width: 17px; height: 17px; }
.cf-qcard.selected .cf-qcard-icon {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.cf-qcard-body { flex: 1; }

.cf-qcard-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}
.cf-qcard.selected .cf-qcard-tag { color: rgba(255, 255, 255, 0.6); }

.cf-qcard-q {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700, #3a3a36);
  line-height: 1.4;
  transition: color 0.2s;
}
.cf-qcard.selected .cf-qcard-q { color: white; }

.cf-qcard-arrow {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: #b0b0aa;
}
.cf-qcard-arrow svg { width: 16px; height: 16px; }
.cf-qcard:hover    .cf-qcard-arrow { transform: translateX(3px); }
.cf-qcard.selected .cf-qcard-arrow { color: rgba(255, 255, 255, 0.6); }

/* ── STEP 2: Chat ────────────────────────────── */
.cf-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #b0b0aa;
  cursor: pointer;
  margin-bottom: 1.25rem;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.15s;
  font-family: inherit;
}
.cf-back:hover { color: var(--sage-mid); }
.cf-back svg { width: 13px; height: 13px; }

.cf-chat {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8e8e4;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}

.cf-chat-header {
  background: var(--sage);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* Logo nel header — versione white del brand */
.cf-chat-logo {
  height: 22px;
  width: auto;
  display: block;
  /* Se il logo non è già bianco, decommentare la riga sotto */
  /* filter: brightness(0) invert(1); */
}

/* Fallback se logo non disponibile */
.cf-chat-logo-fallback {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: center;
  color: white;
}
.cf-chat-logo-fallback svg { width: 13px; height: 13px; }

.cf-chat-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}
.cf-chat-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

.cf-chat-body {
  padding: 1.375rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 160px;
}

/* Bubble utente */
.cf-msg-user {
  align-self: flex-end;
  background: var(--sage);
  color: white;
  border-radius: 16px 16px 2px 16px;
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
  max-width: 72%;
  line-height: 1.5;
}

/* Bubble AI */
.cf-msg-ai { align-self: flex-start; max-width: 90%; }
.cf-msg-ai-inner {
  background: #f5f5f0;
  border: 1px solid #e8e8e4;
  border-radius: 2px 16px 16px 16px;
  padding: 0.9375rem 1.0625rem;
  font-size: 0.875rem;
  color: var(--gray-700, #3a3a36);
  line-height: 1.7;
}

/* Badge citazioni */
.cf-cite {
  display: inline-flex;
  align-items: center;
  background: rgba(47, 81, 50, 0.1);
  color: var(--sage-mid);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 1px solid rgba(47, 81, 50, 0.14);
  cursor: default;
  vertical-align: baseline;
  margin: 0 2px;
  white-space: nowrap;
}

/* Fonti */
.cf-sources {
  border-top: 1px solid #e8e8e4;
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cf-src-lbl {
  font-size: 0.625rem;
  font-weight: 600;
  color: #b0b0aa;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cf-src-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cf-src-n {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(47, 81, 50, 0.08);
  color: var(--sage-mid);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cf-src-name {
  font-size: 0.6875rem;
  color: var(--gray-500, #6b6b67);
  flex: 1;
}
.cf-src-pg {
  font-size: 0.625rem;
  color: #b0b0aa;
}

/* Typing indicator */
.cf-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.375rem 0;
}
.cf-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d8d2;
  animation: cfBounce 0.9s ease-in-out infinite;
}
.cf-typing span:nth-child(2) { animation-delay: 0.15s; }
.cf-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes cfBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-5px); }
}

/* Chat footer decorativo */
.cf-chat-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #e8e8e4;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.cf-chat-inp {
  flex: 1;
  background: #f5f5f0;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 0.5625rem 0.875rem;
  font-size: 0.8125rem;
  color: #b0b0aa;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  user-select: none;
}
.cf-chat-send {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.45;
  color: white;
}
.cf-chat-send svg { width: 13px; height: 13px; }

/* CTA sotto la chat */
.cf-step2-cta {
  margin-top: 1.25rem;
  text-align: center;
}
.cf-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage-mid);
  border: 1.5px solid rgba(47, 81, 50, 0.2);
  border-radius: 100px;
  padding: 0.5625rem 1.375rem;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.cf-btn-outline:hover {
  background: var(--sage-ghost);
  border-color: rgba(47, 81, 50, 0.35);
}
.cf-btn-outline svg { width: 13px; height: 13px; }

/* ── STEP 3: CTA finale ──────────────────────── */
.cf-step3 {
  background: var(--sage);
  border-radius: 20px;
  padding: 4rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cf-step3::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cf-cta-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}
.cf-cta-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cf-cta-title em {
  font-style: italic;
  opacity: 0.7;
}
.cf-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 360px;
  position: relative;
  z-index: 1;
}
.cf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sage);
  background: white;
  padding: 0.9375rem 2.25rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}
.cf-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.26);
}
.cf-cta-btn svg { width: 15px; height: 15px; }

.cf-cta-note {
  margin-top: 1.375rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.28);
  position: relative;
  z-index: 1;
}
.cf-cta-note a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  transition: color 0.15s;
}
.cf-cta-note a:hover { color: rgba(255, 255, 255, 0.8); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 600px) {
  .cf-section { padding: 3.5rem 0 4rem; }
  .cf-prog    { padding: 0 1rem 2rem; }
  .cf-panels  { padding: 0 1rem; }
  .cf-prog-lbl { display: none; }
  .cf-chat-sub { display: none; }
  .cf-step3 { padding: 3rem 1.5rem 3.5rem; border-radius: 14px; }
}

/* ── 5. CTA FINALE ───────────────────────────── */
/* DOPO */
.h-cta {
  background-image: url('/static/img/landing/hero-cta.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed; /* parallax leggero */
  padding: 9rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.h-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(237, 243, 238, 0.55) 0%,
    rgba(47, 81, 50, 0.75) 50%,
    rgba(13, 26, 15, 0.92) 100%
  );
  pointer-events: none;
}
.h-cta__inner   { position: relative; z-index: 1; }
.h-cta__eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage-light); margin-bottom: 1.5rem;
}
.h-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.h-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.4);
  max-width: 380px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}
.h-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  background: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.h-btn-cta svg { width: 14px; height: 14px; }
.h-btn-cta:hover {
  background: #f0f0ec;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.h-cta__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.22);
}
.h-cta__note a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  transition: color 0.15s;
}
.h-cta__note a:hover { color: rgba(255,255,255,0.7); }

/* ── SCROLL REVEAL ───────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-reveal].is-revealed                  { opacity: 1; transform: translateY(0); }
[data-reveal][data-reveal-delay="100"]     { transition-delay: 0.1s; }
[data-reveal][data-reveal-delay="200"]     { transition-delay: 0.2s; }
[data-reveal][data-reveal-delay="300"]     { transition-delay: 0.3s; }

/* ── 6. RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .h-how__header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .h-how__step   { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .h-how__step:nth-child(even) .h-how__step-text   { order: 1; }
  .h-how__step:nth-child(even) .h-how__step-visual { order: 2; }
  .h-how__step-text p { max-width: 100%; }
  .h-hero__label--tl,
  .h-hero__label--tr { display: none; }
}

@media (max-width: 640px) {
  .h-hero__top     { padding: 4rem 1.5rem 2rem; }
  .h-hero__cta-row { max-width: 100%; }
  .h-trust__item   {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%; justify-content: center; padding: 0.5rem 1rem;
  }
  .h-trust__item:last-child { border-bottom: none; }
  .h-how   { padding: 4rem 0; }
  .h-cta   { padding: 5rem 0; }
  .h-hero__label--bl,
  .h-hero__label--br { display: none; }
}