﻿/* ===== PRICING PAGE ===== */

/* Page transition */
.page-transition {
  position: fixed; inset: 0; z-index: 9998;
  background: #03030a; opacity: 1; pointer-events: none;
  transition: opacity 0.38s ease;
}
.page-transition.pt-done   { opacity: 0; }
.page-transition.pt-active { opacity: 1; pointer-events: all; }

/* ── Back link ── */
.back-link {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.70);
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.back-link:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Page aurora gradient — makes glass visible ── */
/* Pricing page aurora — layered halos that make glass visible */
.pricing-page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% 25%,  rgba(34,197,94,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 15%,  rgba(20,83,45,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 50% 85%,  rgba(146,64,14,0.10)  0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 72%,  rgba(200,130,0,0.08)  0%, transparent 52%);
}

/* ── Hero ── */
.pricing-hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 64px) 24px 64px;
  text-align: center;
  overflow: hidden;
}

.pricing-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.pricing-hero-orb.orb-1 {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.18) 0%, transparent 70%);
  top: -80px; left: 50%; transform: translateX(-60%);
  animation: orbFloat 12s ease-in-out infinite;
}
.pricing-hero-orb.orb-2 {
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(20,83,45,0.12) 0%, transparent 70%);
  bottom: -60px; right: 10%;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(-60%); }
  50% { transform: translateY(-24px) translateX(-60%); }
}
.pricing-hero-orb.orb-2 {
  animation: orbFloat2 15s ease-in-out infinite reverse;
}
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.pricing-hero-inner {
  position: relative; z-index: 1;
  max-width: 760px;
}

.pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 120px);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: #fff;
  margin: 16px 0 20px;
}

.pricing-subtitle {
  font-size: 16px; font-weight: 400;
  color: rgba(240,240,248,0.62);
  max-width: 520px; margin: 0 auto 28px;
  line-height: 1.65;
}

.discount-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.35);
  color: rgba(254,243,199,0.90);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 4px 20px rgba(34,197,94,0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ── Section shared ── */
.packages-section,
.services-section {
  padding: 60px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Packages grid ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}

/* ── Package card ── */
.package-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  padding: 36px 32px;
  background: var(--lg-bg);
  backdrop-filter: var(--lg-blur);
  -webkit-backdrop-filter: var(--lg-blur);
  border: 1px solid var(--lg-border);
  box-shadow: var(--lg-shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  /* Equal height: push CTA to bottom */
  display: flex;
  flex-direction: column;
}
.package-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Dome shine */
.package-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.04) 50%,
    transparent 100%
  );
  border-radius: 24px 24px 60% 60% / 24px 24px 40% 40%;
  pointer-events: none; z-index: 1;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--lg-border-h);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px  0 rgba(0,0,0,0.22),
    inset  1px 0  0 rgba(255,255,255,0.12),
    inset -1px 0  0 rgba(255,255,255,0.06),
    0 2px  6px rgba(0,0,0,0.18),
    0 20px 60px rgba(0,0,0,0.55),
    0 0 0  1px rgba(255,255,255,0.08);
}

/* ── Starter card — Bronze/Copper ── */
.package-card:not(.highlighted):not(.gold) {
  background: linear-gradient(145deg,
    rgba(140,75,20,0.20) 0%,
    rgba(100,50,12,0.14) 45%,
    rgba(60,28,6,0.10) 100%
  );
  border-color: rgba(185,105,35,0.40);
  box-shadow:
    inset 0 1.5px 0 rgba(225,160,90,0.30),
    inset 0 -1px  0 rgba(0,0,0,0.25),
    inset  1px 0  0 rgba(200,130,60,0.14),
    inset -1px 0  0 rgba(160,85,22,0.08),
    0 2px  6px rgba(0,0,0,0.22),
    0 16px 50px rgba(130,65,14,0.28),
    0 0 0  1px rgba(185,105,35,0.18),
    0 0 80px rgba(150,75,18,0.16);
}
.package-card:not(.highlighted):not(.gold):hover {
  transform: translateY(-6px);
  border-color: rgba(210,125,45,0.58);
  box-shadow:
    inset 0 1.5px 0 rgba(235,170,100,0.40),
    inset 0 -1px  0 rgba(0,0,0,0.25),
    inset  1px 0  0 rgba(215,145,70,0.20),
    inset -1px 0  0 rgba(175,95,28,0.12),
    0 2px  6px rgba(0,0,0,0.22),
    0 24px 65px rgba(160,80,18,0.40),
    0 0 0  1px rgba(210,125,45,0.30),
    0 0 110px rgba(170,85,20,0.26);
}
.package-card:not(.highlighted):not(.gold)::before {
  background: linear-gradient(180deg,
    rgba(210,140,70,0.18) 0%,
    rgba(170,95,28,0.07) 50%,
    transparent 100%
  );
}

/* ── Pro card — Platinum / Silver ── */
.package-card.highlighted {
  background: linear-gradient(145deg,
    rgba(175,188,208,0.14) 0%,
    rgba(130,148,172,0.09) 45%,
    rgba(80,95,118,0.07) 100%
  );
  border-color: rgba(185,200,222,0.45);
  box-shadow:
    inset 0 1.5px 0 rgba(240,245,255,0.55),
    inset 0 -1px  0 rgba(0,0,0,0.22),
    inset  1px 0  0 rgba(210,222,240,0.22),
    inset -1px 0  0 rgba(160,178,202,0.10),
    0 2px  6px rgba(0,0,0,0.22),
    0 16px 55px rgba(130,155,190,0.35),
    0 0 0  1px rgba(190,208,230,0.22),
    0 0 100px rgba(145,168,200,0.22);
  z-index: 2;
}
.package-card.highlighted:hover {
  transform: translateY(-8px);
  border-color: rgba(210,225,245,0.62);
  box-shadow:
    inset 0 1.5px 0 rgba(248,252,255,0.65),
    inset 0 -1px  0 rgba(0,0,0,0.22),
    inset  1px 0  0 rgba(222,234,250,0.28),
    inset -1px 0  0 rgba(175,195,220,0.14),
    0 2px  6px rgba(0,0,0,0.22),
    0 28px 75px rgba(155,178,215,0.48),
    0 0 0  1px rgba(205,220,242,0.35),
    0 0 130px rgba(165,188,220,0.32);
}
.package-card.highlighted::before {
  background: linear-gradient(180deg,
    rgba(225,235,252,0.22) 0%,
    rgba(190,208,232,0.09) 50%,
    transparent 100%
  );
}
/* Platinum shimmer sweep */
.package-card.highlighted::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(220,232,250,0.05) 40%,
    rgba(235,245,255,0.14) 50%,
    rgba(220,232,250,0.05) 60%,
    transparent 100%
  );
  transform: skewX(-15deg);
  animation: platinumSweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}
@keyframes platinumSweep {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

/* ── Premium card — Vibrant Gold ── */
.package-card.gold {
  background: linear-gradient(145deg,
    rgba(255,200,30,0.18) 0%,
    rgba(220,160,0,0.12) 45%,
    rgba(160,110,0,0.08) 100%
  );
  border-color: rgba(255,200,30,0.52);
  box-shadow:
    inset 0 1.5px 0 rgba(255,240,120,0.45),
    inset 0 -1px  0 rgba(0,0,0,0.22),
    inset  1px 0  0 rgba(255,215,60,0.22),
    inset -1px 0  0 rgba(210,150,0,0.12),
    0 2px  6px rgba(0,0,0,0.20),
    0 16px 55px rgba(210,150,0,0.38),
    0 0 0  1px rgba(255,200,30,0.22),
    0 0 100px rgba(230,165,0,0.26);
  z-index: 1;
}
.package-card.gold:hover {
  transform: translateY(-8px);
  border-color: rgba(255,215,50,0.72);
  box-shadow:
    inset 0 1.5px 0 rgba(255,245,140,0.58),
    inset 0 -1px  0 rgba(0,0,0,0.22),
    inset  1px 0  0 rgba(255,225,80,0.28),
    inset -1px 0  0 rgba(220,160,0,0.14),
    0 2px  6px rgba(0,0,0,0.20),
    0 28px 75px rgba(230,165,0,0.55),
    0 0 0  1px rgba(255,210,40,0.38),
    0 0 140px rgba(245,175,0,0.38);
}
/* Gold dome */
.package-card.gold::before {
  background: linear-gradient(180deg,
    rgba(255,218,40,0.26) 0%,
    rgba(255,195,20,0.11) 50%,
    transparent 100%
  );
}
/* Animated gold shimmer sweep */
.package-card.gold::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,215,0,0.07) 40%,
    rgba(255,220,50,0.16) 50%,
    rgba(255,215,0,0.07) 60%,
    transparent 100%
  );
  transform: skewX(-15deg);
  animation: goldSweep 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}
@keyframes goldSweep {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}
/* Gold check icons */
.package-card.gold .pkg-check {
  background: rgba(34,197,94,0.20);
  border-color: rgba(34,197,94,0.45);
  color: rgba(253,211,77,0.95);
}
/* Gold CTA button */
.package-card.gold .pkg-cta {
  background: linear-gradient(145deg,
    rgba(255,200,30,0.38) 0%,
    rgba(220,160,0,0.26) 45%,
    rgba(170,118,0,0.18) 100%
  );
  border-color: rgba(255,210,50,0.55);
  color: rgba(255,240,140,0.97);
  box-shadow:
    inset 0 1.5px 0 rgba(255,245,150,0.42),
    inset 0 -1px  0 rgba(0,0,0,0.18),
    0 4px 20px rgba(225,160,0,0.38),
    0 0 0 1px rgba(255,200,30,0.20);
}
.package-card.gold .pkg-cta:hover {
  background: linear-gradient(145deg,
    rgba(255,210,40,0.52) 0%,
    rgba(235,172,0,0.38) 45%,
    rgba(185,130,0,0.28) 100%
  );
  border-color: rgba(255,225,70,0.72);
  color: #fff;
  box-shadow:
    inset 0 1.5px 0 rgba(255,250,170,0.55),
    inset 0 -1px  0 rgba(0,0,0,0.18),
    0 8px 32px rgba(240,172,0,0.55),
    0 0 0 1px rgba(255,215,40,0.35);
  transform: translateY(-2px);
}

/* Badge */
.pkg-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 4;
}
/* Platinum badge (Most Popular) */
.pkg-badge.badge-blue {
  background: rgba(175,192,218,0.18);
  border: 1px solid rgba(200,218,242,0.48);
  color: rgba(225,238,255,0.97);
  text-shadow: 0 0 12px rgba(200,218,242,0.40);
}
/* Gold badge (Best Value) */
.pkg-badge.badge-gold {
  background: rgba(255,200,30,0.18);
  border: 1px solid rgba(255,212,50,0.52);
  color: rgba(255,235,120,0.97);
  text-shadow: 0 0 12px rgba(255,210,40,0.40);
}

/* Card content layers */
.pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; letter-spacing: 0.08em;
  color: #fff; line-height: 1;
  margin-bottom: 10px;
  position: relative; z-index: 2;
}
.pkg-desc {
  font-size: 13px; color: rgba(240,240,248,0.52);
  line-height: 1.6; margin-bottom: 24px;
  position: relative; z-index: 2;
}

.pkg-price-wrap {
  margin-bottom: 6px;
  position: relative; z-index: 2;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.pkg-original {
  font-size: 18px; font-weight: 400;
  color: rgba(240,240,248,0.30);
  text-decoration: line-through;
}
.pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; letter-spacing: 0.04em;
  color: #fff; line-height: 1;
}

.pkg-savings {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.80);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 24px;
  position: relative; z-index: 2;
  width: fit-content;
}
/* Per-card savings badge colors */
.package-card:not(.highlighted):not(.gold) .pkg-savings {
  background: rgba(185,105,35,0.20);
  border-color: rgba(210,130,50,0.40);
  color: rgba(235,175,110,0.95);
}
.package-card.highlighted .pkg-savings {
  background: rgba(185,200,225,0.16);
  border-color: rgba(205,220,245,0.38);
  color: rgba(220,235,255,0.95);
}
.package-card.gold .pkg-savings {
  background: rgba(255,200,30,0.18);
  border-color: rgba(255,212,50,0.42);
  color: rgba(255,235,120,0.96);
}

.pkg-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  margin-bottom: 20px;
  position: relative; z-index: 2;
}

.pkg-items {
  list-style: none;
  margin-bottom: 28px;
  position: relative; z-index: 2;
  flex: 1; /* pushes CTA to bottom */
}
.pkg-items li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(240,240,248,0.72);
  padding: 5px 0; line-height: 1.5;
}
/* Bronze check (Starter) */
.pkg-check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(185,105,35,0.20);
  border: 1px solid rgba(200,120,45,0.42);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
  color: rgba(225,160,90,0.95);
  font-size: 9px; font-weight: 700;
}
/* Platinum check (Pro) */
.package-card.highlighted .pkg-check {
  background: rgba(185,200,225,0.18);
  border-color: rgba(200,215,238,0.45);
  color: rgba(225,235,252,0.95);
}
/* Gold check (Premium) */
.package-card.gold .pkg-check {
  background: rgba(255,200,30,0.18);
  border-color: rgba(255,210,50,0.48);
  color: rgba(255,235,120,0.96);
}

.pkg-cta {
  position: relative; z-index: 2;
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 20px; height: 46px;
  border-radius: 50px;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.07) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(240,240,248,0.92);
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  white-space: nowrap; overflow: hidden;
  cursor: none;
  transition: all 0.38s var(--ease-out);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.30),
    inset 0 -1px  0 rgba(0,0,0,0.16),
    0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
}
.pkg-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 54%;
  background: linear-gradient(180deg, rgba(255,255,255,0.20) 0%, transparent 100%);
  border-radius: 50px 50px 80% 80%;
  pointer-events: none; z-index: 3;
}
.pkg-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.18) 50%, transparent 75%);
  transform: translateX(-120%) skewX(-20deg);
  transition: transform 0.65s var(--ease-out);
  border-radius: 50px; z-index: 2;
}
.pkg-cta:hover {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.12) 100%
  );
  border-color: rgba(255,255,255,0.38);
  color: #fff;
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.40),
    inset 0 -1px  0 rgba(0,0,0,0.16),
    0 8px 28px rgba(0,0,0,0.38);
  transform: translateY(-2px);
}
.pkg-cta:hover::after { transform: translateX(120%) skewX(-20deg); }

/* Bronze CTA (Starter) */
.package-card:not(.highlighted):not(.gold) .pkg-cta {
  background: linear-gradient(145deg,
    rgba(185,105,35,0.32) 0%,
    rgba(140,75,18,0.22) 45%,
    rgba(90,45,10,0.16) 100%
  );
  border-color: rgba(210,130,50,0.48);
  color: rgba(235,175,110,0.97);
  box-shadow:
    inset 0 1.5px 0 rgba(235,175,100,0.35),
    inset 0 -1px  0 rgba(0,0,0,0.20),
    0 4px 18px rgba(150,80,18,0.30),
    0 0 0 1px rgba(185,105,35,0.18);
}
.package-card:not(.highlighted):not(.gold) .pkg-cta:hover {
  background: linear-gradient(145deg,
    rgba(200,120,45,0.45) 0%,
    rgba(160,90,22,0.32) 45%,
    rgba(110,58,12,0.22) 100%
  );
  border-color: rgba(230,150,65,0.65);
  color: rgba(255,205,140,0.98);
  box-shadow:
    inset 0 1.5px 0 rgba(245,190,115,0.45),
    inset 0 -1px  0 rgba(0,0,0,0.20),
    0 8px 28px rgba(170,90,20,0.42),
    0 0 0 1px rgba(210,130,50,0.32);
  transform: translateY(-2px);
}

/* Platinum CTA (Pro) */
.package-card.highlighted .pkg-cta {
  background: linear-gradient(145deg,
    rgba(190,208,232,0.30) 0%,
    rgba(155,175,205,0.20) 45%,
    rgba(100,120,150,0.14) 100%
  );
  border-color: rgba(205,220,242,0.48);
  color: rgba(230,240,255,0.97);
  box-shadow:
    inset 0 1.5px 0 rgba(245,250,255,0.45),
    inset 0 -1px  0 rgba(0,0,0,0.16),
    0 4px 20px rgba(130,155,192,0.32),
    0 0 0 1px rgba(190,210,235,0.18);
}
.package-card.highlighted .pkg-cta:hover {
  background: linear-gradient(145deg,
    rgba(210,225,248,0.42) 0%,
    rgba(175,195,225,0.30) 45%,
    rgba(120,142,175,0.20) 100%
  );
  border-color: rgba(225,238,255,0.65);
  color: #fff;
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.55),
    inset 0 -1px  0 rgba(0,0,0,0.16),
    0 8px 32px rgba(150,175,215,0.45),
    0 0 0 1px rgba(210,228,250,0.32);
  transform: translateY(-2px);
}

/* ── Services section ── */
.services-section {
  padding-top: 0;
}

/* ── Category tabs ── */
.svc-category-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.svc-tab {
  display: inline-flex; align-items: center;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,240,248,0.50);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  cursor: none;
  transition: all 0.22s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.svc-tab:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: rgba(240,240,248,0.80);
}
.svc-tab.active {
  background: rgba(34,197,94,0.22);
  border-color: rgba(34,197,94,0.55);
  color: rgba(254,243,199,0.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 4px 18px rgba(34,197,94,0.22);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--lg-bg);
  backdrop-filter: var(--lg-blur);
  -webkit-backdrop-filter: var(--lg-blur);
  border: 1px solid var(--lg-border);
  box-shadow: var(--lg-shadow);
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.38s var(--ease-out),
    box-shadow 0.38s var(--ease-out),
    border-color 0.32s,
    background 0.38s;
  opacity: 0;
  transform: translateY(20px);
}
.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Dome shine */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, transparent 100%);
  border-radius: 16px 16px 60% 60% / 16px 16px 30% 30%;
  pointer-events: none; z-index: 1;
  transition: opacity 0.3s;
}

/* Shimmer sweep */
.service-card::after {
  content: '';
  position: absolute; top: 0; left: -90%;
  width: 45%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.13) 50%,
    rgba(255,255,255,0.06) 60%,
    transparent 100%
  );
  transform: skewX(-16deg);
  transition: left 0.6s var(--ease-out);
  pointer-events: none; z-index: 2;
}
.service-card:hover::after { left: 130%; }

/* Hover state */
.service-card:hover {
  transform: translateY(-5px) scale(1.012);
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.48);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.42),
    inset 0 -1px  0 rgba(0,0,0,0.20),
    inset  1px 0  0 rgba(74,222,128,0.16),
    inset -1px 0  0 rgba(34,197,94,0.08),
    0 2px  6px rgba(0,0,0,0.20),
    0 18px 50px rgba(0,0,0,0.52),
    0 0 0  1px rgba(34,197,94,0.18),
    0 0 60px rgba(34,197,94,0.14);
}

.svc-info {
  flex: 1; min-width: 0;
  position: relative; z-index: 2;
}
.svc-name {
  font-size: 14px; font-weight: 600;
  color: rgba(240,240,248,0.88);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.25s;
}
.service-card:hover .svc-name {
  color: rgba(254,243,199,0.98);
}
.svc-desc {
  font-size: 12px; color: rgba(240,240,248,0.40);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s;
}
.service-card:hover .svc-desc {
  color: rgba(240,240,248,0.58);
}

.svc-price-wrap {
  flex-shrink: 0;
  text-align: center;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.16);
  transition: background 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.service-card:hover .svc-price-wrap {
  background: rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.38);
  box-shadow: 0 0 22px rgba(34,197,94,0.22), inset 0 1px 0 rgba(255,255,255,0.10);
}
.svc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 0.05em;
  color: rgba(74,222,128,0.95); line-height: 1;
  display: block;
  transition: color 0.25s, text-shadow 0.25s;
}
.service-card:hover .svc-price {
  color: #fff;
  text-shadow: 0 0 18px rgba(34,197,94,0.70), 0 0 40px rgba(34,197,94,0.35);
}

/* ── Pricing note ── */
.pricing-note-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px 80px;
}
.pricing-note {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(240,240,248,0.40);
  font-size: 12px; font-weight: 400; letter-spacing: 0.03em;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  max-width: 640px;
}

/* ── Pricing loading ── */
.pricing-loading {
  display: flex; align-items: center; justify-content: center;
  padding: 80px; width: 100%;
  grid-column: 1 / -1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 8px auto 0;
  }
  .package-card.highlighted,
  .package-card.gold {
    transform: none;
    order: -1;
  }
  .package-card.highlighted:hover,
  .package-card.gold:hover {
    transform: translateY(-6px);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .back-link {
    font-size: 11px;
    padding: 0 12px;
  }
}

@media (max-width: 560px) {
  .packages-section,
  .services-section {
    padding-left: 16px; padding-right: 16px;
  }
  .pricing-title {
    font-size: clamp(56px, 16vw, 80px);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .back-link span {
    display: none;
  }
  .tb-sep { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .faq-inner { padding: 0 16px; }
}

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}

/* ambient glow behind the whole bar */
.trust-bar::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 200px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tb-sep { display: none; } /* replaced by card gaps */

.tb-item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px 28px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.tb-item:hover {
  border-color: rgba(34,197,94,0.30);
  background: rgba(34,197,94,0.04);
  transform: translateY(-4px);
}

/* top accent line */
.tb-item::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.55), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tb-item:hover::before { opacity: 1; }

/* glow spot behind number */
.tb-item::after {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 80px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.14) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.tb-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.20);
  display: flex; align-items: center; justify-content: center;
  color: rgba(34,197,94,0.80);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.tb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(74,222,128,1) 0%, rgba(34,197,94,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(34,197,94,0.40));
}

.tb-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,240,248,0.35);
  font-weight: 500;
  line-height: 1.4;
}

.tb-sub {
  font-size: 11px;
  color: rgba(34,197,94,0.55);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ============================================
   FAQ
============================================ */
.faq-section {
  padding: 80px 40px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: rgba(240,240,248,0.85);
  text-align: left;
  transition: color 0.2s ease;
}
.faq-q:hover { color: #fff; }
.faq-q[aria-expanded="true"] { color: rgba(34,197,94,0.90); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: rgba(240,240,248,0.30);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: rgba(34,197,94,0.70);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 14px;
  color: rgba(240,240,248,0.48);
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 860px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .faq-section { padding: 60px 24px 80px; }
  .trust-bar { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tb-num { font-size: 44px; }
  .tb-item { padding: 24px 14px 20px; }
  .faq-q { font-size: 13px; padding: 18px 0; }
}
