:root {
  --background: #211f1a;
  --foreground: #fbfaf6;
  --card: #2c2a24;
  --nav: #353126;
  --footer: #342f23;
  --muted: #3b3831;
  --muted-foreground: #bcb7aa;
  --border: #4d493f;
  --input: #3a372f;
  --primary: #d8aa3a;
  --gold-dark: #2b2112;
  --shadow: 0 22px 60px rgba(0, 0, 0, .42);
  --radius: 16px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; margin: 0; letter-spacing: 0; }
p { color: var(--muted-foreground); line-height: 1.7; }
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.section { padding-block: 72px; }
.compact { max-width: 760px; }
.band { background: rgba(48, 46, 40, .58); border-block: 1px solid var(--border); }
.eyebrow { display: inline-block; color: var(--primary); font-size: 12px; text-transform: uppercase; letter-spacing: .24em; font-weight: 700; margin-bottom: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(255,255,255,.04);
  transition: all 0.3s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 20% 0%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(120% 120% at 80% 20%, rgba(216,170,58,.12), transparent 60%);
  opacity: .9;
  pointer-events: none;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn:active { transform: translateY(0px); filter: brightness(.98); }
.btn-gold { color: #19150e; background: linear-gradient(135deg, #f0c95d, #b88620); border-color: rgba(255,255,255,.18); box-shadow: 0 14px 46px rgba(216, 170, 58, .22), inset 0 0 0 1px rgba(255,255,255,.08); }
.btn-gold::before { background: radial-gradient(120% 140% at 20% 0%, rgba(255,255,255,.24), transparent 55%); }
.btn-gold:hover { color: #17140f; background: linear-gradient(135deg, #ffd86f, #f0b82f); border-color: rgba(255,255,255,.26); }
.btn-whatsapp { background: #25d366; color: #06170d; box-shadow: 0 14px 40px rgba(37, 211, 102, .35); }
.btn-outline { border-color: rgba(216,170,58,.28); background: rgba(255,255,255,.03); color: var(--foreground); }
.btn-dark { background: #17140f; color: #fff; }
.btn-ghost { border-color: rgba(25, 21, 14, .2); color: #19150e; }
.btn-large { min-height: 54px; padding-inline: 26px; }
.btn-small { min-height: 38px; padding-inline: 14px; }
.btn-wide { width: 100%; }
.center { justify-content: center; }
.center-text { text-align: center; }
.top-space { margin-top: 28px; }
.muted, .microcopy { color: var(--muted-foreground); }
.microcopy { font-size: 12px; text-align: center; }
.alert, small { color: #ffb4a8; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(36, 34, 29, .75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.06); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 34px; padding: 4px 24px; font-size: 13px; color: #fff; background: linear-gradient(135deg, #c99d29, #8f6815); font-weight: 800; }
.topbar a { color: #fff; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 8px; background: transparent; }
.brand { display: inline-flex; gap: 10px; align-items: center; transition: opacity 0.3s ease; }
.brand:hover { opacity: 0.9; }
.brand img { width: 120px; height: 64px; object-fit: contain; object-position: center; border-radius: 8px; }
.brand span { font-family: "Playfair Display", Georgia, serif; font-size: 26px; font-weight: 800; color: var(--primary); }
.brand small { letter-spacing: .28em; color: var(--muted-foreground); }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 800; }
.main-nav a:not(.btn) { color: rgba(251, 250, 246, .85); transition: color 0.3s ease, text-shadow 0.3s ease; }
.main-nav .active, .main-nav a:not(.btn):hover { color: #f7d66d; text-shadow: 0 0 15px rgba(247, 214, 109, 0.4); }
.language-switcher { position: relative; }
.language-button {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(216,170,58,.35);
  border-radius: 999px;
  background: rgba(216,170,58,.1);
  color: var(--foreground);
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
}
.language-button:hover { background: rgba(216,170,58,.18); box-shadow: 0 0 10px rgba(216,170,58,.2); }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  min-width: 120px;
  display: none;
  padding: 8px;
  border: 1px solid rgba(216,170,58,.25);
  border-radius: 14px;
  background: #2d291f;
  box-shadow: var(--shadow);
}
.language-switcher.open .language-menu { display: grid; gap: 4px; }
.language-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: 10px;
  color: var(--foreground) !important;
}
.language-menu a:hover { background: rgba(216,170,58,.12); }
.flag {
  display: inline-block;
  width: 24px;
  height: 18px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.flag-en { background-image: url('https://flagcdn.com/w40/gb.png'); }
.flag-tr { background-image: url('https://flagcdn.com/w40/tr.png'); }
.flag-ru { background-image: url('https://flagcdn.com/w40/ru.png'); }
.flag-de { background-image: url('https://flagcdn.com/w40/de.png'); }
.flag-ar { background-image: url('https://flagcdn.com/w40/ae.png'); }
.social-icons { display: inline-flex; align-items: center; gap: 8px; }
.social-icons a {
  width: 34px;
  height: 34px;
  display: inline-grid !important;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(216, 170, 58, .32);
  background: rgba(216, 170, 58, .1);
  color: var(--primary) !important;
}
.topbar .social-icons a {
  width: 28px;
  height: 28px;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: #fff !important;
}
.topbar .social-icons svg { width: 15px; height: 15px; }
.social-icons svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icons a:nth-child(2) svg { fill: currentColor; stroke: none; }
.whatsapp-mark { fill: none; stroke: currentColor; }
.menu-button { display: none; }

.hero { position: relative; min-height: 720px; overflow: hidden; background: #000; }
.hero > img { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shader { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: auto; mix-blend-mode: screen; opacity: 0.8; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.3), var(--background)); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: center; padding-top: 88px; padding-bottom: 80px; }
.hero-copy h1 { font-size: clamp(48px, 6vw, 72px); line-height: 1.1; margin-bottom: 16px; }
.hero-copy h1 span, .text-gold { color: var(--primary); }
.hero-copy p { max-width: 600px; font-size: 18px; color: rgba(255, 255, 255, 0.9); font-weight: 300; }

/* Animated Hero Extensions */
@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-down { animation: fade-in-down 0.8s ease-out forwards; }
.animate-fade-in-up { animation: fade-in-up 0.8s ease-out forwards; opacity: 0; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-600 { animation-delay: 0.6s; }
.animation-delay-800 { animation-delay: 0.8s; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(249, 115, 22, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(253, 186, 116, 0.3);
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 24px;
  color: #ffedd5;
}
.trust-badge-icons { display: flex; color: #fde047; }
.trust-badge-icons span { margin-right: 4px; }

.gradient-text-1 {
  background: linear-gradient(to right, #fcd34d, #facc15, #fef08a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.gradient-text-2 {
  background: linear-gradient(to right, #fde047, #fb923c, #f87171);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 42px; }
.stats strong { display: block; color: var(--primary); font: 800 30px "Playfair Display", Georgia, serif; }
.stats small { color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }

.booking-card, .panel, .summary, .feature-card, .vehicle-card, .faq-item, .contact-card {
  background: rgba(48, 46, 40, .96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booking-card { padding: 28px; }
.form-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.form-head h3 { font-size: 28px; }
.check-label { color: var(--foreground); font-size: 13px; display: inline-flex; gap: 9px; align-items: center; min-width: 124px; justify-content: flex-end; line-height: 1.2; white-space: nowrap; }
.check-label input { width: 18px; height: 18px; padding: 0; accent-color: var(--primary); flex: 0 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label span { display: block; margin-bottom: 7px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; background: var(--input); color: var(--foreground); padding: 12px; font: inherit; }
textarea { resize: vertical; }
.inline-action { margin-top: 8px; border: 0; background: transparent; color: var(--primary); font-weight: 800; cursor: pointer; padding: 0; }
.booking-card .btn { margin-top: 22px; }

.feature-grid, .cards-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-three:has(.vehicle-card:only-child) { grid-template-columns: 1fr; }
.feature-card { padding: 28px; box-shadow: none; transition: transform .18s ease, border-color .18s ease; }
.feature-card:hover, .vehicle-card:hover, .contact-card:hover { transform: translateY(-2px); border-color: rgba(216, 170, 58, .65); }
.icon-dot { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: #19150e; background: linear-gradient(135deg, #f0c95d, #b88620); margin-bottom: 16px; }
.icon-dot svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head h1, .section-head h2 { font-size: clamp(40px, 6vw, 64px); }
.vehicle-card { overflow: hidden; box-shadow: none; }
.cards-three:has(.vehicle-card:only-child) .vehicle-card { display: grid; grid-template-columns: minmax(320px, .9fr) 1fr; align-items: stretch; }
.vehicle-image, .fleet-image { aspect-ratio: 16 / 10; background: #25231e; display: grid; place-items: center; overflow: hidden; }
.cards-three:has(.vehicle-card:only-child) .vehicle-image { aspect-ratio: auto; min-height: 320px; }
.vehicle-image img, .fleet-image img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.vehicle-body { padding: 26px; }
.card-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.card-row small { color: var(--muted-foreground); }
ul { padding-left: 18px; color: var(--muted-foreground); line-height: 1.8; }
.cta { border-radius: 24px; padding: 54px 24px; text-align: center; background: linear-gradient(135deg, #f0c95d, #b88620); color: #19150e; box-shadow: 0 14px 50px rgba(216, 170, 58, .28); }
.cta h2 { font-size: clamp(36px, 6vw, 58px); }
.cta p { color: rgba(25, 21, 14, .75); max-width: 650px; margin-inline: auto; }

.price-table { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); }
.price-row { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); border-top: 1px solid var(--border); }
.price-row:first-child { border-top: 0; }
.price-row > div { padding: 18px; }
.price-row small { display: block; color: var(--muted-foreground); margin-top: 6px; }
.price-head { background: linear-gradient(135deg, #f0c95d, #b88620); color: #19150e; font-size: 13px; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.price { text-align: center; font: 800 24px "Playfair Display", Georgia, serif; }
.fleet-list { display: grid; gap: 48px; }
.fleet-item { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.fleet-item:nth-child(even) .fleet-image { order: 2; }
.fleet-item h2 { font-size: clamp(34px, 5vw, 48px); }
.check-list li::marker { color: var(--primary); }

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; box-shadow: none; }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 16px; padding: 20px; background: transparent; color: var(--foreground); border: 0; text-align: left; font: inherit; cursor: pointer; }
.faq-item p { display: none; padding: 0 20px 20px; margin: 0; }
.faq-item.open p { display: block; }
.contact-grid, .details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 20px; box-shadow: none; display: grid; gap: 5px; }
.contact-card span { color: var(--muted-foreground); }
.panel { padding: 28px; }
.stack-form { display: grid; gap: 15px; }
.stack-form h3 { font-size: 28px; }
.success, .confirmation { text-align: center; padding-block: 38px; }
.success-icon { width: 70px; height: 70px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 999px; background: linear-gradient(135deg, #f0c95d, #b88620); color: #19150e; font-weight: 900; }

.booking-page { max-width: 1000px; }
.back-link { color: var(--muted-foreground); font-size: 14px; }
.page-title { margin: 36px 0 24px; }
.page-title h1 { font-size: clamp(38px, 6vw, 52px); }
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.stepper div { display: flex; align-items: center; gap: 10px; color: var(--muted-foreground); }
.stepper span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--muted); font-weight: 800; }
.stepper .active span { background: linear-gradient(135deg, #f0c95d, #b88620); color: #19150e; }
.stepper .active { color: var(--foreground); }
.vehicle-select button { width: 100%; padding: 0; border: 2px solid var(--border); border-radius: var(--radius); background: var(--card); color: var(--foreground); text-align: left; overflow: hidden; cursor: pointer; }
.vehicle-select button.selected, .vehicle-select button:hover { border-color: var(--primary); }
.quote { display: block; color: var(--primary); font: 800 34px "Playfair Display", Georgia, serif; margin-top: 12px; }
.summary { padding: 24px; position: sticky; top: 112px; }
.summary dl { display: grid; grid-template-columns: 120px 1fr; gap: 12px; }
.summary dt { color: var(--muted-foreground); }
.summary dd { margin: 0; text-align: right; }
.total { border-top: 1px solid var(--border); margin-top: 18px; padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; }
.total strong { color: var(--primary); font: 800 36px "Playfair Display", Georgia, serif; }
.confirm-box { max-width: 620px; margin: 28px auto; text-align: left; position: static; }
.whatsapp-confirm { 
  min-width: min(100%, 360px); 
  font-size: 17px; 
  animation: pulse-whatsapp 2s infinite;
  position: relative;
  overflow: visible;
}
.whatsapp-confirm::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #ff4757;
  border: 3px solid var(--background);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); transform: scale(1); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 30;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.6);
  background: #20ba56;
}
.floating-whatsapp svg { 
  width: 32px; 
  height: 32px; 
  fill: currentColor; 
}
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 30;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--foreground);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }

.site-footer { margin-top: 72px; padding-bottom: 58px; }
.footer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216,170,58,.22);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: radial-gradient(35% 128px at 50% 0%, rgba(251,250,246,.08), transparent), linear-gradient(135deg, #302b20, #3b3527 55%, #28261f);
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
}
.footer-highlight {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 60%);
  height: 1px;
  transform: translate(-50%, -50%);
  background: rgba(251,250,246,.22);
  border-radius: 999px;
  filter: blur(2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr 1.2fr;
  gap: 34px;
  padding: 52px 44px 34px;
}
.footer-brand img { width: 172px; height: 102px; }
.footer-intro { margin-top: 18px; color: rgba(251,250,246,.82); }
.footer-meta { margin-top: 14px; font-size: 13px; color: rgba(251,250,246,.68); }
.footer-col h4 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(251,250,246,.78);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a, .footer-grid span { color: rgba(251,250,246,.78); font-size: 14px; }
.footer-grid a { transition: color .18s ease, transform .18s ease; }
.footer-grid a:hover { color: #f7d66d; transform: translateX(1px); }
.footer-location { display: block; margin-top: 10px; color: rgba(251,250,246,.66); font-size: 13px; }
.footer-cta p { margin: 0 0 14px; color: rgba(251,250,246,.78); }
.footer-grid .btn-gold {
  color: #17140f !important;
  min-height: 48px;
  width: min(100%, 260px);
  border: 0;
  background: linear-gradient(135deg, #f4cc5f, #d7a631);
  box-shadow: 0 14px 36px rgba(216,170,58,.22);
}
.footer-grid .btn-gold:hover { background: linear-gradient(135deg, #ffdc78, #f0b82f); }
.footer-grid .social-icons { margin-top: 14px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid rgba(77, 73, 63, .7);
  padding: 18px 22px 22px;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 12px;
}
.footer-sep { color: rgba(251,250,246,.28); }
.dashboard-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 22px; }
.dashboard-stats strong { display: block; color: var(--primary); font: 800 42px "Playfair Display", Georgia, serif; }
.dashboard-stats span { color: var(--muted-foreground); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 900px; }
th, td { padding: 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
th { color: var(--primary); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
td small { color: var(--muted-foreground); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.article-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.article-card:hover { border-color: rgba(216,170,58,.55); box-shadow: 0 20px 60px rgba(0,0,0,.28); transform: translateY(-2px); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.article-card > span,
.article-card > h2,
.article-card > p,
.article-card > .article-link { margin-inline: 24px; }
.article-card > span { margin-top: 20px; }
.article-card span { color: var(--primary); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.article-card h2 { font-size: 26px; margin-top: 12px; line-height: 1.15; }
.article-card p { flex: 1; }
.article-link { color: var(--primary); font-weight: 800; margin-bottom: 24px; }
.article-image { display: block; aspect-ratio: 16 / 9; background: #1d1b16; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .22s ease; }
.article-card:hover .article-image img { transform: scale(1.03); }
.article-page { max-width: 920px; }
.article-page header h1 { font-size: clamp(42px, 7vw, 70px); line-height: 1.05; margin: 12px 0; }
.article-hero-image { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: 22px; border: 1px solid var(--border); margin-top: 30px; box-shadow: var(--shadow); }
.article-body { margin-top: 36px; font-size: 18px; }
.article-body h2 { margin-top: 34px; font-size: 34px; }
.article-body p { color: rgba(251,250,246,.84); }
.article-cta { margin-top: 48px; }

/* Pagination */
.pagination-wrap { display: flex; justify-content: center; align-items: center; margin-top: 40px; }
.pagination { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.pagination-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: var(--card); border: 1px solid var(--border); color: var(--foreground); text-decoration: none; font-weight: 500; transition: all 0.2s ease; }
.pagination-link:hover:not(.disabled):not(.active) { border-color: var(--primary); color: var(--primary); }
.pagination-link.active { background: var(--primary); border-color: var(--primary); color: #000; }
.pagination-link.disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 860px) {
  .topbar { display: none; }
  .menu-button { display: inline-flex; border: 1px solid var(--border); background: var(--card); color: var(--foreground); border-radius: 8px; padding: 9px 12px; }
  .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 74px; padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--card); flex-direction: column; align-items: stretch; gap: 14px; }
  .main-nav.open { display: flex; }
  .hero-grid, .contact-grid, .details-grid, .fleet-item { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 54px; }
  .feature-grid, .cards-three, .cards-three:has(.vehicle-card:only-child), .footer-grid, .article-grid { grid-template-columns: 1fr; }
  .footer-card { border-radius: 22px 22px 0 0; }
  .footer-grid { padding: 42px 22px 26px; gap: 26px; }
  .footer-bottom { padding-inline: 18px; }
  .cards-three:has(.vehicle-card:only-child) .vehicle-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-table { overflow-x: auto; }
  .price-row { min-width: 760px; }
  .fleet-item:nth-child(even) .fleet-image { order: 0; }
  .summary { position: static; }
  .stepper b { display: none; }
}
