.hero.hero-showcase {
  position: relative;
  overflow: hidden;
  background: #f6fbfd;
  isolation: isolate;
}

.hero-slider-carousel,
.hero-slider-carousel .owl-stage-outer,
.hero-slider-carousel .owl-stage,
.hero-slider-carousel .owl-item,
.hero-slider-carousel .item {
  min-height: 100svh;
}

.hero-slide-poster {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(180deg, #eef8fd 0%, #ffffff 58%, #f7fbfd 100%);
}

.hero-poster-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(43, 182, 115, 0.18), transparent 30%),
    radial-gradient(circle at 10% 16%, rgba(11, 55, 101, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 253, 0.96));
}

.hero-poster-bg::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 23%;
  height: 32%;
  background: linear-gradient(90deg, rgba(11, 55, 101, 0.055), rgba(43, 182, 115, 0.085), rgba(11, 55, 101, 0.035));
  transform: skewY(-4deg);
}

.hero-poster-bg::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% -18%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.82), transparent 68%);
}

.hero-poster-container {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
}

.hero-poster-shell {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(380px, 1.15fr);
  grid-template-areas:
    "copy car"
    "info info";
  align-items: center;
  gap: 1.4rem;
}

.hero-copy-panel {
  grid-area: copy;
  position: relative;
  z-index: 3;
}

.hero-logo-mark {
  display: none !important;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b6b32, #22a852);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(43, 182, 115, 0.22);
}

.hero-badge-pill i {
  line-height: 1;
}

.hero-mini-tag {
  display: inline-flex;
  margin: 1rem 0 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(11, 55, 101, 0.08);
  color: #0b3765;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card-title {
  margin: 1.05rem 0 0;
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.hero-title-top,
.hero-title-bottom {
  display: block;
}

.hero-title-top {
  color: #082f5a;
}

.hero-title-bottom {
  color: #23a455;
}

.hero-card-subtitle {
  margin: 1rem 0 0;
  color: #0b3765;
  line-height: 1.35;
  font-weight: 850;
}

.hero-card-price {
  width: fit-content;
  min-width: 15rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "label label"
    "price suffix";
  align-items: end;
  column-gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0.95rem 1.15rem 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b3765, #06264b);
  color: #ffffff;
  box-shadow: 0 22px 55px rgba(11, 55, 101, 0.28);
  backdrop-filter: blur(4px);
}

.hero-price-label {
  grid-area: label;
  margin-bottom: 0.1rem;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.hero-card-price strong {
  grid-area: price;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.065em;
}

.hero-card-price span:last-child {
  grid-area: suffix;
  padding-bottom: 0.25rem;
  line-height: 1;
  font-weight: 900;
  opacity: 0.95;
}

.hero-car-panel {
  grid-area: car;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-car-panel::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 3%;
  bottom: 3%;
  height: 14%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(7, 27, 49, 0.22), rgba(7, 27, 49, 0) 70%);
  filter: blur(10px);
  opacity: 0.55;
}

.hero-car-image {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(4px);
  filter: drop-shadow(0 32px 60px rgba(7, 27, 49, 0.25));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-car-image:hover {
  transform: translateY(0) scale(1.02);
}

.hero-info-panel {
  grid-area: info;
  position: relative;
  z-index: 4;
  display: grid;
  gap: 0.85rem;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 55, 101, 0.08);
  box-shadow: 0 18px 40px rgba(11, 55, 101, 0.11);
  backdrop-filter: blur(6px);
}

.hero-feature-item {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 1rem 0.75rem;
  text-align: center;
  color: #0b3765;
}

.hero-feature-item + .hero-feature-item {
  border-left: 1px solid rgba(11, 55, 101, 0.12);
}

.hero-feature-icon {
  color: #0b3765;
  line-height: 1;
}

.hero-feature-item strong {
  font-weight: 950;
  line-height: 1.15;
}

.hero-feature-item span {
  color: #5a6f85;
  line-height: 1.2;
  font-weight: 700;
}

.hero-benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b3765, #06264b);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(11, 55, 101, 0.18);
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.05rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-benefit-item + .hero-benefit-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-benefit-item i {
  color: #2bb673;
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #0b3765;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 14px 26px rgba(11, 55, 101, 0.08);
}

.hero-trust-row i {
  color: #25a957;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 0.7rem;
}

.hero-btn,
.hero-call-link {
  min-height: 4.35rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-btn:hover,
.hero-btn:focus,
.hero-call-link:hover,
.hero-call-link:focus {
  transform: translateY(-2px);
}

.hero-btn-primary {
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #24a84f, #2bb673);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(43, 182, 115, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
  color: #ffffff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 42px rgba(43, 182, 115, 0.35);
}

.hero-btn-icon,
.hero-call-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 2.8rem;
}

.hero-btn-text {
  display: grid;
  gap: 0.05rem;
}

.hero-btn-text strong {
  color: inherit;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-btn-text small {
  color: inherit;
  opacity: 0.88;
  font-weight: 800;
  line-height: 1.1;
}

.hero-call-link {
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #082f5a, #041c38);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(11, 55, 101, 0.18);
}

.hero-call-link:hover,
.hero-call-link:focus {
  color: #ffffff;
}

.hero-call-link i {
  background: #ffffff;
  color: #25a957;
}

.hero-slider-carousel .owl-nav {
  display: none;
}

.hero-slider-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 8;
}

.hero-slider-carousel .owl-dot span {
  width: 0.65rem;
  height: 0.65rem;
  margin: 0;
  background: rgba(11, 55, 101, 0.22) !important;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider-carousel .owl-dot.active span {
  width: 1.8rem;
  background: #2bb673 !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-car-image,
  .hero-btn,
  .hero-call-link,
  .hero-btn-primary,
  .hero-slider-carousel .owl-dot span {
    transition: none;
  }

  .hero-car-image:hover,
  .hero-btn:hover,
  .hero-btn:focus,
  .hero-call-link:hover,
  .hero-call-link:focus,
  .hero-btn-primary:hover,
  .hero-btn-primary:focus {
    transform: none;
  }
}
