/* ═══════════════════════════════════════════════════════════════
   LUNARA — DIAPER TRACKER FEATURE PAGE (page-specific styles)
   Route: /features/diaper-tracker
   Depends on global tokens from assets/frontend/css/lunara.css:
   --ink, --ink-dark, --cream, --lavender, --lav-deep, --mint, --sage,
   --peach, --text-dark, --glass-bg, --glass-border, --shadow-soft, --radius-card
   Page-local tokens are prefixed --dt- to avoid clashing with globals.
═══════════════════════════════════════════════════════════════ */

body.page-features-diapers nav.site-nav.scrolled {
  padding:16px 48px;
  background:rgba(28,22,36,0.92);
  backdrop-filter:blur(28px) saturate(1.4);
  -webkit-backdrop-filter:blur(28px) saturate(1.4);
  border-bottom:1px solid rgba(200,191,231,0.12);
  box-shadow:0 2px 40px rgba(0,0,0,0.28);
}
body.page-features-diapers .nav-links a:hover, body.page-features-diapers .nav-links a.active{
    color: #fdf9f4;
}
body.page-features-diapers .nav-links a {
    color: rgba(253, 249, 244, 0.65);
}
body.page-features-diapers .nav-cta {
    background: linear-gradient(135deg, #8b7cba, #c98472);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(139, 124, 186, 0.40);
}

body.page-features-diapers {
  background: var(--ink);
  color: rgba(253, 249, 244, 0.90);
}

body.page-features-diapers h1,
body.page-features-diapers h2,
body.page-features-diapers h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

body.page-features-diapers em {
  font-style: italic;
  background: linear-gradient(135deg, var(--lavender), var(--dt-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dt-section .section-label{
  font-size: 16px;
}
#why-matters p{color:#fff;}


body.page-features-diapers .dt-section {
  padding: 55px 0;
}

@media (max-width: 760px) {
  body.page-features-diapers .dt-section { padding: 56px 0; }
}

/* ── Ambient orbs ─────────────────────────────────────────────── */
.dt-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.dt-orb-1 { width: 480px; height: 480px; top: -140px; left: -120px; background: rgba(139,124,186,0.20); animation: dtOrbFloat 26s ease-in-out infinite; }
.dt-orb-2 { width: 380px; height: 380px; top: 20%; right: -140px; background: rgba(203,161,90,0.16); animation: dtOrbFloat 22s ease-in-out infinite reverse; }
.dt-orb-3 { width: 420px; height: 420px; bottom: -160px; left: 10%; background: rgba(200,191,231,0.14); animation: dtOrbFloat 30s ease-in-out infinite; }
.dt-orb-4 { width: 300px; height: 300px; bottom: 30%; right: 8%; background: rgba(184,207,196,0.12); animation: dtOrbFloat 24s ease-in-out infinite reverse; }

@keyframes dtOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .dt-orb { animation: none; }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.dt-hero {
  position: relative;
  z-index: 1;
  padding:50px;
}
.dt-hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .dt-hero { padding: 140px 0 64px; }
  .dt-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.dt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(195, 224, 212, 0.12);
  border: 1px solid rgba(195, 224, 212, 0.25);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  color: #c3e0d4;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.dt-hero-eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: dtBadgeShimmer 4.5s ease-in-out infinite 1.8s;
  pointer-events: none;
}
@keyframes dtBadgeShimmer {
  0%   { left: -100%; }
  100% { left: 210%; }
}

.dt-hero-h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  color: rgba(253, 249, 244, 0.95);
  margin-bottom: 22px;
}

.dt-hero-answer {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(253, 249, 244, 0.70);
  max-width: 560px;
  margin-bottom: 28px;
}
.dt-hero-answer strong { color: rgba(253, 249, 244, 0.92); font-weight: 500; }
.dt-takeaways-section .container{max-width: 1200px;}
.dt-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.dt-hero-pill {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(200, 191, 231, 0.08);
  border: 1px solid rgba(200, 191, 231, 0.20);
  color: rgba(253, 249, 244, 0.80);
}

.dt-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.dt-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dt-trust-chip {
  font-size: 12px;
  color: rgba(253, 249, 244, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(253, 249, 244, 0.14);
}

/* ── Page meta line (freshness + E-E-A-T) ─────────────────────── */
body.page-features-diapers .dt-page-meta {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 12px;
  color: rgba(253, 249, 244, 0.40);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dt-page-meta-sep { color: rgba(253, 249, 244, 0.18); }

/* ── Hero phone mockup ────────────────────────────────────────── */
.dt-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.dt-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 40%, rgba(139,124,186,0.30), transparent 65%);
  filter: blur(30px);
  z-index: 0;
  animation: dtGlowPulse 8s ease-in-out infinite;
}
@keyframes dtGlowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.dt-phone-frame {
  position: relative;
  z-index: 2;
  width: 320px;
  min-height: 660px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(30, 24, 40, 0.92), rgba(20, 16, 28, 0.96));
  border: 1.5px solid rgba(200, 191, 231, 0.20);
  border-radius: 36px;
  padding: 22px 20px 26px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  animation: dtPhoneFloat 7s ease-in-out infinite;
}
@media (max-width: 640px) {
      .dt-hero {
        padding: 50px 0 64px;
    }
  .dt-phone-frame { min-height: 0; }
}
@keyframes dtPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.dt-phone-island {
  display: block;
  width: 90px;
  height: 22px;
  background: #0d0a12;
  border-radius: 14px;
  margin: 0 auto 16px;
}
.dt-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(253, 249, 244, 0.85);
  margin-bottom: 14px;
}
.dt-phone-header-age {
  font-size: 10px;
  color: rgba(200, 191, 231, 0.45);
}

.dt-quicklog-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mint, #c3e0d4);
  background: rgba(195, 224, 212, 0.08);
  border: 1px solid rgba(195, 224, 212, 0.22);
  border-radius: 12px;
  padding: 9px 12px;
  margin-bottom: 16px;
}
.dt-quicklog-banner-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint, #c3e0d4);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(195, 224, 212, 0.7);
}

.dt-quicklog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.dt-phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 12px 4px;
  border-top: 1px solid rgba(200, 191, 231, 0.10);
  border-bottom: 1px solid rgba(200, 191, 231, 0.10);
}
.dt-phone-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.dt-phone-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1;
  color: #fdf9f4;
}
.dt-phone-stat-label {
  font-size: 10px;
  color: rgba(253, 249, 244, 0.45);
}

.dt-log-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(200, 191, 231, 0.40);
  margin-bottom: 8px;
}

.dt-phone-footer {
  margin-top: auto;
  padding-top: 16px;
  text-align: center;
  font-size: 11px;
  color: #c3e0d4;
  border-top: 1px solid rgba(200, 191, 231, 0.10);
}
.dt-quicklog-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  padding: 12px 4px;
  border-radius: 14px;
  border: 1px solid rgba(200, 191, 231, 0.18);
  background: rgba(255, 255, 255, 0.03);
  cursor: default;
}
.dt-quicklog-btn span { font-size: 11px; color: rgba(253, 249, 244, 0.65); }
.dt-ql-wet { border-color: rgba(139, 124, 186, 0.35); }
.dt-ql-dirty { border-color: rgba(203, 161, 90, 0.35); }
.dt-ql-both { border-color: rgba(195, 224, 212, 0.35); }

.dt-log-list { display: flex; flex-direction: column; gap: 8px; }
.dt-log-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.dt-log-item.dt-log-visible { opacity: 1; transform: translateX(0); }
.dt-log-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dt-log-wet { background: #8b7cba; }
.dt-log-dirty { background: var(--dt-gold); }
.dt-log-both { background: var(--mint, #c3e0d4); }
.dt-log-type { flex: 1; color: rgba(253, 249, 244, 0.80); }
.dt-log-time { color: rgba(253, 249, 244, 0.40); }

.dt-float-card {
  position: absolute;
  z-index: 3;
  background: rgba(28, 22, 36, 0.92);
  border: 1px solid rgba(200, 191, 231, 0.22);
  border-radius: 16px;
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: dtFloatBob 6s ease-in-out infinite;
}
.dt-float-a { top: -14px; right: -10px; animation-delay: 0.3s; }
.dt-float-b { bottom: 10px; left: -24px; animation-delay: 1.1s; }
@keyframes dtFloatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.dt-float-top { font-size: 12px; color: var(--mint, #c3e0d4); margin-bottom: 2px; }
.dt-float-mid { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: rgba(253, 249, 244, 0.9); }
.dt-float-sub { font-size: 10px; color: rgba(253, 249, 244, 0.45); margin-top: 2px; }

@media (max-width: 640px) {
  .dt-float-card { display: none; }
}

/* ── Key takeaways + jump links (TL;DR / AEO block) ───────────── */
.dt-takeaways-section {
  position: relative;
  z-index: 1;
  padding: 8px 0 44px;
}
.dt-takeaways {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(200, 191, 231, 0.18);
  border-radius: var(--radius-card, 20px);
  padding: 26px 28px;
  margin-bottom: 20px;
}
.dt-takeaways-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #c3e0d4;
  margin-bottom: 14px;
}
.dt-takeaways-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
@media (max-width: 760px) {
  .dt-takeaways-list { grid-template-columns: 1fr; }
}
.dt-takeaways-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(253, 249, 244, 0.72);
  padding-left: 20px;
  position: relative;
}
.dt-takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dt-gold);
  font-weight: 700;
}
.dt-takeaways-list strong { color: rgba(253, 249, 244, 0.92); font-weight: 500; }

.dt-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.dt-toc-label {
  font-size: 12px;
  color: rgba(253, 249, 244, 0.40);
  margin-right: 4px;
}
.dt-toc a {
  font-size: 12.5px;
  color: rgba(200, 191, 231, 0.75);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 191, 231, 0.18);
  background: rgba(139, 124, 186, 0.06);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  scroll-behavior: smooth;
}
.dt-toc a:hover {
  color: #fdf9f4;
  border-color: rgba(200, 191, 231, 0.40);
  background: rgba(139, 124, 186, 0.16);
}

/* ── Social proof strip ──────────────────────────────────────── */
.dt-proof { position: relative; z-index: 1; padding: 40px 0; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(200,191,231,0.10); border-bottom: 1px solid rgba(200,191,231,0.10); }
.dt-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) {
  .dt-proof-strip { grid-template-columns: repeat(2, 1fr); }
}
.dt-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--dt-gold);
  margin-bottom: 4px;
}
.dt-proof-label { font-size: 12px; color: rgba(253, 249, 244, 0.50); }

/* ── Section labels / lede text ──────────────────────────────── */
body.page-features-diapers .dt-lede {
  font-size: 16px;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 32px;
  color: #000;
}
body.page-features-diapers .dt-body-text {
  color: #3d3250;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 580px;
}
.dt-body-text-dark { color: rgba(253, 249, 244, 0.65) !important; }

/* ── Two-column layout ───────────────────────────────────────── */
.dt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .dt-two-col { grid-template-columns: 1fr; gap: 40px; }
}
.section-label-lav, .section-label-sage {color:#fff; font-size:16px; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:8px;}

/* ── Stat callout ─────────────────────────────────────────────── */
.dt-stat-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(240, 201, 184, 0.12);
  border: 1px solid rgba(240, 201, 184, 0.30);
  border-radius: var(--radius-card, 20px);
  padding: 18px 22px;
  margin-top: 8px;
}
.dt-stat-callout-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--dt-gold-deep);
  flex-shrink: 0;
}
.dt-stat-callout-text {
  font-size: 14px;
  line-height: 1.6;
}
#feeding-type p{
  color:#fff;
}

.dt-quote-card {
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 32px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.dt-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: #3d3250;
  line-height: 1.5;
  margin-bottom: 16px;
}
.dt-quote-source { font-size: 12px; color: #3d3250; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── How it works — feature cards ────────────────────────────── */
.dt-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .dt-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dt-card-grid { grid-template-columns: 1fr; }
}
.dt-feature-card {
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.dt-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft, 0 8px 40px rgba(140,120,180,0.10));
}
.dt-feature-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--lav-deep, #8b7cba);
  margin-bottom: 4px;
}
.dt-feature-card-label {
  font-size: 14px;
  font-weight: 500;
  color: #3d3250;
  margin-bottom: 10px;
}
.dt-feature-card-desc {
  font-size: 13px;
  color: #3d3250;
  line-height: 1.6;
}

/* ── Age count table ──────────────────────────────────────────── */
.dt-age-table-wrap {
  overflow-x: auto;
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 8px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.dt-age-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 14px;
}
.dt-age-table caption {
  text-align: left;
  font-size: 12px;
  color: #3d3250;
  padding: 12px 16px 6px;
}
.dt-age-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #3d3250;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(139, 124, 186, 0.18);
}
.dt-age-table td {
  padding: 14px 16px;
  color: #3d3250;
  border-bottom: 1px solid rgba(139, 124, 186, 0.10);
  line-height: 1.5;
}
.dt-age-cell { font-weight: 500; color: var(--text-dark, #2a2230); white-space: nowrap; }
.dt-age-current { background: rgba(203, 161, 90, 0.10); }
.dt-age-current td { border-bottom-color: rgba(203, 161, 90, 0.30); }
.dt-age-current .dt-age-cell { color: var(--dt-gold-deep); }

/* ── Breastfed vs formula cards ──────────────────────────────── */
.dt-feed-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .dt-feed-compare { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dt-feed-compare { grid-template-columns: 1fr; }
}
.dt-feed-card {
  border-radius: var(--radius-card, 20px);
  padding: 24px 20px;
  border: 1.5px solid;
}
.dt-feed-bf { background: rgba(139, 124, 186, 0.08); border-color: rgba(139, 124, 186, 0.25); }
.dt-feed-ff { background: rgba(240, 201, 184, 0.10); border-color: rgba(240, 201, 184, 0.30); }
.dt-feed-combo { background: rgba(195, 224, 212, 0.10); border-color: rgba(195, 224, 212, 0.28); }
.dt-feed-solids { background: rgba(203, 161, 90, 0.10); border-color: rgba(203, 161, 90, 0.28); }
.dt-feed-icon { font-size: 26px; margin-bottom: 10px; }
.dt-feed-title { font-family: 'Cormorant Garamond', serif; font-size: 20px;  margin-bottom: 12px; }
.dt-feed-list { list-style: none; padding: 0; margin: 0; }
.dt-feed-list li {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.dt-feed-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3d3250;
}

/* ── Medical disclaimer ──────────────────────────────────────── */
.dt-medical-disclaimer {
  font-size: 13px;
  color: #3d3250;
  font-style: italic;
  max-width: 640px;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid rgba(232, 169, 138, 0.5);
}
.dt-final-disclaimer {
  font-size: 12px;
  color: rgba(253, 249, 244, 0.35);
  max-width: 560px;
  margin: 20px auto 0;
}

/* ── Red-flag grid (calm coral, never harsh red) ─────────────── */
.dt-redflag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .dt-redflag-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dt-redflag-grid { grid-template-columns: 1fr; }
}
.dt-redflag-card {
  background: rgba(232, 169, 138, 0.10);
  border: 1.5px solid rgba(232, 169, 138, 0.30);
  border-radius: var(--radius-card, 20px);
  padding: 22px 20px;
  transition: box-shadow 0.3s ease;
}
.dt-redflag-card:hover {
  box-shadow: 0 8px 32px rgba(232, 169, 138, 0.22);
}
.dt-redflag-icon { font-size: 22px; margin-bottom: 8px; }
.dt-redflag-title { font-size: 14px; font-weight: 500; color: var(--text-dark, #2a2230); margin-bottom: 6px; }
.dt-redflag-desc { font-size: 13px; color: #3d3250; line-height: 1.6; }

/* ── Mid-page CTA (3rd conversion placement) ──────────────────── */
.dt-mid-cta {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(203, 161, 90, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.dt-mid-cta-trust {
  font-size: 13px;
  color: rgba(253, 249, 244, 0.45);
}

/* ── AI insight section (gold, premium/intelligent) ──────────── */
.dt-ai-section { background: var(--ink); position: relative; z-index: 1; }
.dt-ai-panel {
  background: linear-gradient(160deg, rgba(203,161,90,0.14), rgba(28,22,36,0.92));
  border: 1.5px solid rgba(203, 161, 90, 0.30);
  border-radius: var(--radius-card, 20px);
  padding: 32px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.dt-ai-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.dt-ai-flow-icon { font-size: 22px; }
.dt-ai-flow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dt-gold);
  opacity: 0.5;
  animation: dtFlowPulse 1.8s ease-in-out infinite;
}
.dt-ai-flow-dot:nth-child(3) { animation-delay: 0.2s; }
.dt-ai-flow-dot:nth-child(4) { animation-delay: 0.4s; }
@keyframes dtFlowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.dt-ai-insight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(203, 161, 90, 0.22);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.dt-ai-insight-card:last-child { margin-bottom: 0; }
.dt-ai-insight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dt-gold);
  margin-bottom: 6px;
}
.dt-ai-insight-text {
  font-size: 14px;
  color: rgba(253, 249, 244, 0.80);
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.dt-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .dt-testimonial-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
  }
  .dt-testimonial-card { scroll-snap-align: center; }
}
.dt-testimonial-card {
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 26px 24px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: transform 0.3s ease;
}
.dt-testimonial-card:hover { transform: translateY(-4px); }
.dt-test-stars { color: var(--dt-gold); font-size: 14px; margin-bottom: 12px; }
.dt-test-quote { font-size: 14px; color: #3d3250; line-height: 1.7; margin-bottom: 16px; }
.dt-test-author { font-size: 13px; font-weight: 500; color: var(--text-dark, #2a2230); margin-bottom: 8px; }
.dt-test-tag {
  display: inline-block;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(139, 124, 186, 0.10);
  color: var(--lav-deep, #8b7cba);
}

/* ── Inline contextual links (within body paragraphs) ─────────── */
.dt-inline-link {
  color: var(--lav-deep, #8b7cba);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 124, 186, 0.35);
  transition: border-color 0.25s ease;
}
.dt-inline-link:hover { border-bottom-color: rgba(139, 124, 186, 0.8); }

.dt-table-note {
  margin-top: 18px;
  font-size: 13px;
  color: #3d3250;
}

/* ── Internal links line ─────────────────────────────────────── */
.dt-internal-links {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.9;
  max-width: 760px;
}
.dt-internal-links a { color: var(--lav-deep, #8b7cba); text-decoration: none; border-bottom: 1px solid rgba(139,124,186,0.35); }
.dt-internal-links a:hover { border-bottom-color: rgba(139,124,186,0.8); }

/* ── FAQ (glass card, lavender accent — overrides lunara.css's
   default open/close mechanism, which keys off .faq-item.open;
   this page's accordion JS toggles .open on .faq-a directly) ──── */
.faq-disclaimer {
  border-left: 3px solid rgba(139, 124, 186, 0.55);
  background: rgba(139, 124, 186, 0.08);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass-bg, rgba(255, 255, 255, 0.55));
  border: 1.5px solid var(--glass-border, rgba(255, 255, 255, 0.75));
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-soft, 0 8px 40px rgba(140, 120, 180, 0.10));
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark, #2a2230);
  background: transparent;
  border: none;
  text-align: left;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s ease;
}
.faq-q:hover { background: rgba(139, 124, 186, 0.06); }
.faq-icon {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 500px; }
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  color: #3d3250;
  line-height: 1.75;
}

/* ── Final CTA ────────────────────────────────────────────────── */
.dt-final-cta {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(160deg, #1c1624, #110e1a);
}
.dt-cta-h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: rgba(253, 249, 244, 0.95);
  margin: 16px auto 18px;
  max-width: 640px;
}
.dt-cta-sub {
  font-size: 16px;
  color: rgba(253, 249, 244, 0.60);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.dt-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.dt-badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.dt-badge {
  font-size: 13px;
  color: rgba(253, 249, 244, 0.75);
  border: 1px solid rgba(253, 249, 244, 0.20);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.dt-badge:hover {
  border-color: rgba(203, 161, 90, 0.55);
  color: var(--dt-gold);
}
