/* DIGITAL MARKETING HUB PAGE — Additional styles
   Loaded exclusively on template-digital-marketing.php
   Scoped to .is-digital-marketing-page where overrides are needed.
   Design tokens consumed from main.css — not redefined here.
   ─────────────────────────────────────────────────────────── */

/* ── Section / layout utilities (intentional duplication — self-contained) */
.section      { padding: clamp(72px,8vw,112px) 0; }
.section-alt  { background: var(--mist); }
.section-dark { background: var(--ink); }
.wrap         { width: var(--w); margin: 0 auto; }

/* ── Button variants (intentional duplication — self-contained) ─────────── */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.8);
  font-family: var(--ff-body); font-size: .95rem; font-weight: 500;
  padding: 13px 26px; border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .25s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.35); color: #fff; transform: translateY(-2px); }
.btn-out {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-family: var(--ff-body); font-size: .88rem; font-weight: 600;
  padding: 11px 22px; border-radius: var(--r2);
  border: 1.5px solid var(--line2);
  transition: all .25s var(--ease);
}
.btn-out:hover { border-color: var(--fire); color: var(--fire); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.is-digital-marketing-page .hero-body {
  padding: 80px 0 72px;
  gap: 56px;
}
.is-digital-marketing-page.admin-bar .hero-body  { padding-top: 112px; }
@media screen and (max-width: 782px) {
  .is-digital-marketing-page.admin-bar .hero-body { padding-top: 126px; }
}
@media (max-width: 960px) {
  .is-digital-marketing-page .hero-body { grid-template-columns: 1fr; padding-top: 110px; }
  .is-digital-marketing-page .hero-right-col { display: none !important; }
}
@media (max-width: 768px) {
  .is-digital-marketing-page .hero-body { padding-top: 90px; }
}

/* Glow orbs */
.hero-glow {
  position: absolute; top: -80px; right: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,12,.14) 0%, transparent 68%);
  pointer-events: none; z-index: 1;
}
.hero-glow2 {
  position: absolute; bottom: -60px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,43,71,.7) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

/* Pill dot */
.hero-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire); flex-shrink: 0;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 4px var(--fire); }
  50%       { box-shadow: 0 0 12px var(--fire); }
}

/* H1 variants */
.h1-dim {
  display: block; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.5); margin-bottom: 2px;
}
.h1-white { color: #fff; font-weight: 700; }
.h1-fire  { color: var(--fire); font-weight: 700; }
.h1-underline {
  display: block; color: #fff; font-weight: 700;
  position: relative; padding-bottom: 6px;
}
.h1-underline::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--fire), transparent);
  border-radius: 2px;
  transition: width 1.4s .7s var(--ease);
}
.h1-underline.drawn::after { width: 100%; }

/* Hero entry animations */
.is-digital-marketing-page .hero-pill    { opacity: 0; animation: fadeUp .6s .10s var(--ease) forwards; }
.is-digital-marketing-page .hero-h1      { opacity: 0; animation: fadeUp .7s .25s var(--ease) forwards; }
.is-digital-marketing-page .hero-sub     { opacity: 0; animation: fadeUp .7s .40s var(--ease) forwards; color: rgba(255,255,255,.52); }
.is-digital-marketing-page .hero-actions { opacity: 0; animation: fadeUp .7s .55s var(--ease) forwards; }
.is-digital-marketing-page .hero-stats   { opacity: 0; animation: fadeUp .7s .75s var(--ease) forwards; }
.is-digital-marketing-page .hero-right-col { opacity: 0; animation: fadeIn .9s .45s var(--ease) forwards; }

@keyframes fadeUp  { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn  { from { opacity: 0; transform: scale(.97); }       to { opacity: 1; transform: scale(1); } }
@keyframes floatBob{ 0%, 100% { transform: translateY(0); }             50% { transform: translateY(-6px); } }

@media (prefers-reduced-motion: reduce) {
  .is-digital-marketing-page .hero-pill,
  .is-digital-marketing-page .hero-h1,
  .is-digital-marketing-page .hero-sub,
  .is-digital-marketing-page .hero-actions,
  .is-digital-marketing-page .hero-stats,
  .is-digital-marketing-page .hero-right-col {
    opacity: 1; animation: none;
  }
  .hero-pill-dot,
  .ticker-track { animation: none; }
}

/* Hero stats bar */
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); margin-top: 48px;
}
.hero-stats .hstat {
  padding: 24px 0; background: var(--ink);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stats .hstat-n {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700;
  letter-spacing: -.03em; color: #fff; line-height: 1;
}
.hero-stats .hstat-n sup { font-size: 1rem; color: var(--fire); vertical-align: super; }
.hero-stats .hstat-l {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.38); font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DM PANEL — Multi-channel dashboard mockup
═══════════════════════════════════════════════════════════════════════════ */
.dm-panel {
  background: #111827;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}

/* Window chrome */
.dm-topbar {
  padding: 11px 16px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
}
.dm-dots { display: flex; gap: 6px; }
.dm-dot  { width: 9px; height: 9px; border-radius: 50%; }
.dm-dot.r { background: #ff5f57; }
.dm-dot.y { background: #febc2e; }
.dm-dot.g { background: #28c840; }
.dm-label {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 500;
}
.dm-date-badge {
  font-size: .62rem; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}

/* Channel rows */
.dm-channels { padding: 4px 0; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.dm-channel-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  opacity: 0;
  animation: slideIn .45s var(--ease) forwards;
}
.dm-row-1 { animation-delay: .10s; }
.dm-row-2 { animation-delay: .25s; }
.dm-row-3 { animation-delay: .40s; }
.dm-row-4 { animation-delay: .55s; }

.dm-ch-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.dm-dot-seo    { background: #f0620c; }
.dm-dot-ads    { background: #3b82f6; }
.dm-dot-social { background: #a855f7; }
.dm-dot-email  { background: #14b8a6; }

.dm-ch-name {
  font-family: var(--ff-head); font-size: .8rem; font-weight: 700;
  color: #fff; min-width: 84px;
}
.dm-ch-metric {
  flex: 1; font-size: .78rem; color: rgba(255,255,255,.6);
}
.dm-trend {
  font-size: .68rem; font-weight: 700;
  padding: 3px 7px; border-radius: 4px;
  white-space: nowrap;
}
.dm-trend-up {
  background: rgba(34,197,94,.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,.25);
}

/* Conversions footer */
.dm-footer {
  padding: 12px 16px 14px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.02);
}
.dm-footer-label {
  font-size: .65rem; color: rgba(255,255,255,.35);
  text-transform: uppercase; letter-spacing: .08em;
}
.dm-conv-wrap {
  display: flex; align-items: center; gap: 8px;
}
.dm-conv-n {
  font-family: var(--ff-head); font-size: 1.35rem; font-weight: 900;
  color: var(--fire); line-height: 1;
}
.dm-conv-sub {
  font-size: .65rem; color: rgba(255,255,255,.35);
}
.dm-fire-badge {
  font-size: .65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(240,98,12,.18);
  color: var(--fire);
  border: 1px solid rgba(240,98,12,.3);
}

/* Floating badge on hero right col */
.hero-right-col { position: relative; }
.float-badge {
  position: absolute; right: -14px; bottom: -14px;
  background: #fff; border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.45); min-width: 192px;
  animation: floatBob 4s ease-in-out infinite;
}
.float-badge-icon {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--fire); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.float-badge-n { font-size: .85rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.float-badge-l { font-size: .62rem; color: #6b7280; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════════════════════ */
.ticker-wrap {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-l, .ticker-r {
  position: absolute; top: 0; width: 100px; height: 100%;
  z-index: 2; pointer-events: none;
}
.ticker-l { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.ticker-r { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.ticker-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: tickerRun 38s linear infinite;
  font-family: var(--ff-head); font-size: 3rem; font-weight: 900;
  line-height: 1; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.2);
  user-select: none;
}
.ticker-track span  { padding: 0 18px; }
.ticker-track .sp   { color: var(--fire); -webkit-text-stroke: 0; font-size: .9rem; padding: 0 6px; }
@keyframes tickerRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center; max-width: 720px;
  margin: 0 auto clamp(40px,5vw,64px);
}
.section-title {
  font-family: var(--ff-head); font-size: clamp(1.7rem,3vw,2.4rem);
  font-weight: 800; color: var(--ink); letter-spacing: -.03em;
  line-height: 1.2; margin-bottom: 16px;
}
.section-title-light { color: #fff; }
.section-sub {
  font-size: 1.05rem; color: var(--text2); line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════════════════════ */
.dm-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dm-svc-card {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r3);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.dm-svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--fire);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease);
}
.dm-svc-card:hover::before  { transform: scaleY(1); }
.dm-svc-card:hover {
  box-shadow: 0 16px 48px rgba(8,17,31,.12);
  transform: translateY(-4px);
  border-color: transparent;
}

.dm-svc-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--fire); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 5px;
}

.dm-svc-icon {
  width: 48px; height: 48px; border-radius: var(--r1);
  background: rgba(240,98,12,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--fire); margin-bottom: 20px;
}

.dm-svc-name {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em; margin-bottom: 10px;
}

.dm-svc-desc {
  font-size: .9rem; color: var(--text2); line-height: 1.65;
  margin-bottom: 20px;
}

.dm-svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700; color: var(--fire);
  text-decoration: none; transition: gap .2s var(--ease);
}
.dm-svc-link:hover { gap: 10px; }

/* Scroll-reveal state */
.dm-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.dm-reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ADSENSE WRAP
═══════════════════════════════════════════════════════════════════════════ */
.dm-adsense-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 24px 20px;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY INTEGRATED — Funnel layout
═══════════════════════════════════════════════════════════════════════════ */
.dm-funnel-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 860px) {
  .dm-funnel-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .dm-funnel-arrow { display: none; }
}

.dm-funnel-col {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r3); padding: 36px 28px;
  text-align: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.dm-funnel-col:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,98,12,.25);
}

.dm-funnel-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.dm-funnel-icon-attract { background: rgba(240,98,12,.18); color: var(--fire); }
.dm-funnel-icon-convert { background: rgba(59,130,246,.18); color: #60a5fa; }
.dm-funnel-icon-retain  { background: rgba(168,85,247,.18);  color: #c084fc; }

.dm-funnel-stage {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fire); margin-bottom: 8px;
}

.dm-funnel-h {
  font-family: var(--ff-head); font-size: 1.1rem; font-weight: 800;
  color: #fff; margin-bottom: 12px; letter-spacing: -.02em;
}

.dm-funnel-p {
  font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.65;
}

.dm-funnel-arrow {
  font-size: 2rem; color: var(--fire);
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE ME — Differentiator cards
═══════════════════════════════════════════════════════════════════════════ */
.dm-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 56px;
}

.dm-diff-card {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2); padding: 28px;
  position: relative; overflow: hidden;
  transition: all .3s var(--ease);
}
.dm-diff-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: var(--fire); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.dm-diff-card:hover::before { transform: scaleX(1); }
.dm-diff-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(8,17,31,.1);
  transform: translateY(-2px);
}

.dm-diff-icon {
  width: 40px; height: 40px; border-radius: var(--r1);
  background: rgba(240,98,12,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--fire); margin-bottom: 16px;
}

.dm-diff-card h3 {
  font-family: var(--ff-head); font-size: 1rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 8px;
}

.dm-diff-card p {
  font-size: .87rem; color: var(--text2); line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS — 4-step grid
═══════════════════════════════════════════════════════════════════════════ */
.dm-process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.dm-process-grid::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--fire), rgba(240,98,12,.15));
  z-index: 0;
}
@media (max-width: 860px) {
  .dm-process-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
  }
  .dm-process-grid::before { display: none; }
}
@media (max-width: 520px) {
  .dm-process-grid { grid-template-columns: 1fr; }
}

.dm-process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
  position: relative; z-index: 1;
}

.dm-process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); border: 2.5px solid var(--fire);
  color: var(--fire); font-family: var(--ff-head);
  font-size: 1.35rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.dm-process-step:hover .dm-process-num {
  background: var(--fire); color: #fff;
  box-shadow: 0 0 0 6px rgba(240,98,12,.15);
}

.dm-process-body h3 {
  font-family: var(--ff-head); font-size: 1rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 10px;
}
.dm-process-body p {
  font-size: .87rem; color: var(--text2); line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESULTS — stat cards
═══════════════════════════════════════════════════════════════════════════ */
.dm-results-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
@media (max-width: 768px) { .dm-results-grid { grid-template-columns: 1fr; gap: 16px; } }

.dm-result-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r3); padding: 36px 28px;
  text-align: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.dm-result-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,98,12,.25);
}
.dm-result-n {
  font-family: var(--ff-head); font-size: clamp(2.4rem,4vw,3.4rem);
  font-weight: 900; color: var(--fire);
  letter-spacing: -.04em; line-height: 1; margin-bottom: 16px;
}
.dm-result-l {
  font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ — accordion
═══════════════════════════════════════════════════════════════════════════ */
.dm-faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}

.fitem {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.fitem:has(.fq[aria-expanded="true"]) { border-color: rgba(240,98,12,.25); }

.fq {
  width: 100%; background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
  color: var(--ink); text-align: left;
  transition: color .2s var(--ease);
}
.fq:hover { color: var(--fire); }
.fq[aria-expanded="true"] { color: var(--fire); }

.fq-icon {
  flex-shrink: 0; transition: transform .3s var(--ease);
  color: var(--text2);
}
.fq[aria-expanded="true"] .fq-icon { transform: rotate(180deg); color: var(--fire); }

.fa {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.fa-inner {
  padding: 0 24px 20px;
}
.fa-inner p {
  font-size: .93rem; color: var(--text2); line-height: 1.72;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════════════════════ */
.dm-cta-strip {
  background: var(--fire);
  position: relative; overflow: hidden;
  padding: clamp(64px,8vw,100px) 0;
}
.dm-cta-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: clamp(8rem,18vw,18rem);
  font-weight: 900; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.07);
  user-select: none; pointer-events: none; white-space: nowrap;
}
.dm-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.dm-cta-h {
  font-family: var(--ff-head); font-size: clamp(1.5rem,3vw,2.3rem);
  font-weight: 800; color: #fff; letter-spacing: -.03em;
  line-height: 1.2; max-width: 820px; margin-bottom: 16px;
}
.dm-cta-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.8);
  max-width: 560px; line-height: 1.6; margin-bottom: 36px;
}
.dm-cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--fire);
  font-family: var(--ff-body); font-size: 1rem; font-weight: 700;
  padding: 16px 34px; border-radius: var(--r2);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  transition: all .25s var(--ease);
}
.dm-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
  color: var(--fire2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dm-services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .dm-services-grid { grid-template-columns: 1fr; }
  .dm-diff-grid     { grid-template-columns: 1fr; }
  .dm-results-grid  { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INLINE JS — FAQ accordion + hero underline + scroll-reveal
   (Appended as a style-scoped <script> via PHP footer hook;
    placed here as comments only — actual JS lives in template file below)
═══════════════════════════════════════════════════════════════════════════ */
