/* ============================================================
   ST VALETS - shared design system
   Brand palette (from logo):
   ink #0C0C0C · navy #0D1B2A · brand #0094DA · sky #29C4F4 · white
   Display: Saira Condensed · Labels: Saira · Body: Inter
   ============================================================ */

:root {
  --ink: #0C0C0C;
  --navy: #0D1B2A;
  --brand: #0094DA;
  --sky: #29C4F4;
  --white: #FFFFFF;
  --line: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.62);
  --glow: 0 0 40px -8px rgba(0, 148, 218, 0.55);
  --shadow-blue: 0 24px 50px -28px rgba(0, 148, 218, 0.45);
  --shadow-deep: 0 30px 60px -30px rgba(0, 0, 0, 0.85);
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle film grain for depth on dark surfaces */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography helpers ---------- */
.font-display { font-family: 'Saira Condensed', 'Saira', sans-serif; }
.font-label { font-family: 'Saira', sans-serif; }

.display {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
/* Signature: skewed speed-streak before eyebrow labels */
.eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--sky));
  transform: skewX(-28deg);
  box-shadow: var(--glow);
}

.text-muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  padding: 0.95rem 1.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  border: 1px solid transparent;
  will-change: transform;
}
.btn:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #007cb8);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 55px -22px rgba(41, 196, 244, 0.6);
  background: linear-gradient(135deg, var(--sky), var(--brand));
}
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(41, 196, 244, 0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--sky);
  background: rgba(41, 196, 244, 0.08);
  box-shadow: var(--shadow-blue);
}
.btn-ghost:active { transform: translateY(-1px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-link {
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--sky));
  transition: width 0.28s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; border-radius: 2px; }

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: min(85vh, 680px); overflow-y: auto; }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; }
/* offset anchor jumps so section tops clear the fixed header */
section[id] { scroll-margin-top: 5.5rem; }
.bg-ink { background: var(--ink); }
.bg-navy { background: var(--navy); }
/* layered radial depth on dark sections */
.bg-navy.depth {
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(0, 148, 218, 0.12), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(41, 196, 244, 0.06), transparent 60%),
    var(--navy);
}
.bg-ink.depth {
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(0, 148, 218, 0.08), transparent 60%),
    var(--ink);
}

/* ---------- Feature icons (about) ---------- */
.feature-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--sky);
  background: linear-gradient(160deg, rgba(41, 196, 244, 0.14), rgba(0, 148, 218, 0.04));
  border: 1px solid rgba(41, 196, 244, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.feature-icon svg { width: 28px; height: 28px; }

/* ---------- Service cards (signature clipped corner) ---------- */
.service-card {
  position: relative;
  display: block;
  padding: 1.6rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  /* signature: clipped top-right corner echoing the logo streak */
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--brand), var(--sky));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
/* diagonal light sweep on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(41, 196, 244, 0.10) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41, 196, 244, 0.4);
  box-shadow: var(--shadow-blue);
}
.service-card:hover::before { transform: translateX(120%); }
.service-card:hover::after { opacity: 1; }
.service-card:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.service-card h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.28rem;
}
.service-arrow { transition: transform 0.3s ease, color 0.3s ease; }
.service-card:hover .service-arrow { transform: translateX(5px); color: var(--sky); }

/* Training strip */
.training-strip {
  position: relative;
  border: 1px solid rgba(41, 196, 244, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(0, 148, 218, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

/* ---------- Reviews carousel ---------- */
.reviews-viewport { position: relative; overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-slide { flex: 0 0 100%; padding: 0 0.75rem; box-sizing: border-box; }
@media (min-width: 900px) {
  .review-slide { flex-basis: 50%; }
}
.review-card {
  height: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-deep);
}
.review-stars { color: #FFC24B; letter-spacing: 3px; font-size: 1.05rem; }
.google-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: 'Saira', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--muted);
}
.carousel-btn {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.carousel-btn:hover { border-color: var(--sky); background: rgba(41, 196, 244, 0.1); transform: translateY(-2px); }
.carousel-btn:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.carousel-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease;
  border: none; padding: 0;
}
.carousel-dot.active { background: var(--sky); width: 26px; border-radius: 5px; }
.carousel-dot:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

/* ---------- Reels (light section) ---------- */
.reels-section { background: #FFFFFF; color: #0C0C0C; }
.reels-section .eyebrow { color: var(--brand); }
.reels-section .eyebrow::before { box-shadow: none; }
.reel-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 45px -25px rgba(13, 27, 42, 0.4);
  border: 1px solid rgba(13, 27, 42, 0.08);
  background: #fafafa;
}

/* Click-to-load consent prompt (sits on the white reels section) */
.reels-consent {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.25rem, 5vw, 3.25rem) 1.75rem;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(0, 148, 218, 0.22), transparent 55%),
    linear-gradient(165deg, var(--navy), var(--ink));
  border: 1px solid rgba(41, 196, 244, 0.22);
  box-shadow: 0 30px 60px -32px rgba(13, 27, 42, 0.55);
}
.reels-consent-icon {
  width: 56px; height: 56px;
  display: inline-grid; place-items: center;
  border-radius: 14px;
  color: var(--sky);
  background: linear-gradient(160deg, rgba(41, 196, 244, 0.16), rgba(0, 148, 218, 0.05));
  border: 1px solid rgba(41, 196, 244, 0.28);
  margin-bottom: 1.1rem;
}
.reels-consent-icon svg { width: 28px; height: 28px; }
.reels-consent-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.reels-consent-sub {
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem auto 1.6rem;
  max-width: 42ch;
  line-height: 1.6;
}
.reels-consent-note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.reels-consent-note a { color: var(--sky); text-decoration: underline; text-underline-offset: 2px; }
.reels-consent-note a:hover { color: #fff; }
.tiktok-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Saira', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem;
  color: #0D1B2A;
  transition: color 0.2s ease;
}
.tiktok-link:hover { color: var(--brand); }

/* ---------- Footer ---------- */
.footer-link {
  color: var(--muted);
  font-family: 'Saira', sans-serif;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--sky); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Placeholder page ---------- */
.placeholder-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
}

/* ---------- Gallery (masonry, portrait-first) ---------- */
.gallery {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) { .gallery { columns: 3; column-gap: 1.15rem; } }
@media (min-width: 1280px) { .gallery { columns: 4; column-gap: 1.15rem; } }

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--navy);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.9);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 148, 218, 0.05), rgba(12, 12, 12, 0.55));
  transition: opacity 0.35s ease;
}
.gallery-overlay svg { width: 30px; height: 30px; transform: translateY(6px); transition: transform 0.35s ease; }
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 196, 244, 0.45);
  box-shadow: var(--shadow-blue);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay svg { transform: translateY(0); }
.gallery-item:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 6, 6, 0.93);
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 820px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-deep);
}
.lightbox-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lightbox-btn:hover { background: rgba(41, 196, 244, 0.14); border-color: var(--sky); }
.lightbox-btn:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: clamp(0.75rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(0.75rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/* ============================================================
   Services page + Services nav dropdown
   ============================================================ */

/* ---------- Nav: Services dropdown (desktop) ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; }
.nav-caret { width: 11px; height: 11px; margin-left: 0.3rem; transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 252px;
  margin-top: 16px;
  padding: 0.5rem;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 70;
}
/* invisible bridge so the pointer can travel from link to menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.dropdown-link {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.dropdown-link:hover { color: #fff; background: rgba(41, 196, 244, 0.1); }
.dropdown-link:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

/* ---------- Nav: Services submenu (mobile) ---------- */
.m-sub-summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.m-sub-label { flex: 1; }
.m-sub-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}
.m-sub-toggle:hover { background: rgba(41, 196, 244, 0.1); }
.m-sub-toggle:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.m-sub-toggle .nav-caret { margin: 0; }
.m-sub.open .m-sub-toggle .nav-caret { transform: rotate(180deg); }
.m-sublist {
  display: none;
  flex-direction: column;
  margin: 0.55rem 0 0.35rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(41, 196, 244, 0.25);
}
.m-sub.open .m-sublist { display: flex; }
.m-sublist a {
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.45rem 0;
  transition: color 0.2s ease;
}
.m-sublist a:hover { color: var(--sky); }

/* ---------- Jump chips (hero quick links) ---------- */
.jump-chip {
  display: inline-flex; align-items: center;
  font-family: 'Saira', sans-serif; font-weight: 500;
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.jump-chip:hover { color: #fff; border-color: rgba(41, 196, 244, 0.4); background: rgba(41, 196, 244, 0.08); transform: translateY(-2px); }
.jump-chip:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

/* ---------- Vehicle size guide ---------- */
.size-card {
  position: relative;
  height: 100%;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.size-card:hover { border-color: rgba(41, 196, 244, 0.32); transform: translateY(-4px); }
.size-badge {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 11px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--sky);
  background: linear-gradient(160deg, rgba(41, 196, 244, 0.16), rgba(0, 148, 218, 0.04));
  border: 1px solid rgba(41, 196, 244, 0.22);
}
.size-name {
  font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.01em; font-size: 1.15rem; color: #fff;
}
.size-egs { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ---------- Package block ---------- */
.cat-label {
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1;
}
.pkg {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  box-shadow: var(--shadow-deep);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.pkg:hover { border-color: rgba(41, 196, 244, 0.3); box-shadow: var(--shadow-blue); }
.pkg::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--brand), var(--sky));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.9;
}
.pkg-name {
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1; color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
}
.pkg-intro { color: rgba(255, 255, 255, 0.68); line-height: 1.65; margin-top: 0.85rem; }
.pkg-divider { height: 1px; background: var(--line); margin: 1.75rem 0; }
.pkg-note {
  margin-top: 1.1rem; padding: 0.75rem 1rem;
  border-left: 2px solid rgba(41, 196, 244, 0.4);
  background: rgba(41, 196, 244, 0.05);
  border-radius: 0 8px 8px 0;
  color: rgba(255, 255, 255, 0.62); font-size: 0.88rem; line-height: 1.55;
}

/* selling-point stat pills */
.stat-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Saira', sans-serif; font-weight: 500;
  font-size: 0.74rem; letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #cdeefb;
  background: rgba(41, 196, 244, 0.08);
  border: 1px solid rgba(41, 196, 244, 0.24);
}
.stat-pill::before {
  content: ''; width: 7px; height: 7px; border-radius: 2px;
  background: linear-gradient(135deg, var(--brand), var(--sky));
  transform: skewX(-18deg);
}

/* price tiers */
.tiers { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tier {
  display: flex; flex-direction: column; align-items: center;
  min-width: 76px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.tier-size {
  font-family: 'Saira', sans-serif; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.tier-price {
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 1.35rem;
  color: #fff; margin-top: 0.15rem; line-height: 1;
}
.tiers-note {
  width: 100%; font-family: 'Saira', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4);
  margin-top: 0.35rem;
}

/* includes lists */
.inc-group-label {
  font-family: 'Saira', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.72rem; color: var(--sky);
}
.inc-list { list-style: none; }
.inc-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72); line-height: 1.55; font-size: 0.95rem;
}
.inc-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 2px;
  background: linear-gradient(135deg, var(--brand), var(--sky));
  transform: skewX(-18deg);
}
@media (min-width: 768px) {
  .inc-list--cols { columns: 2; column-gap: 2.5rem; }
  .inc-list--cols li { break-inside: avoid; }
}
.pkg-from {
  font-family: 'Saira', sans-serif; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.8rem; color: var(--muted);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reviews-track { transition: none; }
}
