/*--------------------------------------------------------------
# Dental HMS — Solutions Page
--------------------------------------------------------------*/

/* ── Body offset for fixed header ── */
body.solutions-page { padding-top: 0; }

/* ── Hero photo (replaces workflow mock) ── */
.dnt-hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 380px;
  z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.10);
}

.dnt-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.dnt-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,30,56,0.18) 0%, rgba(10,30,56,0.55) 100%);
  border-radius: inherit;
}

.dnt-hero-photo-badges {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dnt-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}

.dnt-photo-badge i { color: #5EEAD4; font-size: 0.85rem; }

/* ── Challenge section photo ── */
.dnt-challenge-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(15,76,129,0.14);
}

.dnt-challenge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.dnt-challenge-photo:hover img { transform: scale(1.03); }

.dnt-challenge-photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 20px rgba(15,76,129,0.35);
}

.dnt-challenge-photo-tag i { font-size: 0.85rem; }

.dnt-why-photo {
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15,76,129,0.12);
}

.dnt-why-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.dnt-why-photo:hover img { transform: scale(1.03); }

/* ── Full-bleed image break ── */
.dnt-imgbreak {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.dnt-imgbreak img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.dnt-imgbreak-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,56,0.78) 0%, rgba(15,76,129,0.65) 50%, rgba(0,100,90,0.60) 100%);
}

.dnt-imgbreak-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 0 24px;
}

.dnt-imgbreak-content p {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 640px;
}

@media (max-width: 991px) {
  .dnt-hero-photo { aspect-ratio: 4 / 3; }
  .dnt-challenge-photo { aspect-ratio: 16 / 9; }
  .dnt-imgbreak { height: 320px; }
}

@media (max-width: 767px) {
  .dnt-imgbreak { height: 260px; }
  .dnt-imgbreak-content p { font-size: 1.2rem; }
  .dnt-hero-photo-badges { bottom: 12px; left: 12px; right: 12px; }
}


.sol-cta-btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.30);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.sol-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  box-shadow: none;
}

/* ══════════════════════════════════════════════════════════════
   DENTAL HERO — Enhanced
══════════════════════════════════════════════════════════════ */

/* ── Animated gradient blobs ── */
.dnt-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: dnt-blob-drift 12s ease-in-out infinite alternate;
}
.dnt-hero-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,184,169,0.22), transparent 70%);
  top: -160px; right: -80px;
  animation-duration: 14s;
}
.dnt-hero-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(15,76,129,0.28), transparent 70%);
  bottom: -100px; left: -60px;
  animation-duration: 10s;
  animation-delay: -4s;
}
.dnt-hero-blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(94,234,212,0.18), transparent 70%);
  top: 40%; left: 38%;
  animation-duration: 16s;
  animation-delay: -8s;
}
@keyframes dnt-blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.06); }
  100% { transform: translate(-20px, 30px) scale(0.96); }
}

/* ── Left column alignment fix ── */
.sol-hero .sol-hero-icon { margin: 0 0 20px; }

/* ── Hero stat badges ── */
.dnt-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.dnt-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.dnt-stat-badge i {
  font-size: 0.85rem;
  color: #5EEAD4;
}
.dnt-stat-badge:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(94,234,212,0.40);
}

/* ── Right visual card — enhanced ── */
.dnt-visual-wrap {
  position: relative;
  padding-bottom: 28px;
}

/* ── Visual card header ── */
.dnt-visual-wrap .tp-visual-head {
  color: rgba(255,255,255,0.90);
  font-size: 0.82rem;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.dnt-visual-wrap .tp-visual-tabs span {
  background: rgba(94,234,212,0.55);
}
.dnt-visual-wrap .tp-visual-tabs span:first-child { background: #ef4444; }
.dnt-visual-wrap .tp-visual-tabs span:nth-child(2) { background: #f59e0b; }

/* ── Visual mini-cards ── */
.dnt-visual-wrap .tp-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.dnt-visual-wrap .tp-visual-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(94,234,212,0.30);
  transform: translateY(-2px);
}
.dnt-visual-wrap .tp-visual-card h3 {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
}
.dnt-visual-wrap .tp-visual-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
.dnt-visual-wrap .tp-visual-pill {
  background: rgba(0,184,169,0.18);
  color: #5EEAD4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Floating accent chip on visual ── */
.dnt-visual-chip {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,184,169,0.40);
  z-index: 2;
}
.dnt-visual-chip i { font-size: 0.85rem; }

/* ── Hero bottom padding for floating chip ── */
.sol-hero { padding-bottom: 100px; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .sol-hero { padding-bottom: 80px; }
  .dnt-visual-wrap { margin-top: 48px; }
  .dnt-visual-chip { bottom: -14px; font-size: 0.72rem; padding: 7px 14px; }
  .dnt-hero-blob-1 { width: 320px; height: 320px; }
  .dnt-hero-blob-2 { width: 240px; height: 240px; }
}
@media (max-width: 767px) {
  .dnt-hero-stats { gap: 8px; }
  .dnt-stat-badge { font-size: 0.74rem; padding: 6px 11px; }
  .dnt-hero-blob-3 { display: none; }
}

/* ── Section layout ── */
.tp-sol-section { padding: 92px 0; position: relative; }
.tp-sol-section.section { background: linear-gradient(180deg, var(--background-color) 0%, #f8fbff 100%); }
.tp-sol-section.section:nth-of-type(odd) { background: linear-gradient(180deg, var(--background-color) 0%, #f5f9fc 100%); }
.tp-sol-section.section + .tp-sol-section.section { border-top: 1px solid var(--border-color); }

/* ── Glassmorphism surface card ── */
.tp-sol-surface {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15,76,129,0.08);
  backdrop-filter: blur(12px);
}

/* ── Kicker pill ── */
.tp-sol-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15,76,129,0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Section title & copy ── */
.tp-sol-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 18px 0 14px;
  color: var(--heading-color);
}

.tp-sol-copy {
  color: var(--muted-color);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 780px;
}

/* ── Hero visual mock ── */
.tp-hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15,76,129,0.12), rgba(0,184,169,0.10));
  border: 1px solid rgba(15,76,129,0.12);
  box-shadow: 0 24px 60px rgba(15,76,129,0.12);
  padding: 24px;
}

.tp-hero-visual::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,169,0.22), transparent 70%);
}

.tp-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--heading-color);
}

.tp-visual-tabs { display: flex; gap: 8px; }
.tp-visual-tabs span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,76,129,0.55);
}

.tp-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tp-visual-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15,76,129,0.08);
}

.tp-visual-card h3 { font-size: 0.95rem; margin: 0 0 10px; color: var(--heading-color); }
.tp-visual-card p  { margin: 0; color: var(--muted-color); font-size: 0.9rem; line-height: 1.7; }

.tp-visual-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(15,76,129,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── Trust badges ── */
.tp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tp-trust-badge {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(15,76,129,0.08);
  text-align: center;
  box-shadow: 0 8px 30px rgba(15,76,129,0.06);
}

.tp-trust-badge i    { font-size: 1.15rem; color: var(--primary); display: block; margin-bottom: 8px; }
.tp-trust-badge span { font-weight: 700; color: var(--heading-color); }

/* ── Split columns ── */
.tp-split-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Challenge / Solution lists ── */
.tp-challenge-list,
.tp-solution-list { display: grid; gap: 14px; }

.tp-list-item {
  background: rgba(255,255,255,0.8);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 28px rgba(15,76,129,0.08);
}

.tp-list-item h3 { font-size: 1rem; margin: 0 0 6px; color: var(--heading-color); }
.tp-list-item p  { margin: 0; color: var(--muted-color); line-height: 1.7; font-size: 0.95rem; }

/* ── Advantages section header ── */
.tp-adv-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 52px;
}
.tp-adv-header-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.tp-adv-stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.tp-adv-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tp-adv-stat strong {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.tp-adv-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Advantages grid ── */
.tp-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tp-adv-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tp-adv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F4C81, #00B8A9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tp-adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,76,129,0.12);
  border-color: rgba(15,76,129,0.18);
}

.tp-adv-card:hover::before { transform: scaleX(1); }

.tp-adv-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.45;
  margin-bottom: 16px;
  display: block;
}

.tp-adv-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15,76,129,0.08), rgba(0,184,169,0.08));
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.35rem;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.tp-adv-card:hover .tp-adv-icon {
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.tp-adv-card h3 {
  font-size: 1.02rem;
  color: var(--heading-color);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.3;
}
.tp-adv-card p  { margin: 0; color: var(--muted-color); line-height: 1.75; font-size: 0.92rem; }

/* ── Feature grid ── */
.tp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tp-feature-card {
  height: 100%;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(15,76,129,0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.tp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15,76,129,0.10);
}

.tp-feature-card .tp-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,76,129,0.10);
  color: var(--primary);
  margin-bottom: 12px;
}

.tp-feature-card h3 { font-size: 1.03rem; font-weight: 800; margin-bottom: 8px; color: var(--heading-color); }
.tp-feature-card p  { margin: 0 0 12px; color: var(--muted-color); line-height: 1.72; font-size: 0.94rem; }
.tp-feature-card ul { padding-left: 18px; margin: 0; color: #556274; font-size: 0.9rem; }
.tp-feature-card li { margin-bottom: 6px; }

/* ── Workflow ── */
.tp-workflow {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 10px;
}

.tp-workflow-step {
  min-width: 160px;
  text-align: center;
  background: rgba(255,255,255,0.84);
  border-radius: 18px;
  padding: 15px 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 28px rgba(15,76,129,0.08);
}

.tp-workflow-step strong { display: block; font-size: 0.9rem; color: var(--heading-color); margin-bottom: 6px; }
.tp-workflow-step span   { color: var(--muted-color); font-size: 0.82rem; line-height: 1.55; }

.tp-workflow-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Benefits grid ── */
.tp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tp-benefit-card {
  text-align: center;
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 28px rgba(15,76,129,0.08);
}

.tp-benefit-card i      { font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; }
.tp-benefit-card strong { display: block; margin-bottom: 8px; color: var(--heading-color); }
.tp-benefit-card span   { color: var(--muted-color); font-size: 0.9rem; line-height: 1.65; }

/* ── Why grid ── */
.tp-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.tp-why-card {
  padding: 18px 16px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 30px rgba(15,76,129,0.08);
}

.tp-why-card i      { font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; }
.tp-why-card strong { display: block; margin-bottom: 6px; font-size: 0.92rem; color: var(--heading-color); }
.tp-why-card span   { color: var(--muted-color); font-size: 0.86rem; }

/* ── Screen grid ── */
.tp-screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tp-screen-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 32px rgba(15,76,129,0.08);
}

.tp-screen-card .tp-screen-mock {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15,76,129,0.10), rgba(15,76,129,0.04));
  height: 150px;
  border: 1px dashed rgba(15,76,129,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  padding: 16px;
  margin-bottom: 12px;
}

.tp-screen-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--heading-color); }
.tp-screen-card p  { margin: 0; color: var(--muted-color); font-size: 0.9rem; }

/*--------------------------------------------------------------
# How TreatPatient Solves Them
--------------------------------------------------------------*/
.dnt-solves-section { padding: 72px 0; }

.dnt-solves-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dnt-solves-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(15,23,42,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dnt-solves-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,76,129,0.10);
  border-color: rgba(15,76,129,0.18);
}

.dnt-solves-item > i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(15,76,129,0.08);
  transition: background 0.25s ease, color 0.25s ease;
}

.dnt-solves-item:hover > i {
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  color: #fff;
}

.dnt-solves-item h3 { font-size: 0.88rem; font-weight: 700; color: var(--heading-color); margin: 0 0 4px; }
.dnt-solves-item p  { font-size: 0.84rem; color: var(--muted-color); margin: 0; line-height: 1.6; }

@media (max-width: 767px) {
  .dnt-solves-grid { grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Why Choose — horizontal item layout
--------------------------------------------------------------*/
.dnt-why-section { padding: 72px 0; }

.dnt-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dnt-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dnt-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,76,129,0.11);
  border-color: rgba(15,76,129,0.18);
}

.dnt-why-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15,76,129,0.08), rgba(0,184,169,0.08));
  color: var(--primary);
  font-size: 1.15rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.dnt-why-item:hover .dnt-why-icon {
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.dnt-why-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--heading-color); margin: 0 0 5px; }
.dnt-why-item p  { font-size: 0.88rem; color: var(--muted-color); margin: 0; line-height: 1.65; }

@media (max-width: 991px) {
  .dnt-why-grid { grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Advanced Features Section
--------------------------------------------------------------*/
.dnt-adv-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.dnt-adv-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dnt-adv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F4C81, #00B8A9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.dnt-adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,76,129,0.12);
  border-color: rgba(15,76,129,0.18);
}

.dnt-adv-card:hover::before { transform: scaleX(1); }

.dnt-adv-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,76,129,0.08), rgba(0,184,169,0.08));
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.dnt-adv-card:hover .dnt-adv-icon {
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.dnt-adv-body h3 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 8px;
  line-height: 1.3;
}

.dnt-adv-body p {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.88rem;
  line-height: 1.72;
}

@media (max-width: 1199px) {
  .dnt-adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .dnt-adv-grid { grid-template-columns: 1fr; }
}

/* ── FAQ accordion ── */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 28px rgba(15,76,129,0.05);
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--heading-color);
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(15,76,129,0.04);
}

.faq-accordion .accordion-body { color: #556274; line-height: 1.82; }

/* ── Related solutions grid ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 30px rgba(15,76,129,0.08);
  text-decoration: none;
  display: block;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15,76,129,0.12);
  border-color: rgba(0,184,169,0.35);
}

.related-card i  { font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; display: block; }
.related-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--heading-color); }
.related-card p  { margin: 0; color: var(--muted-color); font-size: 0.9rem; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .tp-adv-header { grid-template-columns: 1fr; gap: 20px; }
  .tp-advantages-grid,
  .tp-feature-grid,
  .tp-benefits-grid,
  .tp-why-grid,
  .tp-screen-grid,
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .tp-adv-header { margin-bottom: 32px; }
  .tp-adv-stat-row { gap: 16px; }
  .tp-advantages-grid,
  .tp-feature-grid,
  .tp-benefits-grid,
  .tp-why-grid,
  .tp-screen-grid,
  .related-grid,
  .tp-split-cols,
  .tp-visual-grid { grid-template-columns: 1fr; }

  .tp-workflow { grid-template-columns: repeat(5, minmax(180px, 1fr)); }
}
