/* =========================================================
   ASK HEKMAT — Main Stylesheet
   Dark Purple Theme | Animated | Premium
   ========================================================= */

/* ─── 1. DESIGN TOKENS ──────────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:          #06000f;
  --clr-bg-1:        #0d0020;
  --clr-bg-2:        #150030;
  --clr-bg-3:        #1e0040;
  --clr-surface:     rgba(30, 0, 64, 0.5);
  --clr-surface-2:   rgba(50, 0, 100, 0.4);

  --clr-primary:     #9b51e0;
  --clr-primary-lt:  #c084fc;
  --clr-primary-dk:  #7c3aed;
  --clr-accent:      #e879f9;
  --clr-cyan:        #22d3ee;
  --clr-gold:        #fbbf24;

  --clr-white:       #ffffff;
  --clr-gray-100:    #f4f4f5;
  --clr-gray-400:    #a1a1aa;
  --clr-gray-600:    #52525b;
  --clr-gray-800:    #27272a;

  --clr-border:      rgba(155, 81, 224, 0.2);
  --clr-border-lt:   rgba(155, 81, 224, 0.5);
  --clr-glass:       rgba(13, 0, 32, 0.7);

  /* Gradients */
  --grad-primary:    linear-gradient(135deg, #7c3aed 0%, #9b51e0 50%, #e879f9 100%);
  --grad-hero:       radial-gradient(ellipse at 50% 50%, #2d0060 0%, #0d0020 50%, #06000f 100%);
  --grad-card:       linear-gradient(135deg, rgba(30,0,64,0.8) 0%, rgba(13,0,32,0.9) 100%);
  --grad-glow:       radial-gradient(ellipse at center, rgba(155,81,224,0.3) 0%, transparent 70%);
  --grad-text:       linear-gradient(135deg, #c084fc 0%, #e879f9 50%, #22d3ee 100%);

  /* Typography */
  --font-display:    'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-md:    1.125rem;
  --fs-lg:    1.25rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   2rem;
  --fs-3xl:   2.5rem;
  --fs-4xl:   3.5rem;
  --fs-5xl:   4.5rem;
  --fs-6xl:   6rem;

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold: 600;
  --fw-bold:    700;

  --lh-tight:   1.1;
  --lh-snug:    1.3;
  --lh-normal:  1.6;
  --lh-relaxed: 1.8;

  /* Spacing */
  --sp-xs:   0.25rem;
  --sp-sm:   0.5rem;
  --sp-md:   1rem;
  --sp-lg:   1.5rem;
  --sp-xl:   2rem;
  --sp-2xl:  3rem;
  --sp-3xl:  4rem;
  --sp-4xl:  6rem;
  --sp-5xl:  8rem;

  /* Border radius */
  --r-sm:   0.25rem;
  --r-md:   0.5rem;
  --r-lg:   1rem;
  --r-xl:   1.5rem;
  --r-2xl:  2rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.6);
  --shadow-purple: 0 0 40px rgba(155,81,224,0.3);
  --shadow-glow:   0 0 80px rgba(155,81,224,0.4);

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.3s ease;
  --t-slow:   0.6s ease;
  --t-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
  --nav-height: 80px;
}

/* ─── 2. RESET & BASE ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--clr-bg);
  color: var(--clr-white);
  line-height: var(--lh-normal);
  overflow-x: hidden;
  cursor: auto;
}

body.loading { overflow: hidden; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { cursor: pointer; }

::selection {
  background: rgba(155, 81, 224, 0.4);
  color: #fff;
}

/* ─── 3. CUSTOM CURSOR (disabled) ───────────────────────── */
.cursor, .cursor-follower { display: none !important; }

/* ─── 4. PAGE LOADER ────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xl);
}

.page-loader__logo {
  width: 80px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.page-loader__logo img { width: 100%; height: auto; filter: brightness(2); }

.page-loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(155, 81, 224, 0.2);
  border-radius: var(--r-full);
  overflow: hidden;
}

.page-loader__bar span {
  display: block;
  height: 100%;
  background: var(--grad-primary);
  animation: loaderBar 1.8s ease-in-out forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}

@keyframes loaderBar {
  0% { width: 0; }
  60% { width: 80%; }
  100% { width: 100%; }
}

/* ─── 5. LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--sp-5xl) 0;
  position: relative;
  overflow: hidden;
}

.section--sm { padding: var(--sp-4xl) 0; }
.section--lg { padding: calc(var(--sp-5xl) * 1.5) 0; }

.section__header {
  text-align: center;
  margin-bottom: var(--sp-4xl);
}

.section__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-primary-lt);
  padding: var(--sp-xs) var(--sp-md);
  border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  backdrop-filter: blur(8px);
  background: rgba(155, 81, 224, 0.08);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-lg);
}

.section__subtitle {
  font-size: var(--fs-md);
  color: var(--clr-gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-2 { margin-top: var(--sp-xl); }

/* ─── 6. NAVIGATION ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background: rgba(6, 0, 15, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__brand { display: flex; align-items: center; flex-shrink: 0; max-height: 60px; overflow: hidden; }
.nav__logo { height: 44px; width: auto; filter: brightness(1.2); }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img,
.custom-logo-link figure,
.custom-logo-link figure img,
.custom-logo,
.site-header img,
.nav__brand img,
.nav__brand figure,
.nav__brand figure img { height: 44px !important; width: auto !important; max-height: 44px !important; max-width: 200px !important; object-fit: contain !important; filter: brightness(1.2); }

/* ─── FULL-SCREEN NAV OVERLAY (always hamburger) ─────────── */
.nav__menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(155,81,224,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,121,249,0.12) 0%, transparent 50%),
              linear-gradient(135deg, rgba(6,0,20,0.98) 0%, rgba(30,0,60,0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  list-style: none;
  padding: 0;
  z-index: 998;
  /* Belt-and-suspenders: clip-path + opacity + visibility */
  clip-path: circle(0% at calc(100% - 40px) 40px);
  opacity: 0;
  visibility: hidden;
  transition: clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0s linear 0.7s,
              visibility 0s linear 0.7s;
  pointer-events: none;
  overflow: hidden;
}

.nav__menu::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,81,224,0.08) 0%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
  animation: navOrbFloat 8s ease-in-out infinite;
}
.nav__menu::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,249,0.06) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  pointer-events: none;
  animation: navOrbFloat 10s ease-in-out infinite reverse;
}
@keyframes navOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, -40px); }
}

.nav__menu.open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  opacity: 1;
  visibility: visible;
  transition: clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0s linear 0s,
              visibility 0s linear 0s;
  pointer-events: all;
}

.nav__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav__menu.open .nav__item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.15s; }
.nav__menu.open .nav__item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.22s; }
.nav__menu.open .nav__item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.29s; }
.nav__menu.open .nav__item:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.36s; }
.nav__menu.open .nav__item:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.43s; }
.nav__menu.open .nav__item:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.50s; }
.nav__menu.open .nav__item:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.57s; }
.nav__menu.open .nav__item:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.64s; }

.nav__link {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.55);
  padding: var(--sp-sm) var(--sp-xl);
  border-radius: var(--r-md);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  position: relative;
  letter-spacing: 0.02em;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: var(--sp-xl);
  width: 0; height: 3px;
  background: var(--grad-primary);
  border-radius: var(--r-full);
  transition: width 0.35s ease;
}

.nav__link:hover, .nav__link.active {
  color: var(--clr-white);
  letter-spacing: 0.06em;
}

.nav__link:hover::after, .nav__link.active::after { width: calc(100% - var(--sp-xl) * 2); }

.nav__item--cta { margin-top: var(--sp-md); }
.nav__item--cta .btn { font-size: 1.1rem; padding: var(--sp-md) var(--sp-2xl); }

/* ─── HAMBURGER TOGGLE (always visible, always on top) ──── */
.nav__toggle {
  display: flex !important;   /* force show on ALL screen sizes */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 52px; height: 52px;
  padding: 0;
  position: relative;
  z-index: 1001;
  border-radius: var(--r-lg);
  border: 1px solid rgba(155,81,224,0.3);
  background: rgba(13, 0, 32, 0.6);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  gap: 0;
  cursor: pointer;
}

.nav__toggle:hover {
  background: rgba(155,81,224,0.2);
  border-color: rgba(155,81,224,0.6);
  box-shadow: 0 0 20px rgba(155,81,224,0.3);
}

.nav__toggle.open {
  background: rgba(155,81,224,0.25);
  border-color: rgba(155,81,224,0.7);
  box-shadow: 0 0 30px rgba(155,81,224,0.4);
}

.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-white);
  border-radius: var(--r-full);
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, width 0.3s ease, background 0.3s ease;
}

.nav__toggle span:nth-child(1) { transform: translateY(-7px); }
.nav__toggle span:nth-child(2) { transform: translateY(0); width: 16px; }
.nav__toggle span:nth-child(3) { transform: translateY(7px); }

.nav__toggle.open span { background: var(--clr-primary-lt); }
.nav__toggle.open span:nth-child(1) { transform: translateY(0) rotate(45deg); width: 22px; }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); width: 22px; }

/* ─── 7. BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  border-radius: var(--r-full);
  transition: transform var(--t-spring), box-shadow var(--t-base), background var(--t-base);
  cursor: auto;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 24px rgba(155, 81, 224, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 8px 40px rgba(155, 81, 224, 0.6);
}

.btn--outline {
  border: 1.5px solid var(--clr-border-lt);
  color: var(--clr-white);
  background: transparent;
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--clr-primary);
  background: rgba(155, 81, 224, 0.1);
}

.btn--ghost {
  color: var(--clr-primary-lt);
  padding-left: 0; padding-right: 0;
}

.btn--ghost:hover { color: var(--clr-white); }

.btn--sm { padding: 0.6rem 1.25rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.1rem 2.5rem; font-size: var(--fs-base); }

.btn__icon {
  width: 20px; height: 20px;
  transition: transform var(--t-base);
}

.btn:hover .btn__icon { transform: translateX(4px); }

/* ─── 8. HERO SECTION ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://askhekmat.com/wp-content/uploads/2023/03/337480814_877690946863360_6475767285392191041_n.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 20s ease;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(232, 121, 249, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 10% 60%, rgba(34, 211, 238, 0.15) 0%, transparent 50%);
  z-index: 2;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.25), transparent);
  bottom: -50px; right: -50px;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent);
  top: 40%; left: 60%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--nav-height) var(--container-pad) 8rem; /* bottom pad keeps content above scroll indicator */
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-primary-lt);
  margin-bottom: var(--sp-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, var(--fs-6xl));
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero__quote {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-md), 2.5vw, var(--fs-xl));
  font-style: italic;
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  max-width: 700px;
  margin: 0 auto var(--sp-2xl);
  padding: var(--sp-lg) var(--sp-2xl);
  border-left: 2px solid var(--clr-primary);
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.9s forwards;
  background: rgba(155, 81, 224, 0.05);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.hero__actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;            /* below hero__content (z-index:10) so buttons stay on top */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--clr-gray-400);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  pointer-events: none;  /* never blocks clicks */
}

.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--clr-primary), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── 9. STATS SECTION ──────────────────────────────────── */
.stats {
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 100%);
  padding: var(--sp-4xl) 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-xl);
}

.stat-card {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  backdrop-filter: blur(12px);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--t-slow);
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-purple); border-color: var(--clr-border-lt); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-card__number {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.stat-card__suffix {
  font-size: var(--fs-2xl);
  vertical-align: super;
}

.stat-card__label {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
}

.stat-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-md);
}

/* ─── 10. SERVICES SECTION ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-xl);
}

.service-card {
  padding: var(--sp-2xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--grad-card);
  backdrop-filter: blur(12px);
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
  cursor: auto;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(155,81,224,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.service-card:hover::after { opacity: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-purple); border-color: var(--clr-border-lt); }

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-lg);
  background: rgba(155, 81, 224, 0.15);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
  font-size: 1.5rem;
  transition: background var(--t-base), transform var(--t-spring);
}

.service-card:hover .service-card__icon {
  background: rgba(155, 81, 224, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-md);
  color: var(--clr-white);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-lg);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
}

.tag {
  display: inline-block;
  font-size: var(--fs-xs);
  padding: 2px 10px;
  border-radius: var(--r-full);
  background: rgba(155, 81, 224, 0.12);
  border: 1px solid var(--clr-border);
  color: var(--clr-primary-lt);
  font-weight: var(--fw-medium);
}

/* ─── 11. ABOUT PREVIEW ─────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: center;
}

.about-split__media {
  position: relative;
}

.about-split__img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-split__img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-primary);
  border-radius: var(--r-2xl);
  z-index: -1;
}

.about-split__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-2xl);
  transition: transform 0.8s ease;
}

.about-split__img-wrap:hover img { transform: scale(1.04); }

.about-split__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-xl);
  padding: var(--sp-lg) var(--sp-xl);
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-purple);
}

.about-split__badge-num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-split__badge-label {
  font-size: var(--fs-xs);
  color: var(--clr-gray-400);
  letter-spacing: 0.05em;
}

.about-split__content {}

.about-split__lead {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--clr-primary-lt);
  margin-bottom: var(--sp-xl);
  line-height: var(--lh-snug);
}

.about-split__text {
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-xl);
}

.about-split__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.about-split__list-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
}

.about-split__list-icon {
  width: 8px; height: 8px;
  background: var(--grad-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── 12. TESTIMONIALS ──────────────────────────────────── */
.testimonials { background: var(--clr-bg-1); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.testimonial-card {
  padding: var(--sp-2xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-purple); }

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--clr-primary);
  margin-bottom: var(--sp-md);
  opacity: 0.5;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--clr-gray-100);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-xl);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--clr-white);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--clr-primary-lt);
}

.testimonial-card__stars {
  position: absolute;
  top: var(--sp-xl);
  right: var(--sp-xl);
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

/* ─── 13. BLOG / POSTS ──────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-xl);
}

.post-card {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  overflow: hidden;
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
}

.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-purple); border-color: var(--clr-border-lt); }

.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--clr-bg-3);
}

.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-card:hover .post-card__thumb img { transform: scale(1.08); }

.post-card__thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--clr-bg-2), var(--clr-bg-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.post-card__body {
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
  font-size: var(--fs-xs);
  color: var(--clr-gray-400);
}

.post-card__cat {
  color: var(--clr-primary-lt);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
}

.post-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-md);
  color: var(--clr-white);
  transition: color var(--t-fast);
}

.post-card:hover .post-card__title { color: var(--clr-primary-lt); }

.post-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--sp-lg);
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-lt);
  transition: gap var(--t-base), color var(--t-fast);
}

.post-card:hover .post-card__link { gap: var(--sp-sm); color: var(--clr-accent); }

/* ─── 14. GALLERY PAGE ──────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-3xl);
  padding: var(--sp-md);
  background: rgba(155,81,224,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-gray-400);
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  color: var(--clr-white);
  background: rgba(155,81,224,0.15);
  border-color: var(--clr-border);
}

.filter-btn.active {
  background: var(--grad-primary);
  color: var(--clr-white);
  box-shadow: 0 0 20px rgba(155,81,224,0.4);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.gallery-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--clr-border);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.3s ease;
  background: var(--clr-surface);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(155,81,224,0.3);
  border-color: var(--clr-border-lt);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-placeholder {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder__orb {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,81,224,0.2) 0%, transparent 70%);
  top: -30px; right: -30px;
  animation: galleryOrbPulse 4s ease-in-out infinite;
}
@keyframes galleryOrbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.4); opacity: 1; }
}

.gallery-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.gallery-placeholder__emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 20px rgba(155,81,224,0.6));
  animation: emojiFloat 3s ease-in-out infinite;
}
@keyframes emojiFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.gallery-placeholder__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.gallery-placeholder__meta {
  font-size: var(--fs-xs);
  color: rgba(155,81,224,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-placeholder__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(155,81,224,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,0,20,0.95) 0%, rgba(13,0,32,0.7) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--sp-xl);
  gap: 0.4rem;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__zoom-icon {
  position: absolute;
  top: var(--sp-md); right: var(--sp-md);
  width: 44px; height: 44px;
  background: rgba(155,81,224,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.gallery-item:hover .gallery-item__zoom-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.gallery-item__caption {
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

.gallery-item__tag {
  font-size: var(--fs-xs);
  color: var(--clr-primary-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Gallery Stats Banner */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  padding: var(--sp-2xl);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-2xl);
  text-align: center;
}
.gallery-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gallery-stat__label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  margin-top: 0.25rem;
}

/* Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}

.video-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(155,81,224,0.3);
  border-color: var(--clr-border-lt);
}

.video-card__thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.video-card__emoji {
  font-size: 3rem;
  opacity: 0.3;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card:hover .video-card__emoji {
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(1.3);
}

.video-card__play {
  width: 72px; height: 72px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(155,81,224,0.6);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.video-card:hover .video-card__play {
  transform: scale(1.15);
  box-shadow: 0 0 60px rgba(155,81,224,0.8);
}
.video-card__play::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(155,81,224,0.4);
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.25); opacity: 0; }
}

.video-card__duration {
  position: absolute;
  bottom: var(--sp-md); right: var(--sp-md);
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: var(--fs-xs);
  padding: 3px 8px;
  border-radius: var(--r-md);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
}

.video-card__tag-overlay {
  position: absolute;
  top: var(--sp-md); left: var(--sp-md);
  background: var(--grad-primary);
  color: white;
  font-size: var(--fs-xs);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
}

.video-card__coming-soon {
  position: absolute;
  inset: 0;
  background: rgba(6,0,20,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
}

.video-card__info {
  padding: var(--sp-xl);
}

.video-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-sm);
  color: var(--clr-white);
  line-height: 1.3;
}

.video-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-md);
}

.video-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.video-card__meta-tag {
  font-size: var(--fs-xs);
  color: var(--clr-primary-lt);
  background: rgba(155,81,224,0.15);
  padding: 2px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(155,81,224,0.3);
  font-weight: var(--fw-medium);
}

.video-card__meta-dur {
  font-size: var(--fs-xs);
  color: var(--clr-gray-400);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
  backdrop-filter: blur(8px);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  transform: scale(0.9);
  transition: transform var(--t-spring);
}

.lightbox.open .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: var(--sp-xl);
  right: var(--sp-xl);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: auto;
  font-size: var(--fs-xl);
  color: var(--clr-white);
  transition: background var(--t-fast);
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ─── 15. BOOKING PAGE ──────────────────────────────────── */
.booking-hero {
  padding: calc(var(--nav-height) + var(--sp-4xl)) 0 var(--sp-4xl);
  text-align: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.booking-info {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-xl));
}

.booking-info__card {
  padding: var(--sp-2xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  backdrop-filter: blur(12px);
}

.booking-info__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-md);
}

.booking-info__desc {
  color: var(--clr-gray-400);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-xl);
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
}

.booking-feature__icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(155, 81, 224, 0.12);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.calendly-container {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-surface);
  min-height: 700px;
}

.calendly-container .calendly-inline-widget {
  min-height: 700px;
}

/* ─── 16. CONTACT PAGE ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.contact-info {}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-lg);
  padding: var(--sp-xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  margin-bottom: var(--sp-lg);
  transition: border-color var(--t-base), transform var(--t-base);
}

.contact-info__item:hover { border-color: var(--clr-border-lt); transform: translateX(4px); }

.contact-info__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  background: rgba(155, 81, 224, 0.15);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: var(--fs-xs);
  color: var(--clr-primary-lt);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-xs);
}

.contact-info__value {
  font-size: var(--fs-base);
  color: var(--clr-white);
}

.contact-form {
  padding: var(--sp-2xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.form-group {
  margin-bottom: var(--sp-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gray-400);
  margin-bottom: var(--sp-sm);
}

.form-control {
  width: 100%;
  padding: 0.875rem var(--sp-lg);
  background: rgba(6, 0, 15, 0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
}

.form-control::placeholder { color: var(--clr-gray-600); }
.form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(155, 81, 224, 0.15);
  background: rgba(13, 0, 32, 0.8);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.form-submit { text-align: right; }

/* ─── 17. PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + var(--sp-5xl)) 0 var(--sp-5xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--clr-bg), transparent);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-3xl), 7vw, var(--fs-5xl));
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-md);
}

.page-hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-gray-400);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  justify-content: center;
  margin-bottom: var(--sp-xl);
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
}

.breadcrumb a { color: var(--clr-primary-lt); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--clr-white); }
.breadcrumb__sep { color: var(--clr-gray-600); }

/* ─── 18. ABOUT PAGE ────────────────────────────────────── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-lg);
}

.credential-card {
  padding: var(--sp-xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform var(--t-base), border-color var(--t-base);
}

.credential-card:hover { transform: translateY(-4px); border-color: var(--clr-border-lt); }

.credential-card__icon { font-size: 2rem; margin-bottom: var(--sp-md); }
.credential-card__title { font-weight: var(--fw-semibold); font-size: var(--fs-base); margin-bottom: var(--sp-xs); }
.credential-card__text { font-size: var(--fs-sm); color: var(--clr-gray-400); }

.orgs-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.org-pill {
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-gray-400);
  transition: all var(--t-base);
}

.org-pill:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary-lt);
  background: rgba(155, 81, 224, 0.1);
  transform: translateY(-2px);
}

/* ─── 19. BLOG (single & archive) ───────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-3xl);
  align-items: start;
}

.blog-main {}

.blog-single__header { margin-bottom: var(--sp-2xl); }

.blog-single__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-lg);
}

.blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  margin-bottom: var(--sp-xl);
}

.blog-single__featured {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-2xl);
  aspect-ratio: 16/8;
}

.blog-single__featured img { width: 100%; height: 100%; object-fit: cover; }

.blog-content {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--clr-gray-100);
}

.blog-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin: var(--sp-3xl) 0 var(--sp-lg);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-content h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  margin: var(--sp-2xl) 0 var(--sp-md);
  color: var(--clr-primary-lt);
}

.blog-content p { margin-bottom: var(--sp-lg); }

.blog-content blockquote {
  border-left: 3px solid var(--clr-primary);
  padding: var(--sp-lg) var(--sp-2xl);
  margin: var(--sp-2xl) 0;
  background: rgba(155, 81, 224, 0.05);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--clr-primary-lt);
}

.blog-content img {
  width: 100%;
  border-radius: var(--r-xl);
  margin: var(--sp-xl) 0;
}

.blog-content ul, .blog-content ol {
  list-style: none;
  padding: 0;
  margin-bottom: var(--sp-lg);
}

.blog-content li {
  padding: var(--sp-sm) 0 var(--sp-sm) var(--sp-xl);
  position: relative;
  color: var(--clr-gray-400);
}

.blog-content li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--clr-primary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-xl));
}

.widget {
  padding: var(--sp-xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  margin-bottom: var(--sp-xl);
}

.widget__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--clr-border);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── 20. CTA SECTION ───────────────────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  padding: var(--sp-5xl) 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.35) 0%, transparent 70%);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-lg);
  position: relative;
}

.cta-section__text {
  font-size: var(--fs-lg);
  color: var(--clr-gray-400);
  max-width: 600px;
  margin: 0 auto var(--sp-2xl);
  line-height: var(--lh-relaxed);
  position: relative;
}

.cta-section__actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── 21. FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg-1);
  border-top: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(155,81,224,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-3xl);
  padding: var(--sp-4xl) var(--container-pad);
}

.footer__logo { height: 60px; width: auto; filter: brightness(1.2); margin-bottom: var(--sp-lg); }

.footer__tagline {
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-xl);
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: var(--sp-md);
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(155, 81, 224, 0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gray-400);
  transition: all var(--t-base);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(155, 81, 224, 0.4);
}

.footer__heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-xl);
}

.footer__links ul { display: flex; flex-direction: column; gap: var(--sp-md); }

.footer__links li a {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-block;
}

.footer__links li a:hover {
  color: var(--clr-primary-lt);
  padding-left: 6px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
}

.footer__contact-list li a { color: var(--clr-primary-lt); transition: color var(--t-fast); }
.footer__contact-list li a:hover { color: var(--clr-white); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-xl) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--clr-gray-600);
}

.heart { color: var(--clr-accent); animation: heartbeat 1.5s ease-in-out infinite; display: inline-block; }

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ─── 22. SCROLL TO TOP ─────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--sp-2xl);
  right: var(--sp-2xl);
  z-index: 800;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(155, 81, 224, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  cursor: auto;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { box-shadow: 0 8px 40px rgba(155, 81, 224, 0.7); transform: translateY(-3px); }

.scroll-top svg { width: 22px; height: 22px; }

/* ─── 23. ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.from-left  { transform: translateX(-60px); }
.animate-on-scroll.from-right { transform: translateX(60px); }
.animate-on-scroll.scale-in   { transform: scale(0.85); }
.animate-on-scroll.fade-only  { transform: none; }

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translate(0) scale(1);
}

.animate-on-scroll.delay-1 { transition-delay: 0.10s; }
.animate-on-scroll.delay-2 { transition-delay: 0.18s; }
.animate-on-scroll.delay-3 { transition-delay: 0.26s; }
.animate-on-scroll.delay-4 { transition-delay: 0.34s; }
.animate-on-scroll.delay-5 { transition-delay: 0.42s; }
.animate-on-scroll.delay-6 { transition-delay: 0.50s; }

/* ─── NEW COMPONENTS ────────────────────────────────────── */

/* Process Steps (Contact page) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  position: relative;
}

.process-step {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-2xl);
  background: var(--clr-surface);
  position: relative;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: var(--clr-border-lt);
  box-shadow: 0 20px 60px rgba(155,81,224,0.25);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--fw-bold);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-md);
  opacity: 0.4;
}

.process-step__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-lg);
  display: block;
  filter: drop-shadow(0 0 20px rgba(155,81,224,0.5));
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-md);
  color: var(--clr-white);
}

.process-step__desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
}

.process-step__line {
  display: none;
}

/* Format Cards (Services page) */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}

.format-card {
  padding: var(--sp-2xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-2xl);
  background: var(--clr-surface);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.format-card:hover::before { transform: scaleX(1); }

.format-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-border-lt);
  box-shadow: 0 20px 60px rgba(155,81,224,0.3);
}

.format-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.format-card__emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(155,81,224,0.5));
}

.format-card__badge {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(155,81,224,0.15);
  color: var(--clr-primary-lt);
  border: 1px solid rgba(155,81,224,0.3);
}

.format-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  line-height: 1.3;
}

.format-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.format-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.format-card__list li {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  padding-left: 1.5rem;
  position: relative;
}

.format-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-primary-lt);
  font-weight: 600;
}

/* Principles Cards (About page) */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}

.principle-card {
  padding: var(--sp-2xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-2xl);
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
  /* Auto-animate in (no JS needed) */
  animation: principleReveal 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.principle-card:nth-child(1) { animation-delay: 0.1s; }
.principle-card:nth-child(2) { animation-delay: 0.2s; }
.principle-card:nth-child(3) { animation-delay: 0.3s; }
.principle-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes principleReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Service cards — CSS-driven reveal, no JS dependency */
.services-grid--animate .service-card {
  animation: principleReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.services-grid--animate .service-card:nth-child(1) { animation-delay: 0.05s; }
.services-grid--animate .service-card:nth-child(2) { animation-delay: 0.13s; }
.services-grid--animate .service-card:nth-child(3) { animation-delay: 0.21s; }
.services-grid--animate .service-card:nth-child(4) { animation-delay: 0.29s; }
.services-grid--animate .service-card:nth-child(5) { animation-delay: 0.37s; }
.services-grid--animate .service-card:nth-child(6) { animation-delay: 0.45s; }

.principle-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(155,81,224,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.principle-card:hover::after { opacity: 1; }

.principle-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-lt);
  box-shadow: 0 20px 60px rgba(155,81,224,0.25);
}

.principle-card__num {
  position: absolute;
  top: var(--sp-xl); right: var(--sp-xl);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: rgba(155,81,224,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.principle-card__icon {
  font-size: 2.2rem;
  margin-bottom: var(--sp-lg);
  display: block;
  filter: drop-shadow(0 0 15px rgba(155,81,224,0.5));
}

.principle-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.principle-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
}

/* FAQ Grid (Contact page) */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.faq-item {
  padding: var(--sp-xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-surface);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: var(--clr-border-lt);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(155,81,224,0.2);
}

.faq-item__q {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  line-height: 1.4;
  display: flex;
  gap: var(--sp-sm);
}

.faq-item__icon {
  color: var(--clr-primary-lt);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item__a {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  line-height: var(--lh-relaxed);
  padding-left: calc(var(--sp-sm) + 1ch);
}

/* Featured Video (Videos page) */
.featured-video-thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-video-thumb__bg {
  position: absolute;
  inset: 0;
}

.featured-video-thumb__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.featured-video-thumb__play {
  width: 90px; height: 90px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(155,81,224,0.7);
  position: relative;
}

.featured-video-thumb__play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(155,81,224,0.4);
  animation: playPulse 2s ease-in-out infinite;
}

.featured-video-thumb__play::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(155,81,224,0.15);
  animation: playPulse 2s ease-in-out 0.5s infinite;
}

/* ─── 24. DECORATIVE ELEMENTS ───────────────────────────── */
.deco-line {
  width: 60px; height: 3px;
  background: var(--grad-primary);
  border-radius: var(--r-full);
  margin: var(--sp-lg) auto;
}

.deco-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}

.deco-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-primary);
}

.deco-dot--lg { width: 10px; height: 10px; background: var(--grad-primary); }

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: var(--sp-4xl) 0;
}

.bg-purple-gradient { background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 50%, var(--clr-bg) 100%); }
.bg-darker { background: var(--clr-bg-1); }
.bg-darkest { background: var(--clr-bg); }

/* ─── 25. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__badge { bottom: var(--sp-md); right: var(--sp-md); }
  .booking-content { grid-template-columns: 1fr; }
  .booking-info { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
  .testimonials-track { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .gallery-stats { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  /* Nav is always full-screen overlay — no overrides needed here */

  .hero__actions { flex-direction: column; align-items: center; }

  .stats__grid { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp-sm); text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-masonry { grid-template-columns: 1fr; }

  .section { padding: var(--sp-4xl) 0; }

  .format-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
  .gallery-stats { grid-template-columns: 1fr 1fr; gap: var(--sp-md); padding: var(--sp-xl); }
}

/* ─── Custom Slim Scrollbar ─────────────────────────────────────────────────── */
/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: #06000f;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #7c3aed, #9b51e0, #e879f9);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #9b51e0, #e879f9);
}
::-webkit-scrollbar-corner {
  background: #06000f;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #9b51e0 #06000f;
}
