:root {
  --bg: #0a0a0b;
  --panel: #111216;
  --text: #f7e7a3; /* gold-ish body text */
  --muted: #d9c980; /* muted gold */
  --primary: #ffd033; /* brand gold */
  --primary-ink: #121318; /* dark ink on gold */
  --ring: rgba(255, 208, 51, 0.45);
  --container: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
  --elev-1: 0 6px 16px rgba(0,0,0,0.2);
  --elev-2: 0 12px 28px rgba(0,0,0,0.28);
  --bezier: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(180deg, #0a0a0b 0%, #0f1014 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern scrollbars (supported browsers only) */
* { scrollbar-width: thin; scrollbar-color: var(--muted) transparent; }
*::-webkit-scrollbar { height: 10px; width: 10px; }
*::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(255,208,51,0.25), rgba(255,208,51,0.05)); border-radius: 10px; border: 2px solid transparent; background-clip: padding-box; }
*::-webkit-scrollbar-track { background: transparent; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 10px 14px; background: var(--primary); color: var(--primary-ink); border-radius: 8px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(140%) blur(8px);
  background: rgba(15,16,22,0.6); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s var(--bezier), border-color .3s var(--bezier);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.logo-mark { font-size: 22px; }
.logo-text { letter-spacing: 0.4px; }
/* Logo image sizing */
.logo img { height: 56px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); background: transparent; }
@media (min-width: 980px) { .logo img { height: 72px; } }

/* Header variant: logo centered, no navigation */
/* logo-only variant (unused now, kept for quick toggling) */
.logo-only .header-inner { justify-content: center; }
.logo-only .site-nav, .logo-only .nav-toggle { display: none; }
.logo-only .logo img { height: 80px; }

.site-nav ul { display: flex; gap: 20px; align-items: center; list-style: none; margin: 0; padding: 0; }
.site-nav a { position: relative; color: var(--muted); font-weight: 500; }
.site-nav a:hover { color: var(--text); }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); transform: scaleX(0); transform-origin: center; transition: transform .35s var(--bezier); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: transparent; align-items: center; justify-content: center; color: var(--text); }
.nav-toggle .bar { width: 18px; height: 2px; background: var(--text); border-radius: 2px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); transition: transform .05s ease, box-shadow .25s var(--bezier), background .25s var(--bezier), color .25s var(--bezier); will-change: transform, box-shadow; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: var(--primary-ink); border-color: transparent; box-shadow: 0 6px 20px var(--ring); font-weight: 700; }
.btn--primary:hover { box-shadow: 0 16px 36px var(--ring); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }

/* Hero */
.hero { position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px; align-items: center; min-height: clamp(520px, 72vh, 760px); }
.hero-copy h1 { font-size: clamp(28px, 5vw, 50px); line-height: 1.1; margin: 0 0 14px; }
.lead { color: var(--muted); font-size: clamp(16px, 2.2vw, 20px); margin-bottom: 22px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.benefits { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; list-style: none; padding: 0; margin: 16px 0 0; color: var(--muted); }
.hero-media { border-radius: 20px; min-height: 320px; background: url('IMG-20250908-WA0009.jpg') center/cover no-repeat; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 70% 20%, rgba(255,208,51,0.15), transparent 60%); mix-blend-mode: screen; opacity: .9; pointer-events: none; }

/* Sections */
.section { padding: 72px 0; }
.section--alt { background: linear-gradient(180deg, #0f1016 0%, #0b0c10 100%); }
.section-head { margin-bottom: 26px; }
.section-head h2 { margin: 0 0 8px; font-size: 28px; }
.section-head p { margin: 0; color: var(--muted); }

/* Cards & Grid */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.card { background: var(--panel); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 16px; box-shadow: var(--elev-1); transition: transform .3s var(--bezier), box-shadow .3s var(--bezier), border-color .3s var(--bezier); }
.card:hover { transform: translateY(-4px); box-shadow: var(--elev-2); border-color: rgba(255,255,255,0.14); }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 8px 0 0; color: var(--muted); }
.vehicle-media { border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 12px; background: #0a0b0f; display: flex; align-items: center; justify-content: center; }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.vehicle-meta { display: flex; gap: 12px; color: var(--muted); font-size: 14px; }
.vehicle-dimensions { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.vehicle-dimensions p { margin: 0; font-size: 14px; line-height: 1.4; }
.vehicle-dimensions strong { color: var(--text); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.pricing-single { display: flex; justify-content: center; }
.pricing-single .card { max-width: 400px; width: 100%; }
.price h3 { margin: 0 0 6px; }
.price-value { font-size: 34px; font-weight: 800; margin: 0 0 8px; color: var(--primary); }
.price ul { list-style: none; padding: 0; margin: 0; color: var(--muted); display: grid; gap: 8px; }
.price.featured { border-color: rgba(255,208,51,0.45); box-shadow: 0 20px 60px rgba(255,208,51,0.18); transform: translateY(-2px); }

/* Reservation Process */
.reservation-process { display: flex; align-items: center; justify-content: center; gap: 24px; margin: 40px 0; flex-wrap: wrap; }
.step-card { background: var(--panel); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 32px; text-align: center; min-width: 300px; max-width: 400px; }
.step-number { width: 40px; height: 40px; background: var(--primary); color: var(--primary-ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin: 0 auto 16px; }
.step-card h3 { margin: 0 0 12px; font-size: 24px; color: var(--primary); }
.step-card p { margin: 0 0 16px; color: var(--muted); }
.contact-details { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 16px; margin: 16px 0; }
.contact-details p { margin: 8px 0; }
.step-note { font-size: 14px; color: var(--muted); font-style: italic; margin: 16px 0 0; }
.step-arrow { font-size: 32px; color: var(--primary); font-weight: bold; }
.payment-options { display: flex; gap: 16px; justify-content: center; margin: 16px 0; }
.payment-option { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 12px; flex: 1; }
.payment-option h4 { margin: 0 0 4px; font-size: 16px; color: var(--primary); }
.payment-option p { margin: 0; font-size: 14px; color: var(--muted); }
.twint-number { font-size: 18px; font-weight: 700; color: var(--primary); margin: 4px 0; }

.contact-info { margin: 40px 0; padding: 24px; background: var(--panel); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); }
.contact-info h3 { margin: 0 0 16px; font-size: 20px; }
.contact-info p { margin: 0; line-height: 1.6; }

/* Booking System */
.booking-process { max-width: 800px; margin: 0 auto; }
.step-indicator { display: flex; justify-content: center; margin-bottom: 40px; }
.step { display: flex; align-items: center; gap: 10px; padding: 10px 20px; background: var(--panel); border-radius: 25px; margin: 0 10px; }
.step.active { background: var(--primary); color: var(--primary-ink); }
.step-number { width: 24px; height: 24px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.step.active .step-number { background: rgba(0,0,0,0.2); }
.booking-step { background: var(--panel); border-radius: var(--radius); padding: 32px; margin-bottom: 20px; }
.booking-step.hidden { display: none; }

.vehicle-selection { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; }
.vehicle-option { background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px; cursor: pointer; transition: all 0.3s ease; }
.vehicle-option:hover { border-color: var(--primary); }
.vehicle-option.selected { border-color: var(--primary); background: rgba(255,208,51,0.1); }
.vehicle-preview { margin-bottom: 15px; }
.vehicle-preview img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; }
.vehicle-option h4 { margin: 0 0 8px; font-size: 18px; }
.vehicle-option p { margin: 0 0 12px; color: var(--muted); }
.vehicle-specs { display: flex; gap: 12px; font-size: 14px; color: var(--muted); }

.calendar-container { background: var(--panel); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-header h4 { margin: 0; font-size: 24px; }
.calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.calendar-day-header { background: var(--panel); padding: 12px; text-align: center; font-weight: 600; font-size: 14px; }
.calendar-day { background: var(--panel); padding: 12px; min-height: 60px; cursor: pointer; transition: transform .2s var(--bezier), background .2s var(--bezier), color .2s var(--bezier), box-shadow .2s var(--bezier); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.calendar-day:hover { background: rgba(255,255,255,0.05); }
.calendar-day.past { background: rgba(255,255,255,0.02); color: var(--muted); cursor: not-allowed; }
.calendar-day.available { background: rgba(16,185,129,0.1); }
.calendar-day.available:hover { background: rgba(16,185,129,0.2); transform: translateY(-1px); }
.calendar-day.booked { background: rgba(239,68,68,0.1); color: var(--muted); cursor: not-allowed; }
.calendar-day.selected { background: var(--primary); color: var(--primary-ink); }
.calendar-day.empty { background: transparent; cursor: default; }

.availability-legend { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.legend-color { width: 12px; height: 12px; border-radius: 2px; }
.legend-color.available { background: rgba(16,185,129,0.3); }
.legend-color.booked { background: rgba(239,68,68,0.3); }
.legend-color.selected { background: var(--primary); }

.selected-info { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 15px; margin-bottom: 20px; }
.booking-summary { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 20px; margin-bottom: 20px; }
.summary-item { margin-bottom: 8px; }
.summary-item:last-child { margin-bottom: 0; }
.summary-item .price { color: var(--primary); font-weight: 700; }

.contact-form { margin-bottom: 20px; }
.contact-form h4 { margin: 0 0 15px; font-size: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.form-row input, .form-row textarea { width: 100%; padding: 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; background: rgba(255,255,255,0.03); color: var(--text); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--primary); }
.booking-actions { display: flex; justify-content: space-between; gap: 15px; }

#submit-booking-btn {
  opacity: 0.6;
  transition: opacity .2s var(--bezier);
}

#submit-booking-btn:enabled {
  opacity: 1;
}

/* Rental Terms */
.rental-terms {
  background: var(--panel);
  border: 2px solid rgba(255, 208, 51, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(255, 208, 51, 0.1);
}

.rental-terms h4 {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.terms-content {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.terms-content p {
  margin: 0 0 12px;
}

.terms-content p:last-child {
  margin-bottom: 0;
}

.terms-content ul {
  margin: 12px 0 0 20px;
  padding: 0;
  list-style: disc;
}

.terms-content li {
  margin-bottom: 8px;
}

.terms-checkbox {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  transition: all .2s var(--bezier);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  color: var(--primary-ink);
  font-size: 14px;
  font-weight: 700;
  position: absolute;
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.checkbox-text {
  flex: 1;
  color: var(--text);
  font-weight: 500;
}

.checkbox-label:hover .checkbox-custom {
  border-color: var(--primary);
}

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .step-indicator { flex-direction: column; gap: 10px; }
  .step { margin: 0; }
  .vehicle-selection { grid-template-columns: 1fr; }
  .booking-actions { flex-direction: column; }
}

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--elev-1); transform: translateZ(0); }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform .45s var(--bezier); }
.gallery-item:hover img { transform: scale(1.05); }

/* Sale Section - Autoscout Style */
.sale-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.sale-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.sale-scroll-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.sale-scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.sale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  justify-content: center;
}

.sale-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--elev-1);
  transition: transform .3s var(--bezier), box-shadow .3s var(--bezier), border-color .3s var(--bezier);
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 380px;
}

.sale-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--elev-2);
  border-color: rgba(255,208,51,0.3);
}

.sale-card-clickable {
  cursor: pointer;
}

.sale-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0a0b0f;
}

.sale-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--bezier);
}

.sale-card:hover .sale-card-image img {
  transform: scale(1.08);
}

.sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255,208,51,0.3);
}

.sale-image-count {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.sale-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sale-card-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.sale-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 12px;
}

.sale-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sale-spec {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.sale-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.sale-year {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.sale-details {
  margin-top: 12px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  gap: 6px;
}

.sale-detail-item {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.sale-detail-item strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 6px;
}

.sale-btn {
  margin-top: auto;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
}

@media (max-width: 720px) {
  .sale-grid {
    grid-template-columns: 1fr;
  }
  
  .sale-card {
    min-width: auto;
    max-width: 100%;
  }
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.gallery-modal-content {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius);
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--bezier), transform .2s var(--bezier);
  backdrop-filter: blur(8px);
}

.gallery-modal-close:hover {
  background: rgba(255,68,68,0.8);
  transform: scale(1.1);
}

.gallery-modal-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gallery-modal-header h3 {
  margin: 0 0 4px;
  font-size: 24px;
  color: var(--text);
}

.gallery-modal-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-modal-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  padding: 24px;
}

.gallery-modal-image {
  border-radius: 12px;
  overflow: hidden;
  background: #0a0b0f;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .2s var(--bezier);
}

.gallery-modal-image:hover {
  transform: scale(1.02);
}

.gallery-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  .gallery-modal-images {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  
  .gallery-modal-header {
    padding: 16px;
  }
  
  .gallery-modal-header h3 {
    font-size: 20px;
  }
}

/* Locations */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map { height: 320px; border-radius: var(--radius); background: url('https://api.mapbox.com/styles/v1/mapbox/streets-v12/static/7.9,47.3,13,0/800x600?access_token=pk.eyJ1IjoibWFwYm94LWRlbW8iLCJhIjoiY2s4eGd3bXNoMDB4aDNlcGx3OTgweGZucSJ9.3KX7m6kqGQd0jD0_demo') center/cover no-repeat; border: 1px solid rgba(255,255,255,0.06); }
.location-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; color: var(--muted); }

/* Accordion */
.accordion details { background: var(--panel); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 14px 16px; }
.accordion details + details { margin-top: 10px; }
.accordion summary { cursor: pointer; font-weight: 600; }
.accordion p { color: var(--muted); margin: 10px 0 0; }

/* Form */
.form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 6px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { font-weight: 600; }
.form input, .form select, .form textarea {
  width: 100%; height: 44px; padding: 10px 12px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12); background: #0c0d12; color: var(--text);
}
.form textarea { height: auto; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--ring); }
.error { color: #ff7a7a; min-height: 18px; font-size: 13px; }
.form-actions { display: flex; align-items: center; gap: 16px; }
.form-note { color: var(--muted); margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0; background: #0a0b0f; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.site-footer nav a { color: var(--muted); margin-left: 12px; }
.site-footer nav a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .grid, .pricing { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .locations { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav { position: fixed; inset: 68px 0 auto 0; background: rgba(10,11,15,.92); backdrop-filter: blur(8px); transform: translateY(-120%); transition: transform .25s ease; padding: 16px; }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .grid, .pricing { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
}


