.dc-cta {
    --cta-bg:     #0a1628;
    --cta-accent: #1a6bf0;
    --cta-radius: 22px;
}

.dc-cta {
    background: var(--cta-bg);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.dc-cta__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
}

.dc-cta__glow--1 {
    width: 480px; height: 480px;
    background: var(--cta-accent);
    opacity: 0.18;
    top: -160px; right: -100px;
}

.dc-cta__glow--2 {
    width: 360px; height: 360px;
    background: var(--cta-accent);
    opacity: 0.10;
    bottom: -120px; left: -60px;
}

.dc-cta__wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dc-cta__body {
    display: flex;
    flex-direction: column;
}

.dc-cta__body .hero-eyebrow {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.dc-cta--visible .hero-eyebrow { opacity: 1; transform: none; }

.dc-cta .eyebrow-inner {
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.12);
}

.dc-cta .eyebrow-inner::before {
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.10),
        transparent);
}

.dc-cta .eyebrow-inner svg {
    color: rgba(255, 255, 255, 0.7);
}

.dc-cta__heading {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.14;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease 0.18s, transform 0.5s ease 0.18s;
}

.dc-cta--visible .dc-cta__heading { opacity: 1; transform: none; }

.dc-cta__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.7;
    margin: 0 0 30px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.26s, transform 0.5s ease 0.26s;
}

.dc-cta--visible .dc-cta__desc { opacity: 1; transform: none; }

.dc-cta__usps {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.dc-cta__usp {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.dc-cta--visible .dc-cta__usp {
    opacity: 1;
    transform: none;
    transition-delay: calc(0.32s + var(--usp-i, 0) * 0.07s);
}

.dc-cta__usp-check {
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: color-mix(in srgb, var(--cta-accent) 18%, transparent);
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.dc-cta__usp-check svg {
    width: 14px; height: 14px;
    color: var(--cta-accent);
    stroke-width: 2.5;
}

.dc-cta__usp:hover .dc-cta__usp-check {
    background: color-mix(in srgb, var(--cta-accent) 30%, transparent);
}

.dc-cta__usp-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.35;
}

.dc-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.dc-cta--visible .dc-cta__actions { opacity: 1; transform: none; }

.dc-cta__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dc-cta__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.dc-cta__pill svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
}

.dc-cta__pill--phone:hover {
    background: color-mix(in srgb, var(--cta-accent) 12%, transparent);
    border-color: color-mix(in srgb, var(--cta-accent) 30%, transparent);
    color: #ffffff;
    box-shadow: 0 0 24px -6px var(--cta-accent);
}

.dc-cta__pill--wa:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.30);
    color: #25D366;
    box-shadow: 0 0 24px -6px #25D366;
}

.dc-cta__visual {
    position: relative;
    min-height: 460px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.dc-cta--visible .dc-cta__visual { opacity: 1; transform: none; }

.dc-cta__img {
    position: absolute;
    overflow: hidden;
    z-index: 1;
}

.dc-cta__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.dc-cta__img--main {
    width: 60%;
    aspect-ratio: 4 / 5;
    top: 3%;
    left: 10%;
    z-index: 2;
    border-radius: 22px;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.15),
        0 24px 56px rgba(0,0,0,0.30);
    animation: ctaFloat 6s ease-in-out infinite alternate;
}

@keyframes ctaFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.dc-cta__img--f1 {
    width: 36%;
    aspect-ratio: 3 / 4;
    top: -3%;
    right: -2%;
    z-index: 3;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 36px rgba(0,0,0,0.30);
    transform: rotate(3deg);
    animation: ctaFloat1 7s ease-in-out 0.5s infinite alternate;
}

@keyframes ctaFloat1 {
    0%   { transform: rotate(3deg) translateY(0); }
    100% { transform: rotate(3deg) translateY(-8px); }
}

.dc-cta__img--f2 {
    width: 34%;
    aspect-ratio: 1 / 1;
    bottom: 1%;
    left: -4%;
    z-index: 3;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 36px rgba(0,0,0,0.30);
    transform: rotate(-2deg);
    animation: ctaFloat2 8s ease-in-out 1s infinite alternate;
}

@keyframes ctaFloat2 {
    0%   { transform: rotate(-2deg) translateY(0); }
    100% { transform: rotate(-2deg) translateY(-7px); }
}

.dc-cta__trust {
    position: absolute;
    bottom: 10%;
    right: 3%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    animation: ctaFloat 5s ease-in-out 1.5s infinite alternate;
    opacity: 0;
    transition: opacity 0.5s ease 0.6s;
}

.dc-cta--visible .dc-cta__trust { opacity: 1; }

.dc-cta__trust-star {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-cta__trust-star svg {
    width: 20px; height: 20px;
    color: #facc15;
}

.dc-cta__trust-body {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.dc-cta__trust-body strong {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.dc-cta__trust-sep {
    opacity: 0.4;
}

.dc-cta__float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    width: 280px;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
}

.dc-cta__float--visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.dc-cta__float--minimized {
    width: auto;
    padding: 0;
    border-radius: 14px;
}

.dc-cta__float--minimized .dc-cta__float-body {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    overflow: hidden;
    pointer-events: none;
}

.dc-cta__float--minimized .dc-cta__float-toggle {
    border-radius: 14px;
    padding: 12px 16px;
}

.dc-cta__float-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 0 18px 0 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.dc-cta__float-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.dc-cta__float-icon--max { display: none; }
.dc-cta__float--minimized .dc-cta__float-icon--min { display: none; }
.dc-cta__float--minimized .dc-cta__float-icon--max { display: block; }

.dc-cta__float--minimized .dc-cta__float-toggle {
    position: static;
    width: 100%;
    border-radius: 14px;
}

.dc-cta__float-body {
    max-height: 300px;
    opacity: 1;
    padding-top: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding-top 0.35s ease;
}

.dc-cta__float-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.dc-cta__float-text svg {
    color: var(--cta-accent);
    flex-shrink: 0;
}

.dc-cta__float-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dc-cta__float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #ffffff;
    color: var(--cta-bg, #0a1628);
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.2s;
}

.dc-cta__float-btn:hover {
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    color: var(--cta-bg, #0a1628);
}

.dc-cta__float-icons {
    display: flex;
    gap: 8px;
}

.dc-cta__float-ico {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.dc-cta__float-ico svg {
    width: 18px; height: 18px;
    color: #ffffff;
}

.dc-cta__float-ico--phone:hover {
    background: color-mix(in srgb, var(--cta-accent) 15%, transparent);
    border-color: color-mix(in srgb, var(--cta-accent) 30%, transparent);
    box-shadow: 0 0 16px -4px var(--cta-accent);
}

.dc-cta__float-ico--wa:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.30);
    box-shadow: 0 0 16px -4px #25D366;
}

.dc-cta__float-ico--wa:hover svg {
    color: #25D366;
}

@media (max-width: 1024px) {
    .dc-cta__wrap {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 620px;
    }

    .dc-cta__visual { order: -1; min-height: 380px; }

    .dc-cta__body {
        align-items: center;
        text-align: center;
    }

    .dc-cta__usps {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .dc-cta__actions { align-items: center; }
    .dc-cta__quick { justify-content: center; }
}

@media (max-width: 768px) {
    .dc-cta { padding: 56px 16px; }

    .dc-cta__glow--1 { width: 280px; height: 280px; }
    .dc-cta__glow--2 { width: 220px; height: 220px; }

    .dc-cta__visual { min-height: 320px; }
    .dc-cta__img--main { border-radius: 18px; }
    .dc-cta__img--f1, .dc-cta__img--f2 { border-radius: 14px; }

    .dc-cta__usps {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        gap: 10px 16px;
    }

    .dc-cta__actions .hero-btn { width: 100%; justify-content: center; }

    .dc-cta__quick { width: 100%; }
    .dc-cta__pill { flex: 1; justify-content: center; }

    .dc-cta__trust {
        padding: 10px 14px;
        gap: 8px;
    }

    .dc-cta__trust-body strong { font-size: 15px; }
    .dc-cta__trust-body { font-size: 11px; }
}

@media (max-width: 480px) {
    .dc-cta { padding: 40px 14px; }

    .dc-cta__float {
        right: 12px;
        bottom: 12px;
        width: 260px;
        padding: 14px;
    }

    .dc-cta__heading { font-size: 26px; }
    .dc-cta__visual { min-height: 270px; }
    .dc-cta__img--f1 { width: 32%; }
    .dc-cta__img--f2 { width: 30%; }
    .dc-cta__usps { grid-template-columns: 1fr; gap: 8px; }
    .dc-cta__usp-text { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .dc-cta__body .hero-eyebrow,
    .dc-cta__heading,
    .dc-cta__desc,
    .dc-cta__usp,
    .dc-cta__actions,
    .dc-cta__visual,
    .dc-cta__trust {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .dc-cta__img--main,
    .dc-cta__img--f1,
    .dc-cta__img--f2,
    .dc-cta__trust {
        animation: none !important;
    }

    .dc-cta__img--f1 { transform: rotate(3deg) !important; }
    .dc-cta__img--f2 { transform: rotate(-2deg) !important; }

    .dc-cta__float { transition: none !important; }

    .dc-cta__pill:hover {
        box-shadow: none !important;
    }
}

.elementor-editor-active .dc-cta__body .hero-eyebrow,
.elementor-editor-active .dc-cta__heading,
.elementor-editor-active .dc-cta__desc,
.elementor-editor-active .dc-cta__usp,
.elementor-editor-active .dc-cta__actions,
.elementor-editor-active .dc-cta__visual,
.elementor-editor-active .dc-cta__trust {
    opacity: 1 !important;
    transform: none !important;
}

.elementor-editor-active .dc-cta__img--f1 { transform: rotate(3deg) !important; }
.elementor-editor-active .dc-cta__img--f2 { transform: rotate(-2deg) !important; }

.elementor-editor-active .dc-cta__float {
    display: none !important;
}
