/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --bg-main:        #FAF7F2;
  --bg-beige:       #F2E8D5;
  --bg-sand:        #E8D9B5;
  --bg-dark:        #2C2420;
  --bg-purple-soft: #F0EBF8;
  --bg-white:       #FFFFFF;

  /* Brand colours */
  --purple:         #8B7BB5;
  --purple-dark:    #6B5C96;
  --purple-light:   #C4B9E0;
  --purple-pale:    #EAE5F5;

  /* Text */
  --text-dark:      #2C2420;
  --text-medium:    #5C4F45;
  --text-light:     #9B8F87;
  --text-cream:     #FAF7F2;
  --text-sand:      #C8A96E;

  /* Utility */
  --white:          #FFFFFF;
  --border:         rgba(139, 123, 181, 0.18);
  --border-light:   rgba(200, 188, 168, 0.35);
  --shadow-soft:    0 4px 24px rgba(44, 36, 32, 0.07);
  --shadow-card:    0 8px 40px rgba(44, 36, 32, 0.09);
  --shadow-purple:  0 8px 32px rgba(139, 123, 181, 0.22);

  /* Radii */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-xs: 4px;

  /* Typography */
  --font-display: 'Frank Ruhl Libre', Georgia, serif;
  --font-body:    'Heebo', 'Arial Hebrew', Arial, sans-serif;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container-max: 1140px;
  --section-v: clamp(64px, 8vw, 110px);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.3;
  color: var(--text-dark);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.text-center {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border-radius: 50px;
  border: 2px solid transparent;
  padding: 14px 30px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 4px 20px rgba(139, 123, 181, 0.3);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  box-shadow: 0 6px 28px rgba(139, 123, 181, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 17px 40px;
}

.btn-sm {
  font-size: 0.9rem;
  padding: 10px 22px;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 32px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  cursor: pointer;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

/* Submit button loading state */
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
}

.btn--loading .btn-text {
  opacity: 0.7;
}

.btn--loading .btn-loader {
  display: block;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(44, 36, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Logo image — header */
.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  /* The logo has a white bg — mix-blend-mode makes it blend
     cleanly on the warm cream header */
  mix-blend-mode: multiply;
  transition: opacity var(--transition);
}

.header-logo-img:hover {
  opacity: 0.82;
}

/* Logo image — footer */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  /* Invert to show on dark footer background */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.section-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--header-h) 0 0;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    #FAF7F2 0%,
    #F5EBD8 35%,
    #EDE0F0 75%,
    #FAF7F2 100%
  );
}

/* Decorative floating shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}

.hero-shape--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--purple-light), transparent 70%);
  top: -180px;
  left: -120px;
  animation-duration: 9s;
}

.hero-shape--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--bg-sand), transparent 70%);
  bottom: -100px;
  right: 5%;
  animation-duration: 11s;
  animation-delay: -3s;
}

.hero-shape--3 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  top: 40%;
  right: 15%;
  animation-duration: 7s;
  animation-delay: -5s;
  opacity: 0.1;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(60px, 8vh, 100px);
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple-dark);
  border: 1px solid var(--purple-light);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 7px 18px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.br-desktop { display: none; }
@media (min-width: 640px) { .br-desktop { display: block; } }

.hero-scroll-hint {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 560px;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  animation: scrollFade 2.5s ease-in-out infinite;
}

@keyframes scrollFade {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7) translateY(10px); }
}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════ */
.section-problem {
  background: var(--bg-dark);
  color: var(--text-cream);
  padding: var(--section-v) 0;
}

.problem-content {
  max-width: 760px;
  margin: 0 auto;
}

.problem-lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bg-sand);
  line-height: 1.35;
  margin-bottom: 2rem;
}

.problem-body {
  margin-bottom: 2.2rem;
}

.problem-body p {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.82);
  margin-bottom: 0.8rem;
  line-height: 1.85;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: rgba(250, 247, 242, 0.88);
  line-height: 1.6;
}

.problem-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-closer {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--purple-light);
  line-height: 1.6;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   REASSURANCE SECTION
═══════════════════════════════════════════════════════ */
.section-reassurance {
  background: var(--bg-white);
  padding: var(--section-v) 0;
}

.reassurance-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reassurance-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.reassurance-text .section-title {
  margin-bottom: 1.2rem;
}

.reassurance-text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 0.9rem;
  line-height: 1.85;
}

.callout-card {
  background: linear-gradient(135deg, var(--purple-pale) 0%, #e8e2f8 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.callout-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--purple-light);
  border-radius: 0 var(--radius-xl) 0 100%;
  opacity: 0.35;
}

.callout-headline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.callout-headline em {
  font-style: normal;
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: var(--purple-light);
  text-underline-offset: 3px;
}

.callout-body {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════════════ */
.section-process {
  background: var(--bg-beige);
  padding: var(--section-v) 0;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.process-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-item p {
  font-size: 1.02rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: auto 0;
}

/* ═══════════════════════════════════════════════════════
   RESULTS SECTION
═══════════════════════════════════════════════════════ */
.section-results {
  background: var(--bg-purple-soft);
  padding: var(--section-v) 0;
}

.section-results .section-title {
  color: var(--purple-dark);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.result-card {
  background: var(--white);
  border: 1px solid rgba(139, 123, 181, 0.15);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}

.result-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.result-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.7rem;
}

.result-card p {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.results-closer {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--purple-dark);
}

/* ═══════════════════════════════════════════════════════
   PROGRAM STEPS SECTION
═══════════════════════════════════════════════════════ */
.section-program {
  background: var(--bg-white);
  padding: var(--section-v) 0;
}

.steps-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

@media (min-width: 900px) {
  .steps-track {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
  }
}

.step-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.step-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-purple);
  transform: translateY(-5px);
  border-color: var(--purple-light);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   CONTACT / FORM SECTION
═══════════════════════════════════════════════════════ */
.section-contact {
  background: var(--bg-beige);
  padding: var(--section-v) 0;
}

.contact-inner {
  max-width: 620px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-top: 0.7rem;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.required {
  color: var(--purple);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-main);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  text-align: right;
}

.form-input::placeholder {
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-input:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139, 123, 181, 0.12);
}

.form-input.input-error {
  border-color: #D94F4F;
  background: #FEF8F8;
}

.form-input.input-valid {
  border-color: #4CAF50;
}

.form-error {
  font-size: 0.83rem;
  color: #D94F4F;
  min-height: 18px;
  display: block;
}

/* Checkbox */
.form-group--checkbox {
  margin-bottom: 14px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xs);
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  position: relative;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--purple);
  border-color: var(--purple);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-2px);
}

.checkbox-label input:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(139, 123, 181, 0.18);
}

.checkbox-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.privacy-link {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-link:hover {
  color: var(--purple-dark);
}

.privacy-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Form success */
.form-success {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(139, 123, 181, 0.35);
  animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-text {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 0.8rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════ */
.section-about {
  background: var(--bg-beige);
  padding: var(--section-v) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 280px 1fr;
    gap: 5rem;
  }
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}


.about-photo {
  width: 100%;
  max-width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(139, 123, 181, 0.22),
    0 8px 24px rgba(44, 36, 32, 0.12);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: block;
}

.about-photo:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 28px 72px rgba(139, 123, 181, 0.3),
    0 12px 32px rgba(44, 36, 32, 0.15);
}

.about-badge {
  font-size: 1rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.about-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.about-tagline {
  font-size: 1.1rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

.about-closing {
  color: var(--text-dark) !important;
  font-weight: 500;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.about-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.about-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-beige);
  color: var(--purple);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.about-social-link:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(139, 123, 181, 0.3);
}

.about-social-wa:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(250, 247, 242, 0.75);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.site-footer .logo-text {
  color: var(--text-cream);
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}

.footer-social:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer-whatsapp  { color: #4CD964; }
.footer-facebook  { color: #74A9E8; }
.footer-instagram { color: #E4A0C0; }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* RTL: float on left side which becomes the less-prominent side in RTL UIs.
   For Hebrew pages, the right side is more prominent. Adjust as needed: */
@media (min-width: 768px) {
  .whatsapp-float {
    left: auto;
    right: 32px;
  }
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.8s var(--transition-slow) both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero staggered delays */
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }
.animate-delay-4 { animation-delay: 0.6s; }

/* Scroll-triggered stagger */
.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }

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

/* ═══════════════════════════════════════════════════════
   PRIVACY MODAL
═══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(44, 36, 32, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.25s ease both;
}

.modal-overlay[hidden] {
  display: none;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(44, 36, 32, 0.2);
  animation: modalSlideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  position: relative;
  overflow: hidden;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-beige);
  color: var(--text-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  z-index: 1;
}

.modal-close:hover {
  background: var(--purple-pale);
  color: var(--purple-dark);
}

.modal-content {
  overflow-y: auto;
  padding: 40px 36px 24px;
  flex: 1;
  outline: none;
  scroll-behavior: smooth;
}

/* Scrollbar styling */
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: var(--bg-beige); border-radius: 10px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 10px; }

.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.modal-brand {
  font-size: 1rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1.5px solid var(--border-light);
}

.modal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin: 1.4rem 0 0.5rem;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.modal-content ul {
  margin: 0.4rem 0 0.8rem 0;
  padding-right: 1.2rem;
  list-style: disc;
}

.modal-content ul li {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 4px;
}

.modal-link {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
  direction: ltr;
  display: inline-block;
}
.modal-link:hover { color: var(--purple-dark); }

.modal-footer {
  padding: 16px 36px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
  background: var(--white);
}

@media (max-width: 480px) {
  .modal-content { padding: 36px 20px 16px; }
  .modal-footer  { padding: 14px 20px 20px; }
  .modal-title   { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2.5px solid var(--purple);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: white;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  z-index: 999;
  transition: top 0s;
}

.skip-link:focus {
  top: 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-shape { animation: none; }
  .whatsapp-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .btn-lg { font-size: 1rem; padding: 15px 28px; }
  .header-cta { display: none; }
  .contact-form { padding: 22px 18px; }
  .step-number { font-size: 2rem; }
  .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.85rem; }
  .problem-lead { font-size: 1.4rem; }
}
