/* =====================================================
   הקול שנשאר — Warm Sanctuary Theme (v2)
   Designed for 55+ audience: warmth, safety, empathy.
   Sunset palette: cream + peach + terracotta + warm gold.
   ===================================================== */

:root {
  /* warm neutrals */
  --cream:        #FBF5EA;
  --cream-warm:   #F5E7D2;
  --warm-white:   #FFFCF5;
  --paper:        #FFF8EC;

  /* warm accents */
  --terracotta:       #C66E47;
  --terracotta-deep:  #A85936;
  --terracotta-soft:  rgba(198,110,71,.10);
  --blush:            #ECBFA6;
  --blush-light:      #F4D6BE;
  --peach-glow:       rgba(232,170,134,.35);

  /* warm gold */
  --gold:        #C8954A;
  --gold-light:  #E0B872;
  --gold-deep:   #A37535;
  --gold-soft:   rgba(200,149,74,.12);

  /* warm browns */
  --brown-deep:  #4A3022;
  --brown-med:   #6B4A35;
  --brown-soft:  #8A6B53;

  /* trust accent */
  --sage:        #9CAE93;
  --sage-soft:   rgba(156,174,147,.15);

  /* text */
  --text-1:      #3A2618;
  --text-2:      #6B5340;
  --text-3:      #8C7456;

  --border:      rgba(200,149,74,.22);
  --border-warm: rgba(198,110,71,.18);
  --shadow:      0 8px 32px rgba(74,48,34,.08);
  --shadow-warm: 0 14px 40px rgba(198,110,71,.12);
  --shadow-glow: 0 0 60px rgba(232,170,134,.35);

  --ease: cubic-bezier(.25,.8,.25,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 19px; /* larger base for 55+ readability */
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--cream);
  color: var(--text-1);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  overflow-x: hidden;
}

/* warm sunrise gradient that lives behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(232,170,134,.32) 0%, transparent 55%),
    radial-gradient(900px 600px at 10% 5%, rgba(244,214,190,.45) 0%, transparent 60%),
    radial-gradient(1000px 800px at 50% 105%, rgba(200,149,74,.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* very soft paper texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .04;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 6px;
}
img, svg { max-width: 100%; }

.skip-link { display: none !important; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(251,245,234,.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .35s ease, background .35s ease;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(74,48,34,.10);
  background: rgba(251,245,234,.96);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-deep);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .3s var(--ease);
}
.logo:hover { transform: translateY(-1px); }
.logo span { color: var(--terracotta); }
.logo::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--terracotta));
  box-shadow: 0 0 12px var(--peach-glow);
}
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-link { font-size: .98rem; color: var(--text-2); transition: color .3s; padding: .5rem .25rem; position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  height: 2px;
  width: 0;
  background: var(--terracotta);
  transition: width .35s var(--ease);
}
.nav-link:hover { color: var(--terracotta); }
.nav-link:hover::after { width: 100%; }
.lang-btn {
  font-family: 'Heebo', sans-serif;
  font-size: .85rem;
  color: var(--text-3);
  background: var(--paper);
  border: 1px solid var(--border);
  padding: .5rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s var(--ease);
  min-height: 36px;
}
.lang-btn:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-1px); }
.nav-cta {
  font-family: 'Heebo', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--warm-white);
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  border: none;
  padding: .7rem 1.6rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .35s var(--ease);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(198,110,71,.28);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198,110,71,.38);
  background: linear-gradient(135deg, var(--terracotta-deep), var(--terracotta));
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
/* soft sun glow centered behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(232,170,134,.45) 0%, rgba(244,214,190,.18) 35%, transparent 70%);
  filter: blur(8px);
  animation: breathe 9s ease-in-out infinite;
  pointer-events: none;
}
/* floating soft circles */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blush-light) 0%, transparent 65%);
  opacity: .55;
  filter: blur(2px);
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%,100% { opacity: .85; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}
@keyframes drift {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-30px,-20px); }
}

.hero-content { max-width: 780px; position: relative; z-index: 2; }

/* hero illustration: warm orb with mic */
.hero-illu {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  position: relative;
}
.hero-illu .orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FBE3CB 0%, var(--blush) 45%, var(--terracotta) 100%);
  box-shadow:
    0 0 0 12px rgba(232,170,134,.18),
    0 0 0 28px rgba(232,170,134,.10),
    0 20px 50px rgba(198,110,71,.30);
  animation: pulse-glow 4.5s ease-in-out infinite;
}
.hero-illu .mic {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--warm-white);
}
.hero-illu .mic svg { width: 64px; height: 64px; filter: drop-shadow(0 2px 6px rgba(74,48,34,.25)); }

@keyframes pulse-glow {
  0%,100% {
    box-shadow:
      0 0 0 12px rgba(232,170,134,.18),
      0 0 0 28px rgba(232,170,134,.10),
      0 20px 50px rgba(198,110,71,.30);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(232,170,134,.24),
      0 0 0 40px rgba(232,170,134,.12),
      0 26px 60px rgba(198,110,71,.40);
  }
}

.sound-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 44px;
  margin-bottom: 1.8rem;
}
.sound-wave .bar {
  width: 4px;
  background: linear-gradient(to top, var(--gold), var(--terracotta));
  border-radius: 4px;
  opacity: .55;
  animation: wave 2.2s ease-in-out infinite;
  will-change: transform, opacity;
}
.sound-wave .bar:nth-child(1)  { height: 12px; animation-delay: 0s; }
.sound-wave .bar:nth-child(2)  { height: 22px; animation-delay: .15s; }
.sound-wave .bar:nth-child(3)  { height: 30px; animation-delay: .3s; }
.sound-wave .bar:nth-child(4)  { height: 38px; animation-delay: .45s; }
.sound-wave .bar:nth-child(5)  { height: 26px; animation-delay: .6s; }
.sound-wave .bar:nth-child(6)  { height: 34px; animation-delay: .75s; }
.sound-wave .bar:nth-child(7)  { height: 20px; animation-delay: .9s; }
.sound-wave .bar:nth-child(8)  { height: 30px; animation-delay: 1.05s; }
.sound-wave .bar:nth-child(9)  { height: 16px; animation-delay: 1.2s; }
.sound-wave .bar:nth-child(10) { height: 24px; animation-delay: 1.35s; }
.sound-wave .bar:nth-child(11) { height: 12px; animation-delay: 1.5s; }
@keyframes wave {
  0%,100% { transform: scaleY(.4); opacity: .35; }
  50%     { transform: scaleY(1);  opacity: .8; }
}

.hero h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1.28;
  margin-bottom: 1.6rem;
  letter-spacing: -.005em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.95;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* CTA */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--warm-white);
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  padding: 1.1rem 2.6rem;
  border-radius: 100px;
  transition: all .4s var(--ease);
  box-shadow: 0 10px 30px rgba(198,110,71,.32);
  border: none;
  cursor: pointer;
  min-height: 56px;
  position: relative;
  overflow: hidden;
}
.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--terracotta) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.cta-primary > * { position: relative; z-index: 1; }
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(198,110,71,.42);
}
.cta-primary:hover::before { opacity: 1; }
.cta-primary svg { transition: transform .35s var(--ease); }
.cta-primary:hover svg { transform: translateX(-4px); }
.cta-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.1rem;
  font-size: .92rem;
  color: var(--text-3);
}
.cta-note::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: #6B8163;
  font-size: .75rem;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  color: var(--text-3);
  animation: float 3.4s ease-in-out infinite;
  opacity: .7;
}
.scroll-hint svg { width: 22px; height: 22px; stroke: var(--terracotta); }
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(10px); }
}

/* ============ SECTIONS ============ */
section { padding: 6.5rem 2rem; position: relative; }
.section-inner { max-width: 920px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 2px;
  background: linear-gradient(to right, transparent, var(--terracotta));
  border-radius: 2px;
}
.section-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1.32;
  margin-bottom: 1.6rem;
  letter-spacing: -.005em;
}
.section-text {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 2.05;
  max-width: 700px;
}
.section-text + .section-text { margin-top: 1rem; }

.divider {
  max-width: 920px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--border-warm), transparent);
  position: relative;
}
.divider::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: .4;
}

/* WHAT IS */
.what-is { background: linear-gradient(180deg, var(--warm-white) 0%, var(--paper) 100%); }
.what-is .section-text { font-size: 1.18rem; }

/* QUOTE */
.quote-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(232,170,134,.10) 0%, transparent 60%),
    linear-gradient(135deg, var(--brown-deep) 0%, #3A2618 100%);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,149,74,.10) 0%, transparent 60%);
  pointer-events: none;
  animation: breathe 11s ease-in-out infinite;
}
.quote-section blockquote {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote-section blockquote::before {
  content: '״';
  position: absolute;
  top: -.5em; right: -.4em;
  font-size: 4.5rem;
  color: var(--gold-light);
  opacity: .35;
  line-height: 1;
}
.quote-section blockquote::after {
  content: '״';
  position: absolute;
  bottom: -.7em; left: -.4em;
  font-size: 4.5rem;
  color: var(--gold-light);
  opacity: .35;
  line-height: 1;
}

/* ============ USP ============ */
.usp-box {
  background: linear-gradient(140deg, var(--warm-white) 0%, var(--paper) 100%);
  border: 1.5px solid var(--border-warm);
  border-radius: 28px;
  padding: 3.2rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.usp-box:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(198,110,71,.18); }
.usp-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--peach-glow) 0%, transparent 65%);
  pointer-events: none;
}
.usp-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}
.usp-box > * { position: relative; z-index: 1; }
.usp-box h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 1.1rem;
}
.usp-box p { font-size: 1.08rem; font-weight: 400; color: var(--text-2); line-height: 2; max-width: 670px; }
.usp-box p + p { margin-top: 1rem; }
.usp-highlight {
  display: inline;
  background: linear-gradient(transparent 60%, var(--peach-glow) 60%);
  color: var(--brown-deep);
  font-weight: 600;
  padding: 0 .3rem;
  border-radius: 3px;
}
.usp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-warm);
}
.usp-feature { display: flex; align-items: flex-start; gap: 1rem; }
.usp-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blush-light), var(--blush));
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(198,110,71,.18);
  transition: transform .4s var(--ease);
}
.usp-feature:hover .usp-feature-icon { transform: scale(1.08) rotate(-4deg); }
.usp-feature-icon svg { width: 22px; height: 22px; stroke: var(--terracotta-deep); fill: none; stroke-width: 2; }
.usp-feature p { font-size: .98rem; font-weight: 400; color: var(--text-2); line-height: 1.7; }

/* ============ STEPS ============ */
.steps { display: grid; gap: 2rem; margin-top: 3rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.2rem;
  border-radius: 22px;
  background: linear-gradient(140deg, var(--warm-white) 0%, var(--paper) 100%);
  border: 1px solid var(--border-warm);
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(to left, var(--terracotta), var(--gold));
  transition: width .6s var(--ease);
}
.step:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-4px);
  border-color: var(--terracotta-soft);
}
.step:hover::before { width: 100%; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--blush-light), var(--blush));
  border: 2px solid var(--terracotta);
  display: grid;
  place-items: center;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--terracotta-deep);
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(198,110,71,.18);
  transition: transform .5s var(--ease);
}
.step:hover .step-number { transform: scale(1.06) rotate(-5deg); }
.step h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: .55rem;
}
.step p { font-size: 1rem; font-weight: 400; color: var(--text-2); line-height: 1.85; }
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--terracotta-deep);
  background: var(--terracotta-soft);
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-top: .9rem;
}
.step-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ============ FOR WHO ============ */
.for-who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.for-card {
  padding: 2.2rem;
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: 22px;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.for-card::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--peach-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.for-card:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-5px);
  border-color: var(--terracotta-soft);
}
.for-card:hover::before { opacity: .8; }
.for-card > * { position: relative; z-index: 1; }
.for-card-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--blush-light), var(--blush));
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(198,110,71,.18);
  transition: transform .5s var(--ease);
}
.for-card:hover .for-card-icon { transform: rotate(-5deg) scale(1.06); }
.for-card-icon svg { width: 28px; height: 28px; stroke: var(--terracotta-deep); fill: none; stroke-width: 1.8; }
.for-card h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: .6rem;
}
.for-card p { font-size: .98rem; font-weight: 400; color: var(--text-2); line-height: 1.85; }

/* ============ PROMISE ============ */
.promise {
  background:
    radial-gradient(800px 500px at 90% 0%, rgba(232,170,134,.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--warm-white) 100%);
}
.promise-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  margin-top: 2.8rem;
}
.promise-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.3rem 1.2rem;
  border-radius: 18px;
  transition: background .35s var(--ease);
}
.promise-item:hover { background: rgba(255,255,255,.55); }
.promise-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-soft), rgba(156,174,147,.30));
  transition: transform .4s var(--ease);
}
.promise-item:hover .promise-icon { transform: scale(1.06); }
.promise-icon svg { width: 26px; height: 26px; stroke: #6B8163; fill: none; stroke-width: 1.7; }
.promise-item h4 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: .35rem;
}
.promise-item p { font-size: .94rem; font-weight: 400; color: var(--text-2); line-height: 1.8; }

/* ============ FAQ ============ */
.faq-list { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--border-warm);
  padding: 1.4rem 0;
  transition: padding .3s ease;
}
.faq-item:first-child { border-top: 1px solid var(--border-warm); }
.faq-item.open { padding-bottom: 1.8rem; }
.faq-q {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brown-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  padding: .25rem 0;
  line-height: 1.5;
  min-height: 48px;
  transition: color .3s ease;
}
.faq-q:hover { color: var(--terracotta); }
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--terracotta);
  transition: transform .35s var(--ease), background .3s ease, color .3s ease;
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  display: grid;
  place-items: center;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); background: var(--terracotta); color: var(--warm-white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 700px; padding-top: 1rem; }
.faq-a p { font-size: 1rem; font-weight: 400; color: var(--text-2); line-height: 1.95; }

/* ============ FINAL CTA ============ */
.final-cta {
  background:
    radial-gradient(circle at 25% 30%, rgba(232,170,134,.16) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(200,149,74,.12) 0%, transparent 55%),
    linear-gradient(135deg, var(--brown-deep) 0%, #3A2618 100%);
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(232,170,134,.12) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 10s ease-in-out infinite;
}
.final-cta .section-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}
.final-cta > .section-inner > p {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(251,245,234,.88);
  margin-bottom: 2.8rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-light {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Heebo', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brown-deep);
  background: var(--cream);
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  transition: all .4s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  border: none;
  cursor: pointer;
  min-height: 56px;
}
.cta-light:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.32); background: var(--warm-white); }
.cta-light.ghost { background: transparent; border: 1.5px solid rgba(251,245,234,.40); color: var(--cream); box-shadow: none; }
.cta-light.ghost:hover { background: rgba(251,245,234,.08); border-color: var(--gold-light); }

.contact-form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input {
  font-family: 'Heebo', sans-serif;
  font-size: 1.02rem;
  padding: 1rem 1.3rem;
  border-radius: 14px;
  border: 1px solid rgba(251,245,234,.25);
  background: rgba(251,245,234,.08);
  color: var(--cream);
  outline: none;
  direction: rtl;
  min-height: 50px;
  transition: all .3s var(--ease);
}
.contact-form input::placeholder { color: rgba(251,245,234,.55); }
.contact-form input:focus {
  border-color: var(--gold-light);
  background: rgba(251,245,234,.13);
  box-shadow: 0 0 0 3px rgba(224,184,114,.18);
}
.contact-form button {
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 1.6rem;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--terracotta), var(--gold-deep));
  color: white;
  cursor: pointer;
  transition: all .35s var(--ease);
  min-height: 54px;
  box-shadow: 0 8px 24px rgba(198,110,71,.30);
}
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(198,110,71,.42);
  background: linear-gradient(135deg, var(--gold-light), var(--terracotta));
}
.form-msg { color: var(--cream); font-size: .95rem; display: none; text-align: center; }

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(180deg, #2C1810 0%, #1F1108 100%);
  border-top: 1px solid rgba(251,245,234,.10);
  padding: 3rem 2rem 2.2rem;
}
.footer-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-info p { font-size: .85rem; color: rgba(251,245,234,.65); line-height: 1.75; }
.footer-info a { color: rgba(251,245,234,.85); text-decoration: underline; transition: color .3s; }
.footer-info a:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: .8rem; }
.footer-links a {
  font-size: .92rem;
  color: rgba(251,245,234,.85);
  text-decoration: underline;
  text-decoration-color: rgba(224,184,114,.4);
  text-underline-offset: 3px;
  transition: color .3s, text-decoration-color .3s;
  font-weight: 500;
  padding: .25rem 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { color: var(--gold-light); text-decoration-color: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(251,245,234,.18);
  border: 1px solid rgba(251,245,234,.20);
  transition: all .35s var(--ease);
}
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 26px rgba(198,110,71,.42); }
.footer-social svg { width: 24px; height: 24px; fill: rgba(255,252,245,.95); transition: fill .3s; }
.footer-social a:hover svg { fill: white; }

/* ============ BLOG INDEX ============ */
.blog-standalone { max-width: 980px; margin: 0 auto; padding: 9rem 2rem 4rem; }
.blog-standalone h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(2rem, 4.2vw, 2.7rem);
  color: var(--brown-deep);
  text-align: center;
  margin-bottom: .5rem;
}
.blog-standalone .blog-intro {
  text-align: center;
  color: var(--text-2);
  margin-bottom: 2.8rem;
  font-size: 1.05rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
}
.blog-card {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: 22px;
  padding: 2.2rem;
  transition: all .5s var(--ease);
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to left, var(--terracotta), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.blog-card:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-5px);
  border-color: var(--terracotta-soft);
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-date { font-size: .82rem; color: var(--terracotta); margin-bottom: .9rem; font-weight: 600; letter-spacing: .04em; }
.blog-card h2, .blog-card h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: .7rem;
  line-height: 1.4;
}
.blog-card p {
  font-size: .96rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.blog-card-link {
  font-size: .92rem;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .3s var(--ease);
}
.blog-card:hover .blog-card-link { gap: .6rem; }

/* ============ ARTICLE STANDALONE ============ */
.article-standalone {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 3rem;
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: 2rem;
  color: var(--terracotta);
  font-size: .95rem;
  padding: .35rem 0;
  transition: color .3s;
}
.back-to-blog:hover { color: var(--terracotta-deep); }
.article-standalone h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  color: var(--brown-deep);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: .9rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-warm);
}
.article-meta .sep { opacity: .5; }
.article-standalone h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.5rem;
  color: var(--brown-deep);
  margin: 2.6rem 0 1rem;
  line-height: 1.4;
}
.article-standalone p {
  color: var(--text-2);
  margin-bottom: 1.3rem;
  line-height: 2;
  font-size: 1.05rem;
}
.article-standalone blockquote {
  border-right: 4px solid var(--terracotta);
  margin: 2rem 0;
  color: var(--brown-med);
  font-style: italic;
  background: linear-gradient(to left, var(--terracotta-soft), transparent);
  padding: 1.2rem 1.6rem 1.2rem 1rem;
  border-radius: 0 12px 12px 0;
}
.article-cta-box {
  margin-top: 3.2rem;
  padding: 2.8rem;
  background: linear-gradient(135deg, var(--paper) 0%, var(--blush-light) 100%);
  border: 1.5px solid var(--terracotta-soft);
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.article-cta-box h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.4rem;
  color: var(--brown-deep);
  margin-bottom: .6rem;
}
.article-cta-box p { color: var(--text-2); margin-bottom: 1.6rem; font-size: 1rem; }

/* ============ LANG NOTICE ============ */
.lang-notice {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: var(--warm-white);
  border: 1.5px solid var(--terracotta-soft);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  z-index: 200;
  box-shadow: 0 30px 80px rgba(74,48,34,.25);
  max-width: 420px;
  width: 90%;
}
.lang-notice h3 { font-family: 'Frank Ruhl Libre', serif; font-size: 1.4rem; color: var(--brown-deep); margin-bottom: 1rem; }
.lang-notice p { font-size: 1rem; color: var(--text-2); margin-bottom: 1.6rem; }
.lang-notice button {
  font-family: 'Heebo', sans-serif;
  font-size: .95rem;
  padding: .8rem 1.7rem;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: white;
  cursor: pointer;
  transition: all .3s var(--ease);
  min-height: 44px;
  font-weight: 600;
}
.lang-notice button:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(198,110,71,.35); }
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(74,48,34,.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 199;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .sound-wave .bar, .hero-illu .orb,
  .quote-section::before, .final-cta::before,
  .hero::before, .hero::after, .scroll-hint, .wa-float::before { animation: none; }
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 2rem; left: 2rem;
  z-index: 99;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.40);
  transition: all .35s var(--ease);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
.wa-float svg { width: 34px; height: 34px; fill: white; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .section-inner, .blog-standalone { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 768px) {
  html { font-size: 17px; }
  section { padding: 4.5rem 1.5rem; }
  .hero { padding: 7.5rem 1.5rem 5rem; min-height: auto; }
  .hero-illu { width: 140px; height: 140px; margin-bottom: 1.5rem; }
  .hero-illu .mic svg { width: 50px; height: 50px; }
  .step { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.8rem; }
  .step-number { width: 50px; height: 50px; font-size: 1.15rem; }
  .for-who-cards, .promise-items, .usp-features { grid-template-columns: 1fr; }
  .usp-box { padding: 2.2rem 1.5rem; }
  .quote-section, .final-cta { padding: 4.5rem 1.5rem; }
  nav { padding: .85rem 1.2rem; }
  .nav-links { gap: .9rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-standalone { padding: 7rem 1.5rem 3rem; }
  .article-standalone { padding: 7rem 1.5rem 2rem; }
}

@media (max-width: 480px) {
  .nav-links .lang-btn { display: none; }
  .wa-float { width: 56px; height: 56px; bottom: 1.2rem; left: 1.2rem; }
  .wa-float svg { width: 30px; height: 30px; }
  .article-cta-box { padding: 2rem 1.3rem; }
  .nav-cta { padding: .6rem 1.2rem; font-size: .85rem; }
}
