:root {
  --ink: #0f1115;
  --muted: #68707a;
  --paper: #f5f6f7;
  --panel: #ffffff;
  --line: #dce1e6;
  --red: #ef3f30;
  --red-dark: #c92d23;
  --cyan: #31b8d9;
  --yellow: #ffd84d;
  --steel: #1d2630;
  --shadow: 0 20px 50px rgba(15, 17, 21, .18);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.en, body[data-lang="en"] .hr { display: none !important; }
body[data-lang="en"] .en { display: inline !important; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(15, 17, 21, .82);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.brand, .nav, .actions { display: flex; align-items: center; }
.brand { gap: 10px; text-decoration: none; }
.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 950;
}
.brand strong, .brand small { display: block; }
.brand small { color: rgba(255,255,255,.72); font-size: .74rem; }
.nav { justify-content: center; gap: 6px; }
.nav a, .lang, .phone {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 850;
}
.lang { cursor: pointer; }
.actions { gap: 8px; }
.phone { background: var(--red); border-color: transparent; }

.hero {
  position: relative;
  min-height: 94vh;
  color: #fff;
  isolation: isolate;
}
.hero-bg, .hero-layer { position: absolute; inset: 0; }
.hero-bg {
  z-index: -2;
  background: url("assets/images/hero-red-car.jpg") center / cover no-repeat;
}
.hero-layer {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 34%, rgba(239,63,48,.28), transparent 34%),
    linear-gradient(90deg, rgba(15,17,21,.95), rgba(15,17,21,.72) 52%, rgba(15,17,21,.34)),
    linear-gradient(0deg, rgba(15,17,21,.78), rgba(15,17,21,.06) 58%);
}
.hero-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 94vh;
  margin: 0 auto;
  padding: 130px 0 54px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(310px,410px);
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
}
.hero-copy { max-width: 790px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p, a, button { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.65rem, 6.2vw, 6.1rem);
  line-height: .94;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 { margin: 0 0 8px; font-size: 1.35rem; line-height: 1.15; }
.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary { color: #fff; background: var(--red); }
.btn.primary:hover { background: var(--red-dark); }
.btn.light { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.34); }
.btn.dark { color: #fff; background: var(--steel); }

.hero-card, .service-board, .contact-card, .route-card, .plan-form, .lifestyle-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}
.rating {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.rating strong { font-size: 3.1rem; line-height: 1; }
.rating span { color: var(--red); }
.rating small { grid-column: 2; color: var(--muted); }
.quick { padding: 18px 0; border-bottom: 1px solid var(--line); }
.quick p { margin: 4px 0 0; color: var(--muted); }
.hero-card > a { display: block; padding-top: 16px; color: var(--red); font-weight: 950; }

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--steel);
  color: #fff;
}
.signal-row div {
  min-height: 112px;
  padding: 24px clamp(16px, 3vw, 42px);
  border-right: 1px solid rgba(255,255,255,.12);
}
.signal-row strong, .signal-row span { display: block; }
.signal-row strong { color: var(--cyan); }
.signal-row span { margin-top: 9px; color: rgba(255,255,255,.74); }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}
.section-head { max-width: 850px; margin-bottom: 32px; }
.service-board {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}
.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.tab {
  min-height: 56px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 950;
}
.tab:last-child { border-right: 0; }
.tab.is-active { color: #fff; background: var(--red); }
.panel { display: none; grid-template-columns: minmax(260px,.82fr) minmax(0,1.18fr); min-height: 360px; }
.panel.is-active { display: grid; }
.panel img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.panel div { align-self: center; padding: clamp(24px, 5vw, 48px); }
.panel p, .prices p, .lifestyle-copy p, .planner p, .route-copy p { color: var(--muted); font-size: 1.05rem; }
.panel a { color: var(--red); font-weight: 950; }

.prices, .lifestyle, .planner, .contact {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}
.price-grid article, .proof-grid article, .app-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.price-grid span { display: block; color: var(--muted); font-weight: 850; }
.price-grid strong { display: block; margin-top: 12px; font-size: 2.5rem; line-height: 1; }

.app-band, .proof {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  background: #e9f4f7;
  border-block: 1px solid var(--line);
}
.app-steps, .proof-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin: 32px 0 22px;
}
.app-steps b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}
.lifestyle-card { overflow: hidden; background: #fff; border: 1px solid var(--line); }
.lifestyle-card img { width: 100%; height: 330px; object-fit: cover; }
.lifestyle-card div { padding: 22px; }

.proof { background: #f4eee3; }
.proof-head { max-width: 820px; }
.proof-grid article strong { display: block; font-size: clamp(2.5rem, 4.8vw, 4rem); line-height: 1; }
.proof-grid article span { color: var(--muted); font-weight: 900; }

.gallery-section { display: grid; grid-template-columns: .62fr 1.38fr; gap: 32px; align-items: start; }
.gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 190px; gap: 12px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: #ddd; }
.gallery figure.wide { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15,17,21,.78);
  font-size: .82rem;
  font-weight: 950;
}

.plan-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
}
.plan-form label { display: grid; gap: 7px; font-weight: 950; }
.plan-form input[type="text"], .plan-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
}
.checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.checks label {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
  font-weight: 850;
}

.contact { align-items: stretch; padding-top: 36px; }
.contact-card, .route-card { background: #fff; border: 1px solid var(--line); }
.contact-card { padding: clamp(24px, 4vw, 38px); }
.contact-links { display: grid; gap: 10px; margin-top: 24px; }
.contact-links a {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
  text-decoration: none;
  font-weight: 950;
}
.route-card { overflow: hidden; }
.route-map {
  position: relative;
  min-height: 230px;
  background:
    linear-gradient(90deg, rgba(15,17,21,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15,17,21,.08) 1px, transparent 1px),
    #e4edf0;
  background-size: 48px 48px;
}
.pin {
  position: absolute;
  left: 52%;
  top: 46%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: var(--red);
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  transform: translate(-50%,-50%) rotate(-45deg);
  font-weight: 950;
}
.road { position: absolute; display: block; height: 12px; border-radius: 999px; background: var(--cyan); }
.road-a { left: 8%; top: 34%; width: 64%; transform: rotate(-10deg); }
.road-b { right: 10%; top: 58%; width: 46%; background: var(--red); transform: rotate(17deg); }
.road-c { left: 18%; bottom: 18%; width: 36%; background: rgba(15,17,21,.24); transform: rotate(8deg); }
.route-copy { padding: clamp(22px, 4vw, 34px); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px) 88px;
  color: rgba(255,255,255,.72);
  background: var(--ink);
}
.footer span:first-child { color: #fff; font-weight: 950; }
.mobile-actions {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  display: none;
  grid-template-columns: repeat(3,1fr);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
body.show-mobile-actions .mobile-actions { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-actions a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  font-weight: 950;
}
.mobile-actions a:first-child { background: var(--red); }
.mobile-actions a + a { border-left: 1px solid rgba(255,255,255,.16); }

@media (max-width: 940px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero-inner, .prices, .lifestyle, .planner, .contact, .gallery-section { grid-template-columns: 1fr; }
  .signal-row, .app-steps, .proof-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gallery figure.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .topbar { padding: 10px 12px; }
  .brand span:last-child { max-width: 156px; }
  .phone { display: none; }
  .hero { min-height: 100svh; }
  .hero-inner { min-height: 100svh; width: min(100% - 24px, 520px); padding: 96px 0 78px; }
  h1 { font-size: clamp(2.35rem, 13vw, 4.15rem); }
  h2 { font-size: clamp(1.85rem, 10vw, 2.65rem); }
  .hero-ctas, .hero-ctas .btn { width: 100%; }
  .section { width: min(100% - 24px, 520px); padding: 58px 0; }
  .tabs, .checks, .price-grid { grid-template-columns: 1fr; }
  .panel, .panel.is-active { grid-template-columns: 1fr; }
  .panel img { min-height: 230px; height: 230px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery figure.wide { grid-column: span 1; grid-row: span 1; }
  .footer { flex-direction: column; }
  .mobile-actions { display: grid; }
}
