/* ===========================================================
   Divorce Risk Landing Page
   Namespace: .dr-*
   Built on top of layouts/site.ejs (Vazirmatn + tailwind tokens)
   =========================================================== */

html:has(.dr-page),
body:has(.dr-page) {
  overflow-x: hidden;
  scroll-behavior: auto;
}

.dr-page {
  --dr-bg: #0a0b1e;
  --dr-bg-2: #14122e;
  --dr-bg-3: #1d1845;
  --dr-bg-soft: #f4f1ec;
  --dr-ink: #0f1027;
  --dr-ink-soft: #2a2740;
  --dr-muted: #5a5970;
  --dr-line: rgba(255, 255, 255, 0.08);
  --dr-line-light: rgba(15, 16, 39, 0.08);
  --dr-glass: rgba(255, 255, 255, 0.04);
  --dr-glass-strong: rgba(255, 255, 255, 0.08);
  --dr-glass-light: rgba(255, 255, 255, 0.92);
  --dr-gold: #d4af6f;
  --dr-gold-dark: #a88142;
  --dr-gold-soft: rgba(212, 175, 111, 0.18);
  --dr-purple: #6b4cff;
  --dr-purple-soft: rgba(107, 76, 255, 0.18);
  --dr-rose: #f43f5e;
  --dr-rose-soft: rgba(244, 63, 94, 0.15);
  --dr-success: #16a34a;
  --dr-radius-sm: 12px;
  --dr-radius: 20px;
  --dr-radius-lg: 28px;
  --dr-shadow-sm: 0 6px 20px -8px rgba(8, 8, 30, 0.45);
  --dr-shadow: 0 24px 60px -20px rgba(8, 8, 30, 0.55);
  --dr-shadow-gold: 0 18px 50px -16px rgba(212, 175, 111, 0.55);
  color: var(--dr-ink);
  background: var(--dr-bg-soft);
}

.dr-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

@media (max-width: 720px) {
  .dr-container { padding: 0 18px; }
}

.dr-section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 720px) {
  .dr-section { padding: 64px 0; }
}

/* ---------- Reveal animation ---------- */
.dr-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.dr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section heads ---------- */
.dr-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.dr-section-head.dr-section-head--start { text-align: start; margin-inline-start: 0; }

.dr-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--dr-purple);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--dr-purple-soft);
  text-transform: none;
}
.dr-eyebrow--gold {
  color: var(--dr-gold);
  background: var(--dr-gold-soft);
}

.dr-section-title {
  font-size: clamp(1.6rem, 2.4vw + 1rem, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dr-ink);
  margin: 0 0 16px;
  line-height: 1.3;
}
.dr-section-title--light { color: #fff; }

.dr-section-sub {
  font-size: clamp(0.95rem, 0.7vw + 0.8rem, 1.1rem);
  line-height: 1.85;
  color: var(--dr-muted);
  margin: 0 auto;
  max-width: 720px;
}
.dr-section-sub--light { color: rgba(255, 255, 255, 0.7); }

/* ---------- Buttons ---------- */
.dr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
  white-space: nowrap;
}
.dr-btn:hover { transform: translateY(-2px); }
.dr-btn:active { transform: translateY(0); }

.dr-btn--gold {
  background: linear-gradient(135deg, #e8c98a, var(--dr-gold) 50%, var(--dr-gold-dark));
  color: #1a1308;
  box-shadow: var(--dr-shadow-gold);
  animation: drPulseGold 2.6s ease-in-out infinite;
}
.dr-btn--gold:hover {
  box-shadow: 0 24px 60px -14px rgba(212, 175, 111, 0.75);
}
.dr-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dr-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}
.dr-btn--solid {
  background: var(--dr-ink);
  color: #fff;
}
.dr-btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.dr-btn--xl { padding: 18px 38px; font-size: 1.08rem; }
.dr-btn--full { width: 100%; }
.dr-btn-icon { width: 18px; height: 18px; transform: scaleX(-1); }

@keyframes drPulseGold {
  0%, 100% { box-shadow: 0 18px 50px -16px rgba(212, 175, 111, 0.55), 0 0 0 0 rgba(212, 175, 111, 0.45); }
  50%      { box-shadow: 0 22px 56px -16px rgba(212, 175, 111, 0.75), 0 0 0 12px rgba(212, 175, 111, 0); }
}

/* ===========================================================
   HERO
   =========================================================== */

.dr-hero {
  position: relative;
  padding: 160px 0 110px;
  background: radial-gradient(120% 80% at 50% 0%, #1a1745 0%, var(--dr-bg) 55%, #050518 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.dr-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.dr-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drAurora 18s ease-in-out infinite;
}
.dr-aurora--1 { top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, #6b4cff 0%, transparent 70%); }
.dr-aurora--2 { bottom: -160px; left: -100px; width: 540px; height: 540px; background: radial-gradient(circle, #d4af6f 0%, transparent 65%); animation-delay: -6s; }
.dr-aurora--3 { top: 40%; left: 50%; width: 380px; height: 380px; transform: translate(-50%, -50%); background: radial-gradient(circle, #f43f5e 0%, transparent 70%); opacity: 0.35; animation-delay: -12s; }

@keyframes drAurora {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.dr-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

.dr-particles {
  position: absolute;
  inset: 0;
}
.dr-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  animation: drFloat var(--dr-d, 14s) ease-in-out infinite;
  animation-delay: var(--dr-delay, 0s);
}
@keyframes drFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50%      { transform: translate(var(--dr-x, 30px), var(--dr-y, -40px)); opacity: 1; }
}

.dr-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .dr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.dr-hero-text { display: flex; flex-direction: column; gap: 20px; }

.dr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  align-self: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dr-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dr-gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 111, 0.7);
  animation: drDotPulse 2s ease-out infinite;
}
@keyframes drDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 111, 0.7); }
  100% { box-shadow: 0 0 0 14px rgba(212, 175, 111, 0); }
}

.dr-hero-title {
  font-size: clamp(2rem, 3.4vw + 1rem, 3.6rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
}
.dr-hero-line-pre {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}
.dr-hero-accent {
  display: block;
  background: linear-gradient(120deg, #f4d49a 0%, var(--dr-gold) 45%, #f43f5e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 0.15em;
}

.dr-hero-sub {
  font-size: clamp(0.98rem, 0.6vw + 0.85rem, 1.15rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.78);
  margin: 8px 0 0;
  max-width: 580px;
}

.dr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.dr-hero-trust {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 6px 0 0;
}

.dr-hero-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(220, 252, 231, 0.95);
  align-self: flex-start;
}
.dr-hero-live strong {
  color: var(--dr-success);
  font-weight: 800;
}
.dr-hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dr-success);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  animation: drDotPulseGreen 1.6s ease-out infinite;
}
@keyframes drDotPulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
}

.dr-hero-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dr-heartbeat {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dr-radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(107, 76, 255, 0.4);
}
.dr-heartbeat svg { width: 100%; height: auto; display: block; }
.dr-heartbeat-trail {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drBeatTrail 2.4s linear infinite;
}
.dr-heartbeat-pulse {
  transform-origin: 140px 100px;
  animation: drBeatPulse 1.2s ease-in-out infinite;
}
@keyframes drBeatTrail {
  to { stroke-dashoffset: 0; }
}
@keyframes drBeatPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: 0.4; }
}
.dr-hero-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: -1;
}
.dr-hero-rings span {
  position: absolute;
  width: 280px; height: 280px;
  border: 1px solid rgba(212, 175, 111, 0.18);
  border-radius: 50%;
  animation: drRing 5s ease-out infinite;
}
.dr-hero-rings span:nth-child(2) { animation-delay: -1.6s; }
.dr-hero-rings span:nth-child(3) { animation-delay: -3.2s; }
@keyframes drRing {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===========================================================
   PAIN MIRROR
   =========================================================== */

.dr-section--mirror {
  background: linear-gradient(180deg, #0a0b1e 0%, #0f1030 100%);
  color: #fff;
}
.dr-section--mirror .dr-section-title { color: #fff; }
.dr-section--mirror .dr-eyebrow {
  background: rgba(244, 63, 94, 0.16);
  color: #fda4af;
}

.dr-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .dr-pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dr-pain-grid { grid-template-columns: 1fr; } }

.dr-pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dr-radius);
  padding: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.dr-pain-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.dr-pain-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}
.dr-pain-card:hover::before { opacity: 1; }

.dr-pain-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(244, 63, 94, 0.12);
  color: #fda4af;
  border-radius: 14px;
}
.dr-pain-icon svg { width: 22px; height: 22px; }
.dr-pain-text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.dr-pain-punch {
  text-align: center;
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.4rem);
  font-weight: 800;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(107, 76, 255, 0.12));
  border: 1px solid rgba(244, 63, 94, 0.25);
  border-radius: var(--dr-radius);
}

/* ===========================================================
   STAKES (counter stats)
   =========================================================== */

.dr-section--stakes {
  background: radial-gradient(60% 80% at 50% 30%, #1d1845 0%, #0a0b1e 75%);
  color: #fff;
}

.dr-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 44px;
}
@media (max-width: 720px) { .dr-stats-grid { grid-template-columns: 1fr; } }

.dr-stat {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dr-radius);
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.dr-stat-value {
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--dr-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.dr-stat-suffix {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--dr-gold);
  -webkit-text-fill-color: var(--dr-gold);
}
.dr-stat-label {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

.dr-stakes-para {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================================================
   INFORMATION GAP
   =========================================================== */

.dr-section--gap { background: var(--dr-bg-soft); }

.dr-gap-dots {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 6px;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--dr-line-light);
  border-radius: var(--dr-radius);
  box-shadow: var(--dr-shadow-sm);
}
.dr-gap-dots span {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(107, 76, 255, 0.1);
  transform: scale(0.4);
  opacity: 0.35;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}
.dr-gap-dots.is-lit span {
  transform: scale(1);
  opacity: 1;
  background: linear-gradient(135deg, var(--dr-purple), var(--dr-gold));
}
@media (max-width: 720px) {
  .dr-gap-dots { grid-template-columns: repeat(14, 1fr); gap: 5px; padding: 18px; }
}

.dr-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .dr-domains-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dr-domains-grid { grid-template-columns: 1fr; } }

.dr-domain-card {
  background: #fff;
  border: 1px solid var(--dr-line-light);
  border-radius: var(--dr-radius);
  padding: 24px;
  box-shadow: var(--dr-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dr-domain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dr-shadow);
}
.dr-domain-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.dr-domain-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dr-ink);
  margin: 0;
}
.dr-domain-weight {
  font-size: 0.74rem;
  color: var(--dr-muted);
  background: rgba(107, 76, 255, 0.06);
  padding: 4px 10px;
  border-radius: 999px;
}
.dr-domain-weight strong { color: var(--dr-purple); font-weight: 800; }

.dr-domain-bar {
  height: 6px;
  background: rgba(107, 76, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}
.dr-domain-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--dr-purple), var(--dr-gold));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  animation: drFillBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--dr-domain-delay, 0s);
}
@keyframes drFillBar { to { transform: scaleX(1); } }

.dr-domain-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--dr-muted);
  margin: 0;
}

.dr-gap-closer {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
  color: var(--dr-ink-soft);
  padding: 18px 24px;
  border-radius: var(--dr-radius);
  background: linear-gradient(135deg, rgba(212, 175, 111, 0.1), rgba(107, 76, 255, 0.08));
  border: 1px dashed rgba(212, 175, 111, 0.4);
}

/* ===========================================================
   REPORT PREVIEW
   =========================================================== */

.dr-section--preview {
  background: linear-gradient(180deg, #0a0b1e 0%, #14122e 100%);
  color: #fff;
  padding: 110px 0;
}

.dr-preview-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .dr-preview-pillars { grid-template-columns: 1fr; } }

.dr-preview-pillar {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dr-radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.dr-preview-num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--dr-gold-soft);
  color: var(--dr-gold);
  font-weight: 900;
  font-size: 1.1rem;
}
.dr-preview-pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}
.dr-preview-pillar-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.dr-preview-cta {
  margin-top: 36px;
  text-align: center;
}

/* ===========================================================
   COMPARE TABLE
   =========================================================== */

.dr-section--compare { background: var(--dr-bg-soft); }

@media (max-width: 720px) {
  .dr-section--compare,
  .dr-section--method {
    display: none !important;
  }
}

.dr-table-wrap {
  overflow-x: auto;
  border-radius: var(--dr-radius-lg);
  background: #fff;
  box-shadow: var(--dr-shadow);
  border: 1px solid var(--dr-line-light);
}
.dr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.dr-table th, .dr-table td {
  padding: 18px 16px;
  text-align: center;
  font-size: 0.92rem;
}
.dr-table th {
  background: #f7f5f0;
  color: var(--dr-ink);
  font-weight: 800;
  border-bottom: 1px solid var(--dr-line-light);
}
.dr-table-th--hero {
  background: linear-gradient(135deg, var(--dr-ink), #1d1845) !important;
  color: #fff !important;
  position: relative;
}
.dr-table-th--hero::after {
  content: '';
  position: absolute;
  inset-inline-end: 8px;
  top: 8px;
  width: 8px; height: 8px;
  background: var(--dr-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 175, 111, 0.6);
  animation: drDotPulse 2s ease-out infinite;
}
.dr-table tr:not(:last-child) td { border-bottom: 1px solid var(--dr-line-light); }
.dr-table-feature {
  text-align: start !important;
  font-weight: 700;
  color: var(--dr-ink);
  background: #fafaf7;
}
.dr-table-td--hero {
  background: rgba(212, 175, 111, 0.06);
  font-weight: 700;
}
.dr-check {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
}
.dr-check svg { width: 16px; height: 16px; }
.dr-check--on { background: var(--dr-success); color: #fff; }
.dr-check--off { background: rgba(0,0,0,0.06); color: var(--dr-muted); }
.dr-check--no { background: rgba(244, 63, 94, 0.1); color: var(--dr-rose); }
.dr-table-val { font-weight: 700; color: var(--dr-muted); }
.dr-table-val--hero { color: var(--dr-gold-dark); font-size: 1rem; }

@media (max-width: 720px) {
  .dr-table-wrap {
    overflow-x: visible;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .dr-table {
    min-width: 0;
    display: block;
  }

  .dr-table thead {
    display: none;
  }

  .dr-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .dr-table tbody tr {
    display: block;
    background: #fff;
    border-radius: var(--dr-radius-sm);
    border: 1px solid var(--dr-line-light);
    box-shadow: var(--dr-shadow-sm);
    overflow: hidden;
  }

  .dr-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    text-align: start;
    border-bottom: 1px solid var(--dr-line-light);
  }

  .dr-table tbody td:last-child {
    border-bottom: none;
  }

  .dr-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--dr-muted);
    flex-shrink: 0;
    max-width: 45%;
    line-height: 1.5;
    text-align: start;
  }

  .dr-table-feature {
    background: #f7f5f0;
    font-size: 0.95rem;
    font-weight: 800;
    justify-content: center;
    text-align: center !important;
  }

  .dr-table-feature::before {
    display: none;
  }

  .dr-table-td--hero {
    background: rgba(212, 175, 111, 0.1);
  }

  .dr-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--dr-line-light);
  }
}

/* ===========================================================
   METHODOLOGY
   =========================================================== */

.dr-section--method { background: #fff; }

.dr-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .dr-method-grid { grid-template-columns: 1fr; } }

.dr-method-card {
  padding: 28px;
  border-radius: var(--dr-radius);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--dr-line-light);
  box-shadow: var(--dr-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dr-method-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--dr-gold-soft), transparent 70%);
  opacity: 0.6;
}
.dr-method-card:hover { transform: translateY(-4px); box-shadow: var(--dr-shadow); }

.dr-method-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--dr-purple-soft);
  color: var(--dr-purple);
  margin-bottom: 14px;
}
.dr-method-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--dr-ink);
}
.dr-method-text {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--dr-muted);
  margin: 0;
}

.dr-method-signature {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--dr-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.dr-method-signature svg { width: 18px; height: 18px; color: var(--dr-gold); }

/* ===========================================================
   STEPS
   =========================================================== */

.dr-section--steps { background: var(--dr-bg-soft); }

.dr-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 900px) { .dr-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dr-steps { grid-template-columns: 1fr; } }

.dr-step {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--dr-line-light);
  border-radius: var(--dr-radius);
  box-shadow: var(--dr-shadow-sm);
  transition: transform 0.3s ease;
}
.dr-step:hover { transform: translateY(-4px); }

.dr-step-line {
  position: absolute;
  top: 38px;
  inset-inline-end: -10px;
  width: 20px; height: 2px;
  background: linear-gradient(to left, var(--dr-gold), transparent);
}
.dr-steps li:last-child .dr-step-line { display: none; }
@media (max-width: 900px) { .dr-step-line { display: none; } }

.dr-step-num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dr-purple), var(--dr-gold));
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px -10px rgba(107, 76, 255, 0.5);
}
.dr-step-title {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--dr-ink);
}
.dr-step-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--dr-muted);
  margin: 0 0 12px;
}
.dr-step-duration {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--dr-gold-soft);
  color: var(--dr-gold-dark);
}

/* ===========================================================
   PRICING
   =========================================================== */

.dr-section--pricing {
  background: radial-gradient(60% 80% at 50% 0%, #1d1845 0%, #0a0b1e 70%);
  color: #fff;
}

.dr-paymode-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 540px;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--dr-purple-soft), var(--dr-gold-soft));
  border: 1px dashed rgba(212, 175, 111, 0.35);
  border-radius: var(--dr-radius-sm);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dr-paymode-switch:hover,
.dr-paymode-switch:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 111, 0.6);
  box-shadow: 0 6px 22px rgba(107, 76, 255, 0.18);
}
.dr-paymode-switch-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  background: var(--dr-purple-soft);
  color: var(--dr-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dr-paymode-switch-icon svg { width: 1.25rem; height: 1.25rem; }
.dr-paymode-switch-body {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.dr-paymode-switch-body strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #fff;
}
.dr-paymode-switch-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--dr-purple);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.dr-paymode-switch-cta svg { width: 0.9rem; height: 0.9rem; }
@media (max-width: 640px) {
  .dr-paymode-switch {
    flex-direction: column;
    align-items: stretch;
    text-align: start;
  }
  .dr-paymode-switch-cta {
    align-self: flex-start;
  }
}

.dr-price-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 111, 0.4);
  border-radius: var(--dr-radius-lg);
  text-align: center;
  position: relative;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px -30px rgba(212, 175, 111, 0.4);
}
.dr-price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f4d49a, var(--dr-gold), var(--dr-gold-dark));
  color: #1a1308;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: var(--dr-shadow-gold);
}

.dr-price-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 8px 0 6px;
  color: #fff;
}
.dr-price-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

.dr-price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.dr-price-currency-pre {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dr-gold);
}
.dr-price-value {
  font-size: clamp(2.6rem, 2vw + 2rem, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.dr-price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.dr-price-anchor {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
}
.dr-price-anchor strong {
  color: var(--dr-gold);
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: rgba(212, 175, 111, 0.6);
}

.dr-price-features {
  list-style: none;
  padding: 24px 0;
  margin: 0 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: start;
}
.dr-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.dr-price-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  margin-top: 2px;
}
.dr-price-check svg { width: 12px; height: 12px; }

.dr-pay-switch {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.dr-pay-switch:hover { color: var(--dr-gold); }

.dr-price-microcopy {
  margin: 24px 0 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */

.dr-section--testimonials { background: #fff; }

.dr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .dr-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .dr-testimonials-grid { grid-template-columns: 1fr; } }

.dr-testimonial {
  padding: 26px;
  background: linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid var(--dr-line-light);
  border-radius: var(--dr-radius);
  box-shadow: var(--dr-shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dr-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--dr-shadow);
}

.dr-testimonial-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.08), rgba(22, 163, 74, 0.08));
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  align-self: flex-start;
}
.dr-testimonial-badge svg { width: 14px; height: 14px; color: var(--dr-muted); transform: scaleX(-1); }
.dr-testimonial-badge-from { color: var(--dr-rose); }
.dr-testimonial-badge-to { color: var(--dr-success); }

.dr-testimonial-quote {
  width: 24px; height: 24px;
  color: var(--dr-gold);
  opacity: 0.4;
}
.dr-testimonial-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--dr-ink);
  margin: 0;
}
.dr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--dr-line-light);
}
.dr-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.dr-testimonial-name {
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0;
  color: var(--dr-ink);
}
.dr-testimonial-role {
  font-size: 0.78rem;
  color: var(--dr-muted);
  margin: 0;
}

/* ===========================================================
   FAQ
   =========================================================== */

.dr-section--faq { background: var(--dr-bg-soft); }

.dr-faq-wrap { max-width: 820px; margin: 0 auto; }
.dr-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dr-faq-item {
  background: #fff;
  border: 1px solid var(--dr-line-light);
  border-radius: var(--dr-radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.dr-faq-item[open] {
  box-shadow: var(--dr-shadow-sm);
  border-color: var(--dr-gold-soft);
}
.dr-faq-summary {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.dr-faq-summary::-webkit-details-marker { display: none; }
.dr-faq-q {
  font-weight: 700;
  color: var(--dr-ink);
  font-size: 0.98rem;
  line-height: 1.7;
}
.dr-faq-chevron {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--dr-gold-soft);
  color: var(--dr-gold-dark);
  transition: transform 0.25s ease;
}
.dr-faq-chevron svg { width: 16px; height: 16px; }
.dr-faq-item[open] .dr-faq-chevron { transform: rotate(180deg); }
.dr-faq-a {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.95;
  color: var(--dr-muted);
}

/* ===========================================================
   FINAL CTA
   =========================================================== */

.dr-final-cta {
  background: radial-gradient(80% 100% at 50% 0%, #1d1845 0%, #050518 80%);
  color: #fff;
  padding: 110px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dr-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dr-final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 111, 0.25) 0%, transparent 60%);
  filter: blur(40px);
  animation: drFinalPulse 4s ease-in-out infinite;
}
@keyframes drFinalPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.dr-final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.dr-hourglass { width: 80px; height: 100px; margin: 0 auto 6px; }
.dr-hourglass svg { width: 100%; height: 100%; }
.dr-hourglass-sand-top { animation: drSandTop 8s ease-in-out infinite; transform-origin: center top; }
.dr-hourglass-sand-bot { animation: drSandBot 8s ease-in-out infinite; transform-origin: center bottom; }
@keyframes drSandTop {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%      { transform: scaleY(0.3); opacity: 0.5; }
}
@keyframes drSandBot {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%      { transform: scaleY(1); opacity: 0.7; }
}

.dr-final-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--dr-gold);
  margin: 0;
  text-transform: uppercase;
}
.dr-final-title {
  font-size: clamp(1.8rem, 2.6vw + 1rem, 3rem);
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
  color: #fff;
  letter-spacing: -0.02em;
}
.dr-final-sub {
  font-size: clamp(0.98rem, 0.5vw + 0.85rem, 1.12rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 600px;
}

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */

.dr-sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: none;
}
.dr-sticky-link {
  display: block;
  text-align: center;
  padding: 16px 22px;
  background: linear-gradient(135deg, #f4d49a, var(--dr-gold), var(--dr-gold-dark));
  color: #1a1308;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 40px -10px rgba(212, 175, 111, 0.7);
}
@media (max-width: 720px) {
  .dr-sticky-cta:not([hidden]) { display: block; }
}

/* ===========================================================
   ALERT
   =========================================================== */

.dr-alert {
  position: fixed;
  top: 96px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 70;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--dr-ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--dr-shadow);
}

/* ===========================================================
   REDUCED MOTION
   =========================================================== */

@media (prefers-reduced-motion: reduce) {
  .dr-aurora,
  .dr-particles span,
  .dr-pulse-dot,
  .dr-hero-live-dot,
  .dr-btn--gold,
  .dr-heartbeat-trail,
  .dr-heartbeat-pulse,
  .dr-hero-rings span,
  .dr-hourglass-sand-top,
  .dr-hourglass-sand-bot,
  .dr-final-glow,
  .dr-domain-bar span,
  .dr-table-th--hero::after {
    animation: none !important;
  }
  .dr-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dr-domain-bar span { transform: scaleX(1); }
}
