/* ============ RESET & TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Rubik', 'Assistant', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

:root {
  --red: #e74c3c;
  --red-dark: #c0392b;
  --red-soft: #fdece9;
  --cream: #faf3e8;
  --cream-dark: #f2e6d0;
  --ink: #3d2817;
  --ink-soft: #6b4a30;
  --ink-mute: #8a6b52;
  --gold: #f4c430;
  --white: #ffffff;
  --border: rgba(61, 40, 23, 0.08);
  --border-strong: rgba(61, 40, 23, 0.15);
  --shadow-sm: 0 2px 8px rgba(61, 40, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(61, 40, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(61, 40, 23, 0.12);
  --shadow-red: 0 8px 24px rgba(231, 76, 60, 0.25);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1200px;
}

/* ============ HELPERS ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-cream { background: var(--cream-dark); }
.section-dark { background: var(--ink); color: var(--white); }
.skip-link {
  position: absolute; top: -100px; right: 1rem;
  background: var(--ink); color: var(--white);
  padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 243, 232, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; min-height: 72px;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.brand-dot {
  width: 14px; height: 14px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}
.brand-text { letter-spacing: -0.01em; }

.main-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  display: flex; align-items: center; gap: 1.75rem;
  font-size: .95rem; font-weight: 500;
}
.nav-list a {
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-list a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background .2s, transform .1s;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: var(--cream);
}
.hero-shape {
  position: absolute; border-radius: 50%; z-index: 0;
  background: var(--red); opacity: 0.06;
  filter: blur(2px);
}
.hero-shape-1 { top: -100px; right: -150px; width: 500px; height: 500px; }
.hero-shape-2 { bottom: -200px; left: -100px; width: 400px; height: 400px; opacity: 0.04; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-copy { max-width: 600px; }
.tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  color: var(--red);
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.tag-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  display: inline-block;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 600;
  transition: transform .1s, background .2s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 12px 30px rgba(231, 76, 60, 0.35); }
.btn-ghost {
  background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--cream-dark); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: calc(.95rem - 2px) calc(1.75rem - 2px);
  transition: background .2s, color .2s;
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-arrow { font-size: 1.1em; transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(-3px); }

.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-strong);
}
.stat b {
  display: block; font-size: 1.75rem; font-weight: 700;
  color: var(--red); line-height: 1;
}
.stat span {
  font-size: .8rem; color: var(--ink-mute);
  margin-top: .3rem; display: block;
}

/* Hero image */
.hero-image { position: relative; justify-self: center; }
.hero-image-frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4/5;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  background: var(--red-soft);
  box-shadow: var(--shadow-lg);
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid var(--white);
  border-radius: 200px 200px 24px 24px;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 20px; right: -20px;
  background: var(--white);
  padding: .7rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .5rem;
  color: var(--ink);
}

/* ============ MARQUEE ============ */
.clients-strip {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.strip-label {
  text-align: center;
  color: var(--ink-mute);
  font-size: .85rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
}
.marquee-track img {
  flex-shrink: 0;
  width: 140px;
  height: 70px;
  object-fit: contain;
  padding: 8px 16px;
  opacity: 1;
  transition: transform .3s;
}
.marquee-track img:hover {
  transform: scale(1.08);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; margin-bottom: 3rem; }
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold); }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-title em { font-style: normal; color: var(--red); }
.section-title-light { color: var(--white); }
.section-title-light em { color: var(--gold); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-copy .lead {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.credentials {
  list-style: none;
  display: flex; flex-direction: column;
  gap: .65rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-top: 1rem;
}
.credentials li {
  display: flex; gap: .75rem;
  align-items: start;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.5;
}
.credentials li span {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.about-quote {
  background: var(--red);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.about-quote blockquote {
  font-family: 'Rubik', serif;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1rem;
  quotes: '"' '"';
}
.about-quote cite {
  font-style: normal;
  font-size: .9rem;
  opacity: 0.9;
  font-weight: 600;
}

/* ============ PROGRAM ============ */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 260px; height: 260px;
  background: var(--red);
  opacity: 0.05;
  border-radius: 50%;
}
.program-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: .5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  position: relative;
}
.program-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
}
.program-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 750px;
  margin-bottom: 2.5rem;
  position: relative;
}
.program-subhead {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink, #3d2817);
  margin: 2rem 0 .5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--red, #e74c3c);
  display: inline-block;
  letter-spacing: -0.01em;
  position: relative;
}
.program-sublead {
  color: var(--ink-soft, #6b4a30);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  position: relative;
}
.program-intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}
@media (max-width: 800px) {
  .program-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}
.program-intro-text .program-badge { margin-bottom: 1rem; }
.program-intro-quote { align-self: center; }
.program-quote {
  margin: 0;
  padding: 1.75rem 2rem 1.75rem 1.75rem;
  background: linear-gradient(135deg, rgba(231,76,60,0.10), rgba(231,76,60,0.03));
  border-right: 4px solid var(--red, #e74c3c);
  border-radius: 12px;
  position: relative;
}
.program-quote::before {
  content: '"';
  position: absolute;
  top: -.2rem; right: 1rem;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--red, #e74c3c);
  opacity: 0.35;
  line-height: 1;
}
.program-quote p {
  font-family: 'Frank Ruhl Libre', 'Assistant', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink, #3d2817);
  line-height: 1.35;
  margin: 0;
  padding-right: 1rem;
  font-style: italic;
}
.program-quote p span {
  font-size: 1.1rem;
  color: var(--ink-soft, #6b4a30);
  font-weight: 400;
  display: block;
  margin-top: .35rem;
}
.program-quote cite {
  display: block;
  margin-top: .9rem;
  font-family: 'Assistant', sans-serif;
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  color: var(--red, #e74c3c);
  letter-spacing: .01em;
}
.program-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (max-width: 900px) {
  .program-topics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .program-topics { grid-template-columns: 1fr; }
}
.topic {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.topic:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.topic-num {
  font-size: .85rem; font-weight: 700;
  color: var(--red);
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.topic h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
}
.topic .topic-tagline {
  font-size: .82rem;
  color: var(--red, #e74c3c);
  font-weight: 600;
  font-style: italic;
  margin-bottom: .55rem;
  line-height: 1.4;
}
.topic p {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.program-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px dashed var(--border-strong);
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: 2rem;
  position: relative;
}
.meta-item {
  text-align: center;
}
.meta-item b {
  display: block;
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .3rem;
  line-height: 1;
}
.meta-item span {
  font-size: .85rem;
  color: var(--ink-soft);
}

/* ============ LECTURES ============ */
.lecture-tabs {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
  padding: .5rem;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  max-width: fit-content;
  margin-inline: auto;
}
.tab {
  padding: .75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: .95rem; font-weight: 600;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.tab:hover { color: var(--red); }
.tab.active {
  background: var(--red);
  color: var(--white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .3s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.lecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.lecture-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.lecture-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lecture-card.featured {
  background: linear-gradient(135deg, var(--red-soft) 0%, var(--white) 60%);
  border: 2px solid var(--red);
}
.lecture-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
  display: inline-block;
}
.lecture-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.lecture-card p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ SECTION LEAD & LECTURE EXTRAS ============ */
.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 1.25rem auto 0;
  text-align: center;
}
.lecture-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--text-mute);
  margin: 2.5rem 0 1.5rem;
  letter-spacing: 0.01em;
}
.lecture-cta { text-align: center; }

/* ============ MEETINGS ============ */
.meetings { position: relative; overflow: hidden; }
.meetings::before {
  content: '';
  position: absolute;
  top: 20%; left: -10%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(220,20,60,0.15), transparent 60%);
  pointer-events: none;
}
.meetings .container { position: relative; z-index: 1; }
.meetings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.meeting-card {
  background: #ffffff;
  border: 1px solid rgba(61, 40, 23, 0.1);
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(61, 40, 23, 0.08);
}
.meeting-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.12), transparent 60%);
  pointer-events: none;
}
.meeting-card:hover {
  border-color: var(--red, #e74c3c);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(231, 76, 60, 0.18);
}
.meeting-head {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--red, #e74c3c);
  margin-bottom: .5rem;
  position: relative;
}
.meeting-tag {
  font-size: .78rem;
  font-weight: 700;
  color: var(--red, #e74c3c);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.meeting-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink, #3d2817);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.meeting-sub {
  font-size: .95rem;
  color: var(--ink-soft, #6b4a30);
  font-weight: 500;
  font-style: italic;
}
.meeting-desc {
  color: var(--ink-soft, #6b4a30);
  font-size: 1rem;
  line-height: 1.7;
}
.meeting-bullets {
  list-style: none;
  padding: 1rem 0;
  border-top: 1px dashed rgba(61, 40, 23, 0.15);
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.meeting-bullets li {
  display: flex;
  align-items: start;
  gap: .6rem;
  font-size: .95rem;
  color: var(--ink, #3d2817);
  line-height: 1.5;
}
.meeting-bullets li span {
  color: var(--red, #e74c3c);
  font-weight: 700;
  flex-shrink: 0;
}
.meeting-card .btn { margin-top: auto; align-self: flex-start; }

/* ============ SECTION DIVIDER (graphic separator) ============ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 500px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.4), transparent);
}
.divider-dot {
  width: 10px;
  height: 10px;
  background: var(--red, #e74c3c);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.18);
  flex-shrink: 0;
}

/* ============ CLIENTS QUICKNAV (jump to category) ============ */
.client-quicknav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 0 auto 2.5rem;
  max-width: 900px;
  padding: 0 1rem;
}
.client-quicknav a {
  padding: .55rem 1.15rem;
  background: var(--white, #ffffff);
  color: var(--ink-soft, #6b4a30);
  border: 1.5px solid rgba(61, 40, 23, 0.15);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(61, 40, 23, 0.05);
}
.client-quicknav a:hover {
  background: var(--red, #e74c3c);
  color: #ffffff;
  border-color: var(--red, #e74c3c);
  transform: translateY(-2px);
}
.client-group {
  scroll-margin-top: 90px;
}

/* ============ CLIENTS GRID ============ */
.clients-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.client-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
  position: relative;
  padding-bottom: .75rem;
}
.client-group-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: 1fr; }
}
.client-logo {
  background: var(--white);
  padding: 1rem .75rem .85rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: .6rem;
  min-height: 180px;
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.client-logo-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 110px;
}
.client-logo img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform .3s;
}
.client-label {
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.3;
  padding-top: .35rem;
  border-top: 1px dashed var(--border-strong);
  width: 100%;
}
.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.client-logo:hover img {
  transform: scale(1.06);
}
.client-logo:hover .client-label {
  color: var(--red);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 10%; right: -100px;
  width: 400px; height: 400px;
  background: var(--red);
  opacity: 0.04;
  border-radius: 50%;
  z-index: 0;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: 5%; left: -80px;
  width: 300px; height: 300px;
  background: var(--gold);
  opacity: 0.07;
  border-radius: 50%;
  z-index: 0;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.testimonial {
  flex: 0 0 100%;
  padding: 3.5rem 3rem 2.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px;
}
.testimonial-logo {
  height: 60px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-logo img {
  max-height: 60px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}
.quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.9;
}
.testimonial p {
  font-size: 1.35rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 auto 2rem;
  font-weight: 500;
  max-width: 640px;
  font-style: italic;
}
.testimonial footer {
  display: flex; flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--red);
  position: relative;
}
.testimonial footer::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.testimonial footer b {
  font-weight: 700;
  color: var(--red);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.testimonial footer span {
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.35);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover {
  background: var(--red-dark, #c0392b);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(231, 76, 60, 0.5);
}
.slider-prev { right: -24px; }
.slider-next { left: -24px; }

.slider-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.slider-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background .2s, transform .2s;
}
.slider-dots button.active {
  background: var(--red);
  transform: scale(1.4);
}

/* ============ CONTACT ============ */
.contact {
  color: var(--ink);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--red-soft) 100%);
}
.contact::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--red);
  opacity: 0.06;
  border-radius: 50%;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 260px; height: 260px;
  background: var(--gold);
  opacity: 0.1;
  border-radius: 50%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-copy .section-title { text-align: right; margin-bottom: 1rem; }
.contact-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-people {
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.person {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-right: 4px solid var(--red);
  transition: transform .2s, box-shadow .2s;
}
.person:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.person-role {
  font-size: .78rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: .3rem;
  text-transform: uppercase;
}
.person-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
.person-links {
  display: flex; flex-direction: column;
  gap: .5rem;
}
.contact-link {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color .2s;
  padding: .3rem 0;
}
.contact-link:hover { color: var(--red); }
.contact-icon {
  width: 32px; height: 32px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.form-row .field { margin-bottom: 1rem; }
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: #fffaf0;
  border: 2px solid rgba(61, 40, 23, 0.22);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: inherit;
}
.field input:hover,
.field textarea:hover {
  border-color: rgba(61, 40, 23, 0.4);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-note {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-mute);
  margin-top: 1rem;
}

/* Honeypot: hidden from humans, visible to bots */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Form status message */
.form-status {
  min-height: 1.4em;
  margin-top: 1rem;
  text-align: center;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--ink-mute);
}
.form-status[data-state="success"] {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-weight: 600;
}
.form-status[data-state="error"] {
  color: var(--red-dark);
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.35);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-weight: 600;
}
#contact-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 2rem 0;
  border-top: 4px solid var(--red);
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem;
}
.footer-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.footer-tag {
  font-size: .8rem;
  opacity: 0.7;
}
.footer-links {
  display: flex; gap: 1.5rem;
  font-size: .95rem;
  font-weight: 500;
}
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .85rem;
  opacity: 0.6;
}

/* ============ MASCOT FAB (Lee character) ============ */
.mascot-fab {
  position: fixed;
  bottom: 16px;
  left: 20px;
  z-index: 95;
  display: block;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.mascot-fab img {
  height: 190px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(220, 20, 60, 0.28));
  transition: filter .3s;
}
.mascot-fab:hover {
  transform: translateY(-8px) rotate(-3deg);
}
.mascot-fab:hover img {
  filter: drop-shadow(0 16px 32px rgba(220, 20, 60, 0.4));
}
.mascot-wa {
  position: absolute;
  top: 3%;
  left: -14px;
  width: 34px;
  height: 34px;
  background: #25d366;
  border: 2.5px solid #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2s ease-out infinite;
}
.mascot-wa svg { width: 16px; height: 16px; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 6px rgba(37, 211, 102, 0.15); }
}
.mascot-bubble {
  position: absolute;
  bottom: 25%;
  left: 60px;
  background: #ffffff;
  color: #3d2817;
  padding: .7rem 1.1rem;
  border-radius: 4px 20px 20px 20px;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(61, 40, 23, 0.18);
  opacity: 0;
  transform: translate(-10px, -5px) scale(0.9);
  transform-origin: top left;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  border: 1px solid rgba(220, 20, 60, 0.15);
}
.mascot-fab:hover .mascot-bubble {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media (max-width: 720px) {
  .mascot-fab { bottom: 8px; left: 10px; }
  .mascot-fab img { height: 130px; }
  .mascot-wa { width: 28px; height: 28px; top: 3%; left: -10px; }
  .mascot-wa svg { width: 13px; height: 13px; }
  .mascot-bubble { font-size: .78rem; padding: .55rem .85rem; left: 45px; bottom: 30%; }
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-fab::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.3;
  z-index: -1;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-copy { max-width: none; order: 2; text-align: center; }
  .hero-image { order: 1; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-quote { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-copy .section-title { text-align: right; }
  .program-card { padding: 2rem 1.5rem; }
  .meetings-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list a { font-size: 1.05rem; }
  .nav-cta { align-self: center; }
  .hero { padding: 2.5rem 0 3rem; }
  .hero-badge { bottom: 10px; right: 0; font-size: .8rem; padding: .5rem .9rem; }
  .hero-image-frame { max-width: 320px; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; justify-content: space-around; }
  .stat b { font-size: 1.4rem; }
  .lecture-tabs { max-width: 100%; overflow-x: auto; flex-wrap: nowrap; padding: .35rem; }
  .tab { padding: .6rem 1rem; font-size: .85rem; white-space: nowrap; }
  .testimonial { padding: 2rem 1.5rem; }
  .testimonial p { font-size: 1rem; }
  .slider-prev { right: 8px; }
  .slider-next { left: 8px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .contact-form { padding: 1.75rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .whatsapp-fab { width: 54px; height: 54px; bottom: 16px; left: 16px; }
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
