/* DS SMS Hub — homepage (hero + full page sections) */

/* ===== Hero ===== */
.dss-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(14, 165, 233, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(56, 189, 248, 0.12), transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 55%, #f4f8fc 100%);
  z-index: 1;
}

.dss-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.dss-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dss-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  max-width: 16ch;
}

.dss-hero__title span { color: #0284c7; }

/* Mobile SMSPool-style notification card (hidden on desktop) */
.dss-sms-panel--mobile { display: none; }

.dss-sms-panel {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 45%, #f8fbff 100%);
  border: 1px solid #bfdbfe;
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.18);
  overflow: hidden;
}

.dss-sms-panel__chrome {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  padding: 10px 14px 0;
}

.dss-sms-panel__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93c5fd;
}

.dss-sms-panel__chrome span:nth-child(1) { background: #f87171; }
.dss-sms-panel__chrome span:nth-child(2) { background: #fbbf24; }
.dss-sms-panel__chrome span:nth-child(3) { background: #34d399; }

.dss-sms-panel__title {
  padding: 8px 16px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.dss-sms-panel__list {
  padding: 0 14px 16px;
  display: grid;
  gap: 10px;
}

.dss-sms-panel__row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.dss-sms-panel__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.dss-sms-panel__icon--wa { background: #dcfce7; color: #16a34a; }
.dss-sms-panel__icon--tg { background: #e0f2fe; color: #0284c7; }

.dss-sms-panel__row strong {
  display: block;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 2px;
}

.dss-sms-panel__row p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.35;
}

.dss-sms-panel__row b { color: #0f172a; }

.dss-hero__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 24px;
  max-width: 38rem;
}

.dss-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.dss-hero__actions .default-btn { margin: 0; }

.dss-hero__actions .dss-hero__ghost,
.dss-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 5px;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  font-weight: 600;
  background: #fff;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.dss-hero__actions .dss-hero__ghost:hover,
.dss-btn-ghost:hover {
  border-color: #0ea5e9;
  color: #0284c7;
}

.dss-hero__trust { margin-top: 28px; }

.dss-hero__trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 10px;
}

.dss-hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dss-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.dss-hero__chip i { font-size: 15px; }
.dss-hero__chip--wa i { color: #22c55e; }
.dss-hero__chip--tg i { color: #0ea5e9; }
.dss-hero__chip--ig i { color: #db2777; }
.dss-hero__chip--fb i { color: #2563eb; }
.dss-hero__chip--tt i { color: #0f172a; }
.dss-hero__chip--ai i { color: #10b981; }

.dss-hero__stage {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dss-hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.28), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.dss-phone {
  position: relative;
  width: 220px;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.dss-phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: #020617;
  z-index: 3;
}

.dss-phone__screen {
  border-radius: 24px;
  overflow: hidden;
  background: #f8fafc;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.dss-phone__status {
  display: flex;
  justify-content: space-between;
  padding: 14px 14px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #fff;
}

.dss-phone__appbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
  color: #fff;
}

.dss-phone__appbar-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.dss-phone__appbar strong { display: block; font-size: 13px; line-height: 1.2; }
.dss-phone__appbar span { display: block; font-size: 11px; opacity: 0.9; }

.dss-phone__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.dss-sms {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.dss-sms__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.dss-sms__from { font-size: 12px; font-weight: 700; color: #0f172a; }
.dss-sms__time { font-size: 10px; color: #94a3b8; }
.dss-sms__msg { font-size: 12px; color: #475569; line-height: 1.45; margin: 0; }

.dss-sms__code {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ecfeff;
  color: #0e7490;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 15px;
}

.dss-phone__meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dss-phone__stat {
  background: #eff6ff;
  border-radius: 12px;
  padding: 10px;
}

.dss-phone__stat b { display: block; font-size: 14px; color: #0f172a; }
.dss-phone__stat span { font-size: 10px; color: #64748b; font-weight: 600; }

.dss-phone--back {
  position: absolute;
  left: 8%;
  top: 8%;
  transform: rotate(-8deg) scale(0.92);
  z-index: 1;
  opacity: 0.96;
}

.dss-phone--front { transform: rotate(4deg); z-index: 3; }

.dss-phone--android {
  background: linear-gradient(160deg, #111827, #020617);
  border-radius: 28px;
}

.dss-phone--android .dss-phone__screen {
  border-radius: 18px;
  background: #0b1220;
  color: #e2e8f0;
}

.dss-phone--android .dss-phone__status { background: #0b1220; color: #94a3b8; }
.dss-phone--android .dss-sms { background: #111827; border-color: #1f2937; }
.dss-phone--android .dss-sms__from { color: #f8fafc; }
.dss-phone--android .dss-sms__msg { color: #cbd5e1; }
.dss-phone--android .dss-phone__stat { background: #111827; }
.dss-phone--android .dss-phone__stat b { color: #f8fafc; }

.dss-float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  animation: dssFloat 4.5s ease-in-out infinite;
}

.dss-float i { font-size: 16px; }
.dss-float--1 { top: 12%; right: 6%; }
.dss-float--2 { bottom: 18%; left: 2%; animation-delay: 0.8s; }
.dss-float--3 { bottom: 8%; right: 10%; animation-delay: 1.4s; }
.dss-float--1 i { color: #22c55e; }
.dss-float--2 i { color: #0ea5e9; }
.dss-float--3 i { color: #f59e0b; }

@keyframes dssFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== Shared section chrome ===== */
.dss-section {
  padding: 80px 0;
  position: relative;
}

.dss-section--muted {
  background: #f8fafc;
}

.dss-section--dark {
  background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 100%);
  color: #e2e8f0;
}

.dss-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.dss-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0284c7;
  margin-bottom: 10px;
}

.dss-section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.25;
}

.dss-section__head p {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
}

.dss-section--dark .dss-section__eyebrow { color: #7dd3fc; }
.dss-section--dark .dss-section__head h2 { color: #fff; }
.dss-section--dark .dss-section__head p { color: #cbd5e1; }

/* ===== Stats ===== */
.dss-stats {
  margin-top: -28px;
  position: relative;
  z-index: 3;
  padding-bottom: 20px;
}

.dss-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.dss-stat {
  text-align: center;
  padding: 12px 8px;
}

.dss-stat b {
  display: block;
  font-size: 1.55rem;
  color: #0284c7;
  font-weight: 800;
  line-height: 1.2;
}

.dss-stat span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

/* ===== Features ===== */
.dss-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dss-feature {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dss-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.dss-feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  font-size: 22px;
  margin-bottom: 14px;
}

.dss-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.dss-feature p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Services cards ===== */
.dss-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dss-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none !important;
  color: inherit;
  min-height: 100%;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.dss-service:hover {
  border-color: #7dd3fc;
  transform: translateY(-2px);
  color: inherit;
}

.dss-service__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #0f172a;
  color: #7dd3fc;
  font-size: 20px;
}

.dss-service h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

.dss-service p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.dss-service__link {
  font-size: 13px;
  font-weight: 700;
  color: #0284c7;
}

/* ===== Steps ===== */
.dss-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dss-step {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 22px 22px;
}

.dss-step__num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #0284c7;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.dss-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.dss-step p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Reviews ===== */
.dss-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dss-review {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dss-review__stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
}

.dss-review__quote {
  margin: 0;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}

.dss-review__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dss-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  flex-shrink: 0;
}

.dss-review__user strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
}

.dss-review__user span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
}

.dss-reviews__summary {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.dss-reviews__summary b { color: #0f172a; }

/* ===== App CTA ===== */
.dss-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.dss-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.dss-cta p {
  margin: 0 0 20px;
  color: #cbd5e1;
  line-height: 1.6;
}

.dss-cta .dss-app-download__label { color: #94a3b8; }

.dss-cta__panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
}

.dss-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.dss-cta__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.dss-cta__list i {
  color: #7dd3fc;
  font-size: 18px;
  margin-top: 2px;
}

/* ===== FAQ polish ===== */
.dss-faq .accordion-item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
}

.dss-faq .accordion-button {
  font-weight: 700;
  color: #0f172a;
  box-shadow: none !important;
}

.dss-faq .accordion-button:not(.collapsed) {
  background: #f0f9ff;
  color: #0369a1;
}

.dss-faq .accordion-body {
  color: #475569;
  line-height: 1.6;
}

/* ===== Final CTA strip ===== */
.dss-final {
  text-align: center;
  padding: 56px 0 80px;
}

.dss-final h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.dss-final p {
  color: #64748b;
  margin: 0 0 20px;
}

.dss-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .dss-hero {
    padding: 28px 0 40px;
    text-align: center;
  }
  .dss-hero__grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .dss-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dss-hero__eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .dss-hero__title {
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    text-align: center;
  }
  .dss-hero__desc {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    text-align: center;
  }
  .dss-sms-panel--mobile {
    display: block !important;
    margin-top: 8px;
    margin-bottom: 18px;
  }
  .dss-hero__stage--desktop {
    display: none !important;
  }
  .dss-hero__actions {
    width: 100%;
    max-width: 420px;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }
  .dss-hero__actions .dss-hero__cta,
  .dss-hero__actions .default-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 12px !important;
  }
  .dss-hero__actions .dss-hero__ghost {
    width: 100%;
    border-radius: 12px;
  }
  .dss-app-download {
    width: 100%;
    max-width: 420px;
  }
  .dss-app-download__label {
    text-align: center;
  }
  .dss-app-badges {
    justify-content: center !important;
  }
  .dss-hero__trust {
    width: 100%;
    max-width: 420px;
    margin-top: 18px;
  }
  .dss-hero__trust-label {
    text-align: center;
  }
  .dss-hero__trust-row {
    justify-content: center !important;
  }
  .dss-stats {
    margin-top: 8px;
    padding: 0 12px 12px;
  }
  .dss-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 4px !important;
    border-radius: 16px !important;
  }
  .dss-stat {
    padding: 14px 10px !important;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
  }
  .dss-stat:nth-child(2n) { border-right: none; }
  .dss-stat:nth-child(n+3) { border-bottom: none; }
  .dss-stat b {
    font-size: 1.25rem !important;
  }
  .dss-stat span {
    font-size: 11px !important;
    line-height: 1.3;
    margin-top: 2px !important;
  }
  .dss-features__grid,
  .dss-services__grid,
  .dss-steps__grid,
  .dss-reviews__grid {
    grid-template-columns: 1fr !important;
  }
  .dss-cta {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .dss-cta .dss-app-badges {
    justify-content: center !important;
  }
  .dss-section { padding: 48px 0; }
}

@media (max-width: 575px) {
  .dss-hero { padding: 20px 0 32px; }
  .dss-sms-panel { border-radius: 18px; }
  .dss-hero__chip { font-size: 11px; padding: 6px 9px; }
}

.dss-hero .dss-app-download__label { color: #64748b; }

/* Dark theme */
.theme-dark .dss-hero {
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(14, 165, 233, 0.18), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #111827 60%, #0f172a 100%);
}
.theme-dark .dss-hero__title,
.theme-dark .dss-section__head h2,
.theme-dark .dss-feature h3,
.theme-dark .dss-service h3,
.theme-dark .dss-step h3,
.theme-dark .dss-review__user strong,
.theme-dark .dss-final h2,
.theme-dark .dss-reviews__summary b { color: #f8fafc; }
.theme-dark .dss-hero__desc,
.theme-dark .dss-section__head p,
.theme-dark .dss-feature p,
.theme-dark .dss-service p,
.theme-dark .dss-step p,
.theme-dark .dss-final p,
.theme-dark .dss-stat span { color: #cbd5e1; }
.theme-dark .dss-hero__ghost,
.theme-dark .dss-btn-ghost {
  background: transparent;
  border-color: #334155;
  color: #e2e8f0;
}
.theme-dark .dss-hero__chip,
.theme-dark .dss-float,
.theme-dark .dss-stats__grid,
.theme-dark .dss-feature,
.theme-dark .dss-service,
.theme-dark .dss-step,
.theme-dark .dss-review,
.theme-dark .dss-faq .accordion-item {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}
.theme-dark .dss-section--muted { background: #0b1220; }
.theme-dark .dss-review__quote { color: #cbd5e1; }
.theme-dark .dss-hero .dss-app-download__label { color: #94a3b8; }
.theme-dark .dss-faq .accordion-button { background: #1e293b; color: #f8fafc; }
.theme-dark .dss-faq .accordion-button:not(.collapsed) { background: #0c4a6e; color: #e0f2fe; }
.theme-dark .dss-faq .accordion-body { background: #1e293b; color: #cbd5e1; }


/* Force homepage grids (beat old theme resets) */
.dss-stats__grid,
.dss-features__grid,
.dss-services__grid,
.dss-steps__grid,
.dss-reviews__grid,
.dss-hero__grid,
.dss-cta,
.dss-final__actions,
.dss-hero__trust-row,
.dss-app-badges {
  display: flex !important;
}
.dss-stats__grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.dss-features__grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 18px !important; }
.dss-services__grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 16px !important; }
.dss-steps__grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 18px !important; }
.dss-reviews__grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 18px !important; }
.dss-hero__grid { display: grid !important; grid-template-columns: 1.05fr 0.95fr !important; gap: 36px !important; }
.dss-cta { display: grid !important; grid-template-columns: 1.2fr 0.8fr !important; gap: 28px !important; }
.dss-feature, .dss-service, .dss-step, .dss-review, .dss-stats__grid {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
}
.dss-feature, .dss-service, .dss-step, .dss-review { padding: 22px !important; }
.dss-feature__icon, .dss-service__icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(14, 165, 233, 0.12) !important;
  color: #0284c7 !important;
  font-size: 22px !important;
  margin-bottom: 14px !important;
}
.dss-service__icon { background: #0f172a !important; color: #7dd3fc !important; }
@media (max-width: 991px) {
  .dss-hero__grid, .dss-cta { grid-template-columns: 1fr !important; }
  .dss-hero__stage--desktop { display: none !important; }
  .dss-sms-panel--mobile { display: block !important; }
  .dss-stats__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }
  .dss-features__grid,
  .dss-services__grid,
  .dss-steps__grid,
  .dss-reviews__grid {
    grid-template-columns: 1fr !important;
  }
  .dss-hero__actions .dss-hero__ghost { display: none !important; }
}
@media (max-width: 575px) {
  .dss-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .dss-features__grid,
  .dss-services__grid,
  .dss-steps__grid,
  .dss-reviews__grid {
    grid-template-columns: 1fr !important;
  }
}

.theme-dark .dss-sms-panel {
  background: linear-gradient(180deg, #0c4a6e 0%, #1e293b 100%);
  border-color: #334155;
}
.theme-dark .dss-sms-panel__title,
.theme-dark .dss-sms-panel__row strong,
.theme-dark .dss-sms-panel__row b { color: #f8fafc; }
.theme-dark .dss-sms-panel__row {
  background: #0f172a;
}
.theme-dark .dss-sms-panel__row p { color: #94a3b8; }
