:root {
  --bg: #0b0f14;
  --surface: #0f172a;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.56);
  --border: rgba(255, 255, 255, 0.12);
  --orange: #f97316;
  --orange-600: #ea580c;
  --ring: rgba(249, 115, 22, 0.35);
  --max: 1100px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    Apple Color Emoji, Segoe UI Emoji;
  color: var(--text);
  background: radial-gradient(1000px 600px at 15% 10%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(59, 130, 246, 0.12), transparent 55%),
    linear-gradient(180deg, #0b0f14 0%, #0b1220 50%, #090c12 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 12px;
}

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

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

.section {
  padding: 4.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-title {
  margin: 0;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0.6rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.skip-link:focus {
  left: 0.75rem;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(7, 10, 14, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 220px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.2);
}

.brand-text {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.86rem;
  color: var(--muted-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-link {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-switch {
  margin-left: 0.25rem;
  display: inline-flex;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lang-option {
  padding: 0.55rem 0.75rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.lang-option[aria-pressed="true"] {
  color: var(--text);
  background: rgba(249, 115, 22, 0.18);
}

.icon-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 999px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.hero {
  padding-top: 5.2rem;
}

.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 1.55rem + 2vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
  transition: transform 150ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-600) 100%);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  border-color: rgba(249, 115, 22, 0.75);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-badges {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: 1fr;
}

.grid.three {
  grid-template-columns: 1fr;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.2rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.card-title {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 115, 22, 0.22);
  margin-bottom: 0.85rem;
}

.service-meta {
  margin-top: 0.9rem;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.fleet-image {
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.pill {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.map-wrap {
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.02);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.cta-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(249, 115, 22, 0.2);
}

.cta-actions {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.8rem;
}

.cta-note {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.cta-stats {
  display: grid;
  gap: 0.8rem;
}

.stat {
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--muted-2);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.footer-text {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #06120a;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  z-index: 60;
}

.whatsapp-icon {
  color: #06120a;
}

.whatsapp-text {
  font-size: 0.95rem;
}

.noscript {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 5.2rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.3rem;
  }

  .grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-card {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    padding: 1.8rem;
  }

  .footer-inner {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 920px) {
  .brand {
    min-width: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-height) + 1px);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(7, 10, 14, 0.92);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.8rem 0.85rem;
  }

  .lang-switch {
    width: 100%;
    margin-left: 0;
  }

  .lang-option {
    flex: 1;
    justify-content: center;
  }
}
