/* ==============================================
   ANNTHEA MATRIX — style.css  v3
   Light mystical — cream / lavender / soft purple
   Fonts: Cinzel Decorative · Cormorant Garamond · Raleway
   ============================================== */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* === DESIGN TOKENS === */
:root {
  --nav-h: 72px;

  --c-bg:          #faf8f5;
  --c-bg-2:        #f5f0ff;
  --c-surface:     #ffffff;
  --c-purple:      #7c3aed;
  --c-purple-lt:   #c084fc;
  --c-purple-dim:  rgba(124,58,237,.1);
  --c-rose:        #e8b4b8;
  --c-text:        #1e0a3c;
  --c-text-muted:  #6b5b8a;
  --c-border:      rgba(124,58,237,.14);
  --c-glow:        rgba(124,58,237,.18);

  --font-display: 'Cinzel Decorative', serif;
  --font-accent:  'Cormorant Garamond', serif;
  --font-body:    'Raleway', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow-card: 0 2px 24px rgba(124,58,237,.07), 0 8px 40px rgba(30,10,60,.05);
  --shadow-glow: 0 0 40px rgba(124,58,237,.18);

  --t: .3s ease;
  --max-w: 1200px;
}
@media (max-width: 768px) {
  :root { --nav-h: 80px; }
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

/* === TYPOGRAPHY HELPERS === */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 14px;
  opacity: .8;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: 18px;
  letter-spacing: .03em;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--c-purple);
}
.section-sub {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 520px;
  line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* === KEYFRAMES === */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes float-sparkle {
  0%   { transform: translateY(0)    scale(1)   rotate(0deg);   opacity: .7; }
  50%  { transform: translateY(-22px) scale(1.2) rotate(180deg); opacity: 1; }
  100% { transform: translateY(0)    scale(1)   rotate(360deg); opacity: .7; }
}

@keyframes twinkle {
  0%, 100% { opacity: .6; }
  50%       { opacity: 1; }
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-xl);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-lt) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--c-purple);
  border: 1.5px solid var(--c-purple);
}
.btn--ghost:hover {
  background: var(--c-purple-dim);
  transform: translateY(-2px);
}
.btn--nav {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-lt) 100%);
  color: #fff;
  padding: 10px 22px;
  font-size: .8rem;
  box-shadow: 0 3px 14px rgba(124,58,237,.28);
}
.btn--nav:hover { transform: translateY(-1px); box-shadow: 0 5px 20px rgba(124,58,237,.38); }
.btn--large { padding: 17px 36px; font-size: .9rem; }
.btn--full  { width: 100%; }

/* ==============================
   NAVBAR
   ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: transparent;
  transition: background var(--t), box-shadow var(--t);
}
.nav.is-scrolled {
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(124,58,237,.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: .08em;
  color: var(--c-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__moon {
  width: 18px; height: 18px;
  color: var(--c-purple);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t), visibility var(--t);
}
.nav__link {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: .75;
  transition: opacity var(--t), color var(--t);
}
.nav__link:hover { opacity: 1; color: var(--c-purple); }

.nav__lang-item { display: flex; }
.nav__lang-btn {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  padding: 4px 10px;
  border-radius: 20px;
  transition: all var(--t);
}
.nav__lang-btn:hover {
  color: var(--c-purple);
  border-color: var(--c-purple);
}
.nav__mobile-cta { display: none; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .btn--nav       { display: none; }
  .nav__burger    { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(250,248,245,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px 28px 32px;
    border-bottom: 1px solid var(--c-border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    margin-left: 0;
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__link  { padding: 13px 0; width: 100%; font-size: .85rem; opacity: .8; }
  .nav__lang-item { padding: 12px 0; }
  .nav__mobile-cta { display: flex; padding-top: 20px; width: 100%; }
  .nav__mobile-cta .btn { width: 100%; justify-content: center; }
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #faf8f5 0%, #f5f0ff 55%, #faf8f5 100%);
}

/* Floating sparkles */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sparkles span {
  position: absolute;
  width: 6px; height: 6px;
  background: radial-gradient(circle, var(--c-purple-lt) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-sparkle var(--dur, 6s) ease-in-out var(--del, 0s) infinite;
}
.sparkles span:nth-child(1)  { top:  8%; left: 12%; --dur: 7s;  --del: 0s;   width: 5px; height: 5px; }
.sparkles span:nth-child(2)  { top: 18%; left: 80%; --dur: 5.5s; --del: .8s; width: 4px; height: 4px; }
.sparkles span:nth-child(3)  { top: 35%; left: 25%; --dur: 8s;  --del: .3s;  width: 7px; height: 7px; }
.sparkles span:nth-child(4)  { top: 55%; left: 72%; --dur: 6.5s; --del: 1.2s; width: 5px; height: 5px; }
.sparkles span:nth-child(5)  { top: 70%; left: 18%; --dur: 7.5s; --del: .5s; width: 4px; height: 4px; }
.sparkles span:nth-child(6)  { top: 85%; left: 60%; --dur: 6s;  --del: 2s;   width: 6px; height: 6px; }
.sparkles span:nth-child(7)  { top: 12%; left: 48%; --dur: 9s;  --del: .1s;  width: 5px; height: 5px; }
.sparkles span:nth-child(8)  { top: 45%; left: 90%; --dur: 5s;  --del: 1.6s; width: 4px; height: 4px; }
.sparkles span:nth-child(9)  { top: 62%; left: 38%; --dur: 7s;  --del: .7s;  width: 6px; height: 6px; }
.sparkles span:nth-child(10) { top: 30%; left: 55%; --dur: 8.5s; --del: 2.4s; width: 5px; height: 5px; }
.sparkles span:nth-child(11) { top: 78%; left: 85%; --dur: 6.5s; --del: .4s; width: 4px; height: 4px; }
.sparkles span:nth-child(12) { top:  5%; left: 65%; --dur: 7.5s; --del: 1.9s; width: 7px; height: 7px; }
.sparkles span:nth-child(13) { top: 92%; left: 30%; --dur: 5.5s; --del: .9s; width: 5px; height: 5px; }
.sparkles span:nth-child(14) { top: 50%; left:  5%; --dur: 8s;  --del: 3s;   width: 4px; height: 4px; }

/* Zodiac background art */
.hero__art {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(500px, 48vw);
  max-width: 500px;
  color: var(--c-purple);
  opacity: .07;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero__art svg { width: 100%; height: auto; max-width: 100%; }

/* Hero moon bg */
.hero__moon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 88vw);
  height: min(500px, 88vw);
  max-width: 500px;
  pointer-events: none;
  z-index: 1;
  opacity: .08;
  overflow: hidden;
}
.hero__moon-bg svg { width: 100%; height: 100%; max-width: 100%; }

/* Hero twinkling stars */
.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__stars span {
  position: absolute;
  color: #7c3aed;
  opacity: .15;
  font-size: var(--sz, 14px);
  line-height: 1;
  animation: twinkle var(--dur, 4s) ease-in-out var(--del, 0s) infinite;
}
.hero__stars span:nth-child(1)  { top:  8%; left: 10%; --sz: 12px; --dur: 5s;   --del: 0s;   }
.hero__stars span:nth-child(2)  { top: 15%; left: 82%; --sz: 16px; --dur: 4s;   --del: .5s;  }
.hero__stars span:nth-child(3)  { top: 28%; left:  5%; --sz: 10px; --dur: 6s;   --del: 1s;   }
.hero__stars span:nth-child(4)  { top: 40%; left: 92%; --sz: 14px; --dur: 4.5s; --del: .3s;  }
.hero__stars span:nth-child(5)  { top: 55%; left: 20%; --sz: 11px; --dur: 5.5s; --del: 1.8s; }
.hero__stars span:nth-child(6)  { top: 70%; left: 75%; --sz: 13px; --dur: 4s;   --del: .7s;  }
.hero__stars span:nth-child(7)  { top: 85%; left: 45%; --sz: 10px; --dur: 6.5s; --del: 2s;   }
.hero__stars span:nth-child(8)  { top: 20%; left: 40%; --sz: 15px; --dur: 3.5s; --del: .2s;  }
.hero__stars span:nth-child(9)  { top: 65%; left: 58%; --sz: 12px; --dur: 5s;   --del: 1.2s; }
.hero__stars span:nth-child(10) { top: 35%; left: 70%; --sz: 11px; --dur: 7s;   --del: 2.5s; }
.hero__stars span:nth-child(11) { top:  5%; left: 55%; --sz: 13px; --dur: 4.5s; --del: .9s;  }
.hero__stars span:nth-child(12) { top: 80%; left: 12%; --sz: 10px; --dur: 5.5s; --del: 1.5s; }
.hero__stars span:nth-child(13) { top: 48%; left: 48%; --sz: 16px; --dur: 3.8s; --del: .4s;  }
.hero__stars span:nth-child(14) { top: 92%; left: 78%; --sz: 12px; --dur: 6s;   --del: 1.1s; }
.hero__stars span:nth-child(15) { top: 75%; left: 35%; --sz: 11px; --dur: 4.8s; --del: 3s;   }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
  animation: fadeSlideUp .9s ease both;
}
.hero__eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-purple);
  opacity: .8;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero__title em {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 300;
  display: block;
  background: linear-gradient(90deg, #7c3aed, #c084fc, #e8b4b8, #d4a0f0, #7c3aed);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  font-size: 1.08em;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 36px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .6;
  animation: float-sparkle 2.8s ease-in-out infinite;
  --dur: 2.8s; --del: 0s;
}

@media (max-width: 768px) {
  .hero__content {
    margin: 0 auto;
    padding: 48px 24px 60px;
    text-align: center;
  }
  .hero__ctas   { justify-content: center; }
  .hero__art    { display: none; }
  .hero__scroll { display: none; }
}

/* ==============================
   MOON SEPARATOR
   ============================== */
.moon-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 0;
  color: var(--c-purple);
  opacity: .4;
}
.moon-sep span {
  display: block;
  height: 1px;
  width: clamp(40px, 8vw, 100px);
  background: linear-gradient(90deg, transparent, var(--c-purple), transparent);
}
.moon-sep svg { width: 22px; height: 22px; }
.moon-sep--inv { opacity: .28; }

/* ==============================
   SERVICES
   ============================== */
.services {
  padding: 80px 0;
  background: var(--c-bg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.service-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--c-purple), var(--shadow-glow);
  border-color: rgba(124,58,237,.3);
}
.service-card--featured {
  background: linear-gradient(145deg, #fff 0%, #f8f4ff 100%);
  border-color: rgba(124,58,237,.28);
}
.service-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-purple), var(--c-purple-lt));
  color: #fff;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.service-card__icon {
  width: 56px; height: 56px;
  color: var(--c-purple);
  opacity: .85;
  flex-shrink: 0;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: .05em;
}
.service-card__desc {
  font-size: .92rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  flex: 1;
}
.service-card__cta {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--c-purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t), opacity var(--t);
}
.service-card__cta:hover { gap: 8px; opacity: .8; }

/* scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==============================
   ABOUT
   ============================== */
.about {
  padding: 80px 0;
  background: var(--c-bg-2);
  overflow: hidden;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }
  .about__orbit-wrap { width: min(280px, 84vw); height: min(280px, 84vw); }
}

/* Orbit wrap + rotating ring */
.about__orbit-wrap {
  position: relative;
  width: min(340px, 88vw);
  height: min(340px, 88vw);
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@keyframes spin-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about__orbit {
  position: absolute;
  inset: 0;
  animation: spin-orbit 30s linear infinite;
  pointer-events: none;
  overflow: hidden;
}
.about__orbit svg { width: 100%; height: 100%; max-width: 100%; display: block; }

/* Avatar */
.about__avatar {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
}
.about__avatar-ring {
  width: 220px;
  height: 220px;
  display: block;
}
.about__avatar-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.about__avatar-initials {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--c-purple);
  letter-spacing: .1em;
}
.about__avatar-name {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: .88rem;
  color: var(--c-text-muted);
  letter-spacing: .08em;
}
.about__deco {
  text-align: center;
  margin-top: 24px;
  color: var(--c-purple);
  opacity: .4;
  font-size: 1rem;
  letter-spacing: .4em;
}

/* About text */
.about__text { display: flex; flex-direction: column; gap: 16px; }
.about__lead {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-text);
  line-height: 1.7;
}
.about__body {
  font-size: .97rem;
  color: var(--c-text-muted);
  line-height: 1.85;
}
.about__text .btn { align-self: flex-start; margin-top: 8px; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials {
  padding: 80px 0;
  background: var(--c-bg);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(124,58,237,.15);
}
.testimonial-card__stars {
  color: var(--c-rose);
  font-size: 1rem;
  letter-spacing: .1em;
}
.testimonial-card__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.78;
  flex: 1;
}
.testimonial-card__author {
  font-size: .82rem;
  font-style: normal;
  color: var(--c-text-muted);
  letter-spacing: .06em;
}

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f0ff 0%, #ede9ff 50%, #f9f0ff 100%);
  padding: 80px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.cta-banner__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-banner__sparkles span {
  position: absolute;
  width: 5px; height: 5px;
  background: radial-gradient(circle, var(--c-purple-lt) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-sparkle var(--dur, 6s) ease-in-out var(--del, 0s) infinite;
}
.cta-banner__sparkles span:nth-child(1) { top: 15%; left: 8%;  --dur: 7s;  --del: 0s; }
.cta-banner__sparkles span:nth-child(2) { top: 70%; left: 20%; --dur: 5s;  --del: 1s; }
.cta-banner__sparkles span:nth-child(3) { top: 30%; left: 88%; --dur: 8s;  --del: .4s; }
.cta-banner__sparkles span:nth-child(4) { top: 80%; left: 75%; --dur: 6s;  --del: 2s; }
.cta-banner__sparkles span:nth-child(5) { top: 50%; left: 50%; --dur: 9s;  --del: .8s; }
.cta-banner__sparkles span:nth-child(6) { top: 20%; left: 55%; --dur: 6.5s; --del: 1.5s; }

.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 18px;
  letter-spacing: .03em;
  line-height: 1.25;
}
.cta-banner__title em {
  font-style: italic;
  font-family: var(--font-accent);
  background: linear-gradient(90deg, #7c3aed, #c084fc, #e8b4b8, #c084fc, #7c3aed);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}
.cta-banner__sub {
  font-size: .97rem;
  color: var(--c-text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.78;
}
.cta-banner__inner .section-eyebrow { margin-bottom: 18px; }

/* ==============================
   CONTACT
   ============================== */
.contact {
  padding: 80px 0;
  background: var(--c-bg);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; gap: 40px; } }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.contact__item:hover {
  transform: translateX(4px);
  border-color: rgba(124,58,237,.3);
  box-shadow: 0 4px 20px rgba(124,58,237,.08);
}
.contact__item-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-purple-dim);
  border-radius: var(--r-sm);
  color: var(--c-purple);
  flex-shrink: 0;
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 3px;
}
.contact__item-value {
  font-size: .92rem;
  color: var(--c-text);
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: .75;
}
.form-label span { color: var(--c-purple); margin-left: 2px; }
.form-input {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 300;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  min-height: 44px;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.form-input::placeholder { color: var(--c-text-muted); opacity: .5; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-note {
  font-size: .78rem;
  color: var(--c-text-muted);
  opacity: .7;
  margin-top: -8px;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  padding: 48px 0 32px;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer__moon { width: 16px; height: 16px; color: var(--c-purple); }
.footer__logo {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .09em;
  color: var(--c-text);
}
.footer__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: .85rem;
  color: var(--c-text-muted);
  letter-spacing: .06em;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}
.footer__link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--t);
}
.footer__link:hover { color: var(--c-purple); }
.footer__social { display: flex; gap: 14px; align-items: center; }
.footer__social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  transition: all var(--t);
}
.footer__social-link:hover {
  color: var(--c-purple);
  border-color: rgba(124,58,237,.35);
  background: var(--c-purple-dim);
}
.footer__copy {
  font-size: .78rem;
  color: var(--c-text-muted);
  opacity: .6;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.footer__copy-link { color: var(--c-purple); opacity: 1; transition: opacity var(--t); }
.footer__copy-link:hover { opacity: .75; }

/* ==============================
   REDUCED MOTION
   ============================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
