:root {
  --black: #050505;
  --ink: #0a0b0c;
  --charcoal: #111315;
  --graphite: #1a1d20;
  --graphite-2: #24282c;
  --metal: #9a9a94;
  --metal-soft: #cbc8bf;
  --white: #f5f2ec;
  --muted: #a6a29a;
  --dim: #696963;
  --line: rgba(245, 242, 236, 0.12);
  --line-strong: rgba(245, 242, 236, 0.2);
  --blue: #79d8f1;
  --blue-soft: rgba(121, 216, 241, 0.15);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 34rem),
    linear-gradient(180deg, #040404 0%, #0b0c0d 45%, #050505 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

/* Temporary public mode: keep unfinished homepage sections in the source, but hide
   them from the live single-page pricing/services experience. */
.public-pricing-only .hero,
.public-pricing-only .trust-strip,
.public-pricing-only .services,
.public-pricing-only .showcase,
.public-pricing-only .process {
  display: none;
}

.public-pricing-only .pricing,
.public-pricing-only .pricing.section-pad {
  padding-top: clamp(128px, 15vw, 172px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0));
  transition: background 500ms var(--ease), border-color 500ms var(--ease), padding 500ms var(--ease);
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  opacity: 0.96;
}

.brand-mark img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-mark span {
  display: none;
  line-height: 1;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.brand-mark small {
  margin-top: 6px;
  color: rgba(245, 242, 236, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: none;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: rgba(245, 242, 236, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  transition: color 220ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--metal-soft);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  border-bottom: 1px solid rgba(245, 242, 236, 0.42);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu-toggle,
.mobile-menu,
.mobile-pricing-cue {
  display: none;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18rem),
    var(--black);
}

.section-pad {
  padding: clamp(76px, 10vw, 148px) clamp(20px, 5vw, 70px);
}

main > section[id] {
  scroll-margin-top: 84px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 106px clamp(20px, 5vw, 70px) clamp(46px, 6vw, 86px);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.94));
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.44) 48%, rgba(5, 5, 5, 0.84) 100%),
    radial-gradient(circle at 68% 42%, rgba(190, 184, 170, 0.18), transparent 26rem),
    linear-gradient(145deg, #050505 0%, #17191b 42%, #050505 100%);
}

.studio-haze {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.05) 48%, transparent 64%),
    radial-gradient(ellipse at 72% 56%, rgba(121, 216, 241, 0.07), transparent 18rem);
  filter: blur(0.2px);
  opacity: 0;
  animation: slowReveal 1600ms 260ms var(--ease) forwards;
}

.vehicle-stage {
  position: absolute;
  right: -7vw;
  bottom: 13%;
  width: min(82vw, 1080px);
  height: clamp(230px, 34vw, 490px);
  opacity: 0;
  transform: translate3d(3vw, 18px, 0) scale(0.99);
  animation: vehicleReveal 1800ms 430ms var(--ease) forwards;
}

.vehicle-body,
.vehicle-glass,
.vehicle-line,
.vehicle-wheel,
.reflection {
  position: absolute;
}

.vehicle-body {
  right: 7%;
  bottom: 28%;
  width: 74%;
  height: 28%;
  border-radius: 58% 42% 28% 30% / 82% 82% 22% 24%;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 26%, rgba(203, 200, 191, 0.3) 48%, rgba(13, 14, 15, 0.95) 68%),
    linear-gradient(180deg, #35383a, #08090a 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -24px 34px rgba(0, 0, 0, 0.92),
    0 28px 60px rgba(0, 0, 0, 0.62);
  clip-path: polygon(3% 67%, 11% 45%, 30% 31%, 54% 18%, 81% 23%, 96% 48%, 99% 69%, 92% 79%, 10% 79%);
}

.vehicle-glass {
  right: 28%;
  bottom: 43%;
  width: 39%;
  height: 20%;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 70% 30% 0 0 / 100% 80% 0 0;
  background:
    linear-gradient(110deg, rgba(240, 240, 232, 0.42), rgba(255, 255, 255, 0.05) 38%, rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, rgba(76, 82, 86, 0.72), rgba(10, 11, 12, 0.9));
  clip-path: polygon(0 78%, 19% 16%, 58% 6%, 100% 72%, 92% 84%, 5% 86%);
}

.vehicle-line {
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 242, 236, 0.76), transparent);
}

.vehicle-line-top {
  bottom: 53%;
  width: 55%;
}

.vehicle-line-low {
  bottom: 35%;
  width: 69%;
  opacity: 0.55;
}

.vehicle-wheel {
  bottom: 23%;
  width: clamp(56px, 7vw, 96px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 242, 236, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 242, 236, 0.42) 0 5%, transparent 6%),
    conic-gradient(from 40deg, rgba(245, 242, 236, 0.1), rgba(245, 242, 236, 0.42), rgba(5, 5, 5, 0.9), rgba(245, 242, 236, 0.25), rgba(5, 5, 5, 0.9));
  box-shadow: inset 0 0 0 10px rgba(5, 5, 5, 0.86), 0 12px 32px rgba(0, 0, 0, 0.8);
}

.wheel-front {
  right: 18%;
}

.wheel-rear {
  right: 62%;
}

.reflection {
  right: 11%;
  bottom: 4%;
  width: 70%;
  height: 24%;
  background: radial-gradient(ellipse, rgba(245, 242, 236, 0.12), transparent 64%);
  filter: blur(18px);
  transform: perspective(500px) rotateX(68deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding-top: clamp(32px, 8vh, 86px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--metal-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.8vw, 92px);
  font-weight: 500;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 600;
  line-height: 1.12;
}

.hero-copy {
  max-width: 470px;
  margin-bottom: 30px;
  color: rgba(245, 242, 236, 0.76);
  font-size: clamp(17px, 2.1vw, 22px);
}

.mobile-pricing-cue {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(245, 242, 236, 0.14);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  color: rgba(245, 242, 236, 0.72);
}

.mobile-pricing-cue span,
.mobile-pricing-cue strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-pricing-cue strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--white);
  color: #070707;
}

.button-primary:hover {
  background: #ffffff;
  box-shadow: 0 0 34px rgba(245, 242, 236, 0.12);
}

.button-secondary,
.button-card {
  border-color: rgba(245, 242, 236, 0.25);
  color: var(--white);
  background: rgba(245, 242, 236, 0.03);
}

.button-secondary:hover,
.button-card:hover {
  border-color: rgba(245, 242, 236, 0.62);
  background: rgba(245, 242, 236, 0.08);
}

.hero-aside {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: clamp(38px, 6vw, 82px);
  display: none;
  gap: 18px;
  color: rgba(245, 242, 236, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-aside span {
  padding-top: 18px;
  border-top: 1px solid rgba(245, 242, 236, 0.18);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 1px;
  height: 50px;
  overflow: hidden;
  background: rgba(245, 242, 236, 0.18);
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 18px;
  background: var(--white);
  animation: cue 2200ms ease-in-out infinite;
}

.trust-strip {
  padding: 0 clamp(20px, 5vw, 70px);
  background: #090909;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner span {
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  color: rgba(245, 242, 236, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-inner span:last-child {
  border-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto clamp(34px, 6vw, 74px);
}

.section-heading p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 420px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 236, 0.1);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), background 360ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 242, 236, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.service-card p {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(245, 242, 236, 0.62);
}

.service-index {
  margin-bottom: 16px;
  color: var(--metal-soft) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-visual {
  min-height: 230px;
  border: 1px solid rgba(245, 242, 236, 0.08);
  background:
    linear-gradient(130deg, rgba(245, 242, 236, 0.1), transparent 30%),
    radial-gradient(circle at 75% 25%, rgba(245, 242, 236, 0.1), transparent 10rem),
    linear-gradient(145deg, #1d2022, #090909 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-wash {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(245, 242, 236, 0.18) 45% 46%, transparent 47%),
    radial-gradient(circle at 28% 30%, rgba(121, 216, 241, 0.12), transparent 10rem),
    linear-gradient(135deg, #202326, #0a0a0a 72%);
}

.visual-interior {
  background:
    linear-gradient(110deg, rgba(245, 242, 236, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(245, 242, 236, 0.1) 0 1px, transparent 1px 34px),
    linear-gradient(145deg, #23211f, #0a0a0a 76%);
}

.visual-detail {
  background:
    radial-gradient(ellipse at 56% 52%, rgba(245, 242, 236, 0.14), transparent 11rem),
    linear-gradient(115deg, #101112, #2a2c2f 44%, #090909);
}

.visual-paint {
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(245, 242, 236, 0.24) 36%, transparent 44%),
    linear-gradient(145deg, #2b2f33, #070707 70%);
}

.visual-ceramic {
  background:
    radial-gradient(circle at 58% 42%, rgba(121, 216, 241, 0.13), transparent 12rem),
    conic-gradient(from 230deg at 50% 52%, #080808, #303335, #121314, #080808);
}

.pricing {
  position: relative;
}

.pricing::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 16%, rgba(121, 216, 241, 0.055), transparent 21rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.026) 48%, transparent);
  content: "";
}

.pricing-heading {
  position: relative;
  z-index: 1;
  text-align: left;
}

.mobile-pricing-intent,
.mobile-vehicle-size,
.mobile-package-rail,
.service-detail-toggle,
.service-detail-panel {
  display: none;
}

.pricing-controls {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto 24px;
}

.category-toggle,
.package-nav {
  display: flex;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(245, 242, 236, 0.12);
  background: rgba(255, 255, 255, 0.025);
  scrollbar-width: none;
}

.category-toggle::-webkit-scrollbar,
.package-nav::-webkit-scrollbar {
  display: none;
}

.category-toggle button,
.package-nav button,
.xl-toggle {
  appearance: none;
  border: 0;
  border-radius: 0;
  color: rgba(245, 242, 236, 0.58);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.category-toggle button {
  flex: 1 0 auto;
  min-width: 138px;
  min-height: 50px;
  padding: 0 18px;
  border-right: 1px solid rgba(245, 242, 236, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 260ms var(--ease), background 260ms var(--ease);
}

.category-toggle button:last-child {
  border-right: 0;
}

.category-toggle button:hover,
.category-toggle button.is-active {
  color: var(--white);
  background: rgba(245, 242, 236, 0.075);
}

.category-toggle button.is-active {
  box-shadow: inset 0 -1px 0 rgba(121, 216, 241, 0.44);
}

.xl-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(245, 242, 236, 0.12);
  color: rgba(245, 242, 236, 0.72);
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 260ms var(--ease), color 260ms var(--ease), background 260ms var(--ease);
}

.xl-toggle small {
  color: var(--metal-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.xl-toggle:hover,
.xl-toggle[aria-pressed="true"] {
  border-color: rgba(245, 242, 236, 0.26);
  color: var(--white);
  background: rgba(245, 242, 236, 0.06);
}

.switch-track {
  position: relative;
  width: 38px;
  height: 18px;
  border: 1px solid rgba(245, 242, 236, 0.18);
  background: rgba(5, 5, 5, 0.58);
}

.switch-track span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background: rgba(245, 242, 236, 0.75);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.xl-toggle[aria-pressed="true"] .switch-track {
  border-color: rgba(121, 216, 241, 0.42);
}

.xl-toggle[aria-pressed="true"] .switch-track span {
  background: var(--blue);
  transform: translateX(18px);
}

.package-nav {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto 18px;
  border-color: rgba(245, 242, 236, 0.1);
}

.package-nav button {
  flex: 1 0 auto;
  min-width: 132px;
  min-height: 42px;
  padding: 0 14px;
  border-right: 1px solid rgba(245, 242, 236, 0.07);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 260ms var(--ease), background 260ms var(--ease);
}

.package-nav button:last-child {
  border-right: 0;
}

.package-nav button:hover,
.package-nav button.is-active {
  color: var(--white);
  background: rgba(245, 242, 236, 0.05);
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(245, 242, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #0e0f10;
  outline: 0;
  transition: transform 340ms var(--ease), border-color 340ms var(--ease), background 340ms var(--ease), opacity 280ms var(--ease), filter 280ms var(--ease);
}

.price-card:hover,
.price-card:focus-visible,
.price-card.is-selected {
  transform: translateY(-6px);
  border-color: rgba(245, 242, 236, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.02)),
    #0e0f10;
}

.price-card.is-selected::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(121, 216, 241, 0.22);
  content: "";
}

.price-card.is-filtered-out {
  display: none;
}

.price-card.is-entering {
  animation: packageFade 420ms var(--ease) both;
}

.price-card-featured {
  border-color: rgba(245, 242, 236, 0.34);
  background:
    radial-gradient(circle at 50% 0%, var(--blue-soft), transparent 18rem),
    linear-gradient(180deg, #181b1e, #080909);
}

.featured-badge {
  align-self: flex-start;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(121, 216, 241, 0.55);
  color: rgba(245, 242, 236, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-label {
  margin-bottom: 14px;
  color: var(--metal-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-copy {
  min-height: 52px;
  color: rgba(245, 242, 236, 0.62);
}

.package-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 26px 0 22px;
}

.package-meta {
  margin: 0 0 12px;
  color: rgba(245, 242, 236, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: rgba(245, 242, 236, 0.56);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.5vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.package-duration {
  align-self: end;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 242, 236, 0.1);
  color: rgba(245, 242, 236, 0.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.package-duration span {
  display: block;
  margin-bottom: 5px;
  color: rgba(245, 242, 236, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 15px;
  padding: 28px 0;
  margin: auto 0 22px;
  border-top: 1px solid rgba(245, 242, 236, 0.1);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(245, 242, 236, 0.72);
}

.price-card li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(121, 216, 241, 0.72);
  border-radius: 50%;
  content: "";
}

.price-card li::after {
  position: absolute;
  top: 0.55em;
  left: 4px;
  width: 5px;
  height: 2px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.72);
  border-left: 1px solid rgba(245, 242, 236, 0.72);
  content: "";
  transform: rotate(-45deg);
}

.package-vehicle {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  margin: 2px 0 18px;
  pointer-events: none;
}

.package-vehicle::before {
  position: absolute;
  inset: auto 9% 10px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(121, 216, 241, 0.13), transparent 62%),
    radial-gradient(ellipse at 50% 50%, rgba(245, 242, 236, 0.11), transparent 68%);
  filter: blur(10px);
  opacity: 0.74;
  content: "";
}

.vehicle-render {
  position: relative;
  width: min(94%, 330px);
  height: 122px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.38));
  opacity: 0.94;
  transform: translateY(0);
  transition: transform 340ms var(--ease), opacity 340ms var(--ease), filter 340ms var(--ease);
}

.vehicle-render::before,
.vehicle-render::after,
.vehicle-render span {
  display: none;
}

.vehicle-sedan {
  display: block;
  background-image: url("assets/velar-sedan-render.svg");
}

.vehicle-suv {
  display: none;
  background-image: url("assets/velar-suv-render.svg");
}

.pricing.is-xl-vehicle .vehicle-sedan {
  display: none;
}

.pricing.is-xl-vehicle .vehicle-suv {
  display: block;
}

.addons {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  max-width: var(--max);
  margin: 18px auto 0;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(245, 242, 236, 0.13);
  background: rgba(255, 255, 255, 0.028);
}

.addons h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: clamp(22px, 4vw, 52px);
  row-gap: 0;
}

.addon-grid span {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 15px 0 15px 18px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.1);
  color: rgba(245, 242, 236, 0.76);
}

.addon-grid em,
.addon-grid strong {
  font-style: normal;
}

.addon-grid strong {
  color: rgba(245, 242, 236, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.addon-grid span::before {
  position: absolute;
  top: 1.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(121, 216, 241, 0.68);
  content: "";
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: stretch;
  color: var(--white);
}

body.booking-open {
  overflow: hidden;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(121, 216, 241, 0.075), transparent 20rem),
    rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.booking-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  width: min(100%, 760px);
  max-height: 100dvh;
  margin: 0 auto;
  padding: calc(24px + env(safe-area-inset-top)) clamp(18px, 5vw, 34px) calc(18px + env(safe-area-inset-bottom));
  overflow: hidden;
  border: 1px solid rgba(245, 242, 236, 0.16);
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.055), rgba(245, 242, 236, 0.018)),
    #080909;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
}

.booking-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 20px;
}

.booking-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 10vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.booking-close {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 242, 236, 0.16);
  background: rgba(255, 255, 255, 0.026);
  cursor: pointer;
}

.booking-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: rgba(245, 242, 236, 0.82);
}

.booking-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(245, 242, 236, 0.12);
}

.booking-progress span {
  display: block;
  width: 14.285%;
  height: 100%;
  background: rgba(121, 216, 241, 0.72);
  transition: width 320ms var(--ease);
}

.booking-step-label,
.booking-kicker,
.booking-note {
  margin: 0;
}

.booking-step-label {
  padding: 16px 0 18px;
  color: rgba(245, 242, 236, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.booking-form {
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.booking-form::-webkit-scrollbar {
  display: none;
}

.booking-step {
  display: none;
  animation: bookingStepIn 360ms var(--ease) both;
}

.booking-step.is-active {
  display: grid;
  gap: 18px;
}

.booking-kicker {
  color: rgba(245, 242, 236, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-summary-card,
.booking-review {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(245, 242, 236, 0.14);
  background:
    radial-gradient(circle at 92% 0%, rgba(121, 216, 241, 0.08), transparent 12rem),
    rgba(255, 255, 255, 0.026);
}

.booking-summary-card span,
.booking-summary-card em,
.booking-summary-card small,
.booking-review span {
  color: rgba(245, 242, 236, 0.52);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-summary-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 9vw, 52px);
  font-weight: 500;
  line-height: 0.98;
}

.booking-summary-card em {
  color: var(--white);
}

.booking-note {
  color: rgba(245, 242, 236, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.booking-choice-grid,
.booking-addon-grid {
  display: grid;
  gap: 12px;
}

.booking-choice {
  min-height: 58px;
  padding: 16px;
  border: 1px solid rgba(245, 242, 236, 0.13);
  color: rgba(245, 242, 236, 0.72);
  background: rgba(255, 255, 255, 0.026);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.booking-choice span,
.booking-choice small {
  display: block;
}

.booking-choice small {
  margin-top: 6px;
  color: rgba(245, 242, 236, 0.46);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.booking-choice:hover,
.booking-choice:focus-visible,
.booking-choice.is-active {
  border-color: rgba(121, 216, 241, 0.44);
  color: var(--white);
  background: rgba(245, 242, 236, 0.06);
  outline: 0;
  transform: translateY(-1px);
}

.booking-field {
  display: grid;
  gap: 8px;
}

.booking-field span {
  color: rgba(245, 242, 236, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(245, 242, 236, 0.14);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.032);
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.booking-field input {
  min-height: 56px;
  padding: 0 16px;
}

.booking-field textarea {
  min-height: 100px;
  padding: 15px 16px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: rgba(121, 216, 241, 0.48);
}

.booking-review {
  gap: 0;
}

.booking-review div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245, 242, 236, 0.09);
}

.booking-review div:last-child {
  border-bottom: 0;
}

.booking-review strong {
  color: rgba(245, 242, 236, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.booking-confirmation {
  display: grid;
  gap: 16px;
  min-height: 280px;
  align-content: center;
}

.booking-confirmation h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 9vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.booking-confirmation p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 242, 236, 0.64);
  line-height: 1.6;
}

.booking-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  padding-top: 18px;
}

.booking-actions .button {
  width: 100%;
  min-height: 54px;
}

@media (min-width: 760px) {
  .booking-modal {
    place-items: center;
    padding: 28px;
  }

  .booking-panel {
    max-height: min(88vh, 820px);
  }

  .booking-choice-grid,
  .booking-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes bookingStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.showcase-card {
  display: grid;
  gap: 18px;
}

.showcase-card p {
  margin: 0;
  color: rgba(245, 242, 236, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after {
  position: relative;
  min-height: clamp(320px, 48vw, 570px);
  overflow: hidden;
  border: 1px solid rgba(245, 242, 236, 0.1);
  background:
    linear-gradient(90deg, rgba(245, 242, 236, 0.045) 0 49.9%, rgba(245, 242, 236, 0.22) 50% 50.2%, rgba(255, 255, 255, 0.035) 50.3%),
    radial-gradient(ellipse at 75% 45%, rgba(245, 242, 236, 0.18), transparent 13rem),
    linear-gradient(145deg, #151719, #060606);
}

.before-after::before,
.before-after::after {
  position: absolute;
  inset: 18% 12%;
  content: "";
}

.before-after::before {
  right: 50%;
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(105, 105, 99, 0.16) 41% 43%, transparent 44%),
    radial-gradient(ellipse at 50% 54%, rgba(0, 0, 0, 0.86), transparent 14rem);
  opacity: 0.76;
}

.before-after::after {
  left: 50%;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(245, 242, 236, 0.34) 39% 41%, transparent 42%),
    radial-gradient(ellipse at 44% 54%, rgba(245, 242, 236, 0.16), transparent 13rem);
}

.ba-two {
  background:
    linear-gradient(90deg, rgba(245, 242, 236, 0.04) 0 49.9%, rgba(245, 242, 236, 0.2) 50% 50.2%, rgba(255, 255, 255, 0.035) 50.3%),
    repeating-linear-gradient(90deg, rgba(245, 242, 236, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(145deg, #171513, #060606);
}

.before,
.after {
  position: absolute;
  bottom: 22px;
  z-index: 2;
  color: rgba(245, 242, 236, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before {
  left: 22px;
}

.after {
  right: 22px;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--max);
  padding: 0;
  margin: 0 auto;
  list-style: none;
  counter-reset: process;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  gap: 10px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--metal-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.process-list h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.process-list p {
  max-width: 380px;
  margin: 0;
  color: rgba(245, 242, 236, 0.62);
}

.final-cta {
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at 50% 40%, rgba(245, 242, 236, 0.08), transparent 26rem),
    linear-gradient(145deg, #141619, #050505 74%);
  text-align: center;
}

.final-cta-inner {
  max-width: 860px;
}

.final-cta h2 {
  margin-bottom: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-2 {
  transition-delay: 180ms;
}

@keyframes slowReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes vehicleReveal {
  from {
    opacity: 0;
    transform: translate3d(3vw, 18px, 0) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes cue {
  0% {
    transform: translateY(-24px);
  }
  55%,
  100% {
    transform: translateY(56px);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (min-width: 620px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-inner span {
    border-right: 1px solid rgba(245, 242, 236, 0.08);
    padding-right: 24px;
  }

  .trust-inner span:nth-child(2n),
  .trust-inner span:last-child {
    border-right: 0;
  }

  .service-grid,
  .showcase-grid,
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .pricing-controls {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .xl-toggle {
    min-width: 186px;
  }
}

@media (min-width: 860px) {
  .site-nav {
    display: flex;
  }

  .brand-mark span {
    display: block;
  }

  .hero {
    align-items: center;
  }

  .hero-aside {
    display: flex;
  }

  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-inner span {
    border-bottom: 0;
  }

  .trust-inner span:nth-child(2n) {
    border-right: 1px solid rgba(245, 242, 236, 0.08);
  }

  .trust-inner span:last-child {
    border-right: 0;
  }

  .service-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-card {
    grid-column: span 2;
  }

  .service-card-wide {
    grid-column: span 4;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .price-card-featured {
    transform: translateY(-18px);
  }

  .price-card-featured:hover,
  .price-card-featured:focus-visible,
  .price-card-featured.is-selected {
    transform: translateY(-24px);
  }

  .addons {
    grid-template-columns: 0.8fr 1.4fr;
    align-items: start;
    margin-top: 34px;
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
  }

  .process-list li {
    min-height: 280px;
    padding: 34px 28px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .process-list li:last-child {
    border-right: 0;
  }
}

@media (min-width: 1120px) {
  .section-heading {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: end;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .pricing-heading p:not(.eyebrow) {
    margin: 0 auto;
  }
}

@media (min-width: 1220px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 859px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px clamp(18px, 5vw, 34px);
  }

  .site-header.is-scrolled {
    padding-block: 10px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 82;
    display: inline-grid;
    justify-self: end;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(245, 242, 236, 0.18);
    border-radius: 0;
    background: rgba(5, 5, 5, 0.22);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: rgba(245, 242, 236, 0.86);
    transition: transform 320ms var(--ease), opacity 320ms var(--ease);
  }

  .mobile-menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .mobile-menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .mobile-menu-toggle.is-active span:first-child {
    transform: rotate(42deg);
  }

  .mobile-menu-toggle.is-active span:last-child {
    transform: rotate(-42deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: clamp(30px, 8vh, 64px);
    min-height: 100dvh;
    padding: calc(82px + env(safe-area-inset-top)) clamp(24px, 7vw, 46px) calc(26px + env(safe-area-inset-bottom));
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.995), rgba(5, 5, 5, 0.985)),
      radial-gradient(circle at 76% 15%, rgba(121, 216, 241, 0.045), transparent 16rem),
      radial-gradient(circle at 20% 86%, rgba(245, 242, 236, 0.035), transparent 18rem),
      linear-gradient(145deg, #111315, #050505 68%);
    transform: scale(1.01);
    transition: opacity 420ms var(--ease), visibility 420ms var(--ease), transform 420ms var(--ease);
  }

  .mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }

  .mobile-menu-utility {
    display: none;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.12);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 460ms var(--ease), opacity 460ms var(--ease);
  }

  .mobile-menu.is-open .mobile-menu-utility {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu-utility img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(245, 242, 236, 0.16);
  }

  .mobile-menu-utility p,
  .mobile-menu-utility a {
    margin: 0;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .mobile-menu-utility p {
    color: rgba(245, 242, 236, 0.76);
  }

  .mobile-menu-utility a {
    display: inline-flex;
    margin-top: 5px;
    color: rgba(121, 216, 241, 0.72);
  }

  .mobile-menu nav {
    display: grid;
    align-content: center;
    justify-self: center;
    width: min(100%, 340px);
    border-top: 0;
  }

  .mobile-menu nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.07);
    color: rgba(245, 242, 236, 0.72);
    font-size: clamp(11px, 3.2vw, 14px);
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(14px);
    opacity: 0;
    transition: transform 420ms var(--ease), opacity 420ms var(--ease), color 220ms ease, border-color 220ms ease;
  }

  .mobile-menu nav a::after {
    position: absolute;
    right: 0;
    width: 18px;
    height: 1px;
    border: 0;
    background: rgba(121, 216, 241, 0.28);
    content: "";
    transform: scaleX(0.45);
    transform-origin: right;
    transition: background 220ms ease, transform 220ms var(--ease);
  }

  .mobile-menu.is-open nav a {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu.is-open nav a:nth-child(2) {
    transition-delay: 40ms;
  }

  .mobile-menu.is-open nav a:nth-child(3) {
    transition-delay: 80ms;
  }

  .mobile-menu.is-open nav a:nth-child(4) {
    transition-delay: 120ms;
  }

  .mobile-menu.is-open nav a:nth-child(5) {
    transition-delay: 160ms;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible {
    color: var(--white);
    border-color: rgba(245, 242, 236, 0.16);
    background: transparent;
    outline: 0;
  }

  .mobile-menu nav a:hover::after,
  .mobile-menu nav a:focus-visible::after {
    background: rgba(121, 216, 241, 0.72);
    transform: scaleX(1);
  }

  .mobile-menu nav a:active {
    color: rgba(245, 242, 236, 0.86);
  }

  .mobile-menu-footer {
    display: grid;
    justify-self: center;
    gap: 16px;
    width: min(100%, 340px);
    padding-top: 18px;
    border-top: 0;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 460ms var(--ease), opacity 460ms var(--ease);
  }

  .mobile-menu.is-open .mobile-menu-footer {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 160ms;
  }

  .mobile-menu-footer p {
    display: none;
  }

  .mobile-menu-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 340px);
    min-height: 50px;
    border: 1px solid rgba(245, 242, 236, 0.22);
    color: var(--white);
    background: rgba(245, 242, 236, 0.07);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 260ms var(--ease), background 220ms ease, border-color 220ms ease;
  }

  .mobile-menu-reserve:hover,
  .mobile-menu-reserve:focus-visible {
    border-color: rgba(245, 242, 236, 0.36);
    background: rgba(245, 242, 236, 0.11);
    outline: 0;
    transform: translateY(-1px);
  }

  .mobile-menu-reserve:active {
    transform: translateY(0);
  }

  .hero {
    align-items: end;
    min-height: 88svh;
    padding-top: 90px;
    padding-bottom: clamp(30px, 8vw, 54px);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.78) 74%, rgba(5, 5, 5, 0.96)),
      radial-gradient(circle at 54% 28%, rgba(190, 184, 170, 0.16), transparent 18rem),
      linear-gradient(145deg, #050505 0%, #17191b 48%, #050505 100%);
  }

  .vehicle-stage {
    right: -26vw;
    bottom: 46%;
    width: 118vw;
    height: clamp(210px, 39vw, 320px);
    opacity: 0.76;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  }

  .vehicle-line-low {
    opacity: 0.36;
  }

  .hero-content {
    max-width: 620px;
    padding-top: 0;
    padding-bottom: 18px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(48px, 11vw, 78px);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 31rem;
    margin-bottom: 24px;
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .hero-actions {
    max-width: 440px;
  }

  .mobile-pricing-cue {
    display: flex;
    max-width: 440px;
  }

  .scroll-cue {
    display: none;
  }

  .price-card {
    min-height: auto;
  }

  .pricing-controls,
  .package-nav {
    display: none;
  }

  .mobile-pricing-intent {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: var(--max);
    margin: 0 auto 16px;
    overflow: hidden;
    border: 1px solid rgba(245, 242, 236, 0.12);
    background: rgba(255, 255, 255, 0.025);
  }

  .mobile-pricing-intent button {
    min-height: 50px;
    padding: 0 10px;
    border: 0;
    border-right: 1px solid rgba(245, 242, 236, 0.08);
    color: rgba(245, 242, 236, 0.58);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
  }

  .mobile-pricing-intent button:last-child {
    border-right: 0;
  }

  .mobile-pricing-intent button.is-active {
    color: var(--white);
    background: rgba(245, 242, 236, 0.075);
    box-shadow: inset 0 -1px 0 rgba(121, 216, 241, 0.48), 0 0 28px rgba(121, 216, 241, 0.045);
  }

  .mobile-vehicle-size {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    max-width: var(--max);
    margin: 0 auto 18px;
  }

  .mobile-vehicle-size p {
    margin: 0;
    color: rgba(245, 242, 236, 0.45);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-vehicle-size div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(245, 242, 236, 0.12);
    background: rgba(255, 255, 255, 0.025);
  }

  .mobile-vehicle-size button {
    min-height: 48px;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid rgba(245, 242, 236, 0.08);
    color: rgba(245, 242, 236, 0.58);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
  }

  .mobile-vehicle-size button:last-child {
    border-right: 0;
  }

  .mobile-vehicle-size button span {
    color: rgba(121, 216, 241, 0.72);
  }

  .mobile-vehicle-size button.is-active {
    color: var(--white);
    background: rgba(245, 242, 236, 0.075);
    box-shadow: inset 0 -1px 0 rgba(121, 216, 241, 0.42), 0 0 28px rgba(121, 216, 241, 0.04);
  }

  .pricing-grid {
    display: none;
  }

  .mobile-package-rail {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 14px;
    max-width: none;
    margin-right: calc(clamp(20px, 5vw, 70px) * -1);
    margin-left: calc(clamp(20px, 5vw, 70px) * -1);
    padding: 0 clamp(20px, 5vw, 70px) 10px;
    overflow-x: auto;
    scroll-padding-inline: clamp(20px, 5vw, 70px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mobile-package-rail::-webkit-scrollbar {
    display: none;
  }

  .mobile-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 min(74vw, 390px);
    min-height: 560px;
    padding: 26px 22px;
    border: 1px solid rgba(245, 242, 236, 0.2);
    background:
      radial-gradient(circle at 50% 0%, rgba(121, 216, 241, 0.09), transparent 17rem),
      linear-gradient(180deg, rgba(245, 242, 236, 0.06), rgba(245, 242, 236, 0.018)),
      #0b0c0d;
    scroll-snap-align: start;
  }

  .mobile-package-card::after {
    position: absolute;
    inset: 8px;
    pointer-events: none;
    border: 1px solid rgba(121, 216, 241, 0.16);
    content: "";
  }

  .mobile-package-card.is-mobile-filtered-out {
    display: none;
  }

  .mobile-package-top {
    display: grid;
    gap: 0;
  }

  .mobile-package-top h3 {
    margin-bottom: 22px;
    font-size: clamp(27px, 7vw, 36px);
  }

  .mobile-package-top > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.11);
  }

  .mobile-package-card .package-copy {
    min-height: auto;
    margin: 18px 0 0;
    color: rgba(245, 242, 236, 0.64);
    font-size: 15px;
  }

  .mobile-package-card ul {
    display: grid;
    gap: 12px;
    padding: 22px 0;
    margin: 0;
    list-style: none;
  }

  .mobile-package-card li {
    position: relative;
    padding-left: 30px;
    color: rgba(245, 242, 236, 0.78);
    font-size: 14px;
    line-height: 1.42;
  }

  .mobile-package-card li::before {
    position: absolute;
    top: 0.12em;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(121, 216, 241, 0.72);
    border-radius: 50%;
    background: rgba(121, 216, 241, 0.08);
    content: "";
  }

  .mobile-package-card li::after {
    position: absolute;
    top: 0.53em;
    left: 6px;
    width: 5px;
    height: 2px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.72);
    border-left: 1px solid rgba(245, 242, 236, 0.72);
    content: "";
    transform: rotate(-45deg);
  }

  .mobile-package-card .button {
    width: 100%;
    margin-top: auto;
  }

  .service-detail-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(245, 242, 236, 0.1);
    color: rgba(245, 242, 236, 0.76);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
  }

  .service-detail-toggle::after {
    color: rgba(121, 216, 241, 0.72);
    font-size: 16px;
    font-weight: 400;
    content: "+";
  }

  .service-detail-toggle[aria-expanded="true"]::after {
    content: "–";
  }

  .service-detail-panel {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 320ms var(--ease), opacity 260ms ease;
  }

  .service-detail-panel:not([hidden]) {
    max-height: 260px;
    opacity: 1;
  }

  .service-detail-panel p {
    margin: -6px 0 16px;
    color: rgba(245, 242, 236, 0.58);
    font-size: 13px;
    line-height: 1.5;
  }

  .service-detail-panel .detail-list {
    gap: 8px;
    padding: 0 0 16px;
  }

  .service-detail-panel .detail-list li {
    color: rgba(245, 242, 236, 0.62);
    font-size: 12px;
  }
}

@media (min-width: 860px) {
  /* Unified pricing UI at desktop widths (formerly mobile-only) */
  .mobile-pricing-intent {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: var(--max);
    margin: 0 auto 18px;
    overflow: hidden;
    border: 1px solid rgba(245, 242, 236, 0.12);
    background: rgba(255, 255, 255, 0.025);
  }

  .mobile-pricing-intent button {
    min-height: 56px;
    padding: 0 18px;
    border: 0;
    border-right: 1px solid rgba(245, 242, 236, 0.08);
    color: rgba(245, 242, 236, 0.58);
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
  }

  .mobile-pricing-intent button:last-child {
    border-right: 0;
  }

  .mobile-pricing-intent button.is-active {
    color: var(--white);
    background: rgba(245, 242, 236, 0.075);
    box-shadow: inset 0 -1px 0 rgba(121, 216, 241, 0.48), 0 0 28px rgba(121, 216, 241, 0.045);
  }

  .mobile-vehicle-size {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    max-width: var(--max);
    margin: 0 auto 28px;
  }

  .mobile-vehicle-size p {
    margin: 0;
    color: rgba(245, 242, 236, 0.45);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-vehicle-size div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
    overflow: hidden;
    border: 1px solid rgba(245, 242, 236, 0.12);
    background: rgba(255, 255, 255, 0.025);
  }

  .mobile-vehicle-size button {
    min-height: 48px;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid rgba(245, 242, 236, 0.08);
    color: rgba(245, 242, 236, 0.58);
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
  }

  .mobile-vehicle-size button:last-child {
    border-right: 0;
  }

  .mobile-vehicle-size button span {
    color: rgba(121, 216, 241, 0.72);
    margin-left: 6px;
  }

  .mobile-vehicle-size button.is-active {
    color: var(--white);
    background: rgba(245, 242, 236, 0.075);
    box-shadow: inset 0 -1px 0 rgba(121, 216, 241, 0.42), 0 0 28px rgba(121, 216, 241, 0.04);
  }

  .mobile-package-rail {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: var(--max);
    margin: 0 auto;
  }

  .mobile-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 580px;
    padding: clamp(28px, 3vw, 38px);
    border: 1px solid rgba(245, 242, 236, 0.18);
    background:
      radial-gradient(circle at 50% 0%, rgba(121, 216, 241, 0.09), transparent 17rem),
      linear-gradient(180deg, rgba(245, 242, 236, 0.06), rgba(245, 242, 236, 0.018)),
      #0b0c0d;
    transition: transform 340ms var(--ease), border-color 340ms var(--ease), background 340ms var(--ease);
  }

  .mobile-package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 242, 236, 0.28);
  }

  .mobile-package-card:hover .vehicle-render {
    opacity: 0.96;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.44));
    transform: translateY(-3px);
  }

  .mobile-package-card::after {
    position: absolute;
    inset: 8px;
    pointer-events: none;
    border: 1px solid rgba(121, 216, 241, 0.16);
    content: "";
  }

  .mobile-package-card.is-mobile-filtered-out {
    display: none;
  }

  .mobile-package-top {
    display: grid;
    gap: 0;
  }

  .mobile-package-top h3 {
    margin-bottom: 22px;
    font-size: clamp(30px, 2.6vw, 38px);
  }

  .mobile-package-top > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.11);
  }

  .mobile-package-card .package-copy {
    min-height: auto;
    margin: 18px 0 0;
    color: rgba(245, 242, 236, 0.64);
    font-size: 15px;
  }

  .mobile-package-card ul {
    display: grid;
    gap: 12px;
    padding: 22px 0;
    margin: 0;
    list-style: none;
  }

  .mobile-package-card li {
    position: relative;
    padding-left: 30px;
    color: rgba(245, 242, 236, 0.78);
    font-size: 14px;
    line-height: 1.42;
  }

  .mobile-package-card li::before {
    position: absolute;
    top: 0.12em;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(121, 216, 241, 0.72);
    border-radius: 50%;
    background: rgba(121, 216, 241, 0.08);
    content: "";
  }

  .mobile-package-card li::after {
    position: absolute;
    top: 0.53em;
    left: 6px;
    width: 5px;
    height: 2px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.72);
    border-left: 1px solid rgba(245, 242, 236, 0.72);
    content: "";
    transform: rotate(-45deg);
  }

  .mobile-package-card .button {
    width: 100%;
    margin-top: auto;
  }

  .service-detail-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(245, 242, 236, 0.1);
    color: rgba(245, 242, 236, 0.76);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
  }

  .service-detail-toggle::after {
    color: rgba(121, 216, 241, 0.72);
    font-size: 16px;
    font-weight: 400;
    content: "+";
  }

  .service-detail-toggle[aria-expanded="true"]::after {
    content: "–";
  }

  .service-detail-panel {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 320ms var(--ease), opacity 260ms ease;
  }

  .service-detail-panel:not([hidden]) {
    max-height: 260px;
    opacity: 1;
  }

  .service-detail-panel p {
    margin: -6px 0 16px;
    color: rgba(245, 242, 236, 0.58);
    font-size: 13px;
    line-height: 1.5;
  }

  .service-detail-panel .detail-list {
    gap: 8px;
    padding: 0 0 16px;
  }

  .service-detail-panel .detail-list li {
    color: rgba(245, 242, 236, 0.62);
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 86svh;
    padding-right: 18px;
    padding-bottom: 28px;
    padding-left: 18px;
  }

  .brand-mark,
  .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .vehicle-stage {
    right: -58vw;
    bottom: 54%;
    width: 176vw;
    height: 260px;
    opacity: 0.58;
  }

  .studio-haze {
    opacity: 0.82;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(43px, 14vw, 58px);
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .service-card {
    min-height: 360px;
  }

  .price span {
    font-size: 60px;
  }

  .package-vehicle {
    min-height: 104px;
    margin-bottom: 14px;
  }

  .vehicle-render {
    width: min(94%, 282px);
    height: 104px;
    transform: scale(0.94);
  }
}

@media (max-width: 619px) {
  .pricing.section-pad {
    padding-top: 72px;
  }

  .pricing-heading {
    margin-bottom: 28px;
  }

  .pricing-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .pricing-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .pricing-controls {
    display: none;
  }

  .pricing-grid {
    display: flex;
    gap: 14px;
    max-width: none;
    margin-right: calc(clamp(20px, 5vw, 70px) * -1);
    margin-left: calc(clamp(20px, 5vw, 70px) * -1);
    padding: 0 clamp(20px, 5vw, 70px) 10px;
    overflow-x: auto;
    scroll-padding-inline: clamp(20px, 5vw, 70px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .price-card {
    display: flex;
    flex: 0 0 min(84vw, 360px);
    min-height: auto;
    padding: 26px 22px;
    border-color: rgba(245, 242, 236, 0.2);
    background:
      radial-gradient(circle at 50% 0%, rgba(121, 216, 241, 0.09), transparent 17rem),
      linear-gradient(180deg, rgba(245, 242, 236, 0.06), rgba(245, 242, 236, 0.018)),
      #0b0c0d;
    scroll-snap-align: start;
  }

  .price-card::after {
    inset: 8px;
    border-color: rgba(121, 216, 241, 0.16);
  }

  .featured-badge {
    margin-bottom: 16px;
  }

  .price-card h3 {
    margin-bottom: 0;
    font-size: clamp(27px, 8vw, 36px);
  }

  .package-label {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .package-facts {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    margin: 22px 0 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.11);
  }

  .price {
    font-size: 11px;
  }

  .price span {
    font-size: clamp(58px, 18vw, 76px);
  }

  .package-duration {
    min-width: 96px;
    padding-top: 0;
    border-top: 0;
    text-align: right;
    font-size: 13px;
  }

  .package-meta {
    margin-bottom: 9px;
  }

  .package-copy {
    min-height: auto;
    margin-bottom: 0;
    font-size: 15px;
  }

  .price-card ul {
    gap: 12px;
    padding: 22px 0;
    margin: 0 0 4px;
  }

  .price-card li {
    padding-left: 30px;
    color: rgba(245, 242, 236, 0.78);
    font-size: 14px;
    line-height: 1.42;
  }

  .price-card li::before {
    top: 0.12em;
    width: 18px;
    height: 18px;
    background: rgba(121, 216, 241, 0.08);
  }

  .price-card li::after {
    top: 0.53em;
    left: 6px;
  }

  .price-card .button {
    width: 100%;
    margin-top: auto;
  }

  .price-card.is-mobile-filtered-out,
  .price-card.is-filtered-out {
    display: none;
  }

  .service-detail-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(245, 242, 236, 0.1);
    color: rgba(245, 242, 236, 0.76);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
  }

  .service-detail-toggle::after {
    content: "+";
    color: rgba(121, 216, 241, 0.72);
    font-size: 16px;
    font-weight: 400;
  }

  .service-detail-toggle[aria-expanded="true"]::after {
    content: "–";
  }

  .service-detail-panel {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 320ms var(--ease), opacity 260ms ease;
  }

  .service-detail-panel:not([hidden]) {
    max-height: 260px;
    opacity: 1;
  }

  .service-detail-panel p {
    margin: -6px 0 16px;
    color: rgba(245, 242, 236, 0.58);
    font-size: 13px;
    line-height: 1.5;
  }

  .addons {
    gap: 18px;
    margin-top: 18px;
    padding: 24px 20px;
  }

  .addons h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .addon-grid {
    gap: 0;
  }

  .addon-grid span {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0 13px 18px;
  }

  .addon-grid strong {
    font-size: 9px;
    white-space: normal;
  }

  .pricing-grid {
    display: none;
  }

  .mobile-package-card {
    flex-basis: min(84vw, 360px);
    min-height: auto;
  }
}

.mobile-package-card .package-feature-list {
  display: grid;
  gap: 22px;
  padding: 24px 0 26px;
  margin: 0 0 20px;
  border-top: 1px solid rgba(245, 242, 236, 0.1);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
}

.mobile-package-card .package-feature-list section {
  display: grid;
  gap: 12px;
}

.mobile-package-card .package-feature-list section + section {
  padding-top: 2px;
}

.mobile-package-card .package-feature-list h4 {
  margin: 0;
  color: rgba(245, 242, 236, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-package-card .package-feature-list ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  list-style: none;
}

.mobile-package-card .package-feature-list li {
  position: relative;
  min-height: 18px;
  padding-left: 27px;
  color: rgba(245, 242, 236, 0.7);
  font-size: 13px;
  line-height: 1.38;
}

.mobile-package-card .package-feature-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(121, 216, 241, 0.62);
  border-radius: 50%;
  background: rgba(121, 216, 241, 0.045);
  box-shadow: 0 0 16px rgba(121, 216, 241, 0.045);
  content: "";
}

.mobile-package-card .package-feature-list li::after {
  position: absolute;
  top: 0.47em;
  left: 5px;
  width: 4px;
  height: 2px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.72);
  border-left: 1px solid rgba(245, 242, 236, 0.72);
  content: "";
  transform: rotate(-45deg);
}

.mobile-package-card .package-feature-list section:last-child li {
  color: rgba(245, 242, 236, 0.62);
}

.mobile-package-card .package-feature-list section:last-child h4 {
  color: rgba(121, 216, 241, 0.68);
}

@media (min-width: 860px) {
  .mobile-package-card .package-feature-list {
    gap: 24px;
  }

  .mobile-package-card .package-feature-list li {
    font-size: 13.5px;
  }
}

@media (max-width: 619px) {
  .mobile-package-card .package-feature-list {
    gap: 20px;
    padding: 22px 0 24px;
  }

  .mobile-package-card .package-feature-list ul {
    gap: 9px;
  }

  .mobile-package-card .package-feature-list li {
    padding-left: 25px;
    font-size: 13px;
  }
}
