.why-choose-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.why-choose-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-choose-layout {
    grid-template-columns: 60% 40%;
    gap: 3.5rem;
  }
}

.why-choose-cards,
.why-choose-video {
  width: 100%;
  min-width: 0;
}

.why-choose-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-card:hover {
  border-color: #fcd34d;
  box-shadow: 0 10px 25px rgb(15 23 42 / 0.06);
}

.video-preview {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background-color: #0f172a;
  box-shadow:
    0 0 0 1px rgb(251 191 36 / 0.25),
    0 20px 40px rgb(15 23 42 / 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-preview:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgb(251 191 36 / 0.45),
    0 24px 48px rgb(15 23 42 / 0.22);
}

.video-preview:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 3px;
}

.video-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-preview:hover .video-preview-image {
  transform: scale(1.03);
}

.video-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(15 23 42 / 0.15) 0%,
    rgb(15 23 42 / 0.55) 100%
  );
}

.video-preview-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 1;
}

.video-play-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  background-color: #fbbf24;
  color: #0f172a;
  box-shadow: 0 8px 24px rgb(251 191 36 / 0.45);
}

.video-play-button::before,
.video-play-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid rgb(251 191 36 / 0.65);
  animation: video-play-pulse 2s ease-out infinite;
}

.video-play-button::after {
  animation-delay: 1s;
}

.video-play-icon {
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.2rem;
}

.video-preview-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal.hidden {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgb(15 23 42 / 0.82);
  backdrop-filter: blur(6px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  background-color: #0f172a;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgb(15 23 42 / 0.45);
}

.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 9999px;
  background-color: rgb(255 255 255 / 0.15);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.video-modal-close:hover {
  background-color: rgb(255 255 255 / 0.28);
}

.video-modal-iframe,
.video-modal-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background-color: #000000;
}

body.video-modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none;
}

@keyframes video-play-pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-play-button::before,
  .video-play-button::after {
    animation: none;
  }

  .video-preview:hover .video-preview-image {
    transform: none;
  }
}
