:root {
  --astra-950: #1a0812;
  --astra-900: #2d121f;
  --astra-800: #831843;
  --astra-700: #9d174d;
  /* Pastel spectrum — inspired by Coolors tool cards */
  --astra-aurora: #db2777;
  --astra-aurora-light: #fce8f3;
  --astra-violet: #0d9488;
  --astra-violet-light: #d4f5ef;
  --astra-rose: #e11d48;
  --astra-aurora-rgb: 219 39 119;
  --astra-aurora-light-rgb: 252 232 243;
  --astra-violet-rgb: 13 148 136;
  --astra-violet-light-rgb: 212 245 239;
  --astra-rose-rgb: 225 29 72;
  --astra-rose-gold: #e11d48;
  --astra-gold: #d97706;
  --astra-gold-rgb: 217 119 6;
  --astra-pearl: #ffffff;
  --astra-mist: #94a3b8;
  --astra-ink: #1f2937;
  --pastel-mint: #d4f5ef;
  --pastel-blue: #dceeff;
  --pastel-purple: #ece8fd;
  --pastel-pink: #fce8f3;
  --pastel-coral: #ffe8ea;
  --pastel-orange: #ffefe0;
  --pastel-yellow: #fef6d6;
  --pastel-green: #dff9e8;
  --accent-mint: #0d9488;
  --accent-blue: #2563eb;
  --accent-purple: #7c3aed;
  --accent-pink: #db2777;
  --accent-coral: #e11d48;
  --accent-orange: #ea580c;
  --accent-yellow: #d97706;
  --accent-green: #16a34a;
  --btn-primary-bg: linear-gradient(135deg, #db2777 0%, #e11d48 100%);
  --btn-primary-text: #ffffff;
  --btn-primary-shadow-3d: #9d174d;
  --btn-primary-shadow-glow: rgba(219, 39, 119, 0.45);
  --btn-secondary-bg: linear-gradient(180deg, #d4f5ef 0%, #0d9488 52%, #0f766e 100%);
  --btn-secondary-text: #ffffff;
  --btn-secondary-shadow-3d: #0f766e;
  --btn-secondary-shadow-glow: rgba(13, 148, 136, 0.38);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --join-dark: #1f0d15;
  --join-wine: #2d121f;
  --join-soft: #fafafa;
  --join-white: #ffffff;
}

html { scroll-behavior: smooth; scroll-padding-top: 5.75rem; }
/* Prefer system font metrics until webfonts arrive (less layout shift) */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--astra-ink);
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgb(var(--astra-aurora-rgb) / 0.05), transparent 50%),
    radial-gradient(ellipse 60% 45% at 90% 5%, rgb(var(--astra-rose-rgb) / 0.04), transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 0%, rgb(var(--astra-gold-rgb) / 0.03), transparent 55%),
    #fafafa;
}
section[id] { scroll-margin-top: 5.75rem; }
/* Skip layout/paint for off-screen sections (faster scroll + first paint) */
main > section:not([data-hero]):not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
img, video { max-width: 100%; height: auto; }
img[loading="lazy"] { content-visibility: auto; }
::selection { background: var(--astra-aurora); color: #fff; }

/* Typography */
.font-display { letter-spacing: -0.02em; }
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.section-lead {
  color: #6b5a63;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 38rem;
}
.section-head { text-align: center; max-width: 42rem; margin-inline: auto; }
.section-head .section-lead { margin-inline: auto; }
.heading-accent {
  display: block;
  position: relative;
  width: 4.5rem;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-mint), var(--accent-blue), var(--accent-coral), var(--accent-pink));
  opacity: 0.9;
}
.heading-accent::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-size: 0.62rem;
  color: var(--astra-gold);
  text-shadow: 0 0 8px rgb(var(--astra-aurora-rgb) / 0.45);
  line-height: 1;
}
.heading-accent--left { margin: 1rem 0 0; }
.heading-accent--left::after { left: 0; transform: translate(0, -52%); }

/* Layout */
.section { padding-block: clamp(4.5rem, 8vw, 7rem); position: relative; }
.section--white { background: #fff; }
.section--cream { background: var(--astra-pearl); }
.section--pearl { background: #fafafa; }
.section--soft {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, var(--pastel-blue), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 10%, var(--pastel-pink), transparent 50%),
    radial-gradient(ellipse 60% 45% at 50% 100%, var(--pastel-mint), transparent 55%),
    #fafafa;
  color: var(--astra-ink);
}
.section--dark {
  background:
    radial-gradient(ellipse 78% 58% at 14% 0%, rgb(var(--astra-aurora-rgb) / 0.24), transparent 52%),
    radial-gradient(ellipse 68% 50% at 86% 6%, rgb(var(--astra-rose-rgb) / 0.16), transparent 48%),
    radial-gradient(ellipse 55% 42% at 50% 100%, rgb(var(--astra-gold-rgb) / 0.09), transparent 50%),
    linear-gradient(165deg, #1a0812 0%, var(--astra-900) 44%, #1f0d15 100%);
  color: #e8d5df;
}
.section--dark .section-title { color: #fff; }
.section--dark .section-lead { color: #c9a8b8; }
.section--dark .section-head .text-slate-500,
.section--dark > .max-w-7xl .text-slate-500,
.section--dark .section-cta-row p { color: #c9a8b8; }
.section--dark .section-cta-row { border-top-color: rgb(255 255 255 / 0.1); }
.section--dark .section-rule::before,
.section--dark .section-rule::after {
  background: linear-gradient(90deg, transparent, rgb(var(--astra-aurora-rgb) / 0.4), transparent);
}
.section--dark .reviews-summary {
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.1);
  box-shadow: 0 8px 24px -12px rgb(0 0 0 / 0.35);
}
.section--dark .reviews-summary__score { color: #fff; }
.section--dark .reviews-summary .text-slate-500 { color: #c9a8b8 !important; }

.section-glow-top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 12rem;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgb(var(--astra-aurora-rgb) / 0.09), transparent 70%);
  pointer-events: none;
}

/* Full-width SVG section joins — no clip-path gaps */
.section-join {
  display: block;
  height: clamp(2.5rem, 5vw, 4rem);
  margin-top: -1px;
  margin-bottom: -1px;
  line-height: 0;
  pointer-events: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.section-join svg {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

/* White wave divider between dark sections */
.section-join--white {
  height: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--join-dark);
}

#scroll-progress {
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 12px rgb(var(--astra-aurora-rgb) / 0.6);
}

#site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgb(var(--astra-aurora-rgb) / 0.08);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s, color 0.35s;
}
#site-header:not(.header-scrolled) {
  background: rgba(26, 8, 18, 0.82);
  border-bottom-color: rgb(255 255 255 / 0.08);
}
#site-header:not(.header-scrolled) .text-astra-900 { color: #fff; }
#site-header:not(.header-scrolled) .text-slate-500,
#site-header:not(.header-scrolled) .text-slate-600 { color: #c9a8b8; }
#site-header:not(.header-scrolled) .nav-link { color: #e8d5df; }
#site-header:not(.header-scrolled) .nav-link:hover { color: var(--astra-aurora-light); }
#site-header:not(.header-scrolled) .btn-icon {
  color: #fff;
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.14);
  box-shadow: none;
}
#site-header:not(.header-scrolled) .btn-icon:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
  border-color: rgb(var(--astra-aurora-rgb) / 0.35);
}
#site-header.header-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 32px -12px rgb(var(--astra-aurora-rgb) / 0.1);
  border-color: rgb(var(--astra-aurora-rgb) / 0.15);
}

/* ── Buttons ── */
.btn, .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    filter 0.28s var(--ease-out),
    background-position 0.45s ease,
    border-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out),
    opacity 0.28s var(--ease-out);
  border-radius: 1.1rem;
}
.btn::before, .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0.08) 40%, transparent 58%);
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}
.btn::after, .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.35), transparent 65%);
  transition: opacity 0.28s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.btn:hover::after, .btn-primary:hover::after { opacity: 1; }
.btn > *, .btn-primary > * { position: relative; z-index: 1; }
.btn:focus-visible, .btn-primary:focus-visible {
  outline: 3px solid rgb(var(--astra-aurora-rgb) / 0.45);
  outline-offset: 3px;
}
.btn:disabled, .btn-primary:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  filter: grayscale(0.12) saturate(0.85);
  pointer-events: none;
}

.btn-sm  { padding: 0.58rem 1.2rem; font-size: 0.82rem; border-radius: 0.9rem; }
.btn-md  { padding: 0.88rem 1.7rem; font-size: 0.95rem; border-radius: 1rem; }
.btn-lg  { padding: 1.02rem 2.05rem; font-size: 1.05rem; border-radius: 1.12rem; font-weight: 800; }
.btn-xl  { padding: 1.08rem 2.35rem; font-size: 1.12rem; border-radius: 1.18rem; font-weight: 800; }

/* Primary — dynamic theme */
.btn-astra, .btn-primary {
  color: var(--btn-primary-text, #fff);
  background: var(--btn-primary-bg, linear-gradient(135deg, #db2777 0%, #e11d48 100%));
  background-size: 100% 200%;
  background-position: 0% 0%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.44),
    inset 0 -3px 0 var(--btn-primary-shadow-3d, #be185d),
    0 4px 14px -4px var(--btn-primary-shadow-glow, rgb(var(--astra-aurora-rgb) / 0.5)),
    0 10px 28px -10px var(--btn-primary-shadow-glow, rgb(var(--astra-aurora-rgb) / 0.38));
}
.btn-astra:hover, .btn-primary:hover {
  background-position: 0% 100%;
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.52),
    inset 0 -3px 0 var(--btn-primary-shadow-3d, #be185d),
    0 8px 22px -6px var(--btn-primary-shadow-glow, rgb(var(--astra-aurora-rgb) / 0.58)),
    0 18px 36px -12px var(--btn-primary-shadow-glow, rgb(var(--astra-aurora-rgb) / 0.48));
  filter: saturate(1.06) brightness(1.03);
}
.btn-astra:active, .btn-primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 2px 8px -4px var(--btn-primary-shadow-glow, rgb(var(--astra-aurora-rgb) / 0.35));
}

/* Accent — dynamic theme */
.btn-violet {
  color: var(--btn-secondary-text, #fff);
  background: var(--btn-secondary-bg, linear-gradient(180deg, #d4f5ef 0%, #0d9488 52%, #0f766e 100%));
  background-size: 100% 200%;
  background-position: 0% 0%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -3px 0 var(--btn-secondary-shadow-3d, #0f766e),
    0 4px 14px -4px var(--btn-secondary-shadow-glow, rgb(var(--astra-violet-rgb) / 0.45)),
    0 10px 28px -10px var(--btn-secondary-shadow-glow, rgb(var(--astra-violet-rgb) / 0.35));
}
.btn-violet:hover {
  background-position: 0% 100%;
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -3px 0 var(--btn-secondary-shadow-3d, #0f766e),
    0 8px 22px -6px var(--btn-secondary-shadow-glow, rgb(var(--astra-violet-rgb) / 0.55)),
    0 18px 36px -12px var(--btn-secondary-shadow-glow, rgb(var(--astra-violet-rgb) / 0.45));
  filter: brightness(1.05);
}
.btn-violet:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 2px 8px -4px var(--btn-secondary-shadow-glow, rgb(var(--astra-violet-rgb) / 0.3));
}

/* Ghost — dynamic theme */
.btn-ghost-light {
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-ghost-light::before { opacity: 0.35; }
.btn-ghost-light:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255, 255, 255, 0.02));
  border-color: var(--astra-aurora-light);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 12px 28px -12px var(--btn-primary-shadow-glow);
}

/* WhatsApp */
.btn-whatsapp {
  color: #fff;
  background: linear-gradient(180deg, #4ade80 0%, #25D366 45%, #128C7E 100%);
  background-size: 100% 200%;
  background-position: 0% 0%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -3px 0 #0d7a5f,
    0 4px 14px -4px rgba(37, 211, 102, 0.4),
    0 10px 28px -10px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  background-position: 0% 100%;
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.36),
    inset 0 -3px 0 #0d7a5f,
    0 8px 22px -6px rgba(37, 211, 102, 0.48),
    0 18px 36px -12px rgba(37, 211, 102, 0.36);
}
.btn-whatsapp:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.14),
    0 2px 8px -4px rgba(37, 211, 102, 0.28);
}

/* Call */
.btn-call {
  color: #fff;
  background: linear-gradient(180deg, #fb7185 0%, #db2777 42%, var(--astra-800) 100%);
  background-size: 100% 200%;
  background-position: 0% 0%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -3px 0 var(--astra-950),
    0 4px 14px -4px rgb(var(--astra-violet-rgb) / 0.4),
    0 10px 28px -10px rgb(var(--astra-violet-rgb) / 0.3);
}
.btn-call:hover {
  background-position: 0% 100%;
  border-color: rgb(var(--astra-aurora-rgb) / 0.45);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -3px 0 var(--astra-950),
    0 8px 22px -6px rgb(var(--astra-violet-rgb) / 0.5),
    0 18px 36px -12px rgb(var(--astra-violet-rgb) / 0.4);
}
.btn-call:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.16),
    0 2px 8px -4px rgb(var(--astra-violet-rgb) / 0.28);
}

/* Outline variants */
.btn-outline-whatsapp {
  color: #128C7E;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  box-shadow: inset 0 1px 0 #fff, 0 2px 10px -4px rgba(37, 211, 102, 0.2);
}
.btn-outline-whatsapp:hover {
  color: #0d7a5f;
  border-color: rgba(37, 211, 102, 0.55);
  background: linear-gradient(180deg, #dcfce7 0%, #bbf7d0 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 #fff, 0 10px 24px -10px rgba(37, 211, 102, 0.28);
}
.btn-outline-whatsapp:active { transform: translateY(0); }

.btn-outline-light {
  color: var(--astra-violet);
  background: linear-gradient(180deg, #fff 0%, var(--astra-pearl) 100%);
  border: 1.5px solid rgb(var(--astra-violet-rgb) / 0.18);
  box-shadow: inset 0 1px 0 #fff, 0 2px 10px -4px rgb(var(--astra-violet-rgb) / 0.08);
}
.btn-outline-light::before { opacity: 0.5; }
.btn-outline-light:hover {
  color: var(--astra-800);
  border-color: rgb(var(--astra-aurora-rgb) / 0.35);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 #fff, 0 10px 24px -10px rgb(var(--astra-aurora-rgb) / 0.15);
}
.btn-outline-light:active { transform: translateY(0); }

/* Rose CTA — warm accent */
.btn-rose {
  color: #fff;
  background: linear-gradient(135deg, #be185d 0%, #f43f8a 45%, #fb7185 100%);
  background-size: 180% auto;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 4px 12px -4px rgb(var(--astra-aurora-rgb) / 0.35),
    0 10px 24px -10px rgb(var(--astra-aurora-rgb) / 0.25);
}
.btn-rose:hover {
  background-position: 75% center;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 6px 18px -4px rgba(236, 72, 153, 0.45),
    0 16px 32px -12px rgba(236, 72, 153, 0.35);
}
.btn-rose:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 2px 6px -2px rgba(236, 72, 153, 0.3),
    0 4px 12px -6px rgba(236, 72, 153, 0.2);
}

/* Icon-only / utility */
.btn-icon {
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  padding: 0.65rem;
  border-radius: 0.85rem;
}
.btn-icon::before { opacity: 0.4; }
.btn-icon:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgb(var(--astra-aurora-rgb) / 0.1));
  border-color: rgb(var(--astra-aurora-rgb) / 0.38);
  transform: translateY(-2px);
}

#site-header .btn-icon {
  color: var(--astra-ink);
  background: linear-gradient(180deg, #fff 0%, var(--astra-pearl) 100%);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.12);
  box-shadow: inset 0 1px 0 #fff, 0 2px 10px -6px rgb(var(--astra-aurora-rgb) / 0.1);
}
#site-header .btn-icon:hover {
  color: var(--astra-aurora);
  border-color: rgb(var(--astra-aurora-rgb) / 0.28);
  background: linear-gradient(180deg, #fff 0%, rgb(var(--astra-aurora-light-rgb) / 0.35) 100%);
}

.btn-back-top {
  color: var(--astra-violet);
  background: linear-gradient(180deg, #fff 0%, rgb(var(--astra-aurora-light-rgb) / 0.15) 100%);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.18);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -2px 0 rgb(var(--astra-aurora-rgb) / 0.08),
    0 8px 24px -8px rgb(var(--astra-aurora-rgb) / 0.22);
  padding: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}
.btn-back-top::before { opacity: 0.55; }
.btn-back-top:hover {
  border-color: rgb(var(--astra-aurora-rgb) / 0.38);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 #fff,
    0 14px 32px -10px rgb(var(--astra-aurora-rgb) / 0.35);
}

/* Floating action pills */
.btn-fab {
  border-radius: 9999px;
  padding: 0.72rem 1.1rem;
  min-width: 3rem;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
@media (min-width: 640px) {
  .btn-fab { padding: 0.78rem 1.35rem; min-width: 11.75rem; }
}
.btn-fab .btn-fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
  font-size: 1.35rem;
  flex-shrink: 0;
}
.btn-fab .btn-fab-label {
  display: none;
  font-size: 1rem;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .btn-fab .btn-fab-label { display: inline; }
}

/* Mobile bar actions */
.btn-mobile {
  flex: 1;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.62rem 0.45rem;
  border-radius: 0.9rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 3.25rem;
}
.btn-mobile i { font-size: 1.1rem; line-height: 1; }
.btn-mobile-astra {
  color: var(--btn-primary-text, #fff);
  background: var(--btn-primary-bg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 var(--btn-primary-shadow-3d),
    0 4px 12px -6px var(--btn-primary-shadow-glow);
}
.btn-mobile-call {
  color: #fff;
  background: linear-gradient(180deg, #fb7185 0%, #db2777 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), inset 0 -2px 0 #be185d, 0 4px 12px -6px rgb(var(--astra-violet-rgb) / 0.35);
}
.btn-mobile-neutral {
  color: var(--astra-800);
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 1px 0 #fff;
}
.btn-mobile:active { transform: scale(0.97); }
.btn-mobile-astra:active,
.btn-mobile-call:active,
.btn-mobile.btn-whatsapp:active {
  transform: scale(0.97) translateY(1px);
}

/* Button inner icon bubble */
.btn-icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--astra-violet);
  box-shadow: inset 0 1px 0 #fff, 0 2px 8px rgba(0,0,0,0.1);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-out);
}
.btn:hover .btn-icon-bubble { transform: scale(1.05); }
.btn-violet .btn-icon-bubble,
.btn-whatsapp .btn-icon-bubble,
.btn-call .btn-icon-bubble {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Cards */
.glass-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.98), var(--astra-pearl));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 24px -10px rgb(var(--astra-violet-rgb) / 0.1);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.35s;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 24px 48px -18px rgb(var(--astra-violet-rgb) / 0.18);
  border-color: rgb(var(--astra-aurora-rgb) / 0.22);
}

/* Step cards keep image zoom only inside media frame */
.step-card:hover .step-card__media img { transform: scale(1.05); }

.feature-card {
  background: linear-gradient(155deg, #fff, var(--astra-pearl));
  border: 1px solid rgb(var(--astra-violet-rgb) / 0.08);
  box-shadow: 0 2px 16px -8px rgb(var(--astra-violet-rgb) / 0.08);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--astra-aurora-rgb) / 0.2);
  box-shadow: 0 16px 32px -14px rgb(var(--astra-violet-rgb) / 0.14);
}

.img-zoom { overflow: hidden; }
.img-zoom img {
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.img-zoom:hover img { transform: scale(1.05); }

.dark-glass,
.pastel-card {
  background: #fff;
  border: 1px solid rgb(var(--astra-violet-rgb) / 0.08);
  box-shadow: 0 4px 24px -8px rgb(var(--astra-violet-rgb) / 0.1);
  transition: background 0.35s, border-color 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.pastel-card--mint    { background: var(--pastel-mint);    color: var(--accent-mint); }
.pastel-card--blue    { background: var(--pastel-blue);    color: var(--accent-blue); }
.pastel-card--pink    { background: var(--pastel-pink);    color: var(--accent-pink); }
.pastel-card--coral   { background: var(--pastel-coral);   color: var(--accent-coral); }
.pastel-card--orange  { background: var(--pastel-orange);  color: var(--accent-orange); }
.pastel-card--yellow  { background: var(--pastel-yellow);  color: var(--accent-yellow); }
.pastel-card--green   { background: var(--pastel-green);   color: var(--accent-green); }
.pastel-card h3, .pastel-card .font-display { color: inherit; }
.pastel-card p { color: var(--astra-ink); opacity: 0.82; }
.dark-glass:hover,
.pastel-card:hover {
  border-color: rgb(var(--astra-aurora-rgb) / 0.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgb(var(--astra-violet-rgb) / 0.15);
}

.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--astra-aurora), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover::before { opacity: 1; }

/* Icons */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
}
.icon-chip::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.icon-chip--aurora { background: linear-gradient(135deg, rgb(var(--astra-aurora-rgb) / 0.22), rgb(var(--astra-aurora-light-rgb) / 0.08)); color: var(--astra-aurora); }
.icon-chip--violet { background: linear-gradient(135deg, rgb(var(--astra-violet-rgb) / 0.22), rgb(var(--astra-violet-light-rgb) / 0.08)); color: var(--astra-violet); }
.icon-chip--rose   { background: linear-gradient(135deg, rgba(244,114,182,0.22), rgba(251,113,133,0.08)); color: #e11d48; }
.icon-chip--gold   { background: linear-gradient(135deg, rgba(251,191,36,0.25), rgba(245,158,11,0.08)); color: #d97706; }
.icon-chip--navy   { background: linear-gradient(135deg, rgb(var(--astra-violet-rgb) / 0.15), rgb(var(--astra-violet-rgb) / 0.06)); color: var(--astra-800); }
.icon-chip--white  { background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)); color: var(--astra-aurora-light); }
.icon-chip--lg { width: 3.75rem; height: 3.75rem; font-size: 1.35rem; border-radius: 1.15rem; }

.icon-chip--dark-aurora { background: linear-gradient(135deg, rgb(var(--astra-aurora-rgb) / 0.28), rgb(var(--astra-aurora-rgb) / 0.08)); color: var(--astra-aurora-light); box-shadow: 0 8px 24px -8px rgb(var(--astra-aurora-rgb) / 0.4); }
.icon-chip--dark-violet { background: linear-gradient(135deg, rgb(var(--astra-violet-rgb) / 0.28), rgb(var(--astra-violet-rgb) / 0.08)); color: var(--astra-aurora-light); box-shadow: 0 8px 24px -8px rgb(var(--astra-violet-rgb) / 0.35); }
.icon-chip--dark-rose   { background: linear-gradient(135deg, rgba(244,114,182,0.28), rgba(244,114,182,0.08)); color: #fda4af; box-shadow: 0 8px 24px -8px rgba(244,114,182,0.3); }
.icon-chip--dark-gold   { background: linear-gradient(135deg, rgba(251,191,36,0.28), rgba(251,191,36,0.08)); color: #fde68a; box-shadow: 0 8px 24px -8px rgba(251,191,36,0.3); }

/* Section tags */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  border-radius: 0.72rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-tag--light {
  background: linear-gradient(135deg, rgb(var(--astra-aurora-rgb) / 0.1), rgb(var(--astra-aurora-light-rgb) / 0.5));
  color: var(--astra-aurora);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.18);
}
.section-tag--dark {
  background: rgba(255,255,255,0.06);
  color: var(--astra-aurora-light);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.25);
}
.section-tag--white {
  background: white;
  color: var(--astra-ink);
  border: 1px solid rgb(var(--astra-violet-rgb) / 0.1);
  box-shadow: 0 4px 16px -6px rgb(var(--astra-violet-rgb) / 0.1);
}

.section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-rule::before,
.section-rule::after {
  content: "";
  height: 1px;
  width: 3rem;
  background: linear-gradient(90deg, transparent, rgb(var(--astra-aurora-rgb) / 0.5), transparent);
}

/* Nav */
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.15rem;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--astra-gold), var(--astra-aurora), var(--astra-rose));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--astra-aurora); }

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgb(var(--astra-violet-rgb) / 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.38s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 22.5rem);
  display: flex;
  flex-direction: column;
  background: linear-gradient(168deg, var(--astra-900) 0%, var(--astra-800) 48%, var(--astra-950) 100%);
  border-left: 1px solid rgb(var(--astra-aurora-rgb) / 0.14);
  box-shadow: -24px 0 64px -12px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 0.42s var(--ease-out);
  overflow: hidden;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgb(var(--astra-violet-rgb) / 0.16) 0%, transparent 42%),
    radial-gradient(circle at 88% 72%, rgb(var(--astra-aurora-rgb) / 0.12) 0%, transparent 45%);
  pointer-events: none;
}
.mobile-menu__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}
.mobile-menu__glow--violet {
  top: -3rem;
  right: -2rem;
  width: 11rem;
  height: 11rem;
  background: rgb(var(--astra-violet-rgb) / 0.28);
}
.mobile-menu__glow--aurora {
  bottom: 5rem;
  left: -3rem;
  width: 10rem;
  height: 10rem;
  background: rgb(var(--astra-aurora-rgb) / 0.2);
}

.mobile-menu__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.5rem;
  padding-top: max(1.35rem, env(safe-area-inset-top));
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}
.mobile-menu__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.mobile-menu__brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.mobile-menu__brand-sub {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(94, 234, 212, 0.88);
}
.mobile-menu__close {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
}

.mobile-menu__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  align-self: flex-start;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.15rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition:
    background 0.28s var(--ease-out),
    border-color 0.28s,
    transform 0.32s var(--ease-out),
    color 0.28s,
    opacity 0.32s var(--ease-out);
  opacity: 0;
  transform: translateX(1.25rem);
}
.mobile-menu.is-open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }

.mobile-nav-link__icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  font-size: 0.85rem !important;
  flex-shrink: 0;
}
.mobile-nav-link__label { flex: 1; }
.mobile-nav-link__chev {
  font-size: 0.65rem;
  color: rgba(148, 163, 184, 0.55);
  transition: transform 0.28s var(--ease-out), color 0.28s;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgb(var(--astra-aurora-rgb) / 0.28);
  color: #fff;
  transform: translateX(4px);
}
.mobile-nav-link:hover .mobile-nav-link__chev,
.mobile-nav-link.is-active .mobile-nav-link__chev {
  color: var(--astra-aurora-light);
  transform: translateX(3px);
}
.mobile-nav-link.is-active {
  background: linear-gradient(135deg, rgb(var(--astra-aurora-rgb) / 0.14), rgb(var(--astra-violet-rgb) / 0.08));
  border-color: rgb(var(--astra-aurora-rgb) / 0.35);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--astra-aurora);
}

.mobile-menu__footer {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.38s var(--ease-out) 0.2s, transform 0.38s var(--ease-out) 0.2s;
}
.mobile-menu.is-open .mobile-menu__footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__quick {
  display: flex;
  gap: 0.5rem;
}
.mobile-menu__hours {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.03em;
}
.mobile-menu__hours i { margin-right: 0.25rem; }

/* Hero */
.hero--dark {
  background:
    radial-gradient(ellipse 82% 62% at 16% 0%, rgb(var(--astra-aurora-rgb) / 0.28), transparent 52%),
    radial-gradient(ellipse 72% 52% at 84% 4%, rgb(var(--astra-rose-rgb) / 0.18), transparent 48%),
    radial-gradient(ellipse 58% 44% at 50% 100%, rgb(var(--astra-gold-rgb) / 0.1), transparent 50%),
    linear-gradient(165deg, #1a0812 0%, var(--astra-900) 44%, #1f0d15 100%);
  color: #e8d5df;
}
.hero--dark .hero-grid-bg {
  background-image:
    linear-gradient(rgb(var(--astra-aurora-rgb) / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--astra-rose-rgb) / 0.05) 1px, transparent 1px);
}
.hero--dark .hero-constellation {
  opacity: 0.6;
}
.hero--dark .hero-price-chip {
  color: #fce8f3;
  background: rgb(255 255 255 / 0.07);
  border-color: rgb(255 255 255 / 0.12);
  box-shadow: 0 4px 14px -8px rgb(0 0 0 / 0.25);
}
.hero--dark .hero-price-chip strong { color: #fff; }
.hero--dark .hero-scroll-hint { color: #c9a8b8; }
.section--dark .btn-ghost-light {
  border-color: rgb(255 255 255 / 0.22);
}
.section--dark .btn-outline-light {
  color: var(--astra-aurora-light);
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.18);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06), 0 2px 10px -6px rgb(0 0 0 / 0.2);
}
.section--dark .btn-outline-light:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(var(--astra-aurora-rgb) / 0.35);
}

.hero-grid-bg {
  background-image:
    linear-gradient(rgb(var(--astra-gold-rgb) / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--astra-gold-rgb) / 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 72% 62% at 50% 38%, black, transparent);
}

.hero-constellation {
  background-image:
    radial-gradient(circle, rgb(var(--astra-gold-rgb) / 0.55) 1px, transparent 1.5px),
    radial-gradient(circle, rgb(var(--astra-aurora-light-rgb) / 0.35) 0.5px, transparent 1px);
  background-size: 120px 120px, 80px 80px;
  background-position: 0 0, 40px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, black 20%, transparent 75%);
  opacity: 0.45;
  animation: constellationDrift 28s linear infinite;
}
@keyframes constellationDrift {
  from { background-position: 0 0, 40px 60px; }
  to { background-position: 120px 80px, 160px 140px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.42rem 0.95rem 0.42rem 0.72rem;
  border-radius: 0.72rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-pink);
  background: var(--pastel-pink);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.15);
  box-shadow: 0 4px 14px -8px rgb(var(--astra-aurora-rgb) / 0.15);
}
.hero-eyebrow__dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--astra-gold);
  opacity: 0.85;
}

.hero-glow { animation: heroPulse 7s ease-in-out infinite alternate; }
.hero-glow:nth-child(2) { animation-delay: 2.5s; }
.hero-glow:nth-child(3) { animation-delay: 4s; }
@keyframes heroPulse {
  from { transform: scale(0.9) translate(0, 0); opacity: 0.35; }
  to   { transform: scale(1.08) translate(12px, -12px); opacity: 0.65; }
}

.star-float { animation: starFloat 4s ease-in-out infinite; }
.star-float:nth-child(2) { animation-delay: 1.2s; }
.star-float:nth-child(3) { animation-delay: 2.4s; }
@keyframes starFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-8px) rotate(12deg); opacity: 1; }
}



.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 0.72rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--astra-ink);
  background: #fff;
  border: 1px solid rgb(var(--astra-violet-rgb) / 0.08);
  box-shadow: 0 4px 14px -8px rgb(var(--astra-violet-rgb) / 0.12);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.trust-pill:nth-child(1) { background: var(--pastel-mint); border-color: rgb(13 148 136 / 0.15); }
.trust-pill:nth-child(2) { background: var(--pastel-pink); border-color: rgb(var(--astra-aurora-rgb) / 0.12); }
.trust-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgb(var(--astra-violet-rgb) / 0.18);
}

.stat-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s, background-color 0.3s;
}
.stat-card:nth-child(1) { background: rgba(255, 255, 255, 0.04) !important; }
.stat-card:nth-child(2) { background: rgba(255, 255, 255, 0.04) !important; }
.stat-card:nth-child(3) { background: rgba(255, 255, 255, 0.04) !important; }
.stat-card:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(219, 39, 119, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px -8px rgba(219, 39, 119, 0.25);
}
.stat-card .stat-num {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}
.stat-card:nth-child(1) .stat-num { color: #f472b6 !important; } /* pink-400 */
.stat-card:nth-child(2) .stat-num { color: #fbbf24 !important; } /* amber-400 */
.stat-card:nth-child(3) .stat-num { color: #f472b6 !important; } /* pink-400 */
.stat-card .stat-label {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 600;
}

.hero-frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    0 30px 60px -20px rgba(0,0,0,0.55);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(var(--astra-aurora-rgb) / 0.35) 0%, transparent 42%);
  pointer-events: none;
  z-index: 2;
}

.hero-float-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.97), var(--astra-pearl));
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 16px 40px -14px rgb(var(--astra-violet-rgb) / 0.28);
}

.hero-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.95rem;
  border-radius: 0.72rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-pink);
  background: var(--pastel-pink);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.15);
}
.hero-price-chip strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-pink);
}

.badge-dispatch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 0.72rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--astra-aurora-light), var(--astra-aurora));
  box-shadow:
    0 4px 0 var(--btn-primary-shadow-3d),
    0 12px 28px -8px rgb(var(--astra-aurora-rgb) / 0.55);
}

.hero-badges {
  position: relative;
  min-height: 3.5rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .hero-badges {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.75rem;
    min-height: 4rem;
    margin-top: 0;
  }
}

.faq-answer {
  padding: 0 1.5rem 1.35rem;
  border-top: 1px solid rgb(var(--astra-aurora-rgb) / 0.06);
  margin-top: -0.25rem;
}
@media (min-width: 640px) {
  .faq-answer { padding-left: 4.75rem; }
}
.faq-item[open] {
  border-color: rgb(var(--astra-aurora-rgb) / 0.14) !important;
  box-shadow: 0 12px 32px -14px rgb(var(--astra-aurora-rgb) / 0.12);
}

/* ── Steps section ── */
.steps-grid {
  padding-top: 1.75rem;
}
@media (min-width: 1024px) {
  .steps-grid::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 2.35rem;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgb(var(--astra-aurora-rgb) / 0.32) 0 5px, transparent 5px 13px);
    pointer-events: none;
    z-index: 0;
  }
  .steps-grid > * { position: relative; z-index: 1; }
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding: 2rem 1.35rem 1.5rem;
  border-radius: 1.75rem;
  background: #fff;
  border: 1px solid rgb(var(--astra-violet-rgb) / 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 32px -16px rgb(var(--astra-violet-rgb) / 0.14);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.35s;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 0 0 6px 6px;
  opacity: 0;
  transition: opacity 0.35s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 44px -18px rgb(var(--astra-violet-rgb) / 0.18);
}
.step-card:hover::before { opacity: 1; }

.step-card--aurora { color: var(--accent-pink); background: var(--pastel-pink); }
.step-card--aurora::before { background: linear-gradient(90deg, var(--accent-pink), var(--pastel-pink)); }
.step-card--aurora:hover { border-color: rgb(var(--astra-aurora-rgb) / 0.28); }
.step-card--aurora .step-badge { background: linear-gradient(135deg, var(--astra-aurora), var(--astra-rose) 55%, var(--astra-aurora-light)); color: #fff; }
.step-card--aurora .step-badge__icon { background: rgba(255, 255, 255, 0.88); color: var(--astra-aurora); }
.step-card--aurora .step-card__meta { color: var(--astra-aurora); background: rgb(var(--astra-aurora-rgb) / 0.1); }

.step-card--blue { color: var(--accent-blue); background: var(--pastel-blue); }
.step-card--blue::before { background: linear-gradient(90deg, var(--accent-blue), var(--pastel-blue)); }
.step-card--blue:hover { border-color: rgb(37 99 235 / 0.28); }
.step-card--blue .step-badge { background: linear-gradient(135deg, var(--accent-blue), #3b82f6 55%, var(--pastel-blue)); color: #fff; }
.step-card--blue .step-badge__icon { background: rgba(255, 255, 255, 0.2); color: #fff; }
.step-card--blue .step-card__meta { color: var(--accent-blue); background: rgb(37 99 235 / 0.1); }

.step-card--rose { color: var(--accent-coral); background: var(--pastel-coral); }
.step-card--rose::before { background: linear-gradient(90deg, var(--accent-coral), var(--pastel-coral)); }
.step-card--rose:hover { border-color: rgba(244, 114, 182, 0.32); }
.step-card--rose .step-badge { background: linear-gradient(135deg, #be185d, #f43f8a 55%, #fb7185); color: #fff; }
.step-card--rose .step-badge__icon { background: rgba(255, 255, 255, 0.2); color: #fce7f3; }
.step-card--rose .step-card__meta { color: #db2777; background: rgba(244, 114, 182, 0.1); }

.step-card--navy { color: var(--accent-mint); background: var(--pastel-mint); }
.step-card--navy::before { background: linear-gradient(90deg, var(--accent-mint), var(--pastel-mint)); }
.step-card--navy:hover { border-color: rgb(var(--astra-violet-rgb) / 0.28); }
.step-card--navy .step-badge { background: linear-gradient(135deg, var(--astra-950), var(--astra-900) 55%, var(--astra-800)); color: var(--astra-aurora-light); }
.step-card--navy .step-badge__icon { background: rgb(var(--astra-aurora-rgb) / 0.18); color: var(--astra-aurora-light); }
.step-card--navy .step-card__meta { color: var(--astra-800); background: rgb(var(--astra-violet-rgb) / 0.08); }

.step-badge {
  position: absolute;
  top: -1.15rem;
  left: 1.15rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem 0.4rem 0.4rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px -8px rgb(var(--astra-violet-rgb) / 0.28);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.step-card:hover .step-badge {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 32px -8px rgb(var(--astra-violet-rgb) / 0.32);
}
.step-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.step-badge__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}
.step-badge__num {
  font-variant-numeric: tabular-nums;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.step-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.15rem;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--astra-pearl);
  box-shadow:
    0 0 0 1px rgb(var(--astra-violet-rgb) / 0.06),
    0 8px 24px -12px rgb(var(--astra-violet-rgb) / 0.12);
}
.step-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(var(--astra-violet-rgb) / 0.18) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.step-card:hover .step-card__media::after { opacity: 1; }
.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.step-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.step-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--astra-900);
}
.step-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  flex: 1;
}
.step-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.step-card__meta i { font-size: 0.6rem; opacity: 0.85; }

/* FAQ */
details summary::-webkit-details-marker { display: none; }
details summary { list-style: none; cursor: pointer; }
details[open] .faq-chev { transform: rotate(180deg); color: var(--astra-aurora); }
details[open] { border-color: rgb(var(--astra-aurora-rgb) / 0.35) !important; }
.faq-chev { transition: transform 0.35s var(--ease-out), color 0.25s; }

.faq-item { transition: box-shadow 0.3s, border-color 0.3s; }
.faq-item:hover { box-shadow: 0 12px 32px -12px rgb(var(--astra-violet-rgb) / 0.15); }

/* CTA panel */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--astra-aurora) 0%, var(--astra-800) 50%, var(--astra-950) 100%);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.2);
  box-shadow: 0 24px 56px -20px rgb(var(--astra-aurora-rgb) / 0.3);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 80%;
  background: radial-gradient(ellipse at 50% 0%, rgb(var(--astra-aurora-rgb) / 0.18), transparent 65%);
  pointer-events: none;
}

/* Reviews */
.review-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.35s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgb(var(--astra-violet-rgb) / 0.18);
}
.review-card--featured {
  background: linear-gradient(165deg, var(--pastel-pink) 0%, #fff 40%, var(--pastel-coral) 100%);
  color: var(--astra-ink);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.15);
  box-shadow:
    0 0 0 1px rgb(var(--astra-aurora-rgb) / 0.12) inset,
    0 24px 48px -16px rgb(var(--astra-aurora-rgb) / 0.25);
}
.review-card--featured:hover {
  box-shadow:
    0 0 0 1px rgb(var(--astra-aurora-rgb) / 0.2) inset,
    0 28px 56px -16px rgb(var(--astra-aurora-rgb) / 0.32);
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  pointer-events: none;
  user-select: none;
}

.reviews-summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgb(var(--astra-violet-rgb) / 0.08);
  box-shadow: 0 8px 24px -12px rgb(var(--astra-violet-rgb) / 0.1);
}
.reviews-summary__score {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--astra-900);
}
.reviews-summary__stars { color: var(--astra-gold); font-size: 0.9rem; letter-spacing: 0.05em; }

.section-cta-row {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(var(--astra-aurora-rgb) / 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.section-cta-row p { color: #6b5a63; font-size: 0.95rem; max-width: 28rem; }

.faq-help-card {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgb(var(--astra-aurora-light-rgb) / 0.35), #fff);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.18);
  text-align: center;
}
.faq-help-card p { color: #6b5a63; font-size: 0.92rem; margin-bottom: 1rem; }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(var(--astra-aurora-light-rgb) / 0.75);
  padding: 0.35rem 0.65rem;
  border-radius: 0.55rem;
  background: rgb(var(--astra-violet-rgb) / 0.35);
  border: 1px solid rgb(var(--astra-aurora-rgb) / 0.15);
}

.checkout-progress {
  margin-bottom: 1.5rem;
}
.checkout-progress__step {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.checkout-progress__step.is-done { color: var(--accent-mint); }
.checkout-progress__step.is-active { color: var(--astra-aurora); }
.checkout-progress__bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}
.checkout-progress__seg {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e2e8f0;
}
.checkout-progress__seg.is-done { background: linear-gradient(90deg, var(--astra-gold), var(--astra-aurora)); }
.checkout-progress__seg.is-active { background: linear-gradient(90deg, var(--astra-aurora), var(--accent-coral)); }

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  border-radius: 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--astra-aurora-light);
  background: linear-gradient(135deg, rgb(var(--astra-aurora-rgb) / 0.28), rgb(var(--astra-violet-rgb) / 0.35));
  border: 1px solid rgb(var(--astra-gold-rgb) / 0.25);
}

.order-step-num {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgb(var(--astra-violet-rgb) / 0.35);
}

/* Contact cards */
.contact-card {
  background: white;
  border: 1px solid rgb(var(--astra-violet-rgb) / 0.08);
  box-shadow: 0 8px 32px -12px rgb(var(--astra-violet-rgb) / 0.12);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgb(var(--astra-violet-rgb) / 0.18);
  border-color: rgb(var(--astra-aurora-rgb) / 0.3);
}

/* Footer */
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.25s, transform 0.25s;
}
.footer-link:hover {
  color: var(--astra-aurora-light);
  transform: translateX(3px);
}

.footer-cta-bar {
  background:
    linear-gradient(90deg, rgb(var(--astra-aurora-rgb) / 0.08), rgb(var(--astra-violet-rgb) / 0.06), rgb(var(--astra-aurora-rgb) / 0.08)),
    linear-gradient(180deg, var(--astra-900), var(--astra-950));
  border-top: 1px solid rgb(var(--astra-aurora-rgb) / 0.18);
}

/* Mobile bottom contact bar */
.mobile-bar__action {
  min-height: 3.25rem;
}
body.menu-open .mobile-bar {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.mobile-bar {
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
  background: color-mix(in srgb, var(--astra-pearl) 94%, transparent) !important;
  border-top-color: rgb(var(--astra-violet-rgb) / 0.12) !important;
  box-shadow: 0 -12px 32px -14px rgb(var(--astra-violet-rgb) / 0.18) !important;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgb(var(--astra-gold-rgb) / 0.65);
  outline-offset: 3px;
}

/* ── Mobile audit tweaks ── */
@media (max-width: 767px) {
  html { scroll-padding-top: 5rem; }
  section[id] { scroll-margin-top: 5rem; }

  .has-mobile-bar {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }

  .section { padding-block: clamp(3.25rem, 7vw, 4.75rem); }
  .section-head { margin-bottom: 2.5rem !important; }
  .section-lead { font-size: 1rem; line-height: 1.65; }
  .section-title { line-height: 1.1; }

  .service-card { padding: 1.5rem !important; }
  .review-card { padding: 1.5rem !important; }

  .faq-item summary {
    gap: 0.75rem;
    padding: 1rem 1rem;
  }
  .faq-item summary .icon-chip {
    width: 2.25rem !important;
    height: 2.25rem !important;
    font-size: 0.75rem !important;
  }
  .faq-item summary span.font-bold {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .footer-cta-bar + footer,
  footer .border-t:last-child {
    scroll-margin-bottom: 1rem;
  }
}

#back-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
}
#back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Logo */
.logo-mark {
  background: conic-gradient(from 210deg, var(--accent-mint), var(--accent-blue), var(--accent-coral), var(--accent-pink), var(--accent-orange), var(--accent-yellow), var(--accent-green), var(--accent-mint));
  padding: 2px;
  border-radius: 1rem;
  box-shadow: 0 8px 28px -6px rgb(var(--astra-aurora-rgb) / 0.25);
}
.logo-mark-inner {
  background: linear-gradient(145deg, var(--astra-900), var(--astra-800));
  border-radius: calc(1rem - 2px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom Scrollbar for premium dark/light layout */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--astra-950);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--astra-aurora), var(--accent-mint));
  border-radius: 5px;
  border: 2px solid var(--astra-950);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--astra-aurora-light), var(--pastel-mint));
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--astra-aurora) var(--astra-950);
}

/* Scrolled Header Glow line */
#site-header.header-scrolled {
  position: fixed;
}
#site-header.header-scrolled::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent-mint) 20%, var(--astra-aurora) 50%, var(--astra-rose) 80%, transparent);
  box-shadow: 0 1px 10px rgb(var(--astra-aurora-rgb) / 0.35);
  animation: headerGlowPulse 4s ease-in-out infinite;
}

@keyframes headerGlowPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; filter: brightness(1.2); }
}

/* Card Visual Polish */
.dark-glass:hover, .service-card:hover {
  border-color: rgb(var(--astra-aurora-rgb) / 0.45) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 25px 50px -12px rgb(var(--astra-aurora-rgb) / 0.25),
    0 0 15px rgb(var(--astra-aurora-rgb) / 0.15) !important;
}

.review-card:hover {
  border-color: rgb(var(--astra-violet-rgb) / 0.35) !important;
  box-shadow: 
    0 24px 48px -16px rgb(var(--astra-violet-rgb) / 0.22),
    0 0 15px rgb(var(--astra-violet-rgb) / 0.1) !important;
}

.feature-card:hover {
  border-color: rgb(var(--astra-aurora-rgb) / 0.35) !important;
  box-shadow: 
    0 20px 40px -14px rgb(var(--astra-violet-rgb) / 0.18),
    0 0 12px rgb(var(--astra-aurora-rgb) / 0.08) !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}