/* =========================================================
   WHY — PREMIUM (consistent with Services/Packages/Fleet)
   ========================================================= */

.cm-section.why{
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 86px) 0;
  background: linear-gradient(180deg, #F7F8FC 0%, #EFF2F9 100%);
}

.cm-section.why::before{
  content:"";
  position:absolute;
  inset:-210px -180px -240px -180px;
  background:
    radial-gradient(980px 560px at 18% 18%, rgba(244,180,0,.14), transparent 62%),
    radial-gradient(860px 540px at 82% 18%, rgba(11,18,32,.10), transparent 62%),
    radial-gradient(980px 620px at 50% 110%, rgba(244,180,0,.08), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.cm-section.why::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(11,18,32,.14), transparent);
  z-index:0;
}
.cm-section.why .container{ position:relative; z-index:1; }

.why-head{ max-width: 920px; }

/* Grid */
.why-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Card */
.why-card{
  border-radius: var(--r2);
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow1);
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
  display:flex;
  flex-direction:column;
  min-height: 410px;
}
.why-card:hover{
  transform: translateY(-2px);
  border-color: rgba(244,180,0,.26);
  box-shadow:
    0 26px 70px rgba(11,18,32,.14),
    0 0 0 6px rgba(244,180,0,.06);
}

/* Media */
.why-media{
  position: relative;
  height: 190px;
  background: rgba(11,18,32,.06);
  overflow: hidden;
}
.why-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.06) contrast(1.06);
}
.why-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%,
                           rgba(0,0,0,.10) 45%,
                           rgba(0,0,0,.36) 100%);
  pointer-events:none;
  z-index: 1;
}

/* Icon badge (bottom-left) */
.why-icon{
  position:absolute;
  left: 14px;
  bottom: 14px;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(255,211,106,.96), rgba(244,180,0,.96));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 30px rgba(244,180,0,.20), 0 14px 26px rgba(11,18,32,.14);
  z-index: 2;
}
.why-icon i{ color:#1A1300; font-size: 18px; }

/* Badges (top-right stack) */
.why-badges{
  position:absolute;
  right: 12px;
  top: 12px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 10px;
  z-index: 2;
}
.why-pill,
.why-tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,18,32,.12);
  box-shadow: 0 10px 22px rgba(11,18,32,.08);
  font-weight: 900;
  letter-spacing: .35px;
  font-size: 12px;
  color: rgba(11,18,32,.82);
  white-space: nowrap;
}
.why-pill i{ color: var(--brand); }
.why-tag{
  background: rgba(11,18,32,.03);
  color: rgba(11,18,32,.74);
}
.why-tag i{ color: rgba(11,18,32,.62); }

/* Body */
.why-body{
  padding: 16px 16px 16px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  flex: 1 1 auto;
}
.why-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -.4px;
  font-size: 18px;
  color: rgba(11,18,32,.96);
}
.why-desc{
  margin: 0;
  color: rgba(11,18,32,.66);
  font-size: 14.75px;
  line-height: 1.65;
  font-weight: 600;
}
.why-desc strong{ color: rgba(11,18,32,.90); font-weight: 900; }

.why-chips{
  margin-top: auto;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding-top: 6px;
}

/* Premium panel (split) */
.why-panel{
  margin-top: 16px;
  border-radius: 28px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  padding: 16px;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 14px;
}
.why-panel__left{ padding: 4px 4px 6px; }
.why-panel__right{ display:flex; }

.why-points{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}
.why-point{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(11,18,32,.03);
  border: 1px solid rgba(11,18,32,.06);
}
.why-point i{
  color: var(--brand);
  margin-top: 2px;
}
.why-point__t{
  font-weight: 900;
  letter-spacing: -.2px;
  color: rgba(11,18,32,.92);
}
.why-point__d{
  margin-top: 2px;
  color: rgba(11,18,32,.66);
  font-weight: 600;
  line-height: 1.55;
  font-size: 13.75px;
}

/* CTA card */
.why-ctaCard{
  border-radius: 22px;
  border: 1px solid rgba(11,18,32,.10);
  background:
    radial-gradient(520px 240px at 50% 0%, rgba(244,180,0,.18), transparent 68%),
    rgba(255,255,255,.92);
  box-shadow: 0 20px 55px rgba(11,18,32,.10);
  padding: 14px;
  width: 100%;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.why-ctaTop{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.why-ctaIcon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(244,180,0,.14);
  border: 1px solid rgba(244,180,0,.22);
  flex: 0 0 auto;
}
.why-ctaIcon i{ color: var(--brand); font-size: 18px; }

.why-ctaTitle{
  font-weight: 900;
  letter-spacing: -.3px;
  color: rgba(11,18,32,.96);
}
.why-ctaDesc{
  margin-top: 4px;
  color: rgba(11,18,32,.66);
  font-weight: 600;
  line-height: 1.55;
  font-size: 13.75px;
}

.why-ctaSteps{
  display:grid;
  gap: 8px;
}
.why-step{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(11,18,32,.03);
  border: 1px solid rgba(11,18,32,.06);
  color: rgba(11,18,32,.74);
  font-weight: 800;
  font-size: 13px;
}
.why-step i{ color: var(--brand); }

.why-ctaBtns{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.why-ctaBtns .btn{
  width: 100%;
  height: 48px;
  border-radius: 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(12,16,23,.10);
}

/* Responsive */
@media (max-width: 991px){
  .why-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-panel{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .why-grid{ grid-template-columns: 1fr; }
  .why-media{ height: 200px; }
  .why-badges{ right: 10px; top: 10px; gap: 8px; }
}
