    .dc-cta-stick {
        --dcs-accent: #d4a24c;
        --dcs-accent-soft: #e8b965;
        --dcs-dark: #0e1217;
        --dcs-wa: #25d366;
        position: fixed; left: 0; right: 0; bottom: 0;
        z-index: 9990;
        pointer-events: none;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        opacity: 0;
        transform: translateY(120%);
        transition: opacity .45s cubic-bezier(.2,.7,.2,1), transform .45s cubic-bezier(.2,.7,.2,1);
    }
    .dc-cta-stick *, .dc-cta-stick *::before, .dc-cta-stick *::after { box-sizing: border-box; }
    .dc-cta-stick.is-active { opacity: 1; transform: translateY(0); pointer-events: none; }
    .dc-cta-stick.is-active .dc-cta-stick__bar,
    .dc-cta-stick.is-active .dc-cta-stick__pill { pointer-events: auto; }

    /* ============ EXPANDED BAR ============ */
    .dc-cta-stick__bar {
        max-width: 620px;
        margin: 0 clamp(16px, 3vw, 32px) 12px auto;
        padding: 6px 8px 6px 8px;
        display: flex; align-items: center; gap: 8px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(18px) saturate(1.3);
        -webkit-backdrop-filter: blur(18px) saturate(1.3);
        border: 1px solid rgba(14,18,23,0.06);
        border-radius: 100px;
        box-shadow: 0 18px 50px -14px rgba(14,18,23,0.22), 0 1px 0 rgba(255,255,255,0.6) inset;
        transition: opacity .35s cubic-bezier(.2,.7,.2,1), transform .35s cubic-bezier(.2,.7,.2,1);
    }
    .dc-cta-stick.is-collapsed .dc-cta-stick__bar { opacity: 0; transform: translateY(20px) scale(.95); pointer-events: none !important; visibility: hidden; }

    .dc-cta-stick__logo {
        display: inline-flex; align-items: center;
        padding: 2px 10px 2px 4px;
        border-right: 1px solid rgba(14,18,23,0.08);
        margin-right: 2px;
    }
    .dc-cta-stick__logo img { height: 24px; width: auto; display: block; }

    .dc-cta-stick__phone {
        display: inline-flex; align-items: center; gap: 8px;
        color: var(--dcs-dark); text-decoration: none;
        font-size: 13px; font-weight: 600; letter-spacing: .01em;
        padding: 4px 10px 4px 4px; border-radius: 100px;
        transition: background .25s;
    }
    .dc-cta-stick__phone:hover { background: rgba(14,18,23,0.04); }
    .dc-cta-stick__phone .ic {
        width: 28px; height: 28px; border-radius: 50%;
        display: grid; place-items: center;
        background: rgba(212,162,76,0.16);
        color: var(--dcs-accent);
        flex-shrink: 0;
    }
    .dc-cta-stick__phone small { display: block; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(14,18,23,0.55); font-weight: 600; line-height: 1.2; }

    .dc-cta-stick__spacer { flex: 1; min-width: 4px; }

    .dc-cta-stick__test {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 18px; border-radius: 100px;
        background: linear-gradient(180deg, var(--dcs-accent-soft) 0%, var(--dcs-accent) 100%);
        color: #1a1207 !important; text-decoration: none;
        font-size: 13px; font-weight: 700; letter-spacing: .03em;
        box-shadow: 0 10px 24px -8px rgba(212,162,76,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
        transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
        will-change: transform;
        white-space: nowrap;
    }
    .dc-cta-stick__test:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -8px rgba(212,162,76,0.7), inset 0 1px 0 rgba(255,255,255,0.45); }
    .dc-cta-stick__test .arr { transition: transform .3s; }
    .dc-cta-stick__test:hover .arr { transform: translateX(4px); }

    .dc-cta-stick__wa {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 8px 14px; border-radius: 100px;
        background: var(--dcs-wa); color: #fff !important;
        text-decoration: none; font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
        box-shadow: 0 8px 20px -6px rgba(37,211,102,0.55);
        transition: transform .3s, box-shadow .3s;
        white-space: nowrap;
    }
    .dc-cta-stick__wa:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -6px rgba(37,211,102,0.75); }
    .dc-cta-stick__wa svg { flex-shrink: 0; }

    .dc-cta-stick__close {
        background: rgba(14,18,23,0.05);
        border: 1px solid rgba(14,18,23,0.08);
        color: rgba(14,18,23,0.55);
        width: 30px; height: 30px; border-radius: 50%;
        display: grid; place-items: center;
        cursor: pointer;
        transition: background .25s, color .25s, transform .3s;
        margin-left: 2px;
    }
    .dc-cta-stick__close:hover { background: rgba(14,18,23,0.1); color: var(--dcs-dark); transform: rotate(90deg); }

    /* ============ COLLAPSED PILL ============ */
    .dc-cta-stick__pill {
        position: absolute; right: clamp(16px, 3vw, 32px); bottom: 14px;
        display: inline-flex; align-items: center; gap: 10px;
        padding: 10px 18px; border-radius: 100px;
        background: linear-gradient(180deg, var(--dcs-accent-soft) 0%, var(--dcs-accent) 100%);
        color: #1a1207 !important; text-decoration: none;
        font-size: 13px; font-weight: 700; letter-spacing: .03em;
        border: none; cursor: pointer;
        box-shadow: 0 14px 32px -10px rgba(212,162,76,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
        opacity: 0; transform: scale(.7) translateY(20px);
        transition: opacity .35s cubic-bezier(.2,.7,.2,1), transform .35s cubic-bezier(.2,.7,.2,1);
        pointer-events: none !important;
    }
    .dc-cta-stick.is-collapsed .dc-cta-stick__pill { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto !important; }
    .dc-cta-stick__pill::after {
        content: ""; position: absolute; inset: -8px; border-radius: 100px;
        box-shadow: 0 0 0 0 rgba(212,162,76,0.55);
        animation: dcs-pulse 2.4s ease-out infinite;
        z-index: -1; pointer-events: none;
    }
    @keyframes dcs-pulse { 0% { box-shadow: 0 0 0 0 rgba(212,162,76,0.55); } 100% { box-shadow: 0 0 0 22px rgba(212,162,76,0); } }
    .dc-cta-stick__pill:hover { transform: translateY(-3px); }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 880px) {
        .dc-cta-stick__bar { gap: 10px; padding: 10px 12px; margin: 0 12px 12px; flex-wrap: nowrap; overflow: hidden; }
        .dc-cta-stick__logo, .dc-cta-stick__phone small { display: none; }
        .dc-cta-stick__phone .ic { width: 38px; height: 38px; }
        .dc-cta-stick__phone strong { display: none; }
        .dc-cta-stick__test { padding: 12px 18px; font-size: 13px; flex: 1; justify-content: center; }
        .dc-cta-stick__test .arr { display: none; }
        .dc-cta-stick__wa span { display: none; }
        .dc-cta-stick__wa { padding: 12px; }
    }
    @media (max-width: 480px) {
        .dc-cta-stick__close { width: 34px; height: 34px; }
    }

    body.admin-bar .dc-cta-stick { bottom: 0; }
