/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e63329;
  --red-dark: #c02020;
  --dark: #0d0d0f;
  --dark2: #141418;
  --dark3: #1e1e24;
  --grey: #f4f4f6;
  --text: #1a1a2e;
  --text-muted: #666;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LOGO IMG ===== */
.logo__img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.logo:hover .logo__img { opacity: .85; transform: scale(1.05); }
.footer__brand .logo__img {
  height: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,51,41,.35); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover { background: var(--white); color: var(--text); border-color: var(--white); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; justify-content: center; }

/* Dark bg outline */
.pricing-card:not(.pricing-card--featured) .btn--outline {
  color: var(--text);
  border-color: rgba(0,0,0,.2);
}
.pricing-card:not(.pricing-card--featured) .btn--outline:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(13,13,15,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo__icon { font-size: 26px; }
.logo__text span { color: var(--red); }

/* Nav */
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--red-dark); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,15,.88) 0%, rgba(13,13,15,.6) 50%, rgba(230,51,41,.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,51,41,.2);
  border: 1px solid rgba(230,51,41,.4);
  color: #ff7b73;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero__badge::before { content: '●'; color: var(--red); font-size: 8px; }
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero__title span { color: var(--red); }
.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero__audience {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
}
.hero__audience li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.hero__audience li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.hero__location {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: rgba(255,255,255,.55);
}
.hero__trust {
  margin-bottom: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.3px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  gap: 36px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.hero__stat span {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--grey { background: var(--grey); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__header--light .section__title,
.section--dark .section__title { color: var(--white); }
.section__header--light .section__desc,
.section--dark .section__desc { color: rgba(255,255,255,.6); }

.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.section__desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FLEET ===== */
.bikes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bike-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.bike-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.bike-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.bike-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.bike-card:hover .bike-card__img { transform: scale(1.07); }

.bike-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--white);
}
.bike-card__badge--hot { background: var(--red); }
.bike-card__badge--sport { background: #1a56db; }
.bike-card__badge--new { background: #0ea56e; }

.bike-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,15,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.bike-card:hover .bike-card__overlay { opacity: 1; }

.bike-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bike-card__brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.bike-card__name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.bike-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.spec {
  display: flex;
  flex-direction: column;
  background: var(--grey);
  border-radius: 8px;
  padding: 8px 10px;
}
.spec__label { font-size: 11px; color: var(--text-muted); }
.spec__val { font-size: 13px; font-weight: 600; color: var(--text); }

.bike-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.bike-card__rates {
  list-style: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  background: var(--grey);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bike-card__rates li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  gap: 12px;
}
.bike-card__rates strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.bike-card__fit {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(230,51,41,.06);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.bike-card__fit strong { color: var(--text); }

.bike-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.bike-card__cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bike-card__price {
  font-size: 15px;
  color: var(--text-muted);
}
.bike-card__price strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(230,51,41,.3);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  color: var(--red);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }
.service-card p a { color: #7ec8ff; text-decoration: underline; text-underline-offset: 2px; }
.services-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  background: var(--dark);
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(230,51,41,.25);
}
.pricing-card--featured:hover { transform: translateY(-18px); }
.pricing-card__ribbon {
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-card__header { padding: 28px 28px 20px; }
.pricing-card__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__name { color: var(--white); }
.pricing-card__type { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card--featured .pricing-card__type { color: rgba(255,255,255,.5); }
.pricing-card__price {
  font-size: 15px;
  color: var(--text-muted);
}
.pricing-card--featured .pricing-card__price { color: rgba(255,255,255,.6); }
.pricing-card__price span {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.pricing-card__features {
  list-style: none;
  padding: 0 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,.75); }
.pricing-card__rates {
  list-style: none;
  padding: 0 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: 16px;
}
.pricing-card--featured .pricing-card__rates { border-bottom-color: rgba(255,255,255,.1); }
.pricing-card__rates li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  gap: 12px;
}
.pricing-card--featured .pricing-card__rates li { color: rgba(255,255,255,.65); }
.pricing-card__rates strong {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.pricing-card--featured .pricing-card__rates strong { color: var(--white); }
.pricing-card .btn { margin: 0 28px 28px; display: block; }

.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.terms-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.terms-card--accent {
  background: var(--dark);
  border-color: transparent;
  color: var(--white);
}
.terms-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.terms-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.terms-card li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.terms-card--accent li { color: rgba(255,255,255,.75); }
.terms-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.terms-card li a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.terms-card--accent li a { color: #ff8a80; }
.terms-card__note {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-style: italic;
  line-height: 1.5;
}

.pricing-note {
  margin-top: 40px;
  background: rgba(230,51,41,.07);
  border: 1px solid rgba(230,51,41,.2);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step__num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--red);
  opacity: .15;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step p { font-size: 14px; color: var(--text-muted); }
.step p a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.step p a:hover { color: var(--red-dark); }
.step__arrow {
  font-size: 28px;
  color: var(--red);
  opacity: .4;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__text .section__title { text-align: left; margin-bottom: 20px; }
.about__text p { color: var(--text-muted); margin-bottom: 16px; }
.about__seo-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about__feature-icon { font-size: 28px; flex-shrink: 0; }
.about__feature strong { display: block; font-weight: 600; color: var(--text); }
.about__feature span { font-size: 14px; color: var(--text-muted); }
.about__feature a { color: var(--red); text-decoration: none; }
.about__feature a:hover { text-decoration: underline; }
.terms-card--accent .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  margin-top: 10px;
}
.terms-card--accent .btn--outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}
.footer__brand a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.footer__brand a:hover { color: var(--red); }
.about__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  background: #4680C2;
  color: var(--white);
}
.social-btn--tg { background: #229ED9; }
.social-btn:hover { opacity: .85; transform: translateY(-2px); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.map-wrap iframe { display: block; }
.map-link {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--dark);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  transition: var(--transition);
}
.map-link:hover { color: var(--white); background: var(--red); }

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(230,51,41,.4);
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon--tg { background: rgba(34,158,217,.2); color: #229ED9; }
.contact-card__icon--phone { background: rgba(46,204,113,.2); color: #2ecc71; }
.contact-card__icon--vk { background: rgba(70,128,194,.2); color: #4680C2; }
.contact-card__icon--map { background: rgba(230,51,41,.2); color: var(--red); }
.contact-card__label { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-card__value { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.contact-card__hint { font-size: 13px; color: rgba(255,255,255,.4); }

/* ===== FOOTER ===== */
.footer { background: var(--dark2); }
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 24px 32px;
  flex-wrap: wrap;
}
.footer__brand .logo { margin-bottom: 12px; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__social {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__social a:hover { background: var(--red); color: var(--white); }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.footer__copy a {
  color: rgba(255,255,255,.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__copy a:hover { color: var(--red); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--grey);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,15,.45);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-more { text-align: center; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--red); }
.lightbox__close { top: 20px; right: 20px; font-size: 18px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

/* ===== REVIEWS ===== */
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.reviews-rating__stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews-rating__score {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.reviews-rating__count {
  font-size: 14px;
  color: var(--text-muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: 15px; color: var(--text); }
.review-card__stars { color: #f5a623; font-size: 14px; margin-top: 2px; }
.review-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}
.reviews-link {
  text-align: center;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 0 20px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding-bottom: 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item a:hover { color: var(--red-dark); }

.btn--outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(0,0,0,.2);
  color: var(--text);
  background: transparent;
  transition: var(--transition);
}
.btn--outline-dark:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-2px); }

/* ===== FLOAT CTA ===== */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(230,51,41,.45);
  transition: var(--transition);
  animation: floatIn 1s ease forwards;
}
.float-cta:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230,51,41,.55);
}
@keyframes floatIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bikes-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .terms-grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .contacts-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(13,13,15,.97); padding: 20px; gap: 4px; }
  .nav.open { display: flex; }
  .nav__link { width: 100%; padding: 12px 16px; border-radius: 8px; }
  .burger { display: flex; }

  .bikes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-rating { flex-direction: column; gap: 6px; }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); padding: 0; }

  .hero__content { padding: 100px 24px 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .hero__stats { gap: 20px; }

  .section { padding: 64px 0; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .bike-card__specs { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
}
