:root {
  --bg: #000000;
  --bg-card: #050505;
  --gold: #f5cf57;
  --gold-strong: #ffd84d;
  --gold-dark: #b88a16;
  --gold-soft: #d9ba63;
  --text: #ffffff;
  --muted: #ceb064;
  --border: rgba(245, 207, 87, 0.72);
  --border-soft: rgba(245, 207, 87, 0.18);
  --container: 1120px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --shadow-gold: 0 0 24px rgba(245, 207, 87, 0.08);
  --shadow-card: 0 0 0 1px rgba(245, 207, 87, 0.04), 0 12px 30px rgba(0, 0, 0, 0.45);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(245, 207, 87, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(245, 207, 87, 0.04), transparent 22%),
    #000;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-sm {
  padding: 14px 0 10px;
}

#results,
#reviews,
#packages,
#paint,
#service-area,
#faq,
#booking {
  scroll-margin-top: 110px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 207, 87, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-car-logo {
  width: 102px;
  max-width: 30vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(245, 207, 87, 0.08));
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.desktop-nav .nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid rgba(245, 207, 87, 0.42);
  color: var(--gold);
  box-shadow: 0 0 12px rgba(245, 207, 87, 0.08);
}

.menu-btn {
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(245, 207, 87, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(245, 207, 87, 0.06);
}

.menu-btn span {
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 14px 16px;
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav a {
  padding: 14px 16px;
  border: 1px solid rgba(245, 207, 87, 0.16);
  border-radius: 16px;
  color: var(--gold);
  font-weight: 700;
  background: #080808;
  box-shadow: 0 0 12px rgba(245, 207, 87, 0.04);
}

/* HERO */

.hero {
  padding-top: 18px;
  padding-bottom: 26px;
}

.hero-photo-card {
  overflow: hidden;
  border: 2px solid rgba(245, 207, 87, 0.14);
  border-radius: 28px;
  margin-bottom: 18px;
  background: #050505;
  box-shadow:
    0 0 0 1px rgba(245, 207, 87, 0.04),
    0 0 18px rgba(245, 207, 87, 0.07);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.eyebrow,
.vip-eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.hero-title {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: clamp(2.65rem, 10vw, 4.9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-shadow: 0 0 18px rgba(245, 207, 87, 0.05);
  max-width: 8ch;
}

.hero-text,
.section-subtext,
.booking-note {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.04rem, 4vw, 1.18rem);
  line-height: 1.58;
}

.hero-trust-line {
  margin-top: 16px;
  color: var(--gold-soft);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-buttons {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

/* BUTTONS */

.btn {
  min-height: 66px;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 3px solid rgba(245, 207, 87, 0.84);
  color: var(--gold);
  box-shadow:
    inset 0 0 0 1px rgba(245, 207, 87, 0.04),
    0 0 10px rgba(245, 207, 87, 0.08);
}

.btn-outline:hover {
  box-shadow:
    inset 0 0 0 1px rgba(245, 207, 87, 0.06),
    0 0 16px rgba(245, 207, 87, 0.14);
}

.btn-solid {
  background: linear-gradient(180deg, #f8e07a, #efcc4f);
  color: #000;
  border: none;
  box-shadow: 0 12px 26px rgba(245, 207, 87, 0.16);
}

.btn-solid:hover {
  box-shadow: 0 14px 30px rgba(245, 207, 87, 0.22);
}

/* TITLES */

.section-title {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 0 18px rgba(245, 207, 87, 0.05);
}

.section-intro {
  padding-top: 18px;
  padding-bottom: 14px;
}

/* TRUST */

.trust-grid {
  display: grid;
  gap: 18px;
}

.trust-card {
  background: linear-gradient(180deg, #050505, #030303);
  border: 1px solid rgba(245, 207, 87, 0.1);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}

.trust-card h3 {
  margin: 0 0 10px;
  color: var(--gold-strong);
  font-size: 1.18rem;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* RESULTS */

.results-grid {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.result-card {
  background: linear-gradient(180deg, #050505, #020202);
  border: 1px solid rgba(245, 207, 87, 0.12);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.result-card-title {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: clamp(1.45rem, 4.6vw, 1.95rem);
  font-weight: 800;
  line-height: 1.08;
}

.result-stack {
  display: grid;
  gap: 16px;
}

.result-shot {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(245, 207, 87, 0.16);
  border-radius: 24px;
  background: #070707;
  box-shadow: 0 0 16px rgba(245, 207, 87, 0.05);
}

.result-image {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.result-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.84);
  border: 1px solid rgba(245, 207, 87, 0.22);
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-badge-after {
  background: linear-gradient(180deg, #f8e07a, #efcc4f);
  color: #000;
  border-color: rgba(255, 238, 170, 0.56);
}

/* REVIEWS */

.reviews-head {
  margin-bottom: 18px;
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  background: linear-gradient(180deg, #050505, #030303);
  border: 1px solid rgba(245, 207, 87, 0.1);
  border-radius: 28px;
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--gold-strong);
  letter-spacing: 0.06em;
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.review-text {
  margin: 0 0 18px;
  color: #f4f4f4;
  font-size: clamp(1.02rem, 3.9vw, 1.18rem);
  line-height: 1.75;
}

.review-name {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.08rem;
}

/* SERVICE AREA + CTA */

.paint-explainer {
  max-width: 760px;
}

.service-area-box,
.bottom-cta-box {
  background: linear-gradient(180deg, #050505, #020202);
  border: 1px solid rgba(245, 207, 87, 0.12);
  border-radius: 30px;
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.service-area-pill {
  padding: 14px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 207, 87, 0.16);
  background: rgba(245, 207, 87, 0.03);
  color: var(--gold);
  text-align: center;
  font-weight: 700;
}

.bottom-cta-btn {
  width: 100%;
  margin-top: 18px;
}

/* PACKAGES */

.packages-grid {
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.package-card {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(245, 207, 87, 0.06), transparent 38%),
    linear-gradient(180deg, #040404, #020202);
  border: 4px solid rgba(245, 207, 87, 0.86);
  border-radius: 32px;
  padding: 26px 20px 22px;
  box-shadow:
    0 0 0 1px rgba(245, 207, 87, 0.04),
    0 0 18px rgba(245, 207, 87, 0.08),
    0 0 34px rgba(245, 207, 87, 0.06);
  overflow: hidden;
}

.package-card.featured {
  background:
    radial-gradient(circle at center, rgba(245, 207, 87, 0.1), transparent 42%),
    linear-gradient(180deg, #120d02, #050402);
}

.featured-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #fff0a3, #f5cf57);
  color: #000;
  font-weight: 900;
  padding: 10px 18px 8px;
  font-size: 0.95rem;
  line-height: 1;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  white-space: nowrap;
  border: 1px solid rgba(255, 238, 170, 0.52);
  z-index: 4;
}

.package-name {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.package-price {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.4rem, 5vw, 2.15rem);
  font-weight: 800;
}

.package-addon-highlight {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 207, 87, 0.22);
  background: rgba(245, 207, 87, 0.06);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.package-list {
  margin: 0 0 22px;
  padding-left: 26px;
}

.package-list li {
  margin-bottom: 12px;
  color: #f2f2f2;
  font-size: clamp(1.02rem, 3.9vw, 1.24rem);
  line-height: 1.5;
}

.package-note {
  margin: -2px 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.card-btn {
  width: 100%;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid rgba(245, 207, 87, 0.12);
  border-radius: 20px;
  padding: 16px 18px;
  background: #080808;
  box-shadow: 0 0 12px rgba(245, 207, 87, 0.03);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--gold-strong);
  list-style: none;
  position: relative;
  padding-right: 28px;
  font-size: 1.04rem;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-strong);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* BOOKING FORM */

.booking-form {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-label {
  color: var(--gold-strong);
  font-size: clamp(1.04rem, 4vw, 1.42rem);
  font-weight: 800;
}

.field-input {
  width: 100%;
  min-height: 66px;
  padding: 16px 20px;
  border: 3px solid rgba(245, 207, 87, 0.82);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(245, 207, 87, 0.02), rgba(245, 207, 87, 0)),
    #050505;
  color: var(--gold);
  font-size: clamp(1rem, 4vw, 1.22rem);
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(245, 207, 87, 0.03),
    0 0 10px rgba(245, 207, 87, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input:focus,
.vip-input:focus,
.custom-select.open .custom-select-trigger {
  border-color: #ffe47b;
  box-shadow:
    0 0 0 3px rgba(245, 207, 87, 0.08),
    0 0 18px rgba(245, 207, 87, 0.08);
}

.field-input::placeholder,
.vip-input::placeholder {
  color: rgba(245, 207, 87, 0.5);
}

.field-textarea {
  min-height: 120px;
  resize: vertical;
}

.tg-date-input {
  color-scheme: dark;
}

.tg-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(83%) sepia(60%) saturate(707%) hue-rotate(359deg) brightness(102%) contrast(101%);
}

/* CUSTOM SELECT */

.native-select-hidden {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.custom-select-trigger .custom-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select.is-placeholder .custom-select-trigger .custom-select-value {
  color: rgba(245, 207, 87, 0.62);
}

.custom-select-arrow {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
  margin-right: 4px;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(225deg) translateY(-1px);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 24px;
  border: 2px solid rgba(245, 207, 87, 0.2);
  background:
    radial-gradient(circle at top, rgba(245, 207, 87, 0.06), transparent 42%),
    linear-gradient(180deg, #0b0b0b, #030303);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(245, 207, 87, 0.08);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  max-height: 320px;
  overflow-y: auto;
}

.custom-select.open .custom-select-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select-option {
  width: 100%;
  border: 1px solid rgba(245, 207, 87, 0.1);
  border-radius: 18px;
  background: rgba(245, 207, 87, 0.03);
  color: var(--gold);
  min-height: 56px;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.custom-select-option:hover,
.custom-select-option.is-active {
  border-color: rgba(245, 207, 87, 0.28);
  background: rgba(245, 207, 87, 0.08);
  box-shadow: 0 0 12px rgba(245, 207, 87, 0.08);
}

.custom-select-option.is-selected {
  background: linear-gradient(180deg, #f8e07a, #efcc4f);
  color: #000;
  border-color: rgba(255, 238, 170, 0.55);
}

.custom-select-option.is-placeholder {
  color: rgba(245, 207, 87, 0.58);
}

/* ADD ONS */

.addons-list {
  display: grid;
  gap: 16px;
}

.addon-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--gold);
  font-size: clamp(1rem, 4vw, 1.14rem);
  line-height: 1.35;
  cursor: pointer;
}

.addon-row span {
  display: grid;
  gap: 4px;
  flex: 1;
}

.addon-row small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.addon-highlight {
  padding: 16px;
  border: 1px solid rgba(245, 207, 87, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(245, 207, 87, 0.03), rgba(245, 207, 87, 0.01));
}

.addon-row:has(.addon-box:checked) {
  border-color: rgba(245, 207, 87, 0.32);
  background:
    radial-gradient(circle at top right, rgba(245, 207, 87, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(245, 207, 87, 0.08), rgba(245, 207, 87, 0.03));
  box-shadow: 0 0 16px rgba(245, 207, 87, 0.08);
}

.addon-box {
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  border: 2px solid rgba(245, 207, 87, 0.65);
  background: #0a0a0a;
  margin-top: 4px;
  flex: 0 0 26px;
  position: relative;
  cursor: pointer;
}

.addon-box:checked {
  background: linear-gradient(180deg, #f8e07a, #efcc4f);
  border-color: #ffe47b;
}

.addon-box:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.95rem;
  font-weight: 900;
}

.addon-item.is-hidden {
  display: none !important;
}

.custom-quote-mini-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.custom-quote-box {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(245, 207, 87, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 207, 87, 0.04), rgba(245, 207, 87, 0.02));
}

.custom-quote-box.is-hidden {
  display: none !important;
}

.custom-quote-head h4 {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 1.2rem;
}

.custom-quote-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.custom-quote-services {
  display: grid;
  gap: 14px;
}

.custom-quote-services .addon-row {
  font-size: 1rem;
}

/* ESTIMATE */

.estimate-section-inner {
  padding-top: 8px;
}

.estimate-box {
  border: 3px solid rgba(245, 207, 87, 0.74);
  border-radius: 28px;
  padding: 22px;
  background: #040404;
  box-shadow:
    0 0 0 1px rgba(245, 207, 87, 0.04),
    0 0 18px rgba(245, 207, 87, 0.08);
}

.estimate-title {
  margin-bottom: 16px;
}

.estimate-breakdown {
  margin-top: 18px;
  border-top: 1px solid rgba(245, 207, 87, 0.16);
  border-bottom: 1px solid rgba(245, 207, 87, 0.16);
  padding: 12px 0;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
  padding: 8px 0;
}

.estimate-discount-row {
  color: #ffe47b;
}

.estimate-total {
  margin-top: 18px;
  color: var(--gold-strong);
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  font-weight: 900;
  line-height: 1.08;
  word-break: break-word;
}

.estimate-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.submit-btn {
  width: 100%;
  min-height: 72px;
  font-size: clamp(1.08rem, 4vw, 1.4rem);
  font-weight: 900;
}

.booking-note {
  margin-top: 2px;
}

.is-hidden {
  display: none !important;
}

/* BACK TO TOP */

.back-top {
  position: fixed;
  right: 10px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 96px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.64);
  border: 2px solid rgba(245, 207, 87, 0.14);
  color: var(--gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  z-index: 90;
  opacity: 0.7;
  backdrop-filter: blur(8px);
}

/* VIP POPUP */

.vip-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.vip-popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.vip-popup {
  position: relative;
  width: min(100%, 560px);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #090909, #030303);
  border: 2px solid rgba(245, 207, 87, 0.2);
  border-radius: 30px;
  box-shadow: 0 0 28px rgba(245, 207, 87, 0.1);
}

.vip-popup-content {
  padding: 28px 22px 24px;
}

.vip-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 207, 87, 0.16);
  border-radius: 50%;
  background: rgba(245, 207, 87, 0.04);
  color: var(--gold-strong);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.vip-title {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.vip-text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.vip-form {
  display: grid;
  gap: 14px;
}

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

.vip-label {
  color: var(--gold-strong);
  font-weight: 800;
  font-size: 1rem;
}

.vip-input {
  width: 100%;
  min-height: 60px;
  padding: 14px 18px;
  border: 2px solid rgba(245, 207, 87, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(245, 207, 87, 0.02), rgba(245, 207, 87, 0)),
    #050505;
  color: var(--gold);
  outline: none;
}

.vip-submit-btn,
.vip-secondary-btn {
  min-height: 62px;
  border-radius: 18px;
  font-weight: 900;
  cursor: pointer;
}

.vip-submit-btn {
  border: none;
  background: linear-gradient(180deg, #f8e07a, #efcc4f);
  color: #000;
}

.vip-secondary-btn {
  border: 2px solid rgba(245, 207, 87, 0.24);
  background: transparent;
  color: var(--gold);
}

.vip-small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.vip-offer-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.vip-offer-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 207, 87, 0.14);
  border-radius: 16px;
  background: rgba(245, 207, 87, 0.04);
  color: #fff;
}

.vip-offer-row strong {
  color: var(--gold-strong);
}

.vip-code-box {
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(245, 207, 87, 0.2);
  background: rgba(245, 207, 87, 0.05);
  color: var(--gold);
  font-weight: 800;
  text-align: center;
}

.vip-actions {
  display: grid;
  gap: 12px;
}

/* BOOKING STEPS */

.booking-form-steps {
  gap: 20px;
}

.booking-steps-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-step-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 207, 87, 0.14);
  background: rgba(245, 207, 87, 0.03);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.booking-step-pill.active {
  color: #000;
  background: linear-gradient(180deg, #f8e07a, #efcc4f);
  border-color: rgba(255, 238, 170, 0.55);
  box-shadow: 0 10px 24px rgba(245, 207, 87, 0.14);
}

.step-pill-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-stage {
  display: none;
  gap: 18px;
}

.form-stage.active {
  display: grid;
}

.form-stage-head {
  padding: 18px 18px 16px;
  border: 1px solid rgba(245, 207, 87, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 207, 87, 0.04), rgba(245, 207, 87, 0.02));
}

.form-stage-eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-stage-title {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
}

.form-stage-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.booking-grid-two {
  display: grid;
  gap: 18px;
}

.booking-grid-full {
  grid-column: 1 / -1;
}

.stage-actions {
  display: grid;
  gap: 14px;
}

.stage-actions-split {
  grid-template-columns: 1fr;
}

.stage-next-btn,
.stage-back-btn {
  width: 100%;
}

.access-options {
  display: grid;
  gap: 12px;
}

.access-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(245, 207, 87, 0.12);
  border-radius: 18px;
  background: rgba(245, 207, 87, 0.03);
  color: var(--gold);
}

.access-option input {
  accent-color: #ffd400;
}

/* REDUCED MOTION */

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

/* MOBILE */

@media (max-width: 899px) {
  .section {
    padding: 44px 0;
  }

  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header-inner {
    min-height: 82px;
    padding: 10px 0;
  }

  .header-car-logo {
    width: 96px;
    max-width: 28vw;
  }

  .menu-btn {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .hero {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .hero-photo-card {
    border-radius: 24px;
    margin-bottom: 16px;
  }

  .hero-photo {
    aspect-ratio: 4 / 3;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
    max-width: 7ch;
    line-height: 0.94;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    min-height: 62px;
    border-radius: 18px;
    padding: 15px 18px;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .trust-card,
  .review-card,
  .result-card,
  .service-area-box,
  .bottom-cta-box,
  .estimate-box {
    border-radius: 24px;
  }

  .package-card {
    border-radius: 28px;
    padding: 24px 18px 20px;
  }

  .featured-tag {
    top: -13px;
    font-size: 0.9rem;
    padding: 9px 16px 8px;
  }

  .package-name {
    font-size: clamp(1.85rem, 8.6vw, 2.8rem);
    max-width: 100%;
  }

  .package-price {
    font-size: clamp(1.2rem, 6.4vw, 1.9rem);
  }

  .package-list li {
    font-size: 1rem;
  }

  .result-image {
    height: 300px;
  }

  .result-badge {
    top: 12px;
    left: 12px;
    padding: 9px 14px;
    font-size: 0.75rem;
  }

  .review-text {
    line-height: 1.65;
  }

  .field-input {
    min-height: 62px;
    padding: 15px 18px;
    font-size: 1rem;
  }

  .custom-select-dropdown {
    max-height: 280px;
  }

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

  .booking-step-pill {
    min-height: 54px;
    font-size: 0.92rem;
    padding: 10px 12px;
  }

  .step-pill-number {
    width: 24px;
    height: 24px;
    font-size: 0.84rem;
  }
}

/* DESKTOP */

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

  .menu-btn {
    display: none;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero-photo {
    aspect-ratio: 16 / 9;
  }

  .hero-buttons {
    grid-template-columns: repeat(2, minmax(0, 280px));
  }

  .trust-grid,
  .reviews-grid,
  .main-packages {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .result-card-wide {
    grid-column: 1 / -1;
  }

  .result-stack-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-image {
    height: 420px;
  }

  .paint-packages {
    grid-template-columns: repeat(1, minmax(0, 620px));
  }

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

  .booking-grid-two {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-actions-split {
    grid-template-columns: 1fr 1fr;
  }

  .access-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .vip-actions {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-cta-btn {
    width: auto;
    min-width: 260px;
  }

  .back-top {
    right: 18px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}

.booking-success-box {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}