:root {
  --ink: #0f172a;
  --muted: #475569;
  --light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --primary: #1a3a5c;
  --primary-light: #2563eb;
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  font-family: Inter, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body { background: var(--bg); color: var(--ink); line-height: 1.6; }
body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 72px;
}

.logo {
  display: block;
  width: clamp(160px, 16vw, 220px);
  background: var(--ink);
  border-radius: 8px;
  padding: 8px 12px;
  flex-shrink: 0;
}

.logo img { width: 100%; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
  margin-left: auto;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 11px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 58, 92, 0.3);
}

.btn-outline {
  border: 2px solid var(--border);
  background: #fff;
  color: var(--primary);
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  margin-top: 8px;
  cursor: pointer;
}

/* ── LABELS ── */
.label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
}

.label-light { color: var(--accent); }

/* ── SECTIONS ── */
.section {
  padding: clamp(60px, 8vw, 110px) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2439 100%);
  color: #fff;
}

.section-sub {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 700px;
  margin-bottom: 10px;
}

h1, h2, h3 { overflow-wrap: anywhere; }

h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 800px;
}

h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.7) 40%,
    rgba(15, 23, 42, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fff;
}

.hero-content .label { color: var(--accent); }

.hero-content p {
  color: #cbd5e1;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  margin-top: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-buttons .btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.hero-buttons .btn-outline {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(255,255,255,0.06);
}

.hero-vehicles {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  margin-top: 44px;
  max-width: 720px;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}

.vehicle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,158,11,0.45);
}

.vehicle-card-img {
  height: 130px;
  overflow: hidden;
}

.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vehicle-card:hover .vehicle-card-img img {
  transform: scale(1.06);
}

.vehicle-card-body {
  padding: 16px 18px 18px;
  display: grid;
  gap: 8px;
}

.vehicle-card-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.vehicle-card-seats {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.vehicle-card-seats em {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

.vehicle-card-body p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
}

.vehicle-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.vehicle-card-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

/* ── HERO PHONE ── */
.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--accent);
}

.hero-phone svg { flex-shrink: 0; }

.hero-phone a {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.hero-phone a:hover { color: var(--accent); }

/* ── HERO SCROLL ARROW ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(7px); opacity: 1; }
}

/* ── ABOUT ── */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.about-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-highlight:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(37,99,235,0.08));
  color: var(--primary);
  flex-shrink: 0;
}

.about-highlight b {
  display: block;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 6px;
}

.about-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.about-cta-text {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.about-cta-text a {
  color: var(--primary-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(37,99,235,0.3);
  text-underline-offset: 3px;
}

/* ── CARDS ── */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-accent {
  border-left: 3px solid var(--primary-light);
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--primary-light);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

.card-accent .card-num {
  background: var(--primary);
  color: #fff;
}

.card p { color: var(--muted); line-height: 1.6; }

/* ── OFFER FULL ── */
.offer-full {
  margin-top: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8), #fff);
}

.offer-full p { color: var(--muted); font-size: 17px; line-height: 1.7; }

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ── FLEET ── */
.fleet-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.fleet-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fleet-img img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.fleet-vehicles {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.vehicle {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.vehicle b {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 17px;
}

.vehicle p { color: var(--muted); line-height: 1.6; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tags span {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-alt);
}

/* ── REGION ── */
.region-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.region-text p {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  margin-top: 8px;
}

.region-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: clamp(16px, 2vw, 28px);
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(37,99,235,0.04));
  box-shadow: var(--shadow);
}

.region-map img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  transform: scale(1.08);
}

/* ── STEPS ── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 10px;
}

.step {
  flex: 1;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
  align-self: center;
  margin-top: 20px;
  flex-shrink: 0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--bg-alt);
}

.step p { color: var(--muted); line-height: 1.6; }

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, 0.95fr);
  gap: 12px;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 130px;
  gap: 12px;
  max-height: 700px;
  overflow: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #e2e8f0;
  cursor: zoom-in;
  padding: 0;
}

.gallery-featured { min-height: 700px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.gallery-featured .gallery-label {
  left: 14px;
  right: auto;
  bottom: 14px;
  font-size: 14px;
  padding: 10px 16px;
}

/* ── ACCORDION ── */
.accordion {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.accordion summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  font-weight: 800;
  font-size: 17px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}

.accordion summary:hover { background: var(--bg-alt); }
.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

.accordion details[open] summary {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.accordion details[open] summary::after { content: "\2212"; }

.accordion-body {
  padding: 20px 24px 24px;
}

.accordion-body ol, .accordion-body ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 12px 0 0;
  padding-left: 24px;
}

.accordion-body li + li { margin-top: 6px; }
.accordion-body li::marker { color: var(--primary); font-weight: 800; }

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr minmax(300px, 0.7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.section-dark h2 { color: #fff; }
.section-dark p { color: #94a3b8; }

.form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.form-header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.form-header span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-header b {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
}

.form label span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.form input, .form select, .form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form textarea { min-height: 110px; resize: vertical; }

.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form .is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  border: none;
  padding: 0;
}

.form-consent span {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.form-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(245,158,11,0.4);
  text-underline-offset: 2px;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.form-error {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fca5a5;
}

.contact-sidebar {
  display: grid;
  gap: 12px;
}

.contact-box {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  transition: background 0.2s;
}

a.contact-box:hover { background: rgba(255,255,255,0.1); }

.contact-box span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.04em;
}

.contact-box b {
  font-size: clamp(17px, 1.8vw, 22px);
  overflow-wrap: anywhere;
}

.contact-box-highlight {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(255,255,255,0.06));
  border-color: rgba(245,158,11,0.25);
}

/* ── PRIVACY ── */
.privacy-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.privacy-layout h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 14px;
}

.privacy-layout p { color: var(--muted); line-height: 1.7; margin: 0; }

.privacy-items { display: grid; gap: 10px; }

.privacy-item {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.privacy-item b {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 15px;
}

/* ── PRIVACY DOC ── */
.privacy-intro {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 760px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.privacy-doc {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.privacy-block {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.privacy-block h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 10px;
}

.privacy-block p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-block p:last-child { margin-bottom: 0; }

.privacy-block ul {
  margin: 8px 0 12px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-block li { margin-bottom: 4px; }
.privacy-block li::marker { color: var(--accent); }

.privacy-block a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-block-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(37,99,235,0.04));
  border-color: rgba(245,158,11,0.25);
}

.privacy-block-highlight b {
  display: block;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 6px;
}

.privacy-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FOOTER ── */
.footer {
  background: #0a0f1a;
  color: #94a3b8;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(140px, 0.6fr) minmax(200px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 48px) 24px;
}

.footer-logo {
  width: min(220px, 100%);
  margin-bottom: 16px;
}

.footer-brand p { max-width: 340px; margin: 0; line-height: 1.6; }

.footer-links, .footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links b, .footer-contact b {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a, .footer-contact a, .footer-contact span {
  color: #94a3b8;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer-links a:hover, .footer-contact a:hover { color: #fff; }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #475569;
  font-size: 14px;
}

.footer-bottom a { font-weight: 600; }
.footer-bottom a:hover { color: #94a3b8; }

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  gap: 8px;
}

.floating-cta a {
  display: grid;
  min-width: 100px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.floating-cta a:first-child {
  background: var(--primary);
  color: #fff;
}

.floating-cta a:last-child {
  background: #fff;
  color: var(--primary);
}

.mobile-bar { display: none; }

/* ── COOKIE BAR ── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px clamp(20px, 4vw, 48px);
  animation: slideUp 0.4s ease;
}

.cookie-bar[hidden] { display: none; }

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-bar-content {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-bar-content svg {
  color: var(--accent);
  flex-shrink: 0;
}

.cookie-bar-content p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
  flex: 1;
}

.cookie-bar-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-bar-close:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

@media (max-width: 680px) {
  .cookie-bar-content { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-bar { padding-bottom: 80px; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  display: grid;
  place-items: center;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .gallery-item img { transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .hamburger { display: flex; }
  .nav, .header-phone { display: none; }

  .header.is-open .nav {
    display: grid;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px clamp(20px, 4vw, 48px) 20px;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .header.is-open .nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid var(--border);
  }

  .header.is-open .nav a:last-child { border-bottom: 0; }

  .header.is-open .header-phone {
    display: inline-flex;
    position: absolute;
    top: 14px;
    right: 70px;
  }

  .about-highlights { grid-template-columns: 1fr; }

  .fleet-layout,
  .region-layout,
  .contact-layout,
  .privacy-layout { grid-template-columns: 1fr; }

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

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

  .steps { flex-direction: column; gap: 0; }
  .step-line { width: 2px; height: 24px; align-self: center; }

  .gallery { grid-template-columns: 1fr; }
  .gallery-grid { max-height: none; overflow: visible; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-bottom { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .header-inner { height: 64px; }
  .header.is-open .nav { top: 64px; }
  .logo { width: 150px; }

  .hero { min-height: auto; padding-top: 48px; padding-bottom: 48px; }
  .hero-stats { flex-direction: column; }

  .cards-4, .offer-list, .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-featured { min-height: 300px; }

  .hero-scroll { display: none; }

  .fleet-img img { min-height: 280px; }

  .region-map img { transform: scale(1); }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .footer-brand, .footer-bottom { grid-column: auto; }
  .footer-bottom { flex-direction: column; }

  .floating-cta { display: none; }

  .mobile-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 50;
    display: grid;
    height: 54px;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(26,58,92,0.4);
  }
}
