/* ── Why owllet page ── */

/* Lead promise band under the hero */
.why-promise {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
}

.why-promise-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(170, 216, 179, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4aaa72;
}

.why-promise-icon--purple {
  background: rgba(179, 161, 240, 0.22);
  color: #9b82e8;
}

.why-promise h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--owl-navy);
}

.why-promise p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--owl-muted);
  margin: 0;
}

.why-promise strong {
  color: var(--owl-navy);
}

/* ── Comparison table ── */

.why-compare {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  overflow: hidden;
}

.why-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(51, 46, 68, 0.07);
}

.why-compare-row:first-child {
  border-top: none;
}

.why-compare-row.is-head {
  background: rgba(255, 255, 255, 0.25);
}

.why-compare-cell {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--owl-muted);
}

.why-compare-cell.label {
  font-weight: 600;
  color: var(--owl-navy);
}

.why-compare-cell.is-owllet {
  border-left: 1px solid rgba(51, 46, 68, 0.06);
}

.why-compare-head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.why-compare-head.is-owllet {
  color: #4aaa72;
}

.why-compare-head.is-others {
  color: var(--owl-muted);
}

.why-compare-cell .mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--owl-navy);
}

.why-compare-cell .mark svg {
  flex-shrink: 0;
}

.why-compare-cell .mark.yes svg { color: #4aaa72; }
.why-compare-cell .mark.no  svg { color: #c98b8b; }

/* ── Customization showcase ── */

.why-custom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-custom-card {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 26px 28px;
}

.why-custom-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.why-custom-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(170, 216, 179, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4aaa72;
}

.why-custom-card-icon--purple {
  background: rgba(179, 161, 240, 0.22);
  color: #9b82e8;
}

.why-custom-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--owl-navy);
}

.why-custom-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--owl-muted);
  margin: 0 0 14px;
}

.why-custom-card p:last-child {
  margin-bottom: 0;
}

.why-custom-card strong {
  color: var(--owl-navy);
}

.why-custom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--owl-muted);
}

.why-custom-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #4aaa72;
}

/* Accent color swatches */
.why-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.why-swatch {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 3px rgba(51, 46, 68, 0.12);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .why-custom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-compare-row {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .why-compare-cell {
    padding: 14px;
    font-size: 13px;
  }
}

@media (max-width: 500px) {
  .why-promise {
    padding: 20px;
    flex-direction: column;
    gap: 12px;
  }

  .why-compare-cell {
    padding: 12px 10px;
    font-size: 12px;
  }

  .why-compare-cell .mark {
    gap: 5px;
  }

  .why-custom-card {
    padding: 20px;
  }
}
