:root {
  --bg: #050505;
  --bg-elevated: #0c0e12;
  --surface: #12151b;
  --surface-2: #1a1f28;
  --primary: #1a6cff;
  --primary-hover: #3d82ff;
  --primary-deep: #0e4ec4;
  --silver: #c5ccd6;
  --silver-bright: #e8edf4;
  --text: #e8edf4;
  --muted: #9aa3b2;
  --border: #2a3340;
  --border-strong: #3a4a5c;
  --success: #5cb88a;
  --error: #d97878;
  --star: #d4b45a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 4px 18px rgba(26, 108, 255, 0.18);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --header-h: 5.25rem;
  --mobile-cta-h: 4.75rem;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(26, 108, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(197, 204, 214, 0.05), transparent 50%),
    var(--bg);
  line-height: 1.65;
  padding-bottom: calc(var(--mobile-cta-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--primary-hover);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
  color: var(--silver-bright);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  min-width: 0;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-title {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--silver-bright);
  white-space: nowrap;
}

.brand-tagline {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--silver);
  box-shadow: 0 -6px 0 var(--silver), 0 6px 0 var(--silver);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--silver);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--silver-bright);
  background: rgba(26, 108, 255, 0.12);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.hero {
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(165deg, rgba(26, 31, 40, 0.95), rgba(12, 14, 18, 0.98));
  box-shadow: var(--shadow);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(26, 108, 255, 0.1);
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 700;
}

.badge-star {
  color: var(--star);
  border-color: rgba(212, 180, 90, 0.35);
}

.hero h1 {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--silver-bright);
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 var(--space-lg);
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.hero-call-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.hero-call-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-call-strong {
  min-height: 56px;
  min-width: 12.5rem;
  padding: 0.95rem 1.7rem;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}

.hero-photo {
  width: min(100%, 28rem);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  max-height: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--silver);
  font-size: 0.95rem;
}

.hero-meta strong {
  color: var(--silver-bright);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(100%, 40rem);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  min-width: 10.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-color: var(--primary-deep);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.btn-secondary {
  background: transparent;
  color: var(--silver-bright);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: #fff;
  background: rgba(26, 108, 255, 0.1);
}

.btn-ghost {
  background: var(--surface);
  color: var(--silver-bright);
  border-color: var(--border);
}

.book-cal-icon {
  flex-shrink: 0;
  display: block;
}

.btn-book {
  background: linear-gradient(135deg, #1a4f9c, var(--primary-deep));
  color: #fff;
  border-color: var(--primary-deep);
  box-shadow: var(--shadow-soft);
}

.btn-book:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.nav-links .book-cal-icon {
  width: 16px;
  height: 16px;
}

.booking-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 var(--space-lg);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(26, 79, 156, 0.22), rgba(12, 14, 18, 0.92));
  color: var(--silver-bright);
  text-decoration: none;
}

.booking-card:hover {
  border-color: var(--primary);
  color: #fff;
}

.booking-card .book-cal-icon {
  width: 44px;
  height: 44px;
  color: var(--silver);
}

.booking-card span {
  display: grid;
  gap: 0.2rem;
}

.booking-card strong {
  font-size: 1.05rem;
}

.booking-card em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.section-tight {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(18, 21, 27, 0.7), transparent);
  border-block: 1px solid rgba(42, 51, 64, 0.6);
}

.section-head {
  max-width: 42rem;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-title {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  color: var(--silver-bright);
  letter-spacing: -0.01em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
}

.trust-grid,
.services-grid,
.steps-grid,
.faq-grid,
.cities-grid,
.card-grid {
  display: grid;
  gap: var(--space-md);
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.cities-grid {
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.trust-card,
.service-card,
.step-card,
.content-card,
.city-chip {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.trust-card,
.step-card,
.content-card {
  padding: var(--space-lg);
}

.trust-card {
  text-align: center;
}

.trust-card h3,
.step-card h3,
.content-card h3,
.service-card h3 {
  margin: 0 0 var(--space-sm);
  color: var(--silver-bright);
  font-size: 1.05rem;
}

.trust-card p,
.step-card p,
.content-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  border: 1px solid rgba(26, 108, 255, 0.45);
  color: var(--primary-hover);
  font-weight: 800;
  background: rgba(26, 108, 255, 0.1);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  color: inherit;
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-sm);
  border-radius: 12px;
  color: var(--primary-hover);
  background: rgba(26, 108, 255, 0.12);
  border: 1px solid rgba(26, 108, 255, 0.35);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
  color: inherit;
}

.service-card .card-link {
  margin-top: auto;
  padding-top: var(--space-md);
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 0.92rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  background: rgba(26, 108, 255, 0.15);
  border: 1px solid rgba(26, 108, 255, 0.4);
  color: var(--silver-bright);
  font-weight: 800;
  font-size: 0.9rem;
}

.city-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  text-align: center;
  color: var(--silver);
  font-weight: 600;
}

.prose {
  max-width: 48rem;
  margin-inline: auto;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose h2,
.prose h3 {
  color: var(--silver-bright);
}

.page-hero {
  padding: clamp(2rem, 5vw, 3.25rem) 0 1rem;
}

.page-hero h1 {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  color: var(--silver-bright);
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-banner {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(135deg, rgba(26, 108, 255, 0.16), rgba(18, 21, 27, 0.95));
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin: 0 0 var(--space-sm);
  color: var(--silver-bright);
}

.cta-banner p {
  margin: 0 auto var(--space-lg);
  max-width: 36rem;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.contact-panel {
  width: min(100%, 44rem);
  margin-inline: auto;
  padding: clamp(1.25rem, 3.5vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--surface-2), var(--bg-elevated));
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel > h1 {
  margin: 0 0 var(--space-sm);
  text-align: center;
  color: var(--silver-bright);
}

.contact-panel > p {
  margin: 0 0 var(--space-lg);
  text-align: center;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid.two-col .full {
    grid-column: 1 / -1;
  }
}

.form-field label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: #0a0c10;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 108, 255, 0.25);
}

.checkbox-field {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.92rem;
  text-align: center;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.contact-direct {
  margin-top: var(--space-lg);
  text-align: center;
  color: var(--muted);
}

.contact-direct a {
  font-weight: 700;
}

.faq-item {
  padding: var(--space-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.faq-item h3 {
  margin: 0 0 var(--space-sm);
  color: var(--silver-bright);
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.review-cta-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  text-align: center;
}

.review-cta-card .stars {
  color: var(--star);
  letter-spacing: 0.12em;
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
}

.split-2 {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 860px) {
  .split-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.site-footer {
  padding: var(--space-2xl) 0 calc(var(--space-xl) + 0.5rem);
  border-top: 1px solid var(--border-strong);
  background: #07080a;
  color: var(--silver);
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.55fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.footer-brand img,
.footer-logo {
  width: 8.5rem;
  height: 8.5rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(26, 108, 255, 0.28));
}

.footer-brand strong {
  display: block;
  color: #fff;
  margin-bottom: 0.45rem;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.footer-brand p {
  margin: 0;
  color: var(--silver);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-col h3 {
  margin: 0 0 var(--space-sm);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--silver);
  font-weight: 600;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col li {
  color: var(--silver);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-strong);
  color: var(--silver);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-legal a {
  color: var(--silver);
  font-weight: 700;
}

.footer-legal a:hover {
  color: #fff;
}

/* Honeypot — visually hidden from people, still in the DOM for bots */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.65rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 5, 5, 0.96);
  border-top: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
}

.mobile-call-bar:has(.btn-book) {
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
}

.mobile-call-bar .btn-book {
  min-width: 0;
  padding-inline: 0.55rem;
}

.mobile-call-bar .btn {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  font-size: 0.98rem;
}

.mobile-call-bar .btn-call-strong {
  min-height: 52px;
  font-size: 1.05rem;
}

.owner-intro .owner-photo-wrap img {
  width: 100%;
  max-width: 22rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.owner-quote {
  margin: 0 0 var(--space-md);
  color: var(--silver-bright);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  font-weight: 600;
}

.photo-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.photo-grid-two {
  max-width: 48rem;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.photo-card {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.brands-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
}

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  color: var(--silver-bright);
  font-weight: 700;
  text-align: center;
}

.reviews-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.review-card {
  padding: var(--space-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.review-card .stars {
  color: var(--star);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.review-text {
  margin: 0 0 var(--space-md);
  color: var(--silver);
  font-size: 0.98rem;
}

.review-author {
  margin: 0;
  color: var(--silver-bright);
  font-weight: 700;
}

.areas-layout {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .areas-layout {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: start;
  }
}

.area-map {
  width: 100%;
  min-height: 16rem;
  margin-top: var(--space-md);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #0a0c10;
}

.form-submit-row {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.form-reassure {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.field-hint {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.cta-banner {
  margin-bottom: 0;
}

.site-footer {
  padding-top: var(--space-xl);
}

@media (min-width: 769px) {
  .mobile-call-bar {
    display: none;
  }
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.error-page h1 {
  margin: 0 0 var(--space-sm);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--silver-bright);
}

.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 108, 255, 0.2);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    padding: 1rem;
    background: rgba(8, 9, 12, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
