*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080a0e;
  --bg2: #0d0f16;
  --surface: #111420;
  --surface2: #161a28;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(196,160,80,0.3);
  --text: #e8eaf2;
  --muted: #7a7f94;
  --muted2: #555a6e;
  --gold: #c4a050;
  --gold-light: #e0c070;
  --gold-dim: rgba(196,160,80,0.12);
  --white: #ffffff;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── UTILS ───────────────────────────────────── */
.section-inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.5px;
  color: var(--white); margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7;
}

/* ── NAV ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,10,14,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(8,10,14,0.97); }
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #a07830);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 700; color: #0a0a0a;
  letter-spacing: -0.5px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 15px; font-weight: 600; color: var(--white); }
.logo-sub  { font-size: 9px; letter-spacing: 3px; color: var(--gold); font-weight: 500; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  background: var(--gold); color: #0a0a0a;
  text-decoration: none; font-size: 13px; font-weight: 700;
  padding: 9px 22px; border-radius: 8px; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--muted); border-radius: 2px; transition: 0.3s;
}

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 190;
  background: rgba(8,10,14,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-link:hover { color: white; }
.mobile-cta { margin-top: 16px; text-align: center; border: none; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 68px;
}

#particles { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,160,80,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 50%, rgba(30,40,100,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 820px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,160,80,0.1); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700; line-height: 1.0; letter-spacing: -1px;
  color: var(--white); margin-bottom: 22px;
}
.hero-title em {
  font-style: italic; color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--muted);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 52px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; background: var(--gold); color: #0a0a0a;
  text-decoration: none; font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: 9px; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(196,160,80,0.25);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(196,160,80,0.35); }

.btn-ghost {
  display: inline-block; color: var(--white); text-decoration: none;
  font-size: 14px; font-weight: 600; padding: 13px 28px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.15); transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; }
.hstat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 36px; }
.hstat-num   { font-size: 26px; font-weight: 700; color: var(--gold); letter-spacing: -0.5px; }
.hstat-label { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
.hstat-div   { width: 1px; height: 36px; background: var(--border); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted2); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted2));
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ── INTRO STRIP ─────────────────────────────── */
.intro-strip {
  overflow: hidden; padding: 16px 0;
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.strip-inner {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 12px; font-weight: 500; color: var(--gold);
  letter-spacing: 1.5px; text-transform: uppercase;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SERVICES ────────────────────────────────── */
.services { padding: 100px 0; }
.service-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px;
}

.service-card {
  position: relative; padding: 36px 30px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--surface2);
}
.service-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, var(--surface2), var(--surface));
}
.service-badge-tag {
  position: absolute; top: -12px; left: 24px;
  background: var(--gold); color: #0a0a0a;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.service-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none;
  transition: gap 0.2s; display: inline-block;
}
.service-link:hover { color: var(--gold-light); }

/* ── PRICING ─────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; align-items: start;
}

.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  transition: transform 0.25s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.gold {
  background: linear-gradient(160deg, #1a1608, #111420);
  border-color: var(--border-gold);
  box-shadow: 0 0 60px rgba(196,160,80,0.08);
}
.pricing-card.dark {
  background: linear-gradient(160deg, #0c0e18, #111420);
  border-color: rgba(100,120,200,0.2);
}

.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0a0a;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pkg-name { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700; line-height: 1;
  color: var(--white); margin: 8px 0 4px; display: flex; align-items: flex-start;
}
.price-dollar { font-size: 28px; margin-top: 10px; margin-right: 2px; color: var(--muted); }
.premier-price { font-size: 42px; align-items: center; }
.price-small { font-size: 18px; font-family: 'Inter', sans-serif; font-weight: 400; margin-left: 8px; color: var(--muted); align-self: flex-end; margin-bottom: 8px; }
.pkg-tagline { font-size: 13px; color: var(--muted); margin-top: 6px; }

.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.pkg-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.pkg-features li.everything { color: var(--gold); font-weight: 500; }
.check { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.btn-pkg {
  display: block; text-align: center; text-decoration: none;
  font-size: 14px; font-weight: 700; padding: 13px 20px; border-radius: 9px;
  border: 1px solid var(--border); color: var(--text);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-pkg:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.btn-pkg.gold-btn { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.btn-pkg.gold-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-pkg.dark-btn { background: rgba(100,120,200,0.1); border-color: rgba(100,120,200,0.25); color: var(--white); }
.btn-pkg.dark-btn:hover { background: rgba(100,120,200,0.2); border-color: rgba(100,120,200,0.4); }

/* ── WHY ─────────────────────────────────────── */
.why { padding: 100px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 52px;
}

.why-card {
  padding: 36px 32px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 14px;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.why-icon { width: 48px; height: 48px; color: var(--gold); }
.why-card h3 { font-size: 19px; font-weight: 600; color: var(--white); }
.why-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── PROCESS ─────────────────────────────────── */
.process {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.process-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-top: 52px; flex-wrap: wrap; gap: 0;
}
.step {
  flex: 1; min-width: 180px; padding: 0 28px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 4px;
}
.step h4 { font-size: 16px; font-weight: 600; color: var(--white); }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.step-arrow { font-size: 22px; color: var(--muted2); flex-shrink: 0; margin-top: -16px; }

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  padding: 80px 32px; text-align: center;
  background: linear-gradient(135deg, #0e1020, #141828);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.cta-banner p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

/* ── CONTACT ─────────────────────────────────── */
.contact { padding: 100px 0; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--muted);
}
.contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14px;
  padding: 11px 14px; outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--border-gold); background: rgba(196,160,80,0.03); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }

.btn-submit {
  width: 100%; padding: 14px; border-radius: 9px;
  background: var(--gold); color: #0a0a0a;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-links-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px; color: var(--muted2); flex-wrap: wrap; gap: 8px;
}

/* ── HERO CARS ───────────────────────────────── */
.hero-cars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-car {
  position: absolute;
  bottom: 0;
  width: 42%;
  max-width: 580px;
  opacity: 0.38;
  filter: brightness(0.85) contrast(1.05);
}

.hero-car-left {
  left: -2%;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 55%, transparent 88%),
                      linear-gradient(to top, black 0%, black 50%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 55%, transparent 88%),
              linear-gradient(to top, black 0%, black 50%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-car-right {
  right: -2%;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 55%, transparent 88%),
                      linear-gradient(to top, black 0%, black 50%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 55%, transparent 88%),
              linear-gradient(to top, black 0%, black 50%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.car-svg { display: block; width: 100%; height: auto; }

/* ── MEMBERSHIP ──────────────────────────────── */
.membership {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
  max-width: 820px;
}

.membership-card {
  position: relative;
  background: linear-gradient(160deg, #1a1608, #111420);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: 0 0 50px rgba(196,160,80,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 48px rgba(196,160,80,0.12);
}
.membership-card.mem-dark {
  background: linear-gradient(160deg, #0c0e18, #111420);
  border-color: rgba(100,120,200,0.25);
  box-shadow: 0 0 50px rgba(80,100,200,0.05);
}

.mem-badge {
  position: absolute; top: -13px; left: 24px;
  background: var(--gold); color: #0a0a0a;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
}

.mem-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.mem-name { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.mem-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 700; line-height: 1;
  color: var(--white); margin: 10px 0 4px;
  display: flex; align-items: flex-start;
}
.mem-dollar { font-size: 26px; margin-top: 10px; margin-right: 2px; color: var(--muted); }
.mem-per { font-size: 16px; font-family: 'Inter', sans-serif; font-weight: 400; color: var(--muted); align-self: flex-end; margin-bottom: 10px; margin-left: 4px; }
.mem-tagline { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.mem-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.mem-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }

.mem-note {
  margin-top: 28px;
  font-size: 13px; color: var(--muted);
  text-align: center; letter-spacing: 0.3px;
}

/* ── CONTACT UPDATES ─────────────────────────── */
.contact-link {
  color: var(--text); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }

.contact-item-areas { align-items: flex-start; }
.contact-item-areas svg { margin-top: 2px; }
.areas-title { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.areas-list { display: block; font-size: 12px; color: var(--muted); line-height: 1.8; }

/* ── FOOTER UPDATES ──────────────────────────── */
.footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-area { font-size: 13px; color: var(--muted); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .service-grid,
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .membership-grid { grid-template-columns: 1fr; max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .process-steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .hero-car { width: 52%; opacity: 0.25; }
}

@media (max-width: 560px) {
  .section-inner { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hstat-div { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px 20px; }
  .hero-car { display: none; }
}
