/* ═══════════════════════════════════════════════
   DR. EYAL HOROWITZ — SHARED DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&family=Heebo:wght@300;400;500;600;700&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #F5E9C8;
  --gold-dim:    rgba(201,168,76,0.15);
  --dark:        #0A0A0A;
  --dark-2:      #111111;
  --dark-3:      #1A1A1A;
  --dark-4:      #242424;
  --dark-5:      #2E2E2E;
  --light:       #F5F0E8;
  --muted:       #7A7A7A;
  --mid:         #AAAAAA;
  --border:      rgba(255,255,255,0.06);
  --border-gold: rgba(201,168,76,0.2);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  direction: rtl;
  font-size: 20px;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 500;
  padding: 26px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,0.96);
  padding: 18px 64px;
  border-bottom-color: var(--border-gold);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.18em;
  font-family: 'Heebo', sans-serif;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 1.07rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0; left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── PAGE HERO (shared) ── */
.page-hero {
  padding: 180px 64px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse 80% 60% at 80% 40%, rgba(201,168,76,0.04), transparent);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

.page-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  max-width: 800px;
}
.page-title .gold { color: var(--gold); }

.page-lead {
  margin-top: 24px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--mid);
  max-width: 560px;
}

/* ── SECTION UTILS ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label-line { width: 30px; height: 1px; background: var(--gold); }
.section-label-text {
  font-size: 0.83rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 17px 38px;
 font-size: 1.1rem;;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Heebo', sans-serif;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.28);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 15px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Heebo', sans-serif;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-ghost {
  color: var(--mid);
  text-decoration: none;
  ffont-size: 1.1rem;  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ── DIVIDER ── */
.gold-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 0;
}

/* ── FORM ELEMENTS ── */
.form-input {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--light);
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Heebo', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  text-align: right;
  width: 100%;
}
.form-input:focus { border-color: rgba(201,168,76,0.5); }
.form-input::placeholder { color: var(--muted); }

.form-select {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--mid);
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Heebo', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  cursor: pointer;
  appearance: none;
}
.form-select:focus { border-color: rgba(201,168,76,0.5); }

.form-textarea {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--light);
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Heebo', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  text-align: right;
  width: 100%;
  resize: vertical;
  min-height: 130px;
}
.form-textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-textarea::placeholder { color: var(--muted); }

.form-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 19px 40px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.form-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 14px 50px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  background: var(--dark-2);
  padding: 44px 40px;
  position: relative;
}
.testimonial-quote-mark {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -18px;
  display: block;
}
.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--mid);
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.07rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; fofont-size: 1.1rem;argin-bottom: 3px; }
.testimonial-role { fonfont-size: 0.87rem;lor: var(--muted); letter-spacing: 0.04em; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-main {
  padding: 80px 64px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  fonfont-size: 0.85rem;color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 1.07rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  fonfont-size: 0.94rem;transition: all 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  fofont-size: 0.83rem; letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.07rem;
  transition: color 0.3s;
  letter-spacing: 0.03em;
}
.footer-col-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { ffont-size: 0.89rem;color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; list-style: none; }
.footer-bottom-links a { ffont-size: 0.89rem;color: var(--muted); text-decoration: none; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 400;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 1.5rem;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 16px 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 140px 28px 80px; }
  .container { padding: 0 28px; }

  .footer-main { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 20px 28px; text-align: center; }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.98);
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    z-index: 490;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    list-style: none;
  }
  .nav-mobile.open { transform: translateX(0); }
  .nav-mobile li { border-bottom: 1px solid var(--border); }
  .nav-mobile a {
    display: block;
    padding: 20px 0;
    color: var(--mid);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    transition: color 0.3s;
  }
  .nav-mobile a:hover { color: var(--gold); }
  .nav-mobile .nav-cta {
    margin-top: 24px;
    text-align: center;
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 18px !important;
  }
}

/* ── GLOBAL READABILITY OVERRIDES ── */
p, li, .fw-desc, .offering-desc, .testimonial-text, .about-body,
.step-desc, .wyg-desc, .podcast-desc, .footer-brand-desc {
  font-size: 1.1rem !important;
  line-height: 1.95 !important;
  font-weight: 400 !important;
}
.section-label-text, .eyebrow-text {
  font-size: 0.85rem !important;
}
.fw-title, .offering-title {
  font-size: 1.35rem !important;
}
.stat-label {
  font-size: 0.95rem !important;
}
.nav-links a {
  font-size: 1rem !important;
}
.footer-col-links a {
  font-size: 1rem !important;
}
.btn-primary, .btn-outline, .btn-ghost {
  font-size: 1rem !important;
}
.testimonial-name {
  font-size: 1rem !important;
}
.testimonial-role {
  font-size: 0.9rem !important;
}
.credential {
  font-size: 1rem !important;
}
.footer-copy {
  font-size: 0.9rem !important;
}
