:root {
  --bg-01: #f3f4f6;
  --bg-02: #e6e8ec;
  --surface: #ffffff;
  --surface-strong: #f9fafb;
  --line: rgba(28, 32, 38, 0.09);
  --line-strong: rgba(28, 32, 38, 0.16);
  --ink-01: #11151a;
  --ink-02: #434a54;
  --ink-03: #7a828e;
  --accent: #152b42;
  --accent-soft: rgba(21, 43, 66, 0.08);
  --accent-strong: #0d1d30;
  --accent-contrast: #e9eef5;
  --gold: #b89b5d;
  --taxi-yellow: #ffd700;
  --taxi-yellow-dark: #e6c200;
  --taxi-yellow-light: #fff176;
  --shadow-lg: 0 32px 80px rgba(15, 22, 35, 0.12);
  --shadow-md: 0 18px 46px rgba(15, 22, 35, 0.1);
  --shadow-sm: 0 12px 26px rgba(15, 22, 35, 0.08);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --font-sans: "Montserrat", "Segoe UI", -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-01);
  background: radial-gradient(640px 420px at 12% -180px, rgba(21, 43, 66, 0.12), transparent 65%),
              radial-gradient(540px 420px at 88% -160px, rgba(184, 155, 93, 0.12), transparent 68%),
              var(--bg-01);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, select { font: inherit; color: inherit; }

.container { width: min(var(--max-width), calc(100% - 88px)); margin: 0 auto; }
@media (max-width: 768px) { .container { width: calc(100% - 40px); } }

.site-header {
  position: sticky; top: 0; z-index: 1200;
  background: rgba(17, 24, 32, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand__mark {
  width: 64px; height: 64px; border-radius: 18px;
  border: 2px solid var(--taxi-yellow);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.2) contrast(1.1); }
.brand__text { display: flex; flex-direction: column; gap: 4px; }
.brand__name { font-family: var(--font-serif); font-size: clamp(1.34rem, 1.7vw, 1.54rem); letter-spacing: 0.35px; color: #ffffff; }
.brand__tag { text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.7rem; color: rgba(255, 255, 255, 0.72); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { margin: 0; padding: 0; list-style: none; display: flex; gap: 22px; }
.nav__link {
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 600; color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__link:hover, .nav__link.is-active { background: rgba(255, 255, 255, 0.14); color: var(--gold); }
.language-select {
  padding: 10px 46px 10px 18px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.41.59 6 5.17l4.59-4.58L12 2 6 8 0 2z'/%3E%3C/svg%3E") no-repeat right 18px center;
  background-size: 12px 8px;
  font-weight: 600; color: #ffffff;
  appearance: none; cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.language-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 155, 93, 0.14);
}
.language-select:hover {
  border-color: rgba(255, 255, 255, 0.32);
}
.nav-toggle { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.1); display: none; align-items: center; justify-content: center; }
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: ""; display: block; width: 22px; height: 2px; border-radius: 999px;
  background: #ffffff; transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: rgba(17, 24, 32, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    padding: 112px 32px 48px; flex-direction: column; align-items: flex-start; gap: 26px;
    box-shadow: -24px 0 64px rgba(0, 0, 0, 0.18);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 18px; }
  .language-select { width: 100%; }
  body.nav-lock { overflow: hidden; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; padding: 15px 32px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn__icon { width: 18px; height: 18px; object-fit: contain; }
.btn--primary .btn__icon { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12)); }
.btn--primary { background: var(--accent); color: var(--accent-contrast); box-shadow: 0 18px 46px rgba(21, 43, 66, 0.28); }
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-strong); }
.btn--ghost { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn--ghost:hover { background: var(--accent-soft); }

.hero { padding: 96px 0 110px; }
.hero__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.hero__content { display: grid; gap: 22px; max-width: 640px; }
.hero__image { display: flex; justify-content: center; align-items: center; position: relative; }
.hero__portrait { 
  width: 100%; 
  max-width: 500px; 
  height: auto; 
  border-radius: var(--radius-lg); 
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: brightness(1.05) contrast(1.02);
  position: relative;
  z-index: 1;
}
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-weight: 600; letter-spacing: 0.2em; font-size: 0.7rem; text-transform: uppercase; }
.hero__title { font-family: var(--font-serif); font-size: clamp(2.3rem, 3.7vw, 3.1rem); margin: 0; letter-spacing: 0.2px; line-height: 1.14; max-width: 560px; }
.hero__lead { color: var(--ink-02); font-size: 1.02rem; line-height: 1.7; max-width: 560px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-chip { padding: 10px 18px; border-radius: 999px; background: rgba(21, 43, 66, 0.08); color: var(--accent); font-weight: 600; letter-spacing: 0.12em; font-size: 0.72rem; text-transform: uppercase; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 18px; margin: 8px 0 4px; }
.hero__features { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; color: var(--ink-02); font-size: 0.98rem; line-height: 1.6; max-width: 540px; }
.hero__features li { position: relative; padding-left: 22px; }
.hero__features li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); }

@media (max-width: 1024px) {
  .hero { padding: 84px 0 96px; }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__content { text-align: left; }
  .hero__image { order: -1; }
}
@media (max-width: 640px) {
  .hero { padding: 64px 0 72px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__features { gap: 8px; }
}

.section { padding: 110px 0; border-top: 1px solid var(--line); background: transparent; }
.section:first-of-type { border-top: none; }
.section__head { max-width: 690px; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.72rem; color: var(--accent); display: inline-flex; gap: 8px; }
.section__title { font-family: var(--font-serif); font-size: clamp(2rem, 3.2vw, 2.8rem); margin: 18px 0 12px; }
.section__lead { color: var(--ink-02); font-size: 1.02rem; }

.section--band { background: var(--surface); }
.section--band .section__head { margin-bottom: 34px; }

.feature-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card { padding: 26px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; gap: 12px; }
.feature-card__icon { font-size: 1.5rem; color: var(--accent); }
.feature-card__title { font-weight: 700; font-size: 1.12rem; }
.feature-card__text { color: var(--ink-02); }

.service-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { padding: 30px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: grid; gap: 16px; }
.service-card img { width: 92px; border-radius: var(--radius-md); border: 1px solid var(--line); }
.service-card ul { margin: 0; padding-left: 20px; color: var(--ink-02); display: grid; gap: 8px; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px; align-items: center; }
.split__panel { background: var(--surface); border-radius: var(--radius-xl); border: 1px solid var(--line); padding: 38px; box-shadow: var(--shadow-md); }
.split__panel ul { margin: 26px 0 0; padding-left: 20px; color: var(--ink-02); display: grid; gap: 10px; }
.split__media { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) { .split { grid-template-columns: 1fr; } }

.fleet-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.fleet-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); overflow: hidden; display: grid; }
.fleet-card__frame { width: 100%; aspect-ratio: 16 / 9; background: var(--surface-strong); border-bottom: 1px solid var(--line); display: grid; place-items: center; }
.fleet-card__frame img { width: 88%; height: 88%; object-fit: contain; }
.fleet-card__body { padding: 28px; display: grid; gap: 12px; }
.fleet-card__body h3 { margin: 0; font-family: var(--font-serif); }
.fleet-card__body p { margin: 0; color: var(--ink-02); }

.testimonial-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testimonial-card { padding: 28px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; gap: 10px; }
.testimonial-card__quote { color: var(--ink-02); }
.testimonial-card__author { color: var(--accent); font-weight: 600; }

.contact-panel { margin-top: 48px; padding: 52px; border-radius: var(--radius-xl); background: linear-gradient(140deg, rgba(21, 43, 66, 0.08), rgba(184, 155, 93, 0.14)); border: 1px solid var(--line); box-shadow: var(--shadow-md); text-align: center; }
.contact-panel p { color: var(--ink-02); max-width: 560px; margin: 14px auto 32px; }
@media (max-width: 640px) { .contact-panel { padding: 42px 28px; } }

.pricing-table { margin-top: 44px; border-radius: var(--radius-xl); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-md); overflow-x: auto; }
.pricing-table table { width: 100%; border-collapse: collapse; min-width: 840px; }
.pricing-table thead { background: var(--surface-strong); }
.pricing-table th { padding: 20px 24px; text-align: left; font-family: var(--font-serif); font-weight: 600; }
.pricing-table td { padding: 18px 24px; border-top: 1px solid var(--line); color: var(--ink-02); }
.pricing-table tbody tr:nth-child(even) { background: var(--bg-02); }

.business-table { margin-top: 44px; padding: 32px; border-radius: var(--radius-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: grid; gap: 12px; }
.business-table h3 { margin: 0 0 10px; font-family: var(--font-serif); }
.business-table__row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 12px 0; color: var(--ink-02); }
.business-table__row:last-child { border-bottom: 0; }

.footer { margin-top: 120px; background: #111820; color: rgba(255, 255, 255, 0.78); }
.footer__inner { padding: 72px 0 48px; display: grid; gap: 42px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; }
.footer__col { display: grid; gap: 12px; }
.footer__col--brand { gap: 16px; }
.footer__promise { margin: 0; color: rgba(255, 255, 255, 0.68); max-width: 320px; }
.footer h4 { font-family: var(--font-serif); color: #ffffff; margin: 0; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.86rem; }
.footer-links { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.78); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-links--muted li { color: rgba(255, 255, 255, 0.72); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 18px 0; text-align: center; font-size: 0.9rem; color: rgba(255, 255, 255, 0.64); }

.floating-wa { position: fixed; right: 30px; bottom: 30px; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #1bd741, #0aa940); display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 40px rgba(20, 145, 70, 0.32); border: 1px solid rgba(255, 255, 255, 0.2); z-index: 1200; transition: transform 0.24s ease, box-shadow 0.24s ease; }
.floating-wa:hover { transform: translateY(-4px); box-shadow: 0 26px 48px rgba(20, 145, 70, 0.38); }
.floating-wa img { width: 28px; height: 28px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25)); }
@media (max-width: 640px) { .floating-wa { right: 18px; bottom: 18px; width: 58px; height: 58px; } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }

.text-muted { color: var(--ink-02); }
.stack { display: grid; gap: 16px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 600; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--accent); text-transform: uppercase; }
