:root {
  --bg: #07111f;
  --bg-elevated: rgba(11, 18, 32, 0.82);
  --panel: rgba(14, 24, 42, 0.92);
  --panel-soft: rgba(14, 24, 42, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --text: #e9eef7;
  --muted: #98a4ba;
  --primary: #ff6a1a;
  --primary-strong: #ff7d38;
  --accent: #7ce7ff;
  --accent-soft: rgba(124, 231, 255, 0.18);
  --success: #8df0b5;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-offset: 88px;
}

* {
  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 top left, rgba(124, 231, 255, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.14), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091628 40%, #07111f 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.18;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section.compact {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--accent);
  border: 1px solid rgba(124, 231, 255, 0.22);
  background: rgba(124, 231, 255, 0.08);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(124, 231, 255, 0.85);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
  max-width: 760px;
}

.section-head h2,
.hero-copy h1,
.page-hero-copy h1 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p,
.hero-copy p,
.page-hero-copy p,
.lead,
.card p,
.footer-copy,
.stat-label,
.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 13, 24, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(6, 13, 24, 0.88);
}

.header-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 106, 26, 0.22), rgba(124, 231, 255, 0.18));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text small {
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #d8e0ec;
  font-size: 0.96rem;
}

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

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

.button,
.button-outline,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button {
  color: #0b1220;
  background: linear-gradient(135deg, var(--primary) 0%, #ffa45d 100%);
  box-shadow: 0 16px 32px rgba(255, 106, 26, 0.26);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(255, 106, 26, 0.3);
}

.button-outline {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.button-outline:hover,
.button-ghost:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
}

.button-ghost {
  border: 1px dashed rgba(124, 231, 255, 0.24);
  background: rgba(124, 231, 255, 0.07);
  color: var(--accent);
}

.hero {
  padding: 54px 0 48px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 32px;
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero-copy p,
.page-hero-copy p,
.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats,
.metrics-grid,
.advantage-grid,
.service-grid,
.case-grid,
.team-grid,
.spec-grid,
.program-grid,
.footer-grid,
.contact-grid,
.about-grid,
.process-grid,
.compliance-grid {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.stat-card,
.card,
.metric-card,
.service-card,
.case-card,
.team-card,
.spec-card,
.program-card,
.faq-item,
.contact-card,
.info-card,
.timeline-item,
.compliance-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 25, 45, 0.95) 0%, rgba(10, 19, 35, 0.98) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card,
.metric-card,
.spec-card,
.compliance-item {
  padding: 20px;
}

.stat-value,
.metric-value,
.price-value {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-label,
.metric-card p,
.price-meta,
.faq-item p,
.contact-card p,
.team-role,
.case-meta,
.timeline-item p,
.compliance-item p {
  margin: 8px 0 0;
  line-height: 1.7;
}

.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-panel {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(124, 231, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(11, 19, 34, 0.92), rgba(10, 17, 31, 0.98));
  box-shadow: var(--shadow);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.05);
}

.visual-topbar {
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.visual-badge,
.tag,
.case-tag,
.plan-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem;
  color: #d5def0;
}

.motor-stage {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 92px;
  bottom: 34px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    radial-gradient(circle at center, rgba(255, 106, 26, 0.12), transparent 42%);
  overflow: hidden;
}

.motor-stage::before,
.motor-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
}

.motor-stage::before {
  left: 8%;
  right: 8%;
  top: 48%;
  height: 14px;
  background: linear-gradient(90deg, transparent, rgba(124, 231, 255, 0.26), transparent);
}

.motor-stage::after {
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 22px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.32), transparent 65%);
}

.bike-card {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 19%;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(13, 24, 44, 0.96), rgba(11, 18, 32, 0.8));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.bike-frame {
  position: relative;
  min-height: 240px;
}

.bike-wheel,
.bike-wheel::after {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.bike-wheel {
  bottom: 16px;
  width: 88px;
  height: 88px;
  border: 5px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(124, 231, 255, 0.08);
}

.bike-wheel.left {
  left: 22px;
}

.bike-wheel.right {
  right: 22px;
}

.bike-body,
.bike-seat,
.bike-tail,
.bike-handle,
.bike-fork,
.bike-line {
  position: absolute;
  background: linear-gradient(90deg, #ff8c4d, #ffd8b8);
  border-radius: 999px;
}

.bike-body {
  left: 88px;
  right: 82px;
  top: 92px;
  height: 18px;
  transform: skewX(-14deg);
}

.bike-seat {
  left: 172px;
  top: 58px;
  width: 98px;
  height: 14px;
}

.bike-tail {
  left: 112px;
  top: 62px;
  width: 66px;
  height: 12px;
  background: linear-gradient(90deg, var(--accent), #d7fbff);
  transform: rotate(-18deg);
}

.bike-handle {
  right: 138px;
  top: 50px;
  width: 52px;
  height: 10px;
  transform: rotate(-32deg);
}

.bike-fork {
  right: 108px;
  top: 72px;
  width: 12px;
  height: 104px;
  transform: rotate(18deg);
}

.bike-line.line-a {
  left: 184px;
  top: 106px;
  width: 74px;
  height: 10px;
  transform: rotate(52deg);
}

.bike-line.line-b {
  left: 262px;
  top: 116px;
  width: 68px;
  height: 10px;
  transform: rotate(-50deg);
}

.bike-line.line-c {
  left: 152px;
  top: 138px;
  width: 136px;
  height: 10px;
  transform: rotate(-8deg);
  background: linear-gradient(90deg, #d7fbff, var(--accent));
}

.bike-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: 20px;
}

.bike-caption h3 {
  margin: 0;
  font-size: 1.5rem;
}

.bike-caption p {
  margin: 8px 0 0;
  color: var(--muted);
}

.float-card {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  min-width: 180px;
  border-radius: 18px;
  background: rgba(10, 18, 32, 0.84);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.float-card strong {
  font-size: 1.25rem;
}

.float-card.top {
  top: 12%;
  right: -2%;
}

.float-card.bottom {
  bottom: 10%;
  left: -3%;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.logo-chip {
  padding: 16px 12px;
  text-align: center;
  color: #cad5e7;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.metrics-grid,
.advantage-grid,
.service-grid,
.case-grid,
.team-grid,
.spec-grid,
.program-grid,
.footer-grid,
.contact-grid,
.about-grid,
.process-grid,
.compliance-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.metric-card:nth-child(1),
.metric-card:nth-child(2),
.metric-card:nth-child(3) {
  grid-column: span 4;
}

.metric-card,
.info-card,
.program-card,
.compliance-item,
.timeline-item,
.contact-card {
  padding: 24px;
}

.metric-card .metric-value,
.service-card h3,
.card h3,
.case-card h3,
.team-card h3,
.program-card h3,
.contact-card h3,
.info-card h3,
.timeline-item h3,
.spec-card h3,
.compliance-item h3 {
  margin: 0;
}

.advantage-grid .card,
.spec-grid .spec-card,
.compliance-grid .compliance-item {
  grid-column: span 4;
  padding: 26px;
}

.card-icon,
.service-icon,
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 106, 26, 0.12);
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.about-grid .info-card:first-child {
  grid-column: span 7;
}

.about-grid .info-card:last-child {
  grid-column: span 5;
}

.info-list,
.feature-list,
.plan-list,
.contact-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.info-list li,
.feature-list li,
.plan-list li,
.contact-list li {
  position: relative;
  padding-left: 28px;
  color: #d6deec;
}

.info-list li::before,
.feature-list li::before,
.plan-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffb27c);
  box-shadow: 0 0 0 5px rgba(255, 106, 26, 0.12);
}

.service-card {
  grid-column: span 4;
  padding: 28px;
}

.service-card.featured {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 26, 0.32);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 18px;
}

.price-meta {
  font-size: 0.92rem;
}

.case-card {
  grid-column: span 4;
  padding: 28px;
}

.case-card .case-top,
.team-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.case-stat {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.team-card {
  grid-column: span 3;
  padding: 24px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b1220;
  background: linear-gradient(135deg, var(--accent), #dcfbff);
}

.team-role {
  margin: 6px 0 14px;
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.08);
  border: 1px solid rgba(124, 231, 255, 0.18);
  color: var(--accent);
  font-weight: 700;
}

.process-grid .info-card {
  grid-column: span 4;
}

.program-grid .program-card {
  grid-column: span 6;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 24px 24px;
  margin: 0;
}

.contact-grid .contact-card:first-child {
  grid-column: span 5;
}

.contact-grid .contact-card:last-child {
  grid-column: span 7;
}

.contact-card {
  min-height: 100%;
}

.contact-list a {
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 106, 26, 0.65);
  background: rgba(255,255,255,0.06);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-status {
  min-height: 28px;
  color: var(--success);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at left center, rgba(255, 106, 26, 0.18), transparent 25%),
    linear-gradient(135deg, rgba(14, 24, 42, 0.95), rgba(8, 15, 28, 0.98));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta-band h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.site-footer {
  padding: 34px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(5, 10, 18, 0.78);
}

.footer-grid {
  align-items: start;
}

.footer-brand {
  grid-column: span 5;
}

.footer-nav,
.footer-contact {
  grid-column: span 3;
}

.footer-cta {
  grid-column: span 1;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.footer-copy {
  margin-top: 14px;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: 42px 0 30px;
}

.page-crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 18px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-hero-visual {
    min-height: 470px;
  }

  .metric-card:nth-child(1),
  .metric-card:nth-child(2),
  .metric-card:nth-child(3),
  .advantage-grid .card,
  .service-card,
  .case-card,
  .team-card,
  .spec-grid .spec-card,
  .program-grid .program-card,
  .process-grid .info-card,
  .contact-grid .contact-card:first-child,
  .contact-grid .contact-card:last-child,
  .footer-brand,
  .footer-nav,
  .footer-contact,
  .footer-cta,
  .about-grid .info-card:first-child,
  .about-grid .info-card:last-child,
  .compliance-grid .compliance-item {
    grid-column: span 12;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  :root {
    --header-offset: 76px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .button-outline {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
  }

  .header-actions .button {
    display: none;
  }

  .hero-stats,
  .logo-strip,
  .form-row,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-hero-visual {
    min-height: 430px;
  }

  .bike-card {
    left: 8%;
    right: 8%;
    top: 22%;
  }

  .float-card.top,
  .float-card.bottom {
    position: static;
    margin-top: 14px;
  }

  .motor-stage {
    display: grid;
    padding: 24px;
    gap: 14px;
    align-content: start;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .hero {
    padding-top: 28px;
  }

  .header-shell {
    min-height: 74px;
  }

  .brand-text span {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .button,
  .button-outline,
  .button-ghost {
    width: 100%;
  }

  .bike-frame {
    min-height: 190px;
  }

  .bike-wheel {
    width: 66px;
    height: 66px;
  }

  .bike-body {
    left: 62px;
    right: 68px;
    top: 76px;
  }

  .bike-seat {
    left: 124px;
    top: 44px;
    width: 74px;
  }

  .bike-tail {
    left: 82px;
    top: 47px;
    width: 48px;
  }

  .bike-handle {
    right: 102px;
    top: 38px;
    width: 44px;
  }

  .bike-fork {
    right: 84px;
    top: 56px;
    height: 84px;
  }

  .bike-line.line-a {
    left: 138px;
    top: 88px;
    width: 52px;
  }

  .bike-line.line-b {
    left: 190px;
    top: 92px;
    width: 52px;
  }

  .bike-line.line-c {
    left: 108px;
    top: 112px;
    width: 100px;
  }

  .service-card.featured {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
