:root {
  --bg: #0b0d10;
  --bg-2: #11151b;
  --card: #161b22;
  --card-2: #1d242e;
  --text: #f5f7fa;
  --muted: #a8b0bd;
  --line: rgba(255,255,255,.11);
  --accent: #e53935;
  --accent-2: #ffcc33;
  --good: #25d366;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(229,57,53,.20), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,204,51,.12), transparent 30%),
    linear-gradient(180deg, #08090b 0%, var(--bg) 48%, #090b0f 100%);
  line-height: 1.5;
}

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

code {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  padding: .12rem .35rem;
  border-radius: 7px;
  color: #fff;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--accent-2);
  color: #121212;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 11, .76);
  border-bottom: 1px solid var(--line);
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #8c1111);
  box-shadow: 0 12px 26px rgba(229,57,53,.26);
  font-weight: 900;
  letter-spacing: -1px;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .94rem;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--good);
  color: #06140c;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .18);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(37, 211, 102, .26);
}

.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.10);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: .88rem;
}

.btn-large {
  min-height: 58px;
  padding: 0 26px;
  font-size: 1rem;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 36px 0;
}

.hero {
  padding-top: 88px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
  font-weight: 900;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(229,57,53,.15);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.45rem, 7vw, 5.65rem);
  line-height: .94;
  letter-spacing: -.07em;
  max-width: 780px;
}

h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.055em;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: #d9dee6;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: .86rem;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    radial-gradient(circle at 50% 20%, rgba(229,57,53,.20), transparent 50%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 75%);
  pointer-events: none;
}

.panel-top,
.panel-bottom {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.panel-top span {
  display: block;
  color: var(--accent-2);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  margin-bottom: 8px;
}

.panel-top strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -.04em;
  max-width: 360px;
}

.bike-card {
  position: relative;
  z-index: 1;
  margin: 0 20px;
  background: rgba(0,0,0,.22);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.bike-illustration {
  padding: 34px 20px 8px;
}

.bike-illustration svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: #f8f9fb;
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.45));
}

.bike-illustration path:nth-child(1),
.bike-illustration path:nth-child(2) {
  stroke: var(--accent);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
}

.status-grid div {
  background: rgba(10,12,16,.92);
  padding: 16px 18px;
}

.status-grid small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.status-grid strong {
  display: block;
  margin-top: 4px;
}

.panel-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--good);
  box-shadow: 0 0 0 7px rgba(37,211,102,.14);
}

.problem-card,
.trust-card,
.contact-card {
  background: linear-gradient(135deg, rgba(229,57,53,.16), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 18px 58px rgba(0,0,0,.22);
}

.problem-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: end;
}

.problem-card p,
.section-head p,
.split-grid p,
.trust-card p,
.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid,
.highlight-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.service-card,
.highlight-card,
.review-card,
.rating-summary {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  min-height: 100%;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:hover,
.highlight-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.075);
}

.service-card p,
.highlight-card p,
.review-card p,
.feature-item span {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(229,57,53,.13);
  border: 1px solid rgba(229,57,53,.24);
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0)),
    rgba(255,255,255,.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid,
.location-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.045);
}

.feature-item strong {
  display: block;
  margin-bottom: 5px;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,204,51,.12);
  border: 1px solid rgba(255,204,51,.25);
  color: var(--accent-2);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.highlight-card a,
.review-card a {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rating-summary strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.rating-summary span {
  color: var(--muted);
}

.stars {
  color: var(--accent-2);
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 10px;
}

.trust {
  padding-top: 72px;
}

.trust-card {
  max-width: 920px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-shell {
  height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #10151c;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.9) contrast(1.02);
}

.contact-section {
  padding-top: 48px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.phone {
  color: var(--muted);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 92px;
  color: var(--muted);
  background: rgba(0,0,0,.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .7fr 1fr;
  gap: 28px;
}

.footer strong,
.footer span {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 900;
}

.footer a {
  display: block;
  margin: 6px 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--good);
  color: #06140c;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0,0,0,.36);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 980px) {
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(13,16,21,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding-top: 54px;
    min-height: auto;
  }

  .hero-grid,
  .problem-card,
  .split-grid,
  .location-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .highlight-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .problem-card,
  .trust-card,
  .contact-card {
    padding: 24px;
  }

  .rating-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-shell {
    height: 360px;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .footer {
    padding-bottom: 100px;
  }
}
