/* OXBikers Web V2 — Lot 1: Hero homepage */
.ox-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.ox-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 12, .86) 0%, rgba(8, 10, 12, .58) 48%, rgba(8, 10, 12, .22) 100%);
}
.ox-hero-container { position: relative; z-index: 2; width: 100%; }
.ox-hero-content { max-width: 760px; padding: 120px 0 110px; }
.ox-hero-eyebrow {
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .82rem;
  text-transform: uppercase;
}
.ox-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 1.02;
  margin-bottom: 22px;
  text-transform: none;
}
.ox-hero-subtitle {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  margin-bottom: 32px;
  color: rgba(255,255,255,.94);
}
.ox-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ox-hero-primary { margin: 0; }
.ox-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,.92);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: .2s ease;
}
.ox-hero-secondary:hover { background: #fff; color: #111; }
.ox-hero-trust {
  margin: 24px 0 0;
  font-size: .96rem;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
}
.ox-hero-trust i { margin-right: 8px; }
@media (max-width: 767px) {
  .ox-hero { min-height: 72vh; background-position: 62% center; }
  .ox-hero-overlay { background: rgba(8,10,12,.68); }
  .ox-hero-content { padding: 94px 0 70px; text-align: center; }
  .ox-hero-actions { justify-content: center; }
  .ox-hero-actions a { width: 100%; max-width: 330px; }
  .ox-hero-trust { font-size: .88rem; }
}


/* OXBikers Web V2 — Lot 2: Why choose OXBikers */
.ox-why {
  padding: 88px 0 82px;
  background: #f7f7f5;
}
.ox-section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
}
.ox-section-eyebrow {
  margin: 0 0 10px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ox-section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  text-transform: none;
}
.ox-section-heading > p:last-child {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #5f6368;
}
.ox-why-grid > div {
  display: flex;
  margin-bottom: 24px;
}
.ox-benefit-card {
  width: 100%;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(17,17,17,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ox-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17,17,17,.10);
}
.ox-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 1.25rem;
}
.ox-benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.3;
  text-transform: none;
}
.ox-benefit-card p {
  margin: 0;
  color: #666;
  line-height: 1.65;
}
.ox-why-actions { margin-top: 18px; }
@media (max-width: 767px) {
  .ox-why { padding: 64px 0 58px; }
  .ox-section-heading { margin-bottom: 32px; }
  .ox-benefit-card { padding: 26px 22px; }
}
