/* ============================================================
   עינב קשר — Psychotherapy Website
   Design: Airy, bright, warm, DYNAMIC — for 20-40 audience
   RTL Hebrew | v14
   ============================================================ */

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

:root {
  /* ── Core palette ── */
  --white:        #ffffff;
  --off-white:    #f9f8f6;
  --warm-bg:      #f5f2ee;
  --warm-mid:     #ede9e3;

  /* ── Brand green (the CORRECT one) ── */
  --green:        #5BBF5A;
  --green-dark:   #3da348;
  --green-pale:   #edf7ec;
  --green-light:  #d4edcf;

  /* ── Second color: VIVID warm coral ── */
  --coral:        #F4845F;   /* bolder, more saturated */
  --coral-dark:   #d96545;
  --coral-mid:    #f79b82;   /* mid tone for hover */
  --coral-pale:   #fff0eb;
  --coral-light:  #f9c4bb;

  /* ── Text ── */
  --text-dark:    #1c1c1c;
  --text-mid:     #505050;
  --text-light:   #909090;

  /* ── UI ── */
  --border:       rgba(0,0,0,0.07);
  --shadow-sm:    0 2px 14px rgba(0,0,0,0.05);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
  --shadow-coral: 0 10px 36px rgba(244,132,95,0.28);
  --shadow-green: 0 10px 36px rgba(76,185,68,0.28);

  /* ── Typography ── */
  --font-head:    'Rubik', 'Assistant', sans-serif;
  --font-body:    'Assistant', sans-serif;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    28px;
  --radius-xl:    40px;

  --nav-h:        76px;
  --t:            0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring:     0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute; top: -100%; right: 0;
  background: var(--green-dark); color: #fff;
  padding: 12px 24px; z-index: 9999; font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* ---------- FLOATING BACKGROUND SHAPES ---------- */
/* These are decorative blobs that float/pulse behind sections */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.bg-blob-green {
  background: radial-gradient(circle, rgba(76,185,68,0.13) 0%, rgba(76,185,68,0) 70%);
  animation: blobFloat 8s ease-in-out infinite;
}
.bg-blob-coral {
  background: radial-gradient(circle, rgba(232,97,74,0.15) 0%, rgba(232,97,74,0) 70%);
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-18px) scale(1.04); }
  66%       { transform: translateY(10px) scale(0.97); }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.03em;   /* Jakarta Sans looks tighter and sharper */
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p  { color: var(--text-mid); line-height: 1.8; }

/* ---------- BUTTONS — magnetic effect via JS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 500; cursor: pointer;
  transition: transform var(--t-spring), box-shadow var(--t), background var(--t), border-color var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative; overflow: hidden;
}
/* Ripple layer */
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn:active::after { opacity: 1; }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.btn-primary {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent; color: var(--green-dark); border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green); color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-green);
}

.btn-coral {
  background: var(--coral); color: var(--white); border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark); border-color: var(--coral-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-coral);
}

.btn-white {
  background: var(--white); color: var(--green-dark); border-color: var(--white);
}
.btn-white:hover {
  background: transparent; color: var(--white);
  transform: translateY(-3px) scale(1.02);
}

.btn-nav {
  padding: 10px 22px; font-size: 0.88rem;
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn-nav:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* ---------- NAV ---------- */
#site-header {
  position: fixed; top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.0);
  transition: background var(--t), box-shadow var(--t);
}
#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

nav {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--nav-h); padding: 0 5%; gap: 28px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo svg { width: 40px; height: 46px; }
.nav-logo-text {
  font-family: var(--font-head); font-size: 1.2rem;
  font-weight: 700; color: var(--text-dark);
  transition: color var(--t);
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-dark);
  position: relative; transition: color var(--t);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(to left, var(--green), var(--coral));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--green); border-radius: 2px; }

#site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.92); }
#site-header:not(.scrolled) .nav-logo-text { color: white; }
#site-header:not(.scrolled) .nav-links a::after {
  background: linear-gradient(to left, white, rgba(255,255,255,0.6));
}

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; font-size: 1.5rem; color: var(--text-dark);
}
#site-header:not(.scrolled) .nav-toggle { color: white; }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); padding: 20px 5%;
  border-top: 1px solid var(--border); gap: 4px;
}
.mobile-menu a {
  padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: var(--text-mid); border-bottom: 1px solid var(--border);
  transition: color var(--t), padding-right var(--t);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--coral); padding-right: 8px; }
.mobile-menu.open { display: flex; }

/* ---------- HERO — split layout, bright & airy ---------- */
.hero-full {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  order: 2;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  transform: scale(1.04);
  animation: heroImgReveal 1.6s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroImgReveal {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0) 40%
  );
}

/* Coral accent strip on image edge */
.hero-image-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--coral) 0%, var(--green) 100%);
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 2; order: 1;
  background: var(--white);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 6% 64px 6%;
  min-height: 100svh;
  overflow: hidden;
}

/* Large floating coral blob */
.hero-content::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,97,74,0.10) 0%, rgba(232,97,74,0) 70%);
  border-radius: 50%;
  animation: blobFloat 9s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
/* Green blob top */
.hero-content::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(76,185,68,0.09) 0%, rgba(76,185,68,0) 70%);
  border-radius: 50%;
  animation: blobFloat 11s ease-in-out infinite reverse;
  z-index: -1;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 28px; height: 2px;
  background: var(--coral); flex-shrink: 0;
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
/* Green underline on last word of headline */
.hero-headline span {
  position: relative; display: inline-block;
}
.hero-headline span::after {
  content: '';
  position: absolute; bottom: 2px; right: 0; left: 0;
  height: 6px;
  background: linear-gradient(to left, var(--green), var(--coral));
  opacity: 0.3; border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1rem; color: var(--text-mid);
  margin-bottom: 36px; max-width: 420px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Coral badge below buttons */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  padding: 8px 16px; border-radius: 50px;
  background: var(--coral-pale);
  border: 1.5px solid var(--coral-light);
  font-size: 0.78rem; font-weight: 600;
  color: var(--coral-dark);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: var(--text-light); font-size: 0.72rem; letter-spacing: 0.1em;
  pointer-events: none;
}
.scroll-arrow { animation: bounce 2s infinite; font-size: 0.9rem; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Hero text animations */
.hero-anim { opacity: 0; transform: translateY(24px); }
.hero-anim-1 { animation: heroFade 0.7s 0.15s forwards ease-out; }
.hero-anim-2 { animation: heroFade 0.8s 0.30s forwards ease-out; }
.hero-anim-3 { animation: heroFade 0.8s 0.45s forwards ease-out; }
.hero-anim-4 { animation: heroFade 0.8s 0.60s forwards ease-out; }
.hero-anim-5 { animation: heroFade 0.8s 0.90s forwards ease-out; }
.hero-anim-6 { animation: heroFade 0.8s 1.10s forwards ease-out; }
@keyframes heroFade { to { opacity: 1; transform: translateY(0); } }

/* ---------- TRUST STRIP ---------- */
.trust-strip-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip {
  display: flex; align-items: stretch;
  justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 40px; flex: 1; min-width: 200px;
  justify-content: center;
  border-left: 1px solid var(--border);
  transition: background var(--t);
}
.trust-item:hover { background: var(--off-white); }
.trust-item:last-child { border-left: none; }
.trust-item h4 {
  font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 600; color: var(--text-dark); margin-bottom: 2px;
}
.trust-item p { font-size: 0.78rem; color: var(--text-light); margin: 0; }
.trust-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse-dot 3s ease-in-out infinite;
}

/* ---------- SECTIONS ---------- */
.section-white { background: var(--white); }
.section-pale  { background: var(--off-white); }
.section-warm  { background: var(--warm-bg); }
.section-green { background: var(--green); }

section:not(.hero-full):not(.hero-slider):not(.trust-strip-section):not(.section-stats) {
  padding: 96px 0;
}

.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading h2 { margin-bottom: 14px; color: var(--text-dark); }
.section-heading p {
  font-size: 1rem; color: var(--text-light);
  max-width: 460px; margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block; width: 18px; height: 2px;
  background: var(--coral); border-radius: 2px; flex-shrink: 0;
}

/* ---------- CORAL BAND — visual separator between sections ---------- */
.coral-band {
  height: 4px;
  background: linear-gradient(to left, var(--coral) 0%, var(--green) 50%, var(--coral) 100%);
  background-size: 200% 100%;
  animation: bandSlide 4s linear infinite;
}
@keyframes bandSlide {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ---------- SLIDER — hero + treatment areas ---------- */
.slider-section {
  background: var(--warm-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0; overflow: hidden;
  position: relative;
}
/* Coral accent bar on slider section */
.slider-section::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(to left, var(--coral), var(--green));
  z-index: 1;
}

/* ── HERO SLIDER: full-screen, sits right under nav ── */
.hero-slider {
  margin-top: 0;
  border-top: none;
}
.hero-slider .slider-wrap,
.hero-slider .slider-track {
  height: 100svh;
}
.hero-slider .slider-slides {
  height: 100svh;
  align-items: stretch;
}
.hero-slider .slide {
  height: 100svh;
  min-height: unset;
  flex-shrink: 0;
  align-items: center;
}
.hero-slider .slide-content {
  padding: calc(var(--nav-h) + 40px) 8% 64px;
  align-items: flex-start;
}
/* Bigger text for hero slides */
.hero-slider .slide-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 700px;
}
.hero-slider .slide-content p {
  font-size: 1.15rem;
  max-width: 560px;
}
/* Scroll hint */
.hero-slider .slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0;
}
.hero-slider .slider-dot {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-slider .slider-dot.active {
  background: var(--white);
  border-color: var(--white);
}
.hero-slider .slider-prev,
.hero-slider .slider-next {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.hero-slider .slider-prev:hover,
.hero-slider .slider-next:hover {
  background: var(--coral);
  border-color: var(--coral);
}
/* First slide text entrance animation */
.hero-slider .slide:first-child .slide-tag  { animation: heroFade 0.7s 0.2s both ease-out; }
.hero-slider .slide:first-child .slide-content h2 { animation: heroFade 0.8s 0.38s both ease-out; }
.hero-slider .slide:first-child .slide-content p  { animation: heroFade 0.8s 0.55s both ease-out; }
.hero-slider .slide:first-child .slide-cta { animation: heroFade 0.8s 0.72s both ease-out; }
@keyframes heroFade { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Scroll hint arrow at bottom of hero */
.hero-slider::after {
  content: '↓';
  position: absolute;
  bottom: 18px;
  right: 8%;
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  animation: bounce 2s 1.5s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.slider-wrap { position: relative; overflow: hidden; }
.slider-track { overflow: hidden; }
.slider-slides {
  display: flex;
  direction: ltr; /* force LTR so translateX works predictably in RTL page */
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex; align-items: center;
  direction: rtl; /* restore RTL for slide content */
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.slide-content {
  position: relative; z-index: 2;
  padding: 72px 8% 64px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px;
  width: 100%;
}

.slide-tag {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 5px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(232,97,74,0.38);
}
.slide-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--white); max-width: 600px; line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-content p {
  color: rgba(255,255,255,0.88); font-size: 1.05rem;
  max-width: 500px; line-height: 1.75;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-dark);
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t-spring), box-shadow var(--t);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.slider-prev:hover, .slider-next:hover {
  background: var(--coral); border-color: var(--coral);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-coral);
}
.slider-prev:focus-visible, .slider-next:focus-visible { outline: 2px solid var(--green); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 18px 0 24px;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral-light); cursor: pointer;
  transition: background var(--t), width var(--t), border-radius var(--t);
  border: none; padding: 0;
}
.slider-dot.active {
  background: var(--coral); width: 22px; border-radius: 4px;
}

/* ---------- BELIEFS ---------- */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.belief-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.belief-card:nth-child(odd)::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.belief-card:nth-child(even)::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.belief-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.belief-card:hover::before { transform: scaleX(1); }

.belief-icon {
  font-size: 1.9rem; margin-bottom: 16px;
  display: inline-block;
  transition: transform var(--t-spring);
}
.belief-card:hover .belief-icon { transform: scale(1.2) rotate(-5deg); }
.belief-card p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); }
.belief-card p strong { color: var(--green-dark); font-weight: 600; }

/* ---------- STATS ---------- */
.section-stats {
  background: var(--green);
  padding: 72px 0;
  opacity: 1 !important; transform: none !important;
  position: relative; overflow: hidden;
}
/* Coral blob inside stats */
.section-stats::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,97,74,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 7s ease-in-out infinite;
}
.section-stats::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 9s ease-in-out infinite reverse;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.2);
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; z-index: 1;
}
.stat-item {
  background: rgba(255,255,255,0.06);
  padding: 48px 24px; text-align: center;
  transition: background var(--t);
}
.stat-item:hover { background: rgba(255,255,255,0.12); }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700; color: var(--white); line-height: 1;
  margin-bottom: 8px;
}
.stat-number::after {
  content: '+'; font-size: 0.55em;
  vertical-align: super; margin-right: 2px;
  color: var(--coral-light);
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.78); letter-spacing: 0.04em; }

/* ---------- ARTICLES ---------- */
.articles-header { text-align: center; margin-bottom: 52px; }
.articles-header h2 { margin-bottom: 10px; }
.articles-header p { color: var(--text-light); font-size: 1rem; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.article-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* No top stripe — image replaces it */
.article-card:nth-child(odd)  { border-top: none; }
.article-card:nth-child(even) { border-top: none; }

/* Glow on hover */
.article-card:nth-child(odd):hover  { box-shadow: 0 14px 44px rgba(76,185,68,0.16); }
.article-card:nth-child(even):hover { box-shadow: 0 14px 44px rgba(232,97,74,0.18); }

/* Thumbnail image at top of card */
.article-thumb {
  width: 100%; height: 180px; overflow: hidden;
}
.article-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.article-card:hover .article-thumb img { transform: scale(1.06); }

.article-body { display: flex; flex-direction: column; flex: 1; }

.article-badge {
  padding: 14px 20px 0;
  display: flex; align-items: center;
}
.article-badge a { display: inline-block; line-height: 0; }
.article-badge img {
  height: 20px; width: auto; opacity: 0.8;
  transition: opacity var(--t), transform var(--t-spring);
}
.article-card:hover .article-badge img { opacity: 1; transform: scale(1.05); }

.article-title {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--text-dark);
  padding: 10px 20px 6px; line-height: 1.4;
  transition: color var(--t);
}
.article-card:hover .article-title { color: var(--text-dark); }
.article-excerpt {
  font-size: 0.85rem; color: var(--text-light);
  padding: 0 20px; line-height: 1.7; flex: 1;
}
.article-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.83rem; font-weight: 600;
  color: var(--green-dark);
  padding: 14px 20px 18px;
  transition: gap var(--t), color var(--t);
}
.article-card:nth-child(even) .article-link { color: var(--coral-dark); }
.article-card:hover .article-link { gap: 9px; }
.article-card:nth-child(odd):hover  .article-link { color: var(--green); }
.article-card:nth-child(even):hover .article-link { color: var(--coral); }
.article-link:focus-visible { outline: 2px solid var(--green); border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ---------- TREATMENT AREAS ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}

/* Image at top of area card */
.card-img-wrap {
  width: 100%; height: 200px; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.card:hover .card-img { transform: scale(1.06); }

.card-body {
  padding: 28px 28px 24px;
}
.card:nth-child(3n+1):hover { border-color: var(--green); box-shadow: 0 12px 36px rgba(76,185,68,0.14); }
.card:nth-child(3n+2):hover { border-color: var(--coral); box-shadow: 0 12px 36px rgba(232,97,74,0.16); }
.card:nth-child(3n):hover   { border-color: var(--green); box-shadow: 0 12px 36px rgba(76,185,68,0.14); }

.card:hover { transform: translateY(-6px) scale(1.01); }

.card-body h3, .card h3 {
  font-family: var(--font-head); font-size: 1.15rem;
  margin-bottom: 10px; color: var(--text-dark);
  transition: color var(--t);
}
.card:nth-child(3n+2):hover h3 { color: var(--coral-dark); }
.card:nth-child(3n+1):hover h3,
.card:nth-child(3n):hover h3   { color: var(--green-dark); }

.card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.card-link {
  font-size: 0.83rem; font-weight: 600; color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--t), color var(--t);
}
.card:nth-child(3n+2) .card-link { color: var(--coral-dark); }
.card:hover .card-link { gap: 9px; }
.card:nth-child(3n+1):hover .card-link,
.card:nth-child(3n):hover .card-link   { color: var(--green); }
.card:nth-child(3n+2):hover .card-link { color: var(--coral); }
.card-link:focus-visible { outline: 2px solid var(--green); border-radius: 4px; }

/* Large ghost number */
.card::before {
  content: attr(data-num);
  position: absolute; top: 16px; left: 20px;
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 700; color: rgba(76,185,68,0.06);
  line-height: 1; pointer-events: none;
  transition: color var(--t), font-size var(--t);
}
.card:nth-child(3n+2)::before { color: rgba(232,97,74,0.07); }
.card:hover::before { font-size: 3.4rem; }

/* ---------- TESTIMONIALS — WhatsApp ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.wa-phone {
  background: #e5ddd5;
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-spring), box-shadow var(--t);
  max-width: 380px; margin: 0 auto; width: 100%;
}
.wa-phone:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.wa-screen { display: flex; flex-direction: column; }
.wa-statusbar {
  background: #075e54; color: rgba(255,255,255,0.8);
  font-size: 0.68rem; padding: 5px 12px;
  display: flex; justify-content: space-between;
  align-items: center; direction: ltr;
}
.wa-statusbar-icons { display: flex; gap: 6px; font-size: 0.62rem; }
.wa-header {
  background: #075e54; padding: 9px 12px 11px;
  display: flex; align-items: center; gap: 9px; direction: rtl;
}
.wa-back { color: rgba(255,255,255,0.9); font-size: 1.1rem; cursor: pointer; }
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25d366; color: white; font-weight: 700;
  font-size: 0.95rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.wa-contact-info { flex: 1; }
.wa-name { font-size: 0.92rem; font-weight: 600; color: white; }
.wa-status { font-size: 0.68rem; color: rgba(255,255,255,0.68); }
.wa-header-icons { color: rgba(255,255,255,0.9); display: flex; gap: 10px; font-size: 0.95rem; }
.wa-messages {
  background: #e5ddd5; padding: 14px 10px;
  display: flex; flex-direction: column;
  gap: 7px; min-height: 110px; direction: rtl;
}
.wa-date-label {
  text-align: center; font-size: 0.68rem; color: #667781;
  background: rgba(255,255,255,0.65); padding: 2px 9px;
  border-radius: 8px; align-self: center; margin-bottom: 3px;
}
.wa-bubble {
  max-width: 85%; padding: 7px 11px;
  border-radius: 12px; font-size: 0.85rem;
  line-height: 1.5; color: #1a1a1a; position: relative;
}
.wa-received {
  background: white; align-self: flex-end;
  border-radius: 12px 0 12px 12px;
}
.wa-time {
  display: block; font-size: 0.62rem; color: #667781;
  margin-top: 3px; text-align: left; direction: ltr;
}
.wa-input-bar {
  background: #f0f2f5; padding: 9px 12px;
  color: #aaaaaa; font-size: 0.82rem;
  border-top: 1px solid rgba(0,0,0,0.07); direction: rtl;
}

/* ---------- CTA ---------- */
.cta-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 60%, #2d8a28 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
/* Large coral blob */
.cta-box::before {
  content: '';
  position: absolute; top: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.22;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
/* Second coral blob bottom right */
.cta-box::after {
  content: '';
  position: absolute; bottom: -60px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
.cta-box h2 {
  color: var(--white); margin-bottom: 28px;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  position: relative; z-index: 1;
}
.cta-box .btn { position: relative; z-index: 1; }

/* ---------- FOOTER ---------- */
footer { background: #141414; color: rgba(255,255,255,0.65); padding: 60px 0 28px; }
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 44px; margin-bottom: 44px;
}
.footer-col h4 {
  color: var(--white); font-family: var(--font-head);
  font-size: 1rem; font-weight: 600; margin-bottom: 14px;
}
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 5px; }
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5);
  margin-bottom: 5px; transition: color var(--t), padding-right var(--t);
}
.footer-col a:hover { color: var(--coral); padding-right: 6px; }
.footer-col a:focus-visible { outline: 2px solid rgba(255,255,255,0.4); border-radius: 2px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { font-size: 0.77rem; color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px;
  width: 54px; height: 54px; background: #25d366;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  z-index: 999;
  transition: transform var(--t-spring), box-shadow var(--t);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 26px rgba(37,211,102,0.5); }
.whatsapp-float:focus-visible { outline: 3px solid var(--green-dark); outline-offset: 3px; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ---------- REVEAL ANIMATIONS — varied directions ---------- */
.reveal, .reveal-card {
  opacity: 1; transform: none;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.reveal.anim-ready {
  opacity: 0; transform: translateY(32px);
}
.reveal-card.anim-ready {
  opacity: 0; transform: translateY(28px) scale(0.97);
}
.reveal.visible, .reveal-card.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Stagger delays */
.reveal-card:nth-child(2) { transition-delay: 0.08s; }
.reveal-card:nth-child(3) { transition-delay: 0.16s; }
.reveal-card:nth-child(4) { transition-delay: 0.24s; }
.reveal-card:nth-child(5) { transition-delay: 0.32s; }
.reveal-card:nth-child(6) { transition-delay: 0.40s; }
.reveal-card:nth-child(7) { transition-delay: 0.48s; }
.reveal-card:nth-child(8) { transition-delay: 0.56s; }

/* ---------- CORAL PILL TAGS (used inline in content) ---------- */
.tag-coral {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 3px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}
.tag-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 3px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-2xl { margin-top: 48px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-full { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-wrap { order: 1; height: 55vw; max-height: 420px; }
  .hero-content {
    order: 2; min-height: auto;
    padding: 48px 6% 56px;
  }
  .hero-content::before, .hero-content::after { display: none; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
  #site-header:not(.scrolled) .nav-logo-text { color: var(--white); }
  #site-header:not(.scrolled) .nav-toggle   { color: var(--white); }
  .trust-item { border-left: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 28px; }
  .cta-box { padding: 44px 24px; }
  .slide { min-height: 420px; }
  .hero-slider .slide { min-height: 100svh; }
  .slide-content { padding: 48px 6% 40px; }
  .hero-slider .slide-content { padding: calc(var(--nav-h) + 32px) 6% 56px; }
  .article-thumb { height: 150px; }
  .card-img-wrap { height: 160px; }
  section:not(.hero-full):not(.hero-slider):not(.trust-strip-section):not(.section-stats) { padding: 64px 0; }
  .belief-card, .card { padding: 26px 22px; }
  .articles-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .bg-blob, .hero-content::before, .hero-content::after,
  .coral-band, .trust-dot, .hero-badge-dot,
  .section-stats::before, .section-stats::after,
  .cta-box::before, .cta-box::after { animation: none !important; }
}
