/* ==========================================================
   DM SERVICE PAGE — Shared premium design system
   Scope: .dm-page (applied to <body>)
   Theme is driven by CSS variables set per-page.
   ========================================================== */

.dm-page {
    --dm-primary: #0d9488;
    --dm-deep: #0c4a6e;
    --dm-accent: #14b8a6;
    --dm-accent-2: #16a34a;
    --dm-orange: #ff4e00;
    --dm-warm: #f59e0b;
    --dm-ink: #0f172a;
    --dm-body: #334155;
    --dm-muted: #64748b;
    --dm-soft: #f8fafc;
    --dm-paper: #ffffff;
    --dm-primary-rgb: 13, 148, 136;
    --dm-accent-rgb: 20, 184, 166;
    --dm-accent-2-rgb: 22, 163, 74;
    --dm-primary-soft: rgba(var(--dm-primary-rgb), 0.10);
    --dm-accent-soft: rgba(var(--dm-accent-rgb), 0.10);
    --dm-grad: linear-gradient(135deg, var(--dm-accent) 0%, var(--dm-deep) 100%);
    --dm-grad-accent: linear-gradient(135deg, var(--dm-accent-2) 0%, var(--dm-deep) 100%);
    --dm-grad-warm: linear-gradient(135deg, var(--dm-orange) 0%, var(--dm-warm) 100%);
}

.dm-section { position: relative; overflow: hidden; }
.dm-section::before, .dm-section::after { content: ""; position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; }
.dm-section > .container { position: relative; z-index: 1; }

.dm-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.42rem 0.95rem; border-radius: 999px;
    background: var(--dm-primary-soft); color: var(--dm-deep); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem;
    border: 1px solid rgba(var(--dm-primary-rgb), 0.18);
}
.dm-eyebrow i { font-size: 1rem; color: var(--dm-primary); }
.dm-eyebrow--accent { background: rgba(var(--dm-accent-2-rgb), 0.10); color: #14532d; border-color: rgba(var(--dm-accent-2-rgb), 0.18); }
.dm-eyebrow--accent i { color: var(--dm-accent-2); }

/* ===== HERO ===== */
.dm-hero { background: linear-gradient(180deg, rgba(var(--dm-accent-rgb), 0.08) 0%, rgba(var(--dm-primary-rgb), 0.06) 50%, #ffffff 100%); border-bottom: 1px solid var(--dm-primary-soft); padding: 3rem 0 4rem; }
@media (min-width: 992px) { .dm-hero { padding: 4rem 0 5rem; } }
.dm-hero::before { width: 460px; height: 460px; top: -160px; right: -160px; background: rgba(var(--dm-accent-rgb), 0.18); }
.dm-hero::after { width: 380px; height: 380px; bottom: -180px; left: -120px; background: rgba(var(--dm-primary-rgb), 0.16); }
.dm-hero__row { align-items: center; }
.dm-hero__h1-strap { display: inline-block; font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 800; letter-spacing: 0.18em; color: var(--dm-deep); text-transform: uppercase; margin: 0 0 1.25rem 0; padding: 0.5rem 1rem; background: linear-gradient(135deg, rgba(var(--dm-accent-2-rgb), 0.10) 0%, rgba(var(--dm-accent-rgb), 0.06) 100%); border-radius: 0.6rem; border-left: 4px solid var(--dm-accent-2); }
.dm-hero__h1 { font-size: clamp(1.85rem, 4.6vw, 3rem); font-weight: 800; color: var(--dm-ink); line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 1.25rem 0; display: inline-block; padding-bottom: 0.55rem; border-bottom: 4px solid var(--dm-orange); }
.dm-hero__lead { font-size: 1.04rem; color: var(--dm-body); line-height: 1.75; margin-bottom: 1rem; }
.dm-hero__lead:first-of-type { font-size: clamp(1.1rem, 1.6vw, 1.22rem); color: var(--dm-ink); font-weight: 500; line-height: 1.55; }
.dm-hero__lead strong { color: var(--dm-ink); font-weight: 700; }
.dm-hero__lead a.link, .dm-section__lead a.link, .dm-client-card__text a.link, .dm-svc-card__text a.link { color: var(--dm-deep); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(var(--dm-primary-rgb), 0.35); text-underline-offset: 3px; }
.dm-hero__lead a.link:hover, .dm-section__lead a.link:hover, .dm-client-card__text a.link:hover, .dm-svc-card__text a.link:hover { color: var(--dm-primary); text-decoration-color: var(--dm-primary); }

.dm-hero__cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-top: 1.5rem; }
.dm-hero__cta-row .btn { padding: 1rem 1.85rem; font-weight: 700; letter-spacing: 0.02em; border-radius: 0.65rem; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.dm-hero__cta-row .btn-primary { background: linear-gradient(135deg, var(--dm-orange) 0%, #ff7a3d 100%); border: none; box-shadow: 0 12px 30px rgba(255, 78, 0, 0.35); color: #fff; }
.dm-hero__cta-row .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(255, 78, 0, 0.48); background: linear-gradient(135deg, #ff5e1a 0%, #ff8952 100%); }
.dm-hero__cta-row .btn-ghost { background: #ffffff; color: var(--dm-deep); border: 2px solid rgba(var(--dm-primary-rgb), 0.25); }
.dm-hero__cta-row .btn-ghost:hover { transform: translateY(-3px); border-color: var(--dm-deep); color: var(--dm-deep); box-shadow: 0 14px 32px rgba(var(--dm-primary-rgb), 0.18); }
.dm-hero__cta-row .btn i { vertical-align: middle; margin-left: 0.4rem; }

.dm-hero__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.dm-hero__chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.85rem; border-radius: 999px; background: #ffffff; border: 1px solid rgba(var(--dm-primary-rgb), 0.15); color: var(--dm-deep); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; }
.dm-hero__chip i { color: var(--dm-accent-2); font-size: 0.95rem; }

.dm-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.75rem; max-width: 520px; }
.dm-hero__stat { text-align: center; padding: 0.9rem 0.55rem; background: #ffffff; border: 1px solid rgba(var(--dm-primary-rgb), 0.12); border-radius: 0.85rem; box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04); }
.dm-hero__stat-num { display: block; font-size: 1.4rem; font-weight: 800; color: var(--dm-deep); line-height: 1; letter-spacing: -0.01em; }
.dm-hero__stat-label { display: block; font-size: 0.7rem; color: var(--dm-muted); margin-top: 0.3rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.2; }

.dm-hero__media { position: relative; padding: clamp(0.85rem, 2vw, 1.25rem); border-radius: 1.5rem; background: linear-gradient(145deg, rgba(var(--dm-primary-rgb), 0.10) 0%, rgba(255,255,255,0.0) 100%); border: 1px solid rgba(var(--dm-primary-rgb), 0.14); box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.dm-hero__media:hover { transform: translateY(-5px); box-shadow: 0 40px 90px rgba(15, 23, 42, 0.18); }
.dm-hero__media img { border-radius: 1.1rem; width: 100%; height: auto; display: block; }
.dm-hero__badge { position: absolute; bottom: 18px; left: 18px; display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(8px); color: var(--dm-deep); font-size: 0.82rem; font-weight: 700; padding: 0.6rem 0.95rem; border-radius: 999px; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); }
.dm-hero__badge i { color: var(--dm-accent-2); font-size: 1.1rem; }
.dm-hero__badge--top { bottom: auto; top: 18px; left: auto; right: 18px; background: var(--dm-grad-accent); color: #ffffff; }
.dm-hero__badge--top i { color: #bbf7d0; }
@media (max-width: 991.98px) { .dm-hero__content { margin-bottom: 2rem; text-align: center; } .dm-hero__cta-row { justify-content: center; } .dm-hero__chips { justify-content: center; } .dm-hero__stats { margin-left: auto; margin-right: auto; } .dm-hero__h1-strap { display: block; } }

/* ===== TRUST STRIP ===== */
.dm-trust { background: #ffffff; border-bottom: 1px solid var(--dm-primary-soft); padding: 1.75rem 0; position: relative; z-index: 2; }
.dm-trust__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .dm-trust__row { grid-template-columns: repeat(4, 1fr); } }
.dm-trust__cell { display: flex; align-items: center; gap: 0.85rem; padding: 0.5rem 0.65rem; border-radius: 0.75rem; transition: background 0.22s ease, transform 0.22s ease; }
.dm-trust__cell:hover { background: rgba(var(--dm-primary-rgb), 0.05); transform: translateY(-2px); }
.dm-trust__icon { flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: 0.7rem; background: var(--dm-grad-accent); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(var(--dm-accent-2-rgb), 0.25); }
.dm-trust__icon i { font-size: 1.35rem; }
.dm-trust__num { display: block; font-size: 1.15rem; font-weight: 800; color: var(--dm-deep); line-height: 1; letter-spacing: -0.01em; }
.dm-trust__label { display: block; font-size: 0.74rem; color: var(--dm-muted); margin-top: 0.2rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== SECTION HEADERS ===== */
.dm-section__head { text-align: center; max-width: 880px; margin: 0 auto 2.5rem auto; }
.dm-section__h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); font-weight: 800; color: var(--dm-ink); line-height: 1.2; letter-spacing: -0.01em; display: inline-block; padding-bottom: 0.55rem; margin-bottom: 1rem !important; border-bottom: 4px solid var(--dm-orange); }
.dm-section__lead { font-size: 1rem; line-height: 1.7; color: var(--dm-body); margin: 0; }
.dm-section__lead strong { color: var(--dm-ink); font-weight: 700; }

/* ===== CLIENTS ===== */
.dm-clients { background: linear-gradient(180deg, #ffffff 0%, var(--dm-soft) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-clients { padding: 5.5rem 0; } }
.dm-clients::before { width: 420px; height: 420px; top: -160px; left: -120px; background: rgba(var(--dm-primary-rgb), 0.10); }
.dm-clients::after { width: 360px; height: 360px; bottom: -160px; right: -120px; background: rgba(var(--dm-accent-rgb), 0.12); }
.dm-clients__intro { font-size: 1rem; line-height: 1.7; color: var(--dm-body); max-width: 820px; margin: 0.85rem auto 2rem auto; text-align: center; }
.dm-clients__intro strong { color: var(--dm-ink); font-weight: 700; }

.dm-client-card { position: relative; height: 100%; background: #ffffff; border-radius: 1.15rem; border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.dm-client-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--dm-grad-accent); opacity: 0; transition: opacity 0.25s ease; }
.dm-client-card:hover { transform: translateY(-6px); box-shadow: 0 26px 58px rgba(15, 23, 42, 0.12); border-color: rgba(var(--dm-primary-rgb), 0.28); }
.dm-client-card:hover::before { opacity: 1; }
.dm-client-card__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem; }
.dm-client-card__mono { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.7rem; background: var(--dm-grad-accent); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.04em; box-shadow: 0 10px 22px rgba(var(--dm-accent-2-rgb), 0.25); }
.dm-client-card__title { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--dm-ink); margin: 0; line-height: 1.3; }
.dm-client-card__sub { font-size: 0.76rem; font-weight: 600; color: var(--dm-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; display: block; }
.dm-client-card__text { font-size: 0.93rem; line-height: 1.7; color: var(--dm-body); margin: 0 0 0.85rem 0; }
.dm-client-card__text:last-child { margin-bottom: 0; }
.dm-client-card__text strong { color: var(--dm-ink); font-weight: 700; }
.dm-client-card__chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: auto; padding-top: 1rem; border-top: 1px dashed rgba(15, 23, 42, 0.12); }
.dm-client-card__chip { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.28rem 0.7rem; border-radius: 999px; background: var(--dm-primary-soft); color: var(--dm-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; }
.dm-client-card__chip i { font-size: 0.85rem; color: var(--dm-primary); }

.dm-clients__figure { margin-top: 2rem; position: relative; padding: clamp(0.85rem, 2vw, 1.25rem); border-radius: 1.5rem; background: #ffffff; border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.dm-clients__figure:hover { transform: translateY(-5px); box-shadow: 0 30px 75px rgba(15, 23, 42, 0.14); }
.dm-clients__figure img { border-radius: 1rem; width: 100%; height: auto; display: block; }
.dm-clients__figure-tag { position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 0.45rem; background: var(--dm-grad-accent); color: #ffffff; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 0.85rem; border-radius: 999px; box-shadow: 0 10px 22px rgba(var(--dm-accent-2-rgb), 0.28); }
.dm-clients__wrap { font-size: 0.98rem; line-height: 1.75; color: var(--dm-body); margin-top: 1.75rem; padding: 1.25rem 1.5rem; background: linear-gradient(135deg, rgba(var(--dm-primary-rgb), 0.06) 0%, rgba(var(--dm-accent-rgb), 0.04) 100%); border-left: 4px solid var(--dm-primary); border-radius: 0.85rem; }
.dm-clients__wrap strong { color: var(--dm-ink); font-weight: 700; }

/* ===== OVERVIEW ===== */
.dm-over { background: linear-gradient(180deg, var(--dm-soft) 0%, rgba(var(--dm-primary-rgb), 0.04) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-over { padding: 5rem 0; } }
.dm-over::before { width: 380px; height: 380px; top: -140px; right: -120px; background: rgba(var(--dm-primary-rgb), 0.12); }
.dm-over::after { width: 320px; height: 320px; bottom: -160px; left: -120px; background: rgba(var(--dm-accent-rgb), 0.12); }
.dm-over__text { font-size: 1rem; line-height: 1.75; color: var(--dm-body); margin-bottom: 1rem; max-width: 880px; margin-left: auto; margin-right: auto; }
.dm-over__text strong { color: var(--dm-ink); font-weight: 700; }
.dm-over__text:last-child { margin-bottom: 0; }

/* ===== SERVICES ===== */
.dm-svc { background: linear-gradient(180deg, #ffffff 0%, rgba(var(--dm-primary-rgb), 0.04) 60%, var(--dm-soft) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-svc { padding: 5.5rem 0; } }
.dm-svc::before { width: 380px; height: 380px; top: -140px; right: -120px; background: rgba(var(--dm-primary-rgb), 0.12); }
.dm-svc::after { width: 320px; height: 320px; bottom: -160px; left: -120px; background: rgba(var(--dm-accent-rgb), 0.10); }

.dm-svc-card { position: relative; height: 100%; background: #ffffff; border-radius: 1.25rem; border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06); display: flex; flex-direction: column; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.dm-svc-card:hover { transform: translateY(-6px); box-shadow: 0 26px 58px rgba(15, 23, 42, 0.13); border-color: rgba(var(--dm-primary-rgb), 0.25); }
.dm-svc-card__head { position: relative; padding: 2rem 1.5rem 1rem 1.5rem; background: linear-gradient(135deg, rgba(var(--dm-primary-rgb), 0.06) 0%, rgba(var(--dm-accent-rgb), 0.04) 100%); border-bottom: 1px solid rgba(var(--dm-primary-rgb), 0.08); }
.dm-svc-card__num { position: absolute; top: 14px; right: 14px; padding: 0.35rem 0.75rem; border-radius: 999px; background: #ffffff; color: var(--dm-deep); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08); }
.dm-svc-card__icon { width: 3.2rem; height: 3.2rem; border-radius: 0.85rem; background: var(--dm-grad-accent); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 28px rgba(var(--dm-accent-2-rgb), 0.35); margin-bottom: 0.85rem; }
.dm-svc-card__icon i { font-size: 1.55rem; }
.dm-svc-card__body { padding: 1.25rem 1.5rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dm-svc-card__title { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--dm-ink); margin: 0 0 0.85rem 0; line-height: 1.3; }
.dm-svc-card__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.25rem 0 1rem 0; }
.dm-svc-card__chip { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.32rem 0.7rem; border-radius: 999px; background: var(--dm-primary-soft); color: var(--dm-deep); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; border: 1px solid rgba(var(--dm-primary-rgb), 0.16); }
.dm-svc-card__chip i { color: var(--dm-primary); font-size: 0.85rem; }
.dm-svc-card__text { font-size: 0.93rem; line-height: 1.7; color: var(--dm-body); margin: 0 0 0.85rem 0; }
.dm-svc-card__text:last-child { margin-bottom: 0; }
.dm-svc-card__text strong { color: var(--dm-ink); font-weight: 700; }
.dm-svc-card__sublabel { display: block; font-size: 0.82rem; font-weight: 800; color: var(--dm-deep); text-transform: uppercase; letter-spacing: 0.06em; margin: 0.6rem 0 0.35rem 0; }
.dm-svc-card__list { list-style: none; padding: 0; margin: 0.35rem 0 0.85rem 0; }
.dm-svc-card__list li { display: flex; gap: 0.55rem; padding: 0.35rem 0; font-size: 0.9rem; line-height: 1.55; color: var(--dm-body); }
.dm-svc-card__list li i { flex-shrink: 0; color: var(--dm-accent-2); font-size: 1rem; margin-top: 0.15rem; }
.dm-svc-card__list li strong { color: var(--dm-ink); font-weight: 700; }

/* ===== WHY SPECIALISED ===== */
.dm-why { background: linear-gradient(180deg, var(--dm-soft) 0%, rgba(var(--dm-primary-rgb), 0.04) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-why { padding: 5.5rem 0; } }
.dm-why::before { width: 420px; height: 420px; top: -160px; left: -120px; background: rgba(var(--dm-primary-rgb), 0.10); }
.dm-why::after { width: 360px; height: 360px; bottom: -160px; right: -120px; background: rgba(var(--dm-accent-rgb), 0.10); }
.dm-why__row { align-items: flex-start; }
.dm-why__figure { position: sticky; top: 100px; padding: clamp(0.85rem, 2vw, 1.5rem); border-radius: 1.5rem; background: #ffffff; border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.dm-why__figure:hover { transform: translateY(-5px); box-shadow: 0 30px 75px rgba(15, 23, 42, 0.14); }
.dm-why__figure img { border-radius: 1rem; width: 100%; height: auto; display: block; }
.dm-why__figure-tag { position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 0.45rem; background: var(--dm-grad-accent); color: #ffffff; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 0.85rem; border-radius: 999px; box-shadow: 0 10px 22px rgba(var(--dm-accent-2-rgb), 0.28); }
@media (max-width: 991.98px) { .dm-why__figure { position: static; margin-bottom: 2rem; } }
.dm-why__intro { font-size: 1rem; line-height: 1.75; color: var(--dm-body); margin-bottom: 1.5rem; }
.dm-why__intro strong { color: var(--dm-ink); font-weight: 700; }
.dm-why__grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
@media (min-width: 576px) { .dm-why__grid { grid-template-columns: repeat(2, 1fr); } }
.dm-why-card { display: flex; gap: 0.85rem; align-items: flex-start; background: #ffffff; border: 1px solid rgba(var(--dm-primary-rgb), 0.12); border-radius: 0.95rem; padding: 1.1rem 1.2rem; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.dm-why-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(var(--dm-primary-rgb), 0.12); border-color: rgba(var(--dm-primary-rgb), 0.28); }
.dm-why-card__icon { flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: 0.7rem; background: var(--dm-grad-accent); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px rgba(var(--dm-accent-2-rgb), 0.25); }
.dm-why-card__icon i { font-size: 1.3rem; }
.dm-why-card__name { display: block; font-size: 0.92rem; font-weight: 800; color: var(--dm-deep); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3rem; line-height: 1.3; }
.dm-why-card__desc { display: block; font-size: 0.88rem; color: var(--dm-body); line-height: 1.6; margin: 0; }
.dm-why-card__desc strong { color: var(--dm-ink); font-weight: 700; }

/* ===== PROCESS TIMELINE ===== */
.dm-proc { background: linear-gradient(180deg, #ffffff 0%, rgba(var(--dm-primary-rgb), 0.04) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-proc { padding: 5.5rem 0; } }
.dm-proc::before { width: 380px; height: 380px; top: -140px; right: -120px; background: rgba(var(--dm-primary-rgb), 0.10); }
.dm-proc::after { width: 320px; height: 320px; bottom: -160px; left: -120px; background: rgba(var(--dm-accent-2-rgb), 0.08); }
.dm-proc__intro { font-size: 1rem; line-height: 1.7; color: var(--dm-body); max-width: 820px; margin: 0.85rem auto 1.85rem auto; text-align: center; }
.dm-proc__intro strong { color: var(--dm-ink); font-weight: 700; }

.dm-proc__timeline { position: relative; padding-left: 0; margin: 0 auto; list-style: none; max-width: 980px; }
@media (min-width: 768px) { .dm-proc__timeline::before { content: ""; position: absolute; left: 39px; top: 18px; bottom: 18px; width: 3px; background: linear-gradient(180deg, var(--dm-primary) 0%, var(--dm-accent-2) 50%, var(--dm-orange) 100%); border-radius: 4px; } }
.dm-proc__step { position: relative; display: flex; gap: clamp(1rem, 2vw, 1.5rem); align-items: flex-start; padding: 0; margin-bottom: 1.65rem; }
.dm-proc__step:last-child { margin-bottom: 0; }
.dm-proc__num { flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%; background: var(--dm-grad-accent); color: #ffffff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; font-size: 1.55rem; box-shadow: 0 14px 30px rgba(var(--dm-accent-2-rgb), 0.30); position: relative; z-index: 1; border: 5px solid #ffffff; line-height: 1; }
.dm-proc__num i { font-size: 1.05rem; opacity: 0.85; margin-top: 0.1rem; }
.dm-proc__card { flex: 1; background: #ffffff; border-radius: 1.1rem; padding: clamp(1.25rem, 2vw, 1.85rem); border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.dm-proc__card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10); border-color: rgba(var(--dm-primary-rgb), 0.25); }
.dm-proc__card-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; flex-wrap: wrap; }
.dm-proc__pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.32rem 0.75rem; border-radius: 999px; background: var(--dm-primary-soft); color: var(--dm-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.dm-proc__pill i { font-size: 0.85rem; }
.dm-proc__title { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--dm-ink); margin: 0; line-height: 1.3; flex: 1 1 auto; min-width: 0; }
.dm-proc__text { font-size: 0.95rem; line-height: 1.7; color: var(--dm-body); margin: 0; }
.dm-proc__text strong { color: var(--dm-ink); font-weight: 700; }
@media (max-width: 767.98px) { .dm-proc__step { flex-direction: column; align-items: stretch; } .dm-proc__num { width: 64px; height: 64px; font-size: 1.3rem; } .dm-proc__num i { font-size: 0.85rem; } }
.dm-proc__figure { margin-top: 2.25rem; position: relative; padding: clamp(0.85rem, 2vw, 1.25rem); border-radius: 1.5rem; background: #ffffff; border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08); max-width: 980px; margin-left: auto; margin-right: auto; }
.dm-proc__figure img { border-radius: 1rem; width: 100%; height: auto; display: block; }

/* ===== PRICING ===== */
.dm-price { background: linear-gradient(180deg, var(--dm-soft) 0%, rgba(var(--dm-primary-rgb), 0.04) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-price { padding: 5.5rem 0; } }
.dm-price::before { width: 420px; height: 420px; top: -160px; right: -120px; background: rgba(var(--dm-primary-rgb), 0.10); }
.dm-price::after { width: 360px; height: 360px; bottom: -160px; left: -120px; background: rgba(var(--dm-accent-rgb), 0.10); }
.dm-price__intro { font-size: 1rem; line-height: 1.7; color: var(--dm-body); max-width: 820px; margin: 0.85rem auto 1.85rem auto; text-align: center; }
.dm-price__intro strong { color: var(--dm-ink); font-weight: 700; }
.dm-price__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .dm-price__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .dm-price__grid { grid-template-columns: repeat(4, 1fr); } }
.dm-price-card { position: relative; background: #ffffff; border-radius: 1.15rem; border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; height: 100%; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.dm-price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--dm-grad-accent); }
.dm-price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 58px rgba(var(--dm-primary-rgb), 0.14); border-color: rgba(var(--dm-primary-rgb), 0.28); }
.dm-price-card--featured { border-color: rgba(var(--dm-primary-rgb), 0.32); box-shadow: 0 18px 44px rgba(var(--dm-primary-rgb), 0.18); background: linear-gradient(135deg, #ffffff 0%, rgba(var(--dm-primary-rgb), 0.04) 100%); }
.dm-price-card__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem; }
.dm-price-card__icon { flex-shrink: 0; width: 2.8rem; height: 2.8rem; border-radius: 0.7rem; background: var(--dm-grad-accent); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px rgba(var(--dm-accent-2-rgb), 0.25); }
.dm-price-card__icon i { font-size: 1.35rem; }
.dm-price-card__title { font-size: 0.98rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--dm-ink); margin: 0; line-height: 1.3; }
.dm-price-card__amount { font-size: 1.55rem; font-weight: 800; color: var(--dm-deep); letter-spacing: -0.01em; margin: 0.25rem 0 0.5rem 0; }
.dm-price-card__amount small { display: block; font-size: 0.72rem; color: var(--dm-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }
.dm-price-card__text { font-size: 0.9rem; line-height: 1.65; color: var(--dm-body); margin: 0; }
.dm-price-card__text strong { color: var(--dm-ink); font-weight: 700; }
.dm-price__note { margin-top: 1.75rem; padding: 1.1rem 1.35rem; background: linear-gradient(135deg, rgba(var(--dm-primary-rgb), 0.06) 0%, rgba(var(--dm-accent-rgb), 0.04) 100%); border-left: 4px solid var(--dm-primary); border-radius: 0.85rem; font-size: 0.98rem; line-height: 1.65; color: var(--dm-body); }
.dm-price__note strong { color: var(--dm-ink); font-weight: 700; }

/* ===== FAQ ===== */
.dm-faq { background: linear-gradient(180deg, #ffffff 0%, rgba(var(--dm-primary-rgb), 0.04) 60%, var(--dm-soft) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-faq { padding: 5.5rem 0; } }
.dm-faq::before { width: 380px; height: 380px; top: -140px; right: -120px; background: rgba(var(--dm-primary-rgb), 0.10); }
.dm-faq::after { width: 320px; height: 320px; bottom: -160px; left: -120px; background: rgba(var(--dm-accent-rgb), 0.10); }
.dm-faq__grid .accordion-item { background: #ffffff; border: 1px solid rgba(var(--dm-primary-rgb), 0.12) !important; border-radius: 0.95rem !important; box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05); overflow: hidden; margin-bottom: 0.85rem; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.dm-faq__grid .accordion-item:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(var(--dm-primary-rgb), 0.10); border-color: rgba(var(--dm-primary-rgb), 0.30) !important; }
.dm-faq__grid .accordion-button { background: #ffffff !important; color: var(--dm-ink) !important; font-weight: 700; font-size: 1rem; line-height: 1.4; padding: 1.05rem 1.2rem; border-radius: 0.95rem !important; box-shadow: none !important; display: flex; align-items: center; gap: 0.85rem; }
.dm-faq__grid .accordion-button:not(.collapsed) { background: linear-gradient(135deg, rgba(var(--dm-primary-rgb), 0.06) 0%, rgba(var(--dm-accent-rgb), 0.04) 100%) !important; color: var(--dm-deep) !important; border-bottom: 1px solid rgba(var(--dm-primary-rgb), 0.18); border-radius: 0.95rem 0.95rem 0 0 !important; }
.dm-faq__grid .accordion-button::after { background-image: none; content: "\eb86"; font-family: "boxicons"; width: 1.95rem; height: 1.95rem; border-radius: 50%; background-color: var(--dm-primary-soft); color: var(--dm-primary); font-size: 1.1rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background-color 0.25s ease, color 0.25s ease; flex-shrink: 0; margin-left: auto; transform: none !important; }
.dm-faq__grid .accordion-button:not(.collapsed)::after { background-color: var(--dm-primary); color: #ffffff; transform: rotate(180deg) !important; }
.dm-faq__grid .accordion-icon { flex-shrink: 0; width: 2.2rem; height: 2.2rem; border-radius: 0.6rem; display: inline-flex; align-items: center; justify-content: center; background: var(--dm-grad-accent); color: #ffffff; font-size: 1.1rem; box-shadow: 0 8px 16px rgba(var(--dm-accent-2-rgb), 0.25); }
.dm-faq__grid .accordion-body { padding: 1rem 1.2rem 1.3rem 1.2rem; font-size: 0.94rem; line-height: 1.7; color: var(--dm-body); }
.dm-faq__grid .accordion-body p { margin: 0; }
@media (max-width: 575.98px) { .dm-faq__grid .accordion-button { font-size: 0.95rem; padding: 0.9rem 1rem; gap: 0.65rem; } .dm-faq__grid .accordion-icon { width: 1.95rem; height: 1.95rem; } }

/* ===== AUTHOR ===== */
.dm-author { background: linear-gradient(180deg, #ffffff 0%, rgba(var(--dm-primary-rgb), 0.04) 60%, var(--dm-soft) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-author { padding: 5.5rem 0; } }
.dm-author::before { width: 380px; height: 380px; top: -140px; left: -120px; background: rgba(var(--dm-primary-rgb), 0.10); }
.dm-author::after { width: 320px; height: 320px; bottom: -160px; right: -120px; background: rgba(var(--dm-accent-rgb), 0.08); }
.dm-author__card { background: #ffffff; border-radius: 1.75rem; border: 1px solid rgba(var(--dm-primary-rgb), 0.10); box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08); padding: clamp(1.5rem, 3.2vw, 3rem); overflow: hidden; }
.dm-author__row { align-items: center; }
.dm-author__photo-wrap { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.dm-author__photo-wrap::after { content: ""; position: absolute; inset: 0; border-radius: 1.5rem; box-shadow: inset 0 0 0 1px rgba(var(--dm-primary-rgb), 0.15); pointer-events: none; }
.dm-author__photo-wrap:hover { transform: translateY(-5px); box-shadow: 0 30px 70px rgba(15, 23, 42, 0.20); }
.dm-author__photo { width: 100%; height: auto; display: block; border-radius: 1.5rem; }
.dm-author__cert { position: absolute; bottom: 16px; left: 16px; display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px); color: var(--dm-deep); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.5rem 0.95rem; border-radius: 999px; box-shadow: 0 10px 22px rgba(15, 23, 42, 0.15); }
.dm-author__cert i { color: var(--dm-primary); font-size: 1.05rem; }
.dm-author__title { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 800; color: var(--dm-ink); line-height: 1.2; letter-spacing: -0.01em; display: inline-block; padding-bottom: 0.55rem; border-bottom: 4px solid var(--dm-orange); margin-bottom: 1.25rem !important; }
.dm-author__text { font-size: 0.98rem; line-height: 1.75; color: var(--dm-body); margin: 0 0 1.1rem 0; }
.dm-author__text:last-child { margin-bottom: 0; }
.dm-author__text strong { color: var(--dm-ink); font-weight: 700; }
.dm-author__highlight { color: var(--dm-primary); font-weight: 800; background: linear-gradient(180deg, transparent 60%, rgba(var(--dm-primary-rgb), 0.18) 60%); padding: 0 0.2rem; }
@media (max-width: 991.98px) { .dm-author__photo-wrap { max-width: 420px; margin: 0 auto; } .dm-author__content { margin-top: 2rem; } }

/* ===== FINAL CTA ===== */
.dm-cta { background: linear-gradient(180deg, var(--dm-soft) 0%, rgba(var(--dm-primary-rgb), 0.04) 100%); padding: 4rem 0; }
@media (min-width: 992px) { .dm-cta { padding: 5.5rem 0; } }
.dm-cta__card { position: relative; background: linear-gradient(135deg, var(--dm-deep) 0%, var(--dm-primary) 35%, var(--dm-accent-2) 100%); border-radius: 2rem; padding: clamp(2rem, 5vw, 4.25rem) clamp(1.25rem, 4vw, 3.25rem); color: #ffffff; overflow: hidden; box-shadow: 0 32px 75px rgba(var(--dm-primary-rgb), 0.32); }
.dm-cta__card::before, .dm-cta__card::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.dm-cta__card::before { width: 380px; height: 380px; top: -140px; right: -120px; background: rgba(255, 78, 0, 0.40); }
.dm-cta__card::after { width: 340px; height: 340px; bottom: -160px; left: -100px; background: rgba(var(--dm-primary-rgb), 0.42); }
.dm-cta__inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.dm-cta__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, 0.18); color: #ffffff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.25rem; backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.25); }
.dm-cta__eyebrow i { font-size: 1rem; color: #bbf7d0; }
.dm-cta__title { color: #ffffff !important; font-size: clamp(1.55rem, 3.4vw, 2.4rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1.5rem !important; line-height: 1.18; display: inline-block; position: relative; padding-bottom: 0.75rem; }
.dm-cta__title::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 80px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--dm-orange) 0%, #bbf7d0 100%); }
.dm-cta__lead { font-size: clamp(1rem, 1.7vw, 1.12rem); line-height: 1.65; color: rgba(255, 255, 255, 0.95); font-weight: 500; margin: 0 0 1rem 0; }
.dm-cta__lead strong { color: #ffffff; font-weight: 700; }
.dm-cta__lead a.link { color: #bbf7d0; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(187, 247, 208, 0.5); text-underline-offset: 3px; }
.dm-cta__lead a.link:hover { color: #ffffff; text-decoration-color: #ffffff; }
.dm-cta__buttons { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; justify-content: center; margin-top: 1.5rem; }
.dm-cta__btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 1rem 2rem; border-radius: 0.75rem; font-weight: 700; text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.04em; text-decoration: none; transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease; border: 2px solid transparent; }
.dm-cta__btn--primary { background: linear-gradient(135deg, var(--dm-orange) 0%, #ff7a3d 100%); color: #ffffff; box-shadow: 0 14px 32px rgba(255, 78, 0, 0.45); }
.dm-cta__btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(255, 78, 0, 0.55); color: #ffffff; }
.dm-cta__btn--secondary { background: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.55); }
.dm-cta__btn--secondary:hover { transform: translateY(-3px); background: #ffffff; color: var(--dm-deep); border-color: #ffffff; }
.dm-cta__btn i { font-size: 1.1rem; }
.dm-cta__trust { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.78); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center; }
.dm-cta__trust i { color: #bbf7d0; }
@media (max-width: 767.98px) { .dm-cta__buttons { flex-direction: column; align-items: stretch; } .dm-cta__btn { width: 100%; } }

/* ===== STICKY MOBILE CTA ===== */
.dm-page { padding-bottom: 0; }
@media (max-width: 767.98px) { body.dm-page { padding-bottom: 78px; } }
.dm-mcta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px); border-top: 1px solid rgba(var(--dm-primary-rgb), 0.18); box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12); padding: 0.6rem 0.75rem; padding-bottom: calc(0.6rem + env(safe-area-inset-bottom)); }
@media (max-width: 767.98px) { .dm-mcta { display: block; } }
.dm-mcta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.dm-mcta__btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; padding: 0.85rem 0.75rem; border-radius: 0.65rem; font-weight: 700; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.03em; text-decoration: none; line-height: 1; min-height: 48px; }
.dm-mcta__btn--primary { background: linear-gradient(135deg, var(--dm-orange) 0%, #ff7a3d 100%); color: #ffffff; box-shadow: 0 8px 18px rgba(255, 78, 0, 0.32); }
.dm-mcta__btn--primary:hover, .dm-mcta__btn--primary:focus { color: #ffffff; }
.dm-mcta__btn--secondary { background: var(--dm-grad-accent); color: #ffffff; box-shadow: 0 8px 18px rgba(var(--dm-accent-2-rgb), 0.28); }
.dm-mcta__btn--secondary:hover, .dm-mcta__btn--secondary:focus { color: #ffffff; }
.dm-mcta__btn i { font-size: 1.05rem; }
