/* ═══════════════════════════════════════════════════
   YOUNGIVERS DESIGN SYSTEM — Warm Cream / Gold / Sage
   Light-first, brand-aligned palette.
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:         #FAF7F0;
  --bg-subtle:  #F0EBE0;
  --surface:    #FFFFFF;
  --surface-2:  #F5F1EC;
  --surface-3:  #EBE6DD;
  --sky:        #E8F0F6;

  --pur:        #5B3D8B;
  --pur-bright: #7B5DAB;
  --pur-deep:   #3D2660;
  --pur-soft:   #EDE7F8;
  --pur-glow:   rgba(91,61,139,0.08);

  --amb:        #E8923A;
  --amb-soft:   #F0A854;
  --amb-dk:     #C97428;
  --amb-glow:   rgba(232,146,58,0.1);

  --gold:       #C8A24E;
  --coral:      #D4776A;
  --sage:       #5B8B6B;
  --sage-soft:  #8AB89A;

  --text:       #2C2420;
  --text-2:     #6B5E58;
  --text-3:     #6B5E54;

  --border:     rgba(91,61,139,0.08);
  --border-2:   rgba(91,61,139,0.15);

  --glass:      rgba(250,247,240,0.92);
  --glass-border: rgba(91,61,139,0.06);

  --bg-dark:    #1A0F36;
  --bg-dark-surface: #2D1855;
  --footer-text-dim: rgba(255,255,255,0.55);

  --r:       16px;
  --r-lg:    20px;
  --r-xl:    28px;
  --r-full:  50px;

  --shadow:     0 2px 12px rgba(0,0,0,0.04);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 40px rgba(91,61,139,0.06);

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --dur:       0.25s;
  --dur-slow:  0.5s;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  direction: rtl;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  font-size: 1rem;
  line-height: 1.75;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── PROGRESS BAR ── */
#prog {
  position: fixed; top: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--pur), var(--amb));
  width: 0; z-index: 10000;
  transition: width 0.1s;
  filter: drop-shadow(0 0 6px var(--pur-glow));
}

/* ── DARK SECTION (course hero, pricing, footer) ── */
.dark-section {
  background: var(--bg-dark);
  color: #EDE8F5;
}
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: #FFFFFF;
}
.dark-section p,
.dark-section span,
.dark-section li,
.dark-section a {
  color: #EDE8F5;
}
.dark-section .section-label {
  background: var(--bg-dark-surface);
  border-color: rgba(255,255,255,0.1);
  color: var(--gold);
}
.dark-section .btn-primary {
  background: linear-gradient(135deg, var(--amb), var(--amb-dk));
  box-shadow: 0 8px 32px rgba(232,146,58,0.3);
}
.dark-section .btn-ghost {
  border-color: rgba(255,255,255,0.2);
  color: #EDE8F5;
}
.dark-section .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* ── GOLD LINES DECORATIVE BG ── */
.gold-lines {
  position: relative;
}
.gold-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 48%, rgba(200,162,78,0.06) 49%, rgba(200,162,78,0.06) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(200,162,78,0.04) 49%, rgba(200,162,78,0.04) 51%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── WATERCOLOR TEXTURE ── */
.watercolor-bg {
  position: relative;
}
.watercolor-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(91,61,139,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(232,146,58,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(91,139,107,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 900;
  padding: 0 24px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--dur-slow) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem;
  color: var(--pur);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--pur), var(--amb));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface-2);
}
.nav-links a.highlight {
  color: var(--amb);
  font-weight: 700;
}

/* Nav CTA */
.btn-nav {
  background: linear-gradient(135deg, var(--amb), var(--amb-soft));
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.85rem; font-weight: 700;
  border: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--amb-glow);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.mobile-nav {
  display: none; flex-direction: column; align-items: center;
  gap: 16px; padding: 32px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.2rem; font-weight: 700; color: var(--text);
  width: 100%; text-align: center;
}
.mobile-nav .btn-accent {
  background: linear-gradient(135deg, var(--amb), var(--amb-dk));
  color: #fff;
  box-shadow: 0 6px 20px var(--amb-glow);
  width: auto;
  justify-content: center;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--amb), var(--amb-dk));
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--r-full);
  font-size: 1rem; font-weight: 800;
  border: none;
  box-shadow: 0 8px 32px var(--amb-glow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,146,58,0.2);
}
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--pur), var(--pur-deep));
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--r-full);
  font-size: 1rem; font-weight: 800;
  border: none;
  box-shadow: 0 8px 32px var(--pur-glow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(91,61,139,0.15);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border-2);
  color: var(--pur);
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 1rem; font-weight: 700;
  background: var(--surface);
  transition: all var(--dur) var(--ease);
}
.btn-ghost:hover {
  background: var(--pur-soft);
  border-color: var(--pur);
  color: var(--pur-deep);
}

/* ── SECTION PATTERNS ── */
.section {
  position: relative;
  z-index: 1;
  padding: 72px 24px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pur);
  background: var(--pur-soft);
  padding: 5px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ── CARDS ── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--dur) var(--ease);
}
.glass-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  direction: ltr;
  text-align: left;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.ticker-track span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  flex-shrink: 0;
  direction: rtl;
}
.ticker-track .ticker-dot {
  color: var(--pur) !important;
  font-weight: 300 !important;
  font-size: 1.1rem !important;
}
.ticker-track .ticker-accent {
  color: var(--amb) !important;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  padding: 140px 24px 100px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,146,58,0.06) 0%, rgba(91,61,139,0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  animation: fadeDown 0.6s var(--ease-out) both;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}
.hero h1 em {
  font-style: normal;
  color: var(--amb);
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-2);
  margin-bottom: 36px;
  font-weight: 500;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero-tagline .brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--pur);
}
.hero-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}
.hero-body strong {
  color: var(--text);
  font-weight: 700;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  animation: fadeUp 0.7s var(--ease-out) 0.4s both;
}
.hero-crisis-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-3);
  transition: color var(--dur) var(--ease);
  animation: fadeUp 0.7s var(--ease-out) 0.5s both;
}
.hero-crisis-link:hover {
  color: var(--coral);
}
.hero-video {
  max-width: 560px;
  margin: 48px auto 0;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.7s var(--ease-out) 0.6s both;
  position: relative;
}
.hero-video iframe {
  width: 100%; height: 100%; border: none;
}
/* Hide YouTube title overlay on all video containers */
.hero-video::after,
.webinars-player::after,
.presenter-video::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── YOUTUBE THUMBNAIL COMPONENT ── */
.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.yt-thumb:hover img {
  transform: scale(1.03);
}
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 2;
}
.yt-play svg {
  width: 28px; height: 28px;
  fill: #fff;
  margin-right: -2px;
}
.yt-thumb:hover .yt-play {
  background: var(--amb);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ── NAMING SECTION ── */
.naming {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.naming-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.naming h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.naming h2 .brand {
  font-family: 'Fraunces', serif;
  color: var(--amb);
  font-weight: 700;
}
.naming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.naming-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: 3px solid var(--pur);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: right;
  box-shadow: var(--shadow);
  transition: all var(--dur) var(--ease);
}
.naming-card:hover {
  border-color: var(--border-2);
  border-right-color: var(--amb);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.naming-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.naming-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}
.naming-close {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ── SERVICES ── */
.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow);
  transition: all var(--dur) var(--ease);
}
.service-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card.featured {
  border-color: var(--amb);
  border-width: 2px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  padding: 36px 32px;
}
.service-badge {
  position: absolute;
  top: -11px; right: 24px;
  background: var(--amb);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-cta {
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pur);
  transition: color var(--dur) var(--ease);
}
.service-cta:hover { color: var(--pur-bright); }
.service-card.featured .service-cta {
  background: linear-gradient(135deg, var(--amb), var(--amb-dk));
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
}
.service-card.featured .service-cta:hover {
  background: linear-gradient(135deg, var(--amb-soft), var(--amb));
}

/* Clickable service cards */
a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.service-card:hover .service-cta {
  color: var(--pur-bright);
}
a.service-card.featured:hover .service-cta {
  background: linear-gradient(135deg, var(--amb-soft), var(--amb));
  color: #fff;
}

/* After-caregiving cards grid */
.dimoos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}

/* 5th naming card centered */
.naming-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

/* Services accessibility note */
.services-accessibility {
  text-align: center;
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}
.access-text {
  margin-bottom: 24px;
}
.access-text p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 8px;
}
.access-text p:last-child {
  margin-bottom: 0;
}
.access-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FEATURES TICKER ── */
.features-ticker {
  overflow: hidden;
  padding: 16px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  direction: ltr;
  text-align: left;
}
.features-ticker .ticker-track {
  gap: 32px;
}
.features-ticker .ticker-track span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-2);
  direction: rtl;
}
.features-ticker .ft-truth {
  color: var(--amb) !important;
}
.features-ticker .ft-dot {
  color: var(--text-3) !important;
  font-weight: 300 !important;
  font-size: 1.1rem !important;
}

/* ── WEBINARS ── */
.webinars-player {
  max-width: 720px;
  margin: 0 auto 32px;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.webinars-player iframe {
  width: 100%; height: 100%; border: none;
}
.webinars-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.webinar-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--r-full);
}

/* ── PRESENTERS ── */
.presenters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.presenter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--dur) var(--ease);
}
.presenter-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.presenter-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--pur-soft);
}
.presenter-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.presenter-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  position: relative;
}
.presenter-video iframe {
  width: 100%; height: 100%; border: none;
}
.presenter-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}
.presenter-role {
  font-size: 0.9rem;
  color: var(--pur);
  font-weight: 600;
  margin-bottom: 14px;
}
.presenter-bio {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ── PARTNERS ── */
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 100px;
  opacity: 0.85;
  transition: all var(--dur) var(--ease);
}
.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ── FAQ ── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(91,61,139,0.1);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.02),
    0 8px 32px rgba(91,61,139,0.06);
  overflow: hidden;
}
.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(91,61,139,0.07);
  transition: background 0.3s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pur-bright), var(--amb));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-item:hover { background: rgba(91,61,139,0.025); }
.faq-item:hover::before { opacity: 1; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px 20px 28px;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}
.faq-q span {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  text-align: right;
}
/* Chevron — clean line, no circle */
.faq-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-icon svg {
  width: 20px; height: 20px;
  fill: var(--amb);
  opacity: 0.7;
  transition: opacity 0.2s ease, fill 0.2s ease;
}
.faq-item:hover .faq-icon svg { opacity: 1; }
.faq-q.open .faq-icon {
  transform: rotate(180deg);
}
.faq-q.open .faq-icon svg {
  fill: var(--pur);
  opacity: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 36px 24px 28px;
  font-size: 0.94rem;
  color: var(--text-2);
  line-height: 1.9;
}
.faq-a-inner a {
  color: var(--pur);
  font-weight: 700;
  text-decoration-color: rgba(91,61,139,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.faq-a-inner a:hover {
  text-decoration-color: var(--pur);
}

/* ── SHARE ── */
.share-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.share-text {
  font-size: 0.88rem;
  color: var(--text-3);
  font-weight: 600;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  transition: all var(--dur) var(--ease);
}
.share-btn:hover {
  border-color: var(--border-2);
  color: var(--text);
}
.share-btn.wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.share-btn.wa:hover {
  background: #1da851;
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text);
}
.contact-section p {
  color: var(--text-2);
  margin-bottom: 24px;
}
.contact-email {
  display: inline-block;
  color: var(--pur);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 28px;
  transition: color var(--dur) var(--ease);
}
.contact-email:hover { color: var(--pur-bright); }
.contact-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── EVENT STRIP ── */
.event-strip {
  padding: 14px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--pur-deep), var(--pur), var(--pur-deep));
  background-size: 200% 200%;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  animation: strip-shift 6s ease infinite;
}
.event-strip a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes strip-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 40px 24px 20px;
  background: var(--bg-dark);
  color: #EDE8F5;
  border-top: none;
}
.footer-compact {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-brand {
  flex: 0 0 auto;
  max-width: 240px;
}
.footer-links {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 8px;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.footer-links a:hover { color: var(--amb); }
.footer-share {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--amb); }
.site-footer .logo {
  color: #fff;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── STAGGERED CARD REVEALS ── */
.naming-card {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.naming-grid.visible .naming-card:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.naming-grid.visible .naming-card:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.15s; }
.naming-grid.visible .naming-card:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.25s; }
.naming-grid.visible .naming-card:nth-child(4) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.35s; }
.naming-grid.visible .naming-card:nth-child(5) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.45s; }

/* ── SERVICE CARD HOVER ACCENT ── */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pur-glow), transparent, var(--amb-glow));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card.featured::before {
  background: linear-gradient(135deg, var(--amb-glow), transparent, var(--pur-glow));
}

/* ── SHIMMER TEXT EFFECT ── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--amb), var(--gold), var(--amb));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ── SECTION DIVIDER LINE ── */
.section-header::after {
  content: '';
  display: block;
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, var(--pur), var(--amb));
  margin: 24px auto 0;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), width 0.6s var(--ease-out);
}
.section-header.visible::after,
.reveal.visible .section-header::after,
.section-header:has(.visible)::after {
  opacity: 0.6;
  width: 80px;
}

/* ── LOGO ICON SPIN ON HOVER ── */
.logo:hover .logo-icon {
  animation: logo-wiggle 0.5s var(--ease);
}
@keyframes logo-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* ── RESPONSIVE — LARGER SCREENS (iPad, Desktop) ── */
@media (min-width: 769px) {
  body { font-size: 1.05rem; }
  .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }
  .section-sub { font-size: 1.1rem; }
  .btn-primary, .btn-ghost { font-size: 1.05rem; padding: 16px 36px; }
  .service-card p, .naming-card p, .dimoos-card p { font-size: 1rem; line-height: 1.8; }
  .hero-body { font-size: 1.15rem; }
}

@media (min-width: 1024px) {
  body { font-size: 1.1rem; }
  .section { padding: 100px 40px; }
  .section-title { font-size: clamp(2.2rem, 4vw, 3rem); }
  .section-sub { font-size: 1.15rem; max-width: 700px; }
  .btn-primary, .btn-ghost { font-size: 1.1rem; padding: 18px 40px; }
  .hero h1 { font-size: clamp(2.8rem, 5vw, 4rem); }
  .hero-body { font-size: 1.2rem; }
  .service-card p, .naming-card p, .dimoos-card p { font-size: 1.05rem; }
  .presenter-bio { font-size: 1rem; }
  .faq-q { font-size: 1.1rem; }
  .faq-a { font-size: 1rem; }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 20px 80px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-body { font-size: 1rem; }
  .hero-video { max-width: 100%; margin-top: 32px; }

  .section { padding: 72px 20px; }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .naming-grid {
    grid-template-columns: 1fr;
  }
  .dimoos-grid {
    grid-template-columns: 1fr;
  }
  .naming-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
  .presenters-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .faq-list { border-radius: 16px; }
  .faq-q { padding: 18px 20px; gap: 16px; }
  .faq-q span { font-size: 0.95rem; }
  .faq-a-inner { padding: 0 20px 20px; }

  .share-inline {
    flex-direction: column;
    gap: 8px;
  }

  .yt-thumb {
    border-radius: var(--r);
  }

  /* Footer mobile */
  .footer-compact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand > div:last-child {
    justify-content: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-share {
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ── BUY MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  max-width: 440px; width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.25s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; left: 16px;
  background: none; border: none;
  font-size: 1.3rem; color: var(--text-3);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--r);
  transition: all var(--dur) var(--ease);
}
.modal-close:hover { background: var(--surface-2); color: var(--text); }
.modal h3 {
  font-size: 1.2rem; font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.modal input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--surface-2);
  outline: none;
  margin-bottom: 12px;
  direction: rtl;
  transition: border-color var(--dur) var(--ease);
}
.modal input:focus { border-color: var(--pur); }
.modal input::placeholder { color: var(--text-3); }
.modal-row { display: flex; gap: 10px; }
.modal-row > * { flex: 1; }
.modal-submit {
  width: 100%;
  padding: 14px;
  margin-top: 4px;
}
.modal-legal {
  font-size: 0.72rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── B2B BRIDGE ── */
.org-bridge {
  text-align: center;
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--text-2);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.org-bridge a {
  color: var(--amb);
  font-weight: 600;
  margin-right: 6px;
  transition: color var(--dur) var(--ease);
}
.org-bridge a:hover { color: var(--amb-dk); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #5B3D8B;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* ── FOCUS-VISIBLE ── */
:focus-visible {
  outline: 3px solid #5B3D8B;
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid #5B3D8B;
  outline-offset: 2px;
}

/* ── FAQ BUTTON RESET ── */
button.faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
