/* =========================================================
   WHY — PREMIUM (FINAL)
   Colors aligned with PACKAGES (Comfort Line tokens)
   ========================================================= */

.cm-section.why{
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 86px) 0;

  /* Match packages band */
  background: linear-gradient(180deg,
    rgba(11,58,164,.05) 0%,
    rgba(11,58,164,.10) 100%
  );
}

.cm-section.why::before{
  content:"";
  position:absolute;
  inset:-210px -180px -240px -180px;
  background:
    radial-gradient(980px 560px at 18% 18%, rgba(255,122,0,.18), transparent 62%),
    radial-gradient(860px 540px at 82% 18%, rgba(11,58,164,.10), transparent 62%),
    radial-gradient(980px 620px at 50% 110%, rgba(14,143,58,.10), 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(12,16,23,.12), 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: 26px;
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--clh-border);
  box-shadow: 0 18px 50px rgba(12,16,23,.10);
  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(255,122,0,.26);
  box-shadow:
    0 26px 70px rgba(12,16,23,.14),
    0 0 0 6px rgba(255,122,0,.06);
}

/* Media */
.why-media{
  position: relative;
  height: 190px;
  background: rgba(12,16,23,.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) — orange highlight like packages */
.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,122,0,.98), rgba(247,177,4,.98));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 30px rgba(255,122,0,.20), 0 14px 26px rgba(12,16,23,.14);
  z-index: 2;
}
.why-icon i{ color:#120A00; 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(12,16,23,.12);
  box-shadow: 0 10px 22px rgba(12,16,23,.08);
  font-weight: 900;
  letter-spacing: .35px;
  font-size: 12px;
  color: rgba(12,16,23,.82);
  white-space: nowrap;
}
.why-pill i{ color: var(--clh-blue); }

.why-tag{
  background: rgba(11,58,164,.06);           /* blue-tinted tag */
  border-color: rgba(11,58,164,.18);
  color: rgba(12,16,23,.76);
}
.why-tag i{ color: rgba(12,16,23,.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(12,16,23,.96);
}
.why-desc{
  margin: 0;
  color: rgba(12,16,23,.66);
  font-size: 14.75px;
  line-height: 1.65;
  font-weight: 600;
}
.why-desc strong{ color: rgba(12,16,23,.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 var(--clh-border);
  background: rgba(255,255,255,.92);
  box-shadow: var(--clh-shadow);
  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,58,164,.04);        /* same as packages points */
  border: 1px solid rgba(12,16,23,.06);
}
.why-point i{
  color: var(--clh-green);                /* green icon like packages meta */
  margin-top: 2px;
}
.why-point__t{
  font-weight: 900;
  letter-spacing: -.2px;
  color: rgba(12,16,23,.92);
}
.why-point__d{
  margin-top: 2px;
  color: rgba(12,16,23,.66);
  font-weight: 600;
  line-height: 1.55;
  font-size: 13.75px;
}

/* CTA card */
.why-ctaCard{
  border-radius: 22px;
  border: 1px solid var(--clh-border);
  background:
    radial-gradient(520px 240px at 50% 0%, rgba(255,122,0,.18), transparent 68%),
    rgba(255,255,255,.92);
  box-shadow: 0 20px 55px rgba(12,16,23,.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(14,143,58,.10);
  border: 1px solid rgba(14,143,58,.18);
  flex: 0 0 auto;
}
.why-ctaIcon i{ color: var(--clh-green); font-size: 18px; }

.why-ctaTitle{
  font-weight: 900;
  letter-spacing: -.3px;
  color: rgba(12,16,23,.96);
}
.why-ctaDesc{
  margin-top: 4px;
  color: rgba(12,16,23,.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,58,164,.04);
  border: 1px solid rgba(12,16,23,.06);
  color: rgba(12,16,23,.74);
  font-weight: 800;
  font-size: 13px;
}
.why-step i{ color: var(--clh-green); }

.why-ctaBtns{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

/* Buttons (WhatsApp green + Pricing blue like your attachment) */
.why-ctaBtns .btn{
  width: 100%;
  height: 48px;
  border-radius: 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border: none;
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(12,16,23,.10);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* WhatsApp */
.why-ctaBtns .btn.btn-primary{
  background: linear-gradient(180deg, #25D366 0%, #1DA851 100%) !important;
  box-shadow: 0 12px 30px rgba(29,168,81,.25);
}
.why-ctaBtns .btn.btn-primary:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, #29E06B 0%, #1DA851 100%) !important;
  box-shadow: 0 16px 36px rgba(29,168,81,.35);
}

/* Pricing (Blue) */
.why-ctaBtns .btn.btn-dark{
  background: linear-gradient(180deg, #3A6FE8 0%, #2C57C6 100%) !important;
  box-shadow: 0 12px 30px rgba(44,87,198,.25);
}
.why-ctaBtns .btn.btn-dark:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, #4A7EF5 0%, #2C57C6 100%) !important;
  box-shadow: 0 16px 36px rgba(44,87,198,.35);
}

/* 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; }
}
