/* =============================================
   ANIMHAUS — DIGITAL MARKETING PAGE
   dm.css — page-specific overrides
   ============================================= */

/* ── Hero Eyebrow ───────────────────────────── */
.dm-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(217,26,33,0.08);
    border: 1px solid rgba(217,26,33,0.2);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
}

/* ── Floating Orbs ──────────────────────────── */
.dm-float-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

@keyframes dm-float {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(8px, -12px) rotate(4deg); }
    50%  { transform: translate(-6px, 8px) rotate(-3deg); }
    75%  { transform: translate(10px, 4px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.dm-orb {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    animation: dm-float var(--d) ease-in-out var(--delay) infinite;
    backdrop-filter: blur(4px);
}

@media (max-width: 900px) { .dm-float-orbs { display: none; } }

/* Platform-specific orb colors */
.dm-orb--ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
}
.dm-orb--fb { background: #1877f2; }
.dm-orb--yt { background: #ff0000; }
.dm-orb--wa { background: #25d366; }
.dm-orb--pi { background: #e60023; }
.dm-orb--li { background: #0a66c2; }
.dm-orb--tk { background: #010101; }
.dm-orb--sn { background: #fffc00; color: #fff; -webkit-text-stroke: 3px #000; paint-order: stroke fill; }

/* Metric pills */
.dm-metric-pill {
    position: absolute;
    left: var(--x);
    top: var(--y);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #111;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    white-space: nowrap;
    animation: dm-float var(--d) ease-in-out var(--delay) infinite;
}

.dm-metric-pill i {
    color: var(--red);
    font-size: 0.6rem;
}

/* Decorative blobs */
@keyframes dm-blob-pulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.55; }
    50%       { transform: scale(1.12) translate(-10px, 10px); opacity: 0.35; }
}

.dm-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.dm-blob--1 {
    width: 340px; height: 340px;
    background: rgba(217,26,33,0.18);
    top: -80px; right: 10%;
    animation: dm-blob-pulse 8s ease-in-out infinite;
}

.dm-blob--2 {
    width: 260px; height: 260px;
    background: rgba(24,119,242,0.12);
    top: 40%; right: 25%;
    animation: dm-blob-pulse 12s ease-in-out 2s infinite;
}

.dm-blob--3 {
    width: 200px; height: 200px;
    background: rgba(37,211,102,0.12);
    bottom: 10%; right: 15%;
    animation: dm-blob-pulse 10s ease-in-out 4s infinite;
}

/* ── Hero Platform Strip ────────────────────── */
.dm-hero-platforms {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.dm-hero-plat-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.dm-hero-plat-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dm-plat-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.dm-plat-logo:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.dm-plat-logo--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.dm-plat-logo--fb { background: #1877f2; }
.dm-plat-logo--wa { background: #25d366; }
.dm-plat-logo--yt { background: #ff0000; }
.dm-plat-logo--pi { background: #e60023; }
.dm-plat-logo--li { background: #0a66c2; }
.dm-plat-logo--tk { background: #010101; }
.dm-plat-logo--sn { background: #fffc00; color: #111 !important; }

/* ── Colored Platform Icons (section) ──────── */
.dm-platform-icon--ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; color: #fff !important; }
.dm-platform-icon--fb  { background: #1877f2 !important; color: #fff !important; }
.dm-platform-icon--wa  { background: #25d366 !important; color: #fff !important; }
.dm-platform-icon--yt  { background: #ff0000 !important; color: #fff !important; }
.dm-platform-icon--pi  { background: #e60023 !important; color: #fff !important; }
.dm-platform-icon--li  { background: #0a66c2 !important; color: #fff !important; }
.dm-platform-icon--more{ background: rgba(17,17,17,0.08) !important; color: var(--black) !important; }

.dm-platform-card:hover .dm-platform-icon--ig,
.dm-platform-card:hover .dm-platform-icon--fb,
.dm-platform-card:hover .dm-platform-icon--wa,
.dm-platform-card:hover .dm-platform-icon--yt,
.dm-platform-card:hover .dm-platform-icon--pi,
.dm-platform-card:hover .dm-platform-icon--li {
    filter: brightness(1.1);
    transform: scale(1.08);
}

/* ── Billing Toggle ─────────────────────────── */
.dm-billing-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(17, 17, 17, 0.06);
    border-radius: 4px;
    padding: 4px;
    width: fit-content;
}

.dm-billing-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: 2px;
    background: transparent;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.45);
    cursor: pointer;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    font-family: 'Geist', sans-serif;
}

.dm-billing-btn.active {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.dm-save-pill {
    font-size: 0.58rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    padding: 2px 8px;
    border-radius: 2px;
}

/* ── Tier Wrapper (badge-on-top layout) ──────── */
.dm-tier-wrapper {
    position: relative;
    background: var(--light);
}

.dm-tier-wrapper--featured {
    background: #ffffff;
}

.dm-tier-wrapper .sr-tier {
    height: 100%;
    box-sizing: border-box;
}

.dm-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
    font-family: 'Geist', sans-serif;
    background: var(--red);
    padding: 6px 18px;
    border-radius: 0 0 6px 6px;
    z-index: 2;
    pointer-events: none;
}

/* ── Price Display ───────────────────────────── */
.dm-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 6px;
}

.dm-price-currency {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
    align-self: flex-start;
    margin-top: 8px;
}

.dm-price-value {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    transition: opacity 0.15s ease;
}

.dm-price-value.dm-fade {
    opacity: 0;
}

.dm-price-meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4px;
}

.dm-price-period {
    font-size: 0.68rem;
    color: rgba(17, 17, 17, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 2px;
}

.dm-price-custom {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 4px;
}

.dm-price-custom-sub {
    font-size: 0.68rem;
    color: rgba(17, 17, 17, 0.38);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

/* ── Platform Grid ─────────────────────────── */
.dm-platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    background: rgba(17, 17, 17, 0.07);
    border: 1px solid rgba(17, 17, 17, 0.07);
    margin-top: 0;
}

@media (min-width: 640px) {
    .dm-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dm-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dm-platform-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 36px 28px;
    background: var(--light);
    transition: background 0.35s ease;
}

.dm-platform-card:hover {
    background: #f0f0f0;
}

.dm-platform-card--custom {
    background: var(--white);
    border-left: 3px solid rgba(217, 26, 33, 0.25);
}

.dm-platform-card--custom:hover {
    background: #fafafa;
}

.dm-platform-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(217, 26, 33, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--red);
    transition: background 0.3s, transform 0.3s;
}

.dm-platform-card:hover .dm-platform-icon {
    background: rgba(217, 26, 33, 0.16);
    transform: scale(1.08);
}

.dm-platform-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 8px;
}

.dm-platform-info p {
    font-size: 0.78rem;
    color: rgba(17, 17, 17, 0.48);
    line-height: 1.7;
    margin-bottom: 12px;
}

.dm-platform-tag {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red);
    background: rgba(217, 26, 33, 0.08);
    border: 1px solid rgba(217, 26, 33, 0.2);
    padding: 3px 10px;
    border-radius: 2px;
    display: inline-block;
}

/* ── Package Spec Rows ─────────────────────── */
.dm-tier-spec {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 4px;
}

.dm-spec-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dm-spec-row > i {
    color: var(--red);
    font-size: 0.85rem;
    margin-top: 3px;
    opacity: 0.8;
    min-width: 16px;
    text-align: center;
}

.dm-spec-row > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dm-spec-row strong {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 0.2px;
}

.dm-spec-row span {
    font-size: 0.72rem;
    color: rgba(17, 17, 17, 0.4);
    letter-spacing: 0.5px;
}

/* ── Add-on Feature Item ───────────────────── */
.dm-addon-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    padding: 12px 14px;
    border-radius: 4px;
    background: rgba(217, 26, 33, 0.05);
    border: 1px solid rgba(217, 26, 33, 0.15);
    color: rgba(17, 17, 17, 0.65);
}

.dm-addon-item > i {
    color: var(--red) !important;
    font-size: 0.75rem !important;
    margin-top: 3px;
    flex-shrink: 0;
    opacity: 1 !important;
}

.dm-addon-item strong {
    color: var(--red);
}

/* ── Ad Enhancement Note ───────────────────── */
.dm-addon-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 48px;
    padding: 28px 32px;
    border: 1px solid rgba(217, 26, 33, 0.2);
    border-left: 4px solid var(--red);
    background: rgba(217, 26, 33, 0.03);
    border-radius: 4px;
}

.dm-addon-note > i {
    color: var(--red);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.85;
}

.dm-addon-note > div strong {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    display: block;
    margin-bottom: 8px;
}

.dm-addon-note > div p {
    font-size: 0.8rem;
    color: rgba(17, 17, 17, 0.5);
    line-height: 1.8;
    margin: 0;
}

/* ── Footer ────────────────────────────────── */
.sr-footer {
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    background: var(--white);
}

@media (min-width: 768px) {
    .sr-footer { padding: 80px 8% 40px; }
}

@media (min-width: 1280px) {
    .sr-footer { padding: 80px 10% 40px; }
}

.sr-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .sr-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

.sr-footer-brand p {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.3);
    margin-top: 16px;
    font-weight: 700;
}

.sr-footer-col h3 {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.35);
    font-weight: 700;
    margin-bottom: 20px;
}

.sr-footer-col p,
.sr-footer-col a {
    font-size: 0.82rem;
    color: rgba(17, 17, 17, 0.55);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.sr-footer-col a:hover {
    color: var(--red);
}

.sr-footer-bottom {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.25);
    padding-top: 32px;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════
   TICKER / MARQUEE
   ═══════════════════════════════════════════════ */
.dm-ticker {
    width: 100%;
    overflow: hidden;
    background: var(--black);
    padding: 16px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dm-ticker::before,
.dm-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 3;
    pointer-events: none;
}

.dm-ticker::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.dm-ticker::after  { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }

.dm-ticker-track {
    display: flex;
    animation: dm-ticker-scroll 38s linear infinite;
    will-change: transform;
}

.dm-ticker:hover .dm-ticker-track { animation-play-state: paused; }

@keyframes dm-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.dm-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 28px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Geist', sans-serif;
    transition: color 0.2s;
}

.dm-ticker-item:hover { color: rgba(255,255,255,0.9); }
.dm-ticker-item i { font-size: 1rem; }

.dm-ticker-item--ig i { color: #e1306c; }
.dm-ticker-item--fb i { color: #1877f2; }
.dm-ticker-item--wa i { color: #25d366; }
.dm-ticker-item--yt i { color: #ff0000; }
.dm-ticker-item--pi i { color: #e60023; }
.dm-ticker-item--li i { color: #0a66c2; }
.dm-ticker-item--tk i { color: #69c9d0; }
.dm-ticker-item--sn i { color: #fffc00; }
.dm-ticker-item--star i { color: var(--red); }

.dm-ticker-sep {
    color: rgba(255,255,255,0.12);
    padding: 0 4px;
    flex-shrink: 0;
    font-size: 0.9rem;
    line-height: 1;
}


/* ═══════════════════════════════════════════════
   HERO LAYOUT  (desktop two-column)
   ═══════════════════════════════════════════════ */
@media (min-width: 1100px) {
    #sr-hero {
        justify-content: center;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .sr-hero-content {
        display: grid;
        grid-template-columns: 1fr 380px;
        grid-template-areas:
            "left visual"
            "plats plats";
        gap: 56px 80px;
        align-items: center;
        max-width: 1400px !important;
        width: 100%;
    }

    .dm-hero-left { grid-area: left; }
    .dm-hero-visual { grid-area: visual; display: flex !important; flex-direction: column; gap: 14px; }
    .dm-hero-platforms { grid-area: plats; }
}

@media (max-width: 1099px) {
    .dm-hero-visual { display: none !important; }
    .dm-hero-left { width: 100%; }
}


/* ═══════════════════════════════════════════════
   HERO STAT CARDS
   ═══════════════════════════════════════════════ */
.dm-stat-card {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 18px 20px 16px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dm-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 48px rgba(0,0,0,0.13);
}

.dm-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    opacity: 0.06;
    pointer-events: none;
}

.dm-stat-card--ig::before  { background: radial-gradient(circle at 30% 107%, #fdf497, #fd5949, #d6249f, #285AEB); }
.dm-stat-card--meta::before { background: radial-gradient(80% 80% at 20% 20%, #0668E1, #19A4FA); }
.dm-stat-card--yt::before  { background: radial-gradient(80% 80% at 20% 20%, #FF0000, #FF6B35); }

.dm-stat-card--ig   { border-color: rgba(214, 36, 159, 0.25); }
.dm-stat-card--meta { border-color: rgba(6, 104, 225, 0.25); }
.dm-stat-card--yt   { border-color: rgba(255, 0, 0, 0.20); }

/* sparkline bars */
.card-sparkline { display: flex; align-items: flex-end; gap: 3px; height: 32px; margin-bottom: 12px; }
.card-sparkline .bar { flex: 1; border-radius: 3px 3px 0 0; opacity: 0.3; }
.card-sparkline .bar.highlight { opacity: 1; }
.dm-stat-card--ig   .bar { background: #d6249f; }
.dm-stat-card--meta .bar { background: #19A4FA; }
.dm-stat-card--yt   .bar { background: #FF4444; }

/* delta footer */
.footer-delta { color: #22c55e; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.footer-period { font-size: 11px; color: rgba(17,17,17,0.38); }

.dm-stat-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dm-stat-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #fff;
    flex-shrink: 0;
}

.dm-stat-card--ig   .dm-stat-card-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.dm-stat-card--meta .dm-stat-card-icon { background: linear-gradient(135deg, #1877f2, #0a66c2); }
.dm-stat-card--yt   .dm-stat-card-icon { background: #ff0000; }

.dm-stat-card-header > span {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--black);
    flex: 1;
    font-family: 'Geist', sans-serif;
}

.dm-stat-card-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #22c55e;
    font-family: 'Geist', sans-serif;
}

.dm-live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: dm-pulse-dot 1.5s ease-in-out infinite;
}

@keyframes dm-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.45; transform: scale(1.6); }
}

.dm-stat-card-numbers {
    display: flex;
    gap: 24px;
}

.dm-stat-num-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dm-stat-big {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}

.dm-stat-label {
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(17,17,17,0.38);
    white-space: nowrap;
}

.dm-stat-card-plats {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.dm-stat-card-plat {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
}

.dm-stat-card-plat--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.dm-stat-card-plat--fb { background: #1877f2; }
.dm-stat-card-plat--wa { background: #25d366; }
