/* =============================================
   DATA SECURITY PAGE — data-security.css
   ============================================= */

/* ── Hero Trust Cards ─────────────────────────── */
.ds-trust-cards {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.ds-trust-card {
  flex: 1 1 0;
  min-width: 140px;
  background: #ffffff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  padding: 20px 16px 18px;
  text-align: center;
  cursor: default;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

.ds-trust-card:hover {
  box-shadow: 0 8px 28px rgba(80, 80, 180, 0.13);
  transform: translateY(-4px);
  border-color: #c7cadd;
}

.ds-trust-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: #fff;
  transition: transform 0.25s ease;
}

.ds-trust-card:hover .ds-trust-card__icon-wrap {
  transform: scale(1.08);
}

.ds-trust-card__icon-wrap--orange {
  background: linear-gradient(135deg, #ff8c00, #ff5722);
}

.ds-trust-card__icon-wrap--blue {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.ds-trust-card__icon-wrap--purple {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.ds-trust-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.ds-trust-card__sub {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
  .ds-trust-cards {
    gap: 12px;
  }

  .ds-trust-card {
    min-width: 120px;
    padding: 16px 12px 14px;
  }
}

@media (max-width: 575px) {
  .ds-trust-cards {
    flex-direction: column;
    gap: 10px;
  }

  .ds-trust-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 14px 16px;
  }

  .ds-trust-card__icon-wrap {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .ds-trust-card__body {
    flex: 1;
  }
}

/* ── Where Your Data Lives Section ─────────────── */
.ds-lives {
  background: #f7f8fc;
  padding: 64px 0 64px;
  font-family: 'Poppins', sans-serif;
}

.ds-lives__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ds-lives__subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 720px;
}

.ds-lives__panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 28px 30px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.ds-lives__panel:hover {
  box-shadow: 0 8px 28px rgba(10, 26, 111, 0.08);
  border-color: #c7cadd;
  transform: translateY(-2px);
}

.ds-lives__panel--alt {
  background: #fffaf3;
  border-color: #fde3c4;
}

.ds-lives__panel--alt:hover {
  border-color: #f9c98e;
  box-shadow: 0 8px 28px rgba(255, 140, 0, 0.1);
}

.ds-lives__panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ds-lives__panel-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}

.ds-lives__panel-icon--blue {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.ds-lives__panel-icon--orange {
  background: linear-gradient(135deg, #ff8c00, #ff5722);
}

.ds-lives__panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin: 0 0 2px;
}

.ds-lives__panel-sub {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Spec grid */
.ds-lives__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ds-lives__spec {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f7f8fc;
  border: 1px solid #eef0f6;
  border-radius: 10px;
  padding: 14px 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ds-lives__spec:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.ds-lives__spec-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #eff2ff;
  color: #3730a3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.ds-lives__spec-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ds-lives__spec-label {
  font-size: 11.5px;
  font-weight: 500;
  color: #9098a8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ds-lives__spec-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
}

/* Self-hosted panel */
.ds-lives__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #b45309;
  background: #fef3c7;
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.2px;
}

.ds-lives__alt-text {
  font-size: 13.5px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 18px;
}

.ds-lives__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.ds-lives__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 12px;
}

.ds-lives__list li:last-child {
  margin-bottom: 0;
}

.ds-lives__list li i {
  color: #ff8c00;
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}

.ds-lives__cta,
.ds-lives__cta:hover,
.ds-lives__cta:focus {
  text-decoration: none !important;
}

.ds-lives__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #c2410c;
  transition: gap 0.2s ease, color 0.2s ease;
}

.ds-lives__cta i {
  font-size: 12px;
  line-height: 1;
  padding-bottom: 0 !important;
  position: relative;
  top: 1px;
  transition: transform 0.2s ease;
}

.ds-lives__cta:hover {
  color: #9a3412;
}

.ds-lives__cta:hover i {
  transform: translateX(3px);
}

/* ── Where Your Data Lives Responsive ─────────── */
@media (max-width: 767px) {
  .ds-lives {
    padding: 48px 0 48px;
  }

  .ds-lives__heading {
    font-size: 22px;
  }

  .ds-lives__panel {
    padding: 22px 20px 24px;
  }
}

@media (max-width: 575px) {
  .ds-lives {
    padding: 36px 0 40px;
  }

  .ds-lives__heading {
    font-size: 20px;
  }

  .ds-lives__specs {
    grid-template-columns: 1fr;
  }
}

/* ── Data Safe Section ────────────────────────── */
.ds-safe {
  background: #ffffff;
  padding: 64px 0 72px;
  font-family: 'Poppins', sans-serif;
}

.ds-safe__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ds-safe__subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 36px;
  line-height: 1.6;
}

.ds-safe__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 14px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  cursor: default;
}

.ds-safe__card:last-child {
  margin-bottom: 0;
}

.ds-safe__card:hover {
  box-shadow: 0 6px 24px rgba(10, 26, 111, 0.09);
  border-color: #a5b4fc;
  transform: translateY(-2px);
}

.ds-safe__icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #eff2ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #3730a3;
  transition: background 0.22s ease;
}

.ds-safe__card:hover .ds-safe__icon-box {
  background: #e0e6ff;
}

.ds-safe__body {
  flex: 1;
}

.ds-safe__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.35;
}

.ds-safe__card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ── Data Safe Responsive ─────────────────────── */
@media (max-width: 767px) {
  .ds-safe {
    padding: 48px 0 56px;
  }

  .ds-safe__heading {
    font-size: 22px;
  }

  .ds-safe__card {
    padding: 20px 20px;
  }
}

@media (max-width: 575px) {
  .ds-safe {
    padding: 36px 0 44px;
  }

  .ds-safe__heading {
    font-size: 20px;
  }

  .ds-safe__card {
    padding: 18px 16px;
    gap: 14px;
  }

  .ds-safe__icon-box {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/* ── FAQ Section ──────────────────────────────── */
.ds-faq {
  background: #ffffff;
  padding: 60px 0 72px;
  font-family: 'Poppins', sans-serif;
}

.ds-faq__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 0;
}

.ds-faq__card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 12px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  cursor: default;
}

.ds-faq__card:last-child {
  margin-bottom: 0;
}

.ds-faq__card:hover {
  box-shadow: 0 6px 22px rgba(10, 26, 111, 0.09);
  border-color: #a5b4fc;
  transform: translateY(-2px);
}

.ds-faq__q-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #111827;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background 0.22s ease;
}

.ds-faq__card:hover .ds-faq__q-badge {
  background: #0A1A6F;
}

.ds-faq__body {
  flex: 1;
}

.ds-faq__question {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.4;
}

.ds-faq__answer {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ── FAQ Responsive ───────────────────────────── */
@media (max-width: 767px) {
  .ds-faq {
    padding: 0 0 56px;
  }

  .ds-faq__heading {
    font-size: 22px;
  }

  .ds-faq__card {
    padding: 18px 18px;
  }
}

@media (max-width: 575px) {
  .ds-faq {
    padding: 0 0 44px;
  }

  .ds-faq__heading {
    font-size: 19px;
  }

  .ds-faq__card {
    gap: 14px;
    padding: 16px 14px;
  }

  .ds-faq__q-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
