/* ============================================================
   Magic City Detailing · Bespoke Luxury Automotive Studio Theme
   Prestige Obsidian / Satin Platinum / Pure Crimson
   Typography: Montserrat (Headings) + Barlow (Body)
   ============================================================ */

:root {
  --bg: #090a0e;
  --bg-2: #0e1117;
  --bg-elevated: #131720;
  --surface: #12161f;
  --surface-glass: rgba(18, 22, 30, 0.78);
  --surface-card: linear-gradient(180deg, rgba(23, 28, 38, 0.85) 0%, rgba(13, 16, 22, 0.95) 100%);
  --surface-card-hover: linear-gradient(180deg, rgba(28, 34, 46, 0.92) 0%, rgba(16, 20, 28, 0.98) 100%);
  --text: #f0f3f8;
  --text-bright: #ffffff;
  --muted: #8e98a8;
  --silver: #b5beca;
  --red: #e10600;
  --red-2: #ff332a;
  --red-deep: #a00000;
  --red-glow: rgba(225, 6, 0, 0.45);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-specular: rgba(255, 255, 255, 0.24);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --shadow: 0 24px 54px -14px rgba(0, 0, 0, 0.85);
  --shadow-sm: 0 12px 28px -10px rgba(0, 0, 0, 0.65);
  --shadow-card: 0 20px 48px -12px rgba(0, 0, 0, 0.75), inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
  --shadow-card-hover: 0 32px 64px -16px rgba(0, 0, 0, 0.9), 0 0 35px -8px rgba(225, 6, 0, 0.35), inset 0 1px 0 0 rgba(255, 255, 255, 0.26);
  --glow: 0 14px 38px -8px rgba(225, 6, 0, 0.55);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #08090c; }
::-webkit-scrollbar-thumb { background: #1e2430; border-radius: 5px; border: 2px solid #08090c; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

::selection {
  background: var(--red);
  color: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(225, 6, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 15% 65%, rgba(225, 6, 0, 0.05) 0%, transparent 45%),
    linear-gradient(to right, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 54px 54px, 54px 54px;
  color: var(--text);
  line-height: 1.64;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, 840px); }

/* Accent text: Crisp, bright, high-contrast, prestigious */
.accent {
  color: #ff332a;
  text-shadow: 0 0 35px rgba(255, 51, 42, 0.4);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--red-2), var(--red));
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(225, 6, 0, 0.85);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .9em 1.8em;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn .ic { font-size: 1.05em; }

.btn--gold {
  background: linear-gradient(135deg, #ff4136 0%, var(--red-2) 30%, var(--red) 75%, #b30000 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px -6px rgba(225, 6, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.btn--gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left .6s ease;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -6px rgba(225, 6, 0, 0.85), 0 0 25px rgba(225, 6, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--gold:hover::before {
  left: 100%;
}

.btn--line {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn--line:hover {
  border-color: var(--red);
  color: #ffffff;
  background: rgba(225, 6, 0, 0.15);
  box-shadow: 0 8px 24px -4px rgba(225, 6, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--silver);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: .65em 1.1em;
  font-size: .82rem;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}
.btn--ghost:hover {
  color: #ffffff;
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.12);
}

.btn--lg { padding: 1.1em 2.2em; font-size: .98rem; border-radius: 10px; }
.btn--block { width: 100%; justify-content: center; margin-top: .4rem; }

.btn--line--dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}
.btn--line--dark:hover {
  border-color: var(--red-2);
  color: #ffffff;
  background: rgba(225, 6, 0, 0.16);
  box-shadow: 0 0 20px rgba(225, 6, 0, 0.35);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s, border-color .35s;
  padding: 22px 0;
  color: #ffffff;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 10, 14, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(225, 6, 0, 0.35));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .92rem;
  color: #ffffff;
  transition: color .3s;
}
.brand__sub {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .32em;
  font-size: .62rem;
  color: var(--red-2);
}
.nav.scrolled .brand__name { color: #ffffff; }

.nav__links {
  display: flex;
  gap: 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav__links a {
  color: rgba(240, 243, 248, 0.78);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav.scrolled .nav__links a { color: rgba(240, 243, 248, 0.82); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--red-2), var(--red));
  box-shadow: 0 0 8px var(--red);
  transition: width .3s var(--ease);
  border-radius: 2px;
}
.nav__links a:hover {
  color: #ffffff;
}
.nav.scrolled .nav__links a:hover { color: #ffffff; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span { width: 22px; height: 2px; background: #ffffff; transition: .3s var(--ease); border-radius: 2px; }
.nav.scrolled .nav__toggle span { background: #ffffff; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero + carousel ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: #08090c;
}
.hero__slides { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 7s ease;
  filter: contrast(1.06) brightness(0.92);
}
.slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 45%, rgba(225, 6, 0, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.45) 0%, rgba(8, 10, 14, 0.75) 55%, #090a0e 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.94) 0%, rgba(8, 10, 14, 0.72) 48%, rgba(8, 10, 14, 0.3) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 840px; color: #ffffff; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--red-2);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--red-2);
  margin-right: 12px;
  box-shadow: 0 0 8px var(--red-2);
}
.hero .eyebrow {
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero .eyebrow::before { display: none; }

.hero__title {
  color: #ffffff;
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  line-height: 1.08;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(240, 243, 248, 0.88);
  max-width: 640px;
  margin-bottom: 34px;
  line-height: 1.65;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }
.hero .btn--line {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(14, 18, 26, 0.55);
  backdrop-filter: blur(10px);
}
.hero .btn--line:hover {
  border-color: var(--red);
  color: #ffffff;
  background: rgba(225, 6, 0, 0.2);
  box-shadow: 0 0 25px rgba(225, 6, 0, 0.4);
}

.hero__badges {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  color: rgba(240, 243, 248, 0.9);
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 22, 30, 0.65);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 10px var(--red-2);
}

.hero__carousel-ui {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(14, 18, 26, 0.65);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.hero__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: .25s var(--ease);
}
.hero__arrow:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 15px rgba(225, 6, 0, 0.6);
}
.hero__dots { display: flex; gap: 8px; align-items: center; }
.hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: .3s var(--ease);
}
.hero__dots button.active {
  background: var(--red-2);
  width: 24px;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--red-2);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 32px;
  left: auto;
  transform: none;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  z-index: 2;
  background: rgba(14, 18, 26, 0.4);
  backdrop-filter: blur(8px);
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: var(--red-2);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
  box-shadow: 0 0 10px var(--red-2);
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 15px); }
}

/* ---------- Stats (Executive Proof Bar) ---------- */
.stats {
  background: linear-gradient(180deg, rgba(16, 20, 28, 0.95) 0%, rgba(10, 12, 17, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 10;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 44px 0;
}
.stat {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.4vw, 3.2rem);
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 0%, #f0f3f8 40%, var(--red-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(225, 6, 0, 0.35));
}
.stat__label {
  display: block;
  color: var(--silver);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-top: 6px;
}

/* ---------- Section base ---------- */
.section {
  padding: 104px 0;
  background: transparent;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, rgba(14, 18, 25, 0.65) 0%, rgba(10, 13, 18, 0.75) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 58px;
  position: relative;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-bright);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section__head .section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--red-2), var(--red), transparent);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(225, 6, 0, 0.8);
}
.section__lead {
  color: var(--silver);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
}

/* ---------- Services cards (Perfect Vertical & Horizontal Alignment) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: var(--shadow-card-hover);
}
.card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #08090c;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: brightness(0.92) contrast(1.05);
}
.card:hover .card__media img {
  transform: scale(1.07);
  filter: brightness(1.02) contrast(1.1);
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 16, 22, 0.85) 100%);
}
.card__body {
  padding: 26px 26px 22px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}
.card__body p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.62;
  margin-bottom: 22px;
  flex-grow: 1;
}

/* Card Footer: Always pinned along the exact bottom baseline */
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card__price {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.25), rgba(225, 6, 0, 0.1));
  border: 1px solid rgba(225, 6, 0, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 14px -2px rgba(225, 6, 0, 0.3);
  padding: 5px 12px;
  border-radius: 6px;
}
.card__price--quote {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--silver);
}

.card__link {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--red-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s var(--ease), color .25s;
}
.card__link:hover {
  color: #ffffff;
  gap: 10px;
}
.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff362b, #c40500);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 22px -4px rgba(225, 6, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: var(--shadow-card-hover);
}
.feature__ic {
  font-size: 2.2rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 14px rgba(225, 6, 0, 0.6));
}
.feature h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}
.feature p { color: var(--muted); font-size: .94rem; line-height: 1.6; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative;
  padding: 34px 26px 30px;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: var(--shadow-card-hover);
}
.step__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, var(--red-2) 65%, #9a0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(225, 6, 0, 0.45));
}
.step h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 12px 0 8px;
  color: #ffffff;
}
.step p { color: var(--muted); font-size: .94rem; line-height: 1.6; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.65);
  transition: transform .4s var(--ease), filter .4s, border-color .4s, box-shadow .4s;
}
.gallery img:hover {
  transform: scale(1.04) translateY(-3px);
  filter: brightness(1.08) contrast(1.06);
  border-color: var(--red);
  box-shadow: 0 18px 40px -10px rgba(225, 6, 0, 0.45);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 7, 10, 0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(225, 6, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s var(--ease);
}
.lightbox__close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

/* ---------- About + Owner (Gilberto Vasquez) ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
}
.about__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(14, 18, 26, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(225, 6, 0, 0.6);
  padding: 12px 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(225, 6, 0, 0.35);
}
.about__badge span {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--red-2);
  font-size: .92rem;
}
.about__badge small { color: var(--silver); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; }
.about__text h2 { margin: 12px 0 20px; font-size: clamp(2rem, 3.8vw, 2.8rem); color: #ffffff; }
.about__text p { color: var(--silver); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.68; }
.about__list { list-style: none; margin: 20px 0 28px; display: grid; gap: 14px; }
.about__list li { display: flex; gap: 14px; align-items: flex-start; color: #d6dde7; font-size: .98rem; }
.about__list span { color: var(--red-2); font-weight: 700; }

.owner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 68px;
  padding: 32px 34px;
  background: linear-gradient(135deg, rgba(24, 29, 40, 0.9) 0%, rgba(14, 17, 24, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), 0 0 30px -10px rgba(225, 6, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.owner__photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 30px rgba(225, 6, 0, 0.4), 0 16px 36px -8px rgba(0, 0, 0, 0.85);
}
.owner__bio h3 { font-size: 1.6rem; margin: 6px 0 6px; color: #ffffff; }
.owner__role {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-2);
  margin: 0 0 12px;
}
.owner__bio p { color: var(--silver); font-size: 1.02rem; line-height: 1.68; }
.owner__bio code {
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.35);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: .88em;
  color: #ff6b6b;
  font-weight: 600;
}

/* ---------- Reviews (Verified Testimonials) ---------- */
.reviews-grid { columns: 3; column-gap: 20px; }
.review {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 24px 22px;
  position: relative;
  margin: 0 0 20px;
  break-inside: avoid;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.review:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: var(--shadow-card-hover);
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 3.6rem;
  line-height: 1;
  color: rgba(225, 6, 0, 0.18);
  pointer-events: none;
}
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.review__stars {
  color: #ffb703;
  letter-spacing: 3px;
  font-size: 1rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.5));
}
.review__date {
  font-size: .74rem;
  color: var(--muted);
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.review blockquote { font-size: .98rem; line-height: 1.7; color: #d8dfeb; position: relative; z-index: 1; }
.review blockquote .trans { display: block; margin-top: 10px; color: var(--silver); font-style: italic; font-size: .92rem; line-height: 1.6; }
.review__by { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 16px; margin-top: 18px; }
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-2), var(--red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .02em;
  flex: none;
  box-shadow: 0 4px 14px -2px rgba(225, 6, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.review__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
}
.review__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 3px;
}
.reviews-verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -32px 0 42px;
  color: var(--silver);
  font-size: .92rem;
  font-family: var(--font-head);
  letter-spacing: .06em;
}
.reviews-verified svg { flex: none; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 16px; }
.faq__item {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .3s, box-shadow .3s;
}
.faq__item:hover, .faq__item[open] {
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.8), 0 0 25px -6px rgba(225, 6, 0, 0.25);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--red-2);
  font-size: 1.6rem;
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq__item p { padding: 0 24px 22px; color: var(--silver); font-size: .98rem; line-height: 1.65; }
.faq__item a { color: var(--red-2); text-decoration: underline; }

/* ---------- Contact & Lead Form ---------- */
.contact__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.contact__form-wrap {
  background: linear-gradient(180deg, rgba(22, 27, 37, 0.9) 0%, rgba(13, 16, 23, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 42px 36px;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 40px -10px rgba(225, 6, 0, 0.2);
  backdrop-filter: blur(16px);
}
.form { display: grid; gap: 18px; margin-top: 10px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .75rem;
  color: var(--silver);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form input, .form select, .form textarea {
  font-family: var(--font-body);
  font-size: .98rem;
  color: #ffffff;
  background: rgba(8, 10, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px 15px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form select option { background: #12151c; color: #fff; }
.form input::placeholder, .form textarea::placeholder { color: #646e7f; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  background: rgba(12, 15, 22, 0.95);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.5);
}
.form textarea { resize: vertical; }
.form__note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 4px; }
.form__success {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(225, 6, 0, 0.14);
  border: 1px solid rgba(225, 6, 0, 0.45);
  color: #ffffff;
  font-size: .95rem;
  box-shadow: 0 0 25px rgba(225, 6, 0, 0.25);
}
.form__success a { color: var(--red-2); text-decoration: underline; font-weight: 600; }

.contact__info { display: grid; gap: 20px; }
.info-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}
.info-card h3 { font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; color: #ffffff; }
.info-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color .25s, background .25s, transform .2s, box-shadow .25s;
}
.info-btn:hover {
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.14);
  transform: translateX(4px);
  box-shadow: 0 4px 16px -2px rgba(225, 6, 0, 0.35);
}
.info-btn:last-child { margin-bottom: 0; }
.info-btn--gold {
  background: linear-gradient(135deg, #ff4136, var(--red));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(225, 6, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.info-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -4px rgba(225, 6, 0, 0.85); }
.info-btn--line {
  border-color: var(--red);
  color: var(--red-2);
  background: rgba(225, 6, 0, 0.08);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
}
.info-btn--line:hover { background: rgba(225, 6, 0, 0.2); color: #fff; }
.info-btn .ic { font-size: 1.15em; }

.hours { list-style: none; display: grid; gap: 10px; }
.hours li {
  display: flex;
  justify-content: space-between;
  font-size: .94rem;
  color: var(--silver);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 9px;
}
.hours li span:last-child { color: #ffffff; font-weight: 600; font-family: var(--font-head); letter-spacing: .02em; }
.area { color: var(--silver); font-size: .92rem; margin-bottom: 14px; line-height: 1.55; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chips span {
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--silver);
}

/* ---------- Social ---------- */
.social { display: flex; gap: 10px; }
.social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: .25s var(--ease);
}
.social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -2px rgba(225, 6, 0, 0.6);
}
.social--light a { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); color: #fff; }
.social--light a:hover { background: var(--red); border-color: var(--red); }

/* ---------- Footer ---------- */
.footer {
  background: #06070a;
  color: #ffffff;
  padding-top: 68px;
  border-top: 3px solid var(--red);
  box-shadow: 0 -12px 35px -5px rgba(225, 6, 0, 0.25);
  position: relative;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer__brand .brand__name { color: #ffffff; }
.footer__brand p { color: var(--silver); font-size: .94rem; margin-top: 18px; max-width: 330px; line-height: 1.62; }
.footer__col h4 {
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 700;
}
.footer__col a { display: block; color: var(--silver); font-size: .94rem; padding: 6px 0; transition: color .25s; }
.footer__col a:hover { color: var(--red-2); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: .84rem;
  font-family: var(--font-head);
  letter-spacing: .06em;
}

/* ---------- Floating CTA ---------- */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ff362b, #c40500);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px -4px rgba(225, 6, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: scale(0);
  transition: transform .4s var(--ease);
}
.float-cta.show {
  transform: scale(1);
  animation: ctaRadar 2.8s infinite;
}
.float-cta:hover { transform: scale(1.1); box-shadow: 0 16px 40px -4px rgba(225, 6, 0, 0.95); }
@keyframes ctaRadar {
  0% { box-shadow: 0 10px 25px -4px rgba(225, 6, 0, 0.7), 0 0 0 0 rgba(225, 6, 0, 0.55); }
  65% { box-shadow: 0 10px 25px -4px rgba(225, 6, 0, 0.7), 0 0 0 18px rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 10px 25px -4px rgba(225, 6, 0, 0.7), 0 0 0 0 rgba(225, 6, 0, 0); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Service tabs (Interactive Vehicle Configurator) ---------- */
.tabs {
  background: linear-gradient(180deg, rgba(20, 25, 35, 0.9) 0%, rgba(12, 15, 21, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 65px -15px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.75);
  padding: 10px 14px;
  gap: 8px;
}
.tab {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--silver);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.tab.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.3) 0%, rgba(225, 6, 0, 0.12) 100%);
  border-color: rgba(225, 6, 0, 0.55);
  box-shadow: 0 4px 18px -2px rgba(225, 6, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.tabs__panels { padding: 40px; }

/* Tab panel: Top-aligned so text and photos start at the exact same baseline */
.tab-panel {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: start;
}
.tab-panel.is-active { display: grid; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.tab-panel__head h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ffffff;
}
.tab-panel__head p {
  color: var(--silver);
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.68;
}

.checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 26px;
}
.checks li {
  position: relative;
  padding-left: 28px;
  color: #d6dde7;
  font-size: .95rem;
  line-height: 1.5;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff362b, #c40500);
  box-shadow: 0 0 10px rgba(225, 6, 0, 0.6);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 5px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tab-panel__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  aspect-ratio: 4/3;
  background: #08090c;
}
.tab-panel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.tab-panel__photo:hover img {
  transform: scale(1.03);
}

/* ---------- Media ---------- */
.media__grids { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.media__col {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}
.media__col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffffff;
}
.media__col-head svg { color: var(--red-2); filter: drop-shadow(0 0 8px rgba(225, 6, 0, 0.5)); }
.media__follow {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red-2);
  border: 1px solid rgba(225, 6, 0, 0.6);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.08);
  box-shadow: 0 0 14px -2px rgba(225, 6, 0, 0.35);
  transition: .25s var(--ease);
}
.media__follow:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  box-shadow: 0 0 22px rgba(225, 6, 0, 0.75);
}
.media__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.media__grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.6);
}
.media__grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .4s var(--ease); }
.media__grid a:hover img { transform: scale(1.08); }
.media__note { text-align: center; color: var(--silver); font-size: .94rem; margin-top: 26px; }

/* ---------- Pricing board (Concours Spec Sheet - Perfectly Aligned) ---------- */
.pricing {
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(225, 6, 0, 0.16) 0%, transparent 60%), #07080b;
  color: #ffffff;
  position: relative;
}
.pricing .eyebrow { color: var(--red-2); }
.pricing .eyebrow::before { background: var(--red-2); }
.pricing .section__lead { color: var(--silver); }

.price-table {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 27, 38, 0.88) 0%, rgba(13, 16, 23, 0.96) 100%);
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 45px -12px rgba(225, 6, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.price-table__row {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  align-items: center;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background .25s var(--ease);
  position: relative;
}
.price-table__row:hover { background: rgba(255, 255, 255, 0.035); }
.price-table__row:last-child { border-bottom: none; }

.price-table__row--head {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 32px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
}
.price-table__row--head span:first-child {
  text-align: left;
}
.price-table__row--head span:nth-child(2),
.price-table__row--head span:nth-child(3) {
  text-align: center;
}

.price-table__row--popular {
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.12) 0%, rgba(225, 6, 0, 0.03) 100%);
  border-left: 3px solid var(--red);
}

.price-table__svc {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: left;
}
.price-table__svc small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .84rem;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

/* Price columns are centered directly beneath their centered column headers! */
.price-table__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.01em;
}
.price-table__price-sub { font-size: 1.05rem; color: var(--red-2); margin-left: 2px; }

/* Wide rows centered across columns 2 and 3 */
.price-table__row--wide .price-table__price {
  grid-column: 2 / -1;
  text-align: center;
  color: var(--red-2);
  font-size: 1.45rem;
}

.pricing-note {
  max-width: 680px;
  margin: 36px auto 0;
  font-size: .95rem;
  color: var(--silver);
  text-align: center;
  line-height: 1.65;
  clear: both;
  position: relative;
  z-index: 1;
}
.pricing-note a { color: var(--red-2); font-weight: 600; text-decoration: underline; }
.price-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 36px; }

/* ---------- Price rows (service detail tabs - Perfectly Aligned) ---------- */
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px -8px rgba(0, 0, 0, 0.6);
  margin: 0 0 24px;
}
.price-row--single {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.16) 0%, rgba(225, 6, 0, 0.04) 100%);
  border-color: rgba(225, 6, 0, 0.45);
}
.price-row__col {
  padding: 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.price-row__col + .price-row__col { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.price-row__col span {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.price-row__col strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.price-row--single .price-row__col strong {
  color: var(--red-2);
}
.price-note {
  font-size: .92rem;
  color: var(--silver);
  margin: 16px 0 24px;
  max-width: 580px;
  line-height: 1.6;
}
.price-note a { color: var(--red-2); font-weight: 600; text-decoration: underline; }

/* ---------- Card badge + price tag ---------- */
.price-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff362b, #c40500);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px -2px rgba(225, 6, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* ---------- Responsive ---------- */
@media(max-width: 980px) {
  .cards, .features, .steps, .reviews { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 38px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .owner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .tab-panel { grid-template-columns: 1fr; }
  .media__grids { grid-template-columns: 1fr; }
  .reviews-grid { columns: 2; }
}

@media(max-width: 680px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 8px;
    padding: 100px 30px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 99;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a {
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(240, 243, 248, 0.9);
  }
  .nav__links a:hover { color: #ffffff; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav__actions .btn--ghost { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .stat + .stat::before { display: none; }
  .cards, .features, .steps, .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__carousel-ui { display: none; }
  .checks { grid-template-columns: 1fr; }
  .tabs__nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .tab-panel__photo { aspect-ratio: 16/10; }
  .reviews-grid { columns: 1; }
  .contact__form-wrap { padding: 30px 22px; }

  /* Pricing table, mobile */
  .price-table__row { grid-template-columns: 1fr; gap: 8px; padding: 18px 22px; }
  .price-table__row--head { display: none; }
  .price-table__price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
    font-size: 1.25rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    padding-bottom: 10px;
    margin-top: 6px;
  }
  .price-table__price:last-child { border-bottom: none; padding-bottom: 0; }
  .price-table__price::before {
    content: attr(data-label);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--silver);
  }
  .price-table__row--wide .price-table__price { grid-column: auto; }
  .price-cta .btn { width: 100%; justify-content: center; }
}

@media(prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .slide { transition: opacity .3s ease; }
}

/* ============================================================
   Luxury Bespoke Additions: Auditor Enhancements
   ============================================================ */

/* Hero trust badge */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 22, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
.hero__stars {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: .9rem;
  filter: drop-shadow(0 0 6px rgba(255, 183, 3, 0.6));
}
.hero__trust-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver);
}







/* Pricing guarantees bar */
.pricing-guarantees {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 920px;
  margin: 26px auto 0;
}
.guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 25, 35, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--silver);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.guarantee-chip svg { color: var(--red-2); flex: none; }

/* Enhanced Feature icon containers */
.feature__ic {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18) 0%, rgba(225, 6, 0, 0.04) 100%);
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: var(--red-2);
  margin-bottom: 20px;
  box-shadow: 0 8px 24px -4px rgba(225, 6, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover .feature__ic {
  transform: scale(1.08);
  box-shadow: 0 12px 30px -4px rgba(225, 6, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Contact SVG icons */
.info-svg {
  flex: none;
  color: var(--red-2);
  margin-right: 4px;
}
.info-btn:hover .info-svg {
  color: #ffffff;
}
