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

:root {
  --taxi: #FFB800;
  --taxi-dark: #E6A600;
  --ink: #050505;
  --surface: #101010;
  --surface-light: #181818;
  --text: #f5f5f5;
  --white-5: rgba(255, 255, 255, 0.05);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-20: rgba(255, 255, 255, 0.20);
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --red-500: #ef4444;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.07);
  --glow: rgba(255, 184, 0, 0.18);
  --content-max: 1180px;
  --font-display: "Anton", sans-serif;
  --font-sans: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

::selection {
  background: var(--taxi);
  color: #000;
}

body {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 184, 0, 0.18), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(255, 184, 0, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 12rem),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 8vw,
      rgba(255, 255, 255, 0.025) 8vw,
      rgba(255, 255, 255, 0.025) calc(8vw + 1px)
    );
}

body::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.9) 12%, rgba(5, 5, 5, 0.96) 100%);
}

main,
section,
footer,
.marquee-container {
  position: relative;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

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

address {
  font-style: normal;
}

.text-taxi {
  color: var(--taxi);
}

.text-left {
  text-align: left;
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: block;
  }
}

.glass-panel {
  background: none;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

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

@media (min-width: 768px) {
  .section-container {
    width: min(var(--content-max), calc(100% - 4rem));
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3.5rem;
  text-align: left;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 46rem;
  color: var(--gray-400);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--taxi);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.btn-primary,
.btn-taxi,
.btn-outline,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--taxi);
  color: #000;
  box-shadow: 0 16px 40px rgba(255, 184, 0, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 20px 44px rgba(255, 184, 0, 0.22);
}

.btn-taxi,
.nav-cta {
  background: transparent;
  color: var(--taxi);
  border-color: rgba(255, 184, 0, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 184, 0, 0.06);
}

.btn-taxi:hover,
.btn-taxi:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 184, 0, 0.12);
  box-shadow: 0 16px 36px rgba(255, 184, 0, 0.12);
}

.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.btn-small {
  min-height: 3rem;
  margin-top: 1.25rem;
}

.btn-call-big {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: auto;
  min-height: 3.75rem;
  padding: 1rem 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 0, 0.55);
  background: transparent;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-call-big:hover,
.btn-call-big:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 184, 0, 0.12);
  border-color: rgba(255, 184, 0, 0.85);
  box-shadow: 0 18px 36px rgba(255, 184, 0, 0.1);
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.45), transparent);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.navbar-inner {
  width: min(1280px, calc(100% - 2rem));
  height: 5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .navbar-inner {
    width: min(1280px, calc(100% - 4rem));
    height: 5.5rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--gray-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--taxi);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 110;
}

.mobile-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.55rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 110;
  color: #fff;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.mobile-menu-toggle.active span {
  background: #fff;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    max-width: calc(100vw - 1rem);
    height: 100vh;
    padding: 7.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    background: rgba(5, 5, 5, 0.98);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    z-index: 90;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s ease;
  }

  .nav-link {
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
  }
}

.hero {
  min-height: 100svh;
  padding: 8.5rem 0 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025) 50%, transparent),
    linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.03) 100%);
}

.hero::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.hero-bg-poster {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  opacity: 0.09;
  pointer-events: none;
}

.hero-bg-poster img {
  filter: grayscale(1) contrast(1.1) blur(16px);
  transform: scale(1.65);
  object-fit: contain !important;
  opacity: 0.4 !important;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow::after {
  content: "";
  position: absolute;
  top: 8rem;
  right: -10vw;
  width: min(44vw, 32rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--taxi);
  filter: blur(140px);
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), calc(100% - 2rem));
  margin: 0 auto;
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.status-badge {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  max-width: max-content;
  margin-bottom: 2.5rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.status-badge-bg {
  display: none;
}

.status-dot-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 0, 0.45);
  background: rgba(255, 184, 0, 0.05);
}

.status-dot-wrap {
  position: relative;
  display: flex;
  width: 0.8rem;
  height: 0.8rem;
}

.status-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-400);
  opacity: 0.7;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}

.status-dot-green {
  background: var(--green-500);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

.status-dot-red {
  background: var(--red-500);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.7);
}

.status-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.status-label {
  color: var(--gray-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
}

.status-value {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.hero-title-top,
.hero-title-bottom {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.hero-title-top {
  font-size: clamp(2.2rem, 8vw, 5rem);
  color: #fff;
}

.hero-title-bottom {
  font-size: clamp(3.2rem, 12vw, 8rem);
}

.hero-cta-wrap {
  margin-bottom: 1.5rem;
}

.btn-hero {
  min-height: 3.8rem;
  padding-inline: 1.9rem;
}

.hero-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.hero-badge,
.hero-speed {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-badge {
  color: var(--taxi);
  border-color: rgba(255, 184, 0, 0.35);
}

.hero-speed {
  color: var(--gray-300);
}

.hero-speed svg {
  color: var(--taxi);
}

.hero-desc {
  max-width: 38rem;
  color: var(--gray-400);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee 28s linear infinite;
}

.marquee-items {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.marquee-dot {
  color: var(--taxi);
  font-size: 1rem;
}

.cta-section,
.features-section,
.about-section,
.areas-section,
.faq-section {
  padding: 7rem 0;
}

.cta-section::before,
.features-section::before,
.about-section::before,
.areas-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012), transparent);
}

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

.cta-glow {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: var(--glow);
  filter: blur(120px);
  pointer-events: none;
}

.cta-card {
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-card-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: none;
  border-radius: 0;
}

.cta-left {
  text-align: left;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-desc {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--gray-400);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.route-timeline {
  position: relative;
  max-width: 26rem;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.route-line {
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  left: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--taxi), rgba(255, 255, 255, 0.08));
}

.route-stop {
  position: relative;
}

.route-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-dot-active {
  border: 1px solid rgba(255, 184, 0, 0.6);
  box-shadow: 0 0 24px rgba(255, 184, 0, 0.18);
}

.route-dot-inner {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--taxi);
  animation: pulse 2s ease-in-out infinite;
}

.route-dot-dest {
  border: 1px solid var(--line);
}

.route-dot-dest svg {
  color: var(--taxi);
}

.route-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gray-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.route-value {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.route-value-dest {
  color: var(--gray-400);
}

.cta-right {
  width: 100%;
}

.cta-action-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 24rem;
  margin-left: auto;
  padding-left: 2rem;
  border-left: 1px solid var(--line);
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.cta-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
}

.cta-icon-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.14);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.3;
}

.cta-icon-pulse {
  position: absolute;
  inset: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.14);
  animation: pulse 2s ease-in-out infinite;
}

.cta-icon-main {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--taxi);
  color: #000;
  border-radius: 42% 58% 52% 48%;
  box-shadow: 0 16px 30px rgba(255, 184, 0, 0.16);
}

.cta-action-title {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-time {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gray-300);
}

.cta-time svg {
  color: var(--taxi);
}

.cta-time span {
  font-size: 0.84rem;
  font-weight: 600;
}

.features-grid {
  counter-reset: feature;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.feature-card {
  position: relative;
  counter-increment: feature;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  background: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  cursor: default;
}

.feature-card::after {
  content: counter(feature, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.06em;
  pointer-events: none;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 184, 0, 0.45);
  border-radius: 50%;
  color: var(--taxi);
  background: transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(-12deg);
  background: rgba(255, 184, 0, 0.12);
  color: #fff;
}

.feature-title {
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-desc {
  max-width: 22rem;
  color: var(--gray-400);
}

.about-section {
  border-top: 1px solid var(--line-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .section-title {
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  max-width: 44rem;
  color: var(--gray-400);
  font-size: clamp(1rem, 2vw, 1.08rem);
}

.about-content p {
  position: relative;
  padding-left: 1.2rem;
}

.about-content p::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--taxi);
}

.about-content p:first-child {
  padding-left: 0;
}

.about-content p:first-child::before {
  display: none;
}

.about-content strong {
  color: #fff;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.visual-circle {
  position: relative;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.12), transparent 48%);
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border-style: dashed;
}

.visual-ring-1 {
  inset: 0;
  border: 1px solid rgba(255, 184, 0, 0.35);
  animation: spin 16s linear infinite;
}

.visual-ring-2 {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: spin 20s linear infinite reverse;
}

.visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 48px rgba(0, 0, 0, 0.35);
}

.visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 184, 0, 0.2), transparent 58%);
}

.visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.visual-number {
  margin-bottom: 0.4rem;
  color: var(--taxi);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.visual-label {
  color: #fff;
  font-size: clamp(0.75rem, 2vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.areas-section {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
}

.area-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.85rem 0;
  border-top: 1px solid var(--line);
  background: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.area-icon {
  width: 3.1rem;
  height: 3.1rem;
  min-width: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 184, 0, 0.45);
  border-radius: 50%;
  color: var(--taxi);
  background: transparent;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.area-card:hover .area-icon {
  transform: translateY(-2px);
  background: rgba(255, 184, 0, 0.12);
}

.area-title {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.area-desc {
  max-width: 32rem;
  color: var(--gray-400);
}

.area-desc strong {
  color: #fff;
}

.areas-seo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: left;
}

.areas-seo p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.areas-seo strong {
  color: var(--gray-300);
}

.faq-section {
  padding: 7rem 0 !important;
  background: transparent !important;
}

.faq-grid {
  max-width: 100% !important;
  gap: 0 !important;
}

.faq-item {
  background: none !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  padding: 1.5rem 0 !important;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line) !important;
}

.faq-item h3 {
  max-width: 42rem;
  margin-bottom: 0.6rem !important;
  color: var(--taxi) !important;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem) !important;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-item p {
  max-width: 52rem;
  color: var(--gray-300) !important;
  font-size: 1rem;
  line-height: 1.8;
}

.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col {
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.footer-brand {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

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

.footer-heading {
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-list li {
  padding: 0.45rem 0;
  color: var(--gray-400);
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-list a:hover,
.footer-contact a:hover {
  color: var(--taxi);
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--taxi);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.78rem;
}

.footer-keywords {
  color: var(--gray-600);
  font-size: 0.72rem;
}

.mobile-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav-inner {
  width: 100%;
  max-width: 380px;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--white-10);
  border-radius: 2.5rem;
  padding: 0.375rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
}

.mobile-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  border-radius: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  color: var(--gray-500);
}

.mobile-nav-btn span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.375rem;
  transition: color 0.3s;
}

.mobile-nav-btn:active {
  transform: scale(0.95);
}

#btn-whatsapp:hover,
#btn-whatsapp:focus {
  color: #25D366;
}

#btn-whatsapp:hover span,
#btn-whatsapp:focus span {
  color: white;
}

#btn-location:hover,
#btn-location:focus {
  color: var(--taxi);
}

#btn-location:hover span,
#btn-location:focus span {
  color: white;
}

.mobile-nav-center {
  width: 84px;
  position: relative;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.mobile-call-fab {
  position: absolute;
  top: -2.75rem;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
}

.fab-glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 184, 0, 0.3);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.6;
  transition: filter 0.5s;
}

.mobile-call-fab:hover .fab-glow {
  filter: blur(25px);
}

.fab-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 0, 0.4);
  border-top-color: transparent;
  animation: spin 2s linear infinite;
}

.fab-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #FFB800, #E6A600);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(255, 184, 0, 0.5);
  border: 6px solid #0a0a0a;
  color: black;
  transition: all 0.3s ease;
}

.mobile-call-fab:active .fab-main {
  transform: scale(0.95);
}

.mobile-call-fab:hover .fab-main {
  transform: translateY(-4px);
}

.animate-prepare {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in {
  opacity: 1;
  transform: translateY(0) !important;
}

.feature-card:nth-child(2).animate-prepare,
.area-card:nth-child(2).animate-prepare {
  transition-delay: 0.1s;
}

.feature-card:nth-child(3).animate-prepare,
.area-card:nth-child(3).animate-prepare {
  transition-delay: 0.2s;
}

.area-card:nth-child(4).animate-prepare {
  transition-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card {
    padding: 2rem 1.5rem 2.75rem 0;
  }

  .feature-card + .feature-card {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line-soft);
  }

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

  .area-card {
    padding: 2rem 1.25rem 2.25rem 0;
  }

  .area-card:nth-child(even) {
    padding-left: 2rem;
    border-left: 1px solid var(--line-soft);
  }

  .area-card:nth-child(odd) {
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content,
  .cta-section-inner {
    width: min(var(--content-max), calc(100% - 4rem));
  }

  .hero {
    padding-top: 9rem;
  }

  .cta-card-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 4rem;
  }

  .about-visual {
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.9fr 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .section-header {
    align-items: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .status-badge {
    margin-inline: auto;
  }

  .hero-title {
    align-items: center;
  }

  .hero-sub,
  .hero-buttons {
    align-items: center;
    justify-content: center;
  }

  .cta-left,
  .areas-seo,
  .footer-col,
  .footer-bottom {
    text-align: center;
  }

  .cta-action-card {
    margin-left: 0;
    padding-top: 2rem;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    align-items: center;
  }

  .route-timeline {
    margin: 0 auto;
  }

  .footer-contact {
    justify-content: center;
  }
}

@media print {
  .mobile-nav,
  .navbar,
  .hero-glow,
  .marquee-container {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
