/* =========================================================
   SUN 7 — Custom styles (glossy, glow, gradients, motion)
   ========================================================= */

:root {
  --sun-400: #F5A623;
  --sun-300: #FFC25C;
  --sun-500: #E58E14;
  --grape-900: #1A0A2E;
  --grape-800: #26113F;
  --grape-700: #341852;
  --sun-grad: linear-gradient(135deg, #FFD27A 0%, #F5A623 45%, #E58E14 100%);
  --grape-grad: linear-gradient(135deg, #4A2274 0%, #26113F 100%);
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(245,166,35,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(150,89,217,.18), transparent 60%),
    #1A0A2E;
  font-feature-settings: "ss01", "cv11";
}

/* Display heading scale — punchy like the flyer */
.font-display { font-family: 'Poppins', 'Inter', sans-serif; letter-spacing: -0.02em; }
.font-display.font-bold { font-weight: 800; }
h1.font-display { font-weight: 900; letter-spacing: -0.035em; }
h2.font-display { font-weight: 800; letter-spacing: -0.03em; }
h3.font-display { font-weight: 700; letter-spacing: -0.02em; }

/* Script accent — used for "Existe depuis 2010" type mentions */
.font-script { font-family: 'Caveat', cursive; font-weight: 700; }

/* ---------- Decorative ---------- */
.bg-aurora {
  position: fixed;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(600px 400px at 20% 20%, rgba(245,166,35,.20), transparent 60%),
    radial-gradient(500px 400px at 80% 60%, rgba(229,142,20,.15), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(107,48,168,.25), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.05); }
}
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: linear-gradient(90deg, rgba(74,34,116,.8), rgba(26,10,46,.9), rgba(74,34,116,.8));
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  height: 34px;
  transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
  will-change: transform;
}
body.is-scrolled .topbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.25);
  color: #FFC25C;
  font-size: 11px;
}

/* ---------- Header ---------- */
#header {
  transition: top .4s ease, background .4s ease, backdrop-filter .4s ease;
  will-change: top;
}
#header.scrolled {
  backdrop-filter: blur(20px) saturate(140%);
  background: rgba(26,10,46,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
  top: 0 !important;
}

.logo-orb {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--sun-grad);
  display: grid;
  place-items: center;
  box-shadow:
    0 8px 30px rgba(245,166,35,.45),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -8px 18px rgba(184, 79, 0, .35);
  position: relative;
  overflow: hidden;
}

.glass-pill {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-link.active { color: #1A0A2E; background: var(--sun-grad); box-shadow: 0 6px 20px rgba(245,166,35,.45); }

.nav-link-mobile {
  padding: 12px 16px;
  border-radius: 12px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.nav-link-mobile:hover { background: rgba(255,255,255,.06); color: #fff; }

.glass-icon-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #1A0A2E;
  background: var(--sun-grad);
  box-shadow:
    0 10px 30px rgba(245,166,35,.45),
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -10px 18px rgba(184, 79, 0, .35);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(245,166,35,.55), inset 0 1px 0 rgba(255,255,255,.6), inset 0 -10px 18px rgba(184, 79, 0, .35); }
.btn-primary:hover::before { transform: translateX(120%); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(245,166,35,.4); transform: translateY(-2px); }

.btn-tiny {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(245,166,35,.12);
  color: #FFC25C;
  border: 1px solid rgba(245,166,35,.25);
  transition: all .25s ease;
}
.btn-tiny:hover { background: rgba(245,166,35,.2); color: #fff; }

/* ---------- Glass panel ---------- */
.glass-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 30px 60px -30px rgba(0,0,0,.6);
}

.badge-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}

.gradient-text {
  background: var(--sun-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(245,166,35,.35));
}

/* ---------- HERO ---------- */
.hero-slide {
  position: relative;
  min-height: calc(100vh - 34px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}
@keyframes heroZoom {
  0%   { transform: scale(1.02) translate(0,0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,10,46,.92) 0%, rgba(26,10,46,.7) 40%, rgba(26,10,46,.4) 100%),
    radial-gradient(1000px 600px at 80% 20%, rgba(245,166,35,.18), transparent 60%);
  pointer-events: none;
}

/* ---------- Header socials (icônes discrètes en haut) ---------- */
.header-socials {
  padding: 0 6px;
  margin-right: 2px;
}
.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .50);
  font-size: 13px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.header-social-link:hover {
  color: #FFC25C;
  background: rgba(245, 166, 35, .10);
  transform: translateY(-1px);
}
.header-social-link .fa-instagram:hover,
.header-social-link:hover .fa-instagram { color: #E1306C; }
.header-social-link .fa-facebook-f:hover,
.header-social-link:hover .fa-facebook-f { color: #1877F2; }
.header-social-link .fa-tiktok:hover,
.header-social-link:hover .fa-tiktok { color: #FFC25C; }

/* Slide sans photo : décor CSS only (sunset palmiers) */
.hero-bg--clean {
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(245,166,35,.32), transparent 60%),
    radial-gradient(700px 500px at 10% 100%, rgba(107,48,168,.40), transparent 60%),
    radial-gradient(500px 400px at 50% 50%, rgba(229,142,20,.10), transparent 60%),
    linear-gradient(180deg, #2A1145 0%, #1A0A2E 100%);
}
.hero-bg-overlay--soft {
  background:
    linear-gradient(90deg, rgba(26,10,46,.55) 0%, rgba(26,10,46,.20) 55%, rgba(26,10,46,0) 100%);
}

.hero-swiper { position: relative; z-index: 1; }
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,.5);
  opacity: 1;
  width: 28px; height: 4px;
  border-radius: 2px;
  transition: all .3s ease;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--sun-grad);
  width: 48px;
  box-shadow: 0 0 12px rgba(245,166,35,.6);
}

/* Hero photo card */
.hero-photo-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.hero-photo-card:hover .hero-photo { transform: scale(1.06); }
.hero-photo-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,.6)),
    linear-gradient(120deg, rgba(255,255,255,.18) 0%, transparent 30%);
  mix-blend-mode: overlay;
}
.hero-photo-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  right: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(26,10,46,.55);
  backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

.floating-pill {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.6);
  z-index: 2;
}
.float-1 { top: 8%; left: -6%; animation: float 5s ease-in-out infinite; }
.float-2 { bottom: 12%; right: -4%; animation: float 6s ease-in-out infinite reverse; }

/* ---------- Partners bar ---------- */
.partners-bar {
  background:
    linear-gradient(90deg, rgba(245,166,35,.06), rgba(150,89,217,.06));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.partner-item {
  filter: brightness(1) saturate(1);
  transition: transform .3s ease, filter .3s ease;
}
.partner-item:hover { transform: translateY(-2px); filter: brightness(1.1) saturate(1.1); }
.invert { filter: brightness(0) invert(1) opacity(.85); }

/* ---------- Solar cards ---------- */
.solar-card {
  position: relative;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.solar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -30px rgba(245,166,35,.35);
}
.solar-card-glow {
  position: absolute;
  inset: -1px;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(245,166,35,.4), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  border-radius: 28px;
  z-index: 0;
}
.solar-card:hover .solar-card-glow { opacity: 1; }
.solar-card-body {
  position: relative;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(38,17,63,.85), rgba(26,10,46,.95));
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.solar-card-premium {
  background: linear-gradient(180deg, rgba(245,166,35,.5), rgba(245,166,35,.05));
}
.solar-card-premium .solar-card-body {
  background:
    radial-gradient(at top right, rgba(245,166,35,.18), transparent 60%),
    linear-gradient(180deg, rgba(38,17,63,.92), rgba(26,10,46,.98));
}

.solar-photo-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.solar-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.solar-card:hover .solar-photo { transform: scale(1.06); }
.solar-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,10,46,.95));
  pointer-events: none;
}
.solar-tag-name {
  position: absolute;
  left: 16px; top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26,10,46,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #FFC25C;
}

.solar-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  font-size: 18px;
  color: #FFC25C;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  flex-shrink: 0;
}

.solar-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.solar-feature i {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(245,166,35,.15);
  color: #FFC25C;
  display: grid; place-items: center;
  font-size: 9px;
}

.premium-badge {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #1A0A2E;
  background: var(--sun-grad);
  box-shadow: 0 8px 20px rgba(245,166,35,.45), inset 0 1px 0 rgba(255,255,255,.5);
  letter-spacing: .5px;
  z-index: 2;
}

/* ---------- Health tips ---------- */
.health-tip {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  color: rgba(255,255,255,.85);
  transition: all .25s ease;
}
.health-tip i {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(245,166,35,.12);
  color: #FFC25C;
  flex-shrink: 0;
}
.health-tip:hover {
  background: rgba(245,166,35,.06);
  border-color: rgba(245,166,35,.2);
  transform: translateX(4px);
}

/* ---------- Centre photo stack ---------- */
.centre-photo-stack {
  position: relative;
  height: 540px;
}
.centre-photo-1, .centre-photo-2 {
  position: absolute;
  border-radius: 28px;
  object-fit: cover;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.06);
  transition: transform .6s ease;
}
.centre-photo-1 {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
}
.centre-photo-2 {
  width: 60%;
  height: 60%;
  bottom: 0;
  right: 0;
}
.centre-photo-stack:hover .centre-photo-1 { transform: translate(-6px,-6px); }
.centre-photo-stack:hover .centre-photo-2 { transform: translate(6px,6px); }

.centre-since-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--sun-grad);
  color: #1A0A2E;
  box-shadow: 0 30px 60px -20px rgba(245,166,35,.6), inset 0 1px 0 rgba(255,255,255,.5);
  font-weight: 700;
  z-index: 2;
}
.centre-since-badge i { font-size: 24px; }

.centre-mini {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  font-weight: 500;
}
.centre-mini i { font-size: 18px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,10,46,.85));
  pointer-events: none;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 60px -20px rgba(245,166,35,.35);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }
  .centre-photo-stack { height: 420px; }
}

/* ---------- Pricing — duration toggle ---------- */
.duration-toggle-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-bottom: 36px;
}
.duration-toggle {
  position: relative;
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.duration-btn {
  position: relative;
  z-index: 2;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .25s ease;
  white-space: nowrap;
}
.duration-btn:hover { color: #fff; }
.duration-btn.active { color: #1A0A2E; }
.duration-pill {
  position: absolute;
  z-index: 1;
  top: 6px; left: 6px;
  height: calc(100% - 12px);
  border-radius: 999px;
  background: var(--sun-grad);
  box-shadow:
    0 8px 22px rgba(245,166,35,.45),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -6px 14px rgba(184,79,0,.25);
  transition: left .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1);
}
.duration-hint {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 8px;
}
.duration-hint i { color: rgba(245,166,35,.7); }

@media (max-width: 600px) {
  .duration-toggle { flex-wrap: wrap; justify-content: center; }
  .duration-btn { padding: 8px 14px; font-size: 12px; }
  .duration-pill { display: none; }
  .duration-btn.active { background: var(--sun-grad); }
}

/* ---------- Pricing — main cards ---------- */
.pcard {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(38,17,63,.85), rgba(26,10,46,.95));
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -25px rgba(245,166,35,.4);
  border-color: rgba(245,166,35,.25);
}
.pcard-photo {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.pcard-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.pcard:hover .pcard-photo img { transform: scale(1.07); }
.pcard-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,10,46,.95));
  pointer-events: none;
}
.pcard-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(26,10,46,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #FFC25C;
}
.pcard-crown {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--sun-grad);
  font-size: 10px;
  font-weight: 700;
  color: #1A0A2E;
  letter-spacing: .5px;
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 6px 16px rgba(245,166,35,.5), inset 0 1px 0 rgba(255,255,255,.5);
  z-index: 2;
}
.pcard-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pcard-price {
  display: inline-flex; align-items: baseline; gap: 4px;
  margin-bottom: 4px;
}
.pcard-price-amount {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: var(--sun-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 16px rgba(245,166,35,.4));
  line-height: 1;
  transition: opacity .2s ease;
}
.pcard-price-amount.flash { animation: priceFlash .5s ease; }
@keyframes priceFlash {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); filter: drop-shadow(0 8px 30px rgba(245,166,35,.7)); }
  100% { transform: scale(1); }
}
.pcard-price-currency {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #FFC25C;
}
.pcard-duration {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pcard-duration span { color: #FFC25C; font-weight: 600; }
.pcard-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  background: rgba(245,166,35,.1);
  color: #FFC25C;
  border: 1px solid rgba(245,166,35,.25);
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  transition: all .25s ease;
}
.pcard-cta:hover {
  background: rgba(245,166,35,.18);
  border-color: rgba(245,166,35,.5);
  color: #fff;
  transform: translateY(-1px);
}
.pcard-cta-premium {
  background: var(--sun-grad);
  color: #1A0A2E;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(245,166,35,.4), inset 0 1px 0 rgba(255,255,255,.4);
}
.pcard-cta-premium:hover {
  background: var(--sun-grad);
  color: #1A0A2E;
  box-shadow: 0 12px 30px rgba(245,166,35,.55), inset 0 1px 0 rgba(255,255,255,.5);
}

/* Premium variant */
.pcard-premium {
  border-color: rgba(245,166,35,.4);
  background:
    radial-gradient(at top right, rgba(245,166,35,.18), transparent 60%),
    linear-gradient(180deg, rgba(38,17,63,.92), rgba(26,10,46,.98));
}
.pcard-premium-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245,166,35,.5), transparent 50%, rgba(245,166,35,.3));
  z-index: -1;
  opacity: .5;
  filter: blur(20px);
}

/* ---------- Pricing — collapsible details ---------- */
.price-details {
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  padding: 18px 24px;
  transition: background .25s ease;
}
.price-details[open] { background: rgba(255,255,255,.03); }
.price-details summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.price-details summary::-webkit-details-marker { display: none; }
.summary-chevron { transition: transform .3s ease; color: rgba(255,255,255,.5); }
.price-details[open] .summary-chevron { transform: rotate(180deg); color: #FFC25C; }
.price-row { transition: background .25s ease; }
.price-row:hover { background: rgba(245,166,35,.04); }
.price-row-premium { background: linear-gradient(90deg, rgba(245,166,35,.08), transparent); }

/* ---------- Whitening cards ---------- */
.whitening-card {
  position: relative;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(38,17,63,.85), rgba(26,10,46,.95));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.whitening-card:hover { transform: translateY(-4px); box-shadow: 0 25px 60px -25px rgba(245,166,35,.4); }
.whitening-card-premium {
  border-color: rgba(245,166,35,.35);
  background:
    radial-gradient(at top right, rgba(245,166,35,.15), transparent 60%),
    linear-gradient(180deg, rgba(38,17,63,.92), rgba(26,10,46,.98));
}

/* ---------- Hours card ---------- */
.hours-card {
  border-radius: 22px;
  background:
    radial-gradient(at top right, rgba(245,166,35,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.hours-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 600;
  font-size: 15px;
}
.hours-head i { color: #FFC25C; font-size: 16px; }
.hours-pill {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #1A0A2E;
  background: var(--sun-grad);
  box-shadow: 0 6px 14px rgba(245,166,35,.45), inset 0 1px 0 rgba(255,255,255,.45);
  letter-spacing: .5px;
}
.hours-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.hours-row span:last-child { font-weight: 600; color: #FFC25C; }

/* ---------- Contact ---------- */
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: #fff;
  transition: all .25s ease;
}
.contact-row:hover {
  background: rgba(245,166,35,.06);
  border-color: rgba(245,166,35,.2);
  transform: translateX(4px);
}

.social-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: all .25s ease;
}
.social-btn:hover {
  background: var(--sun-grad);
  color: #1A0A2E;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245,166,35,.45);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  transition: all .25s ease;
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus {
  outline: none;
  border-color: rgba(245,166,35,.5);
  background: rgba(245,166,35,.05);
  box-shadow: 0 0 0 4px rgba(245,166,35,.1);
}
.form-input option { background: #26113F; color: #fff; }

/* ---------- Custom select ---------- */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select input[type="hidden"] { display: none; }
.cs-trigger {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all .25s ease;
}
.cs-trigger:hover {
  border-color: rgba(245,166,35,.3);
  background: rgba(255,255,255,.05);
}
.custom-select.open .cs-trigger {
  border-color: rgba(245,166,35,.5);
  background: rgba(245,166,35,.06);
  box-shadow: 0 0 0 4px rgba(245,166,35,.1);
}
.cs-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(245,166,35,.12);
  color: #FFC25C;
  display: grid; place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  border: 1px solid rgba(245,166,35,.2);
}
.cs-value { flex: 1; }
.cs-chevron {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  transition: transform .25s ease;
}
.custom-select.open .cs-chevron { transform: rotate(180deg); color: #FFC25C; }

.cs-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(38,17,63,.98), rgba(26,10,46,.98));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.custom-select.open .cs-list {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cs-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease;
  position: relative;
}
.cs-option + .cs-option { margin-top: 2px; }
.cs-option:hover { background: rgba(245,166,35,.08); }
.cs-option-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #FFC25C;
  flex-shrink: 0;
}
.cs-option-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.cs-option-sub {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.cs-check {
  margin-left: auto;
  font-size: 12px;
  color: #FFC25C;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(245,166,35,.15);
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity .2s ease, transform .2s ease;
}
.cs-option.selected .cs-check { opacity: 1; transform: scale(1); }
.cs-option.selected { background: rgba(245,166,35,.06); }

/* ---------- Form extras ---------- */
.contact-form-head {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all .2s ease;
}
.form-consent input[type="checkbox"]:checked {
  background: var(--sun-grad);
  border-color: transparent;
}
.form-consent input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #1A0A2E;
}

.cf-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
}
.cf-feedback.success {
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.3);
  color: #6EE7B7;
}
.cf-feedback.error {
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.3);
  color: #FCA5A5;
}

/* ---------- Legal disclaimer ---------- */
.legal-disclaimer {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  font-size: 11px;
  line-height: 1.7;
}
.legal-disclaimer i { color: rgba(245,166,35,.6); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.legal-disclaimer strong { color: rgba(255,255,255,.75); letter-spacing: .5px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--sun-grad);
  color: #1A0A2E;
  display: grid; place-items: center;
  font-size: 16px;
  box-shadow:
    0 12px 30px rgba(245,166,35,.45),
    inset 0 1px 0 rgba(255,255,255,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s ease;
  z-index: 60;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,5,20,.92);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  padding: 40px;
}
.lightbox.visible { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 20px;
  box-shadow: 0 50px 100px rgba(0,0,0,.7);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all .25s ease;
}
.lightbox-close:hover { background: rgba(245,166,35,.3); }

/* ---------- Shynn credit ---------- */
.shynn-credit {
  position: relative;
  background: var(--sun-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  transition: filter .25s ease;
}
.shynn-credit:hover { filter: drop-shadow(0 2px 8px rgba(245,166,35,.5)); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
