/* ─── MOTO HERO ─── */
.moto-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.moto-hero__bg {
  position: absolute;
  inset: 0;
  background: #1a1a2e url('/images/moto/BMW-F-800-GS-2024-2024.webp') center/cover no-repeat;
  filter: brightness(0.35);
}

.moto-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.3) 100%);
}

.moto-hero__container {
  position: relative;
  z-index: 1;
}

.moto-hero__content {
  max-width: 620px;
}

.moto-hero__title {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.moto-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.moto-hero__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  background: #fbbf24;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.moto-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251,191,36,0.3);
}

/* ─── INTRO ─── */
.moto-intro {
  padding: 60px 0;
  background: #f8fafc;
}

.moto-intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.moto-intro__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.moto-intro__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.moto-intro__card svg {
  width: 40px;
  height: 40px;
  color: #fbbf24;
  margin-bottom: 16px;
}

.moto-intro__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.moto-intro__card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ─── FLEET ─── */
.moto-fleet {
  padding: 64px 0;
  background: #fff;
}

.moto-fleet__header {
  text-align: center;
  margin-bottom: 40px;
}

.moto-fleet__title {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.moto-fleet__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.moto-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.moto-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.moto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.moto-card__img {
  position: relative;
  height: 200px;
  background: #f3f4f6;
  overflow: hidden;
}

.moto-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moto-card__body {
  padding: 20px;
}

.moto-card__badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.moto-card__badge--new {
  color: #065f46;
  background: #d1fae5;
}

.moto-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
}

.moto-card__specs {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 14px;
}

.moto-card__specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.moto-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.moto-card__amount {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.moto-card__period {
  font-size: 13px;
  color: #6b7280;
}

.moto-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #002fd5, #2563eb);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.moto-card__btn:hover {
  opacity: 0.9;
}

/* ─── CTA ─── */
.moto-cta {
  padding: 64px 0;
  background: #f8fafc;
}

.moto-cta__card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.moto-cta__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.moto-cta__text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.moto-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.moto-cta__btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.moto-cta__btn--primary {
  color: #1a1a2e;
  background: #fbbf24;
}

.moto-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251,191,36,0.25);
}

.moto-cta__btn--outline {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.moto-cta__btn--outline:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .moto-intro__grid { grid-template-columns: repeat(2, 1fr); }
  .moto-fleet__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .moto-hero__title { font-size: 30px; }
  .moto-hero__subtitle { font-size: 15px; }
  .moto-intro__grid { grid-template-columns: 1fr; }
  .moto-fleet__grid { grid-template-columns: 1fr; }
  .moto-cta__card { padding: 32px 20px; }
  .moto-cta__actions { flex-direction: column; align-items: center; }
}
