.dc-ph {
    --ph-bg:      #ffffff;
    --ph-accent:  #1a6bf0;
    --ph-title:   #0f172a;
    --ph-text:    #64748b;
    --ph-border:  #e8ecf1;
    --ph-radius:  16px;
}

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

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

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

.dc-ph__breadcrumb {
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.dc-ph--visible .dc-ph__breadcrumb { opacity: 1; transform: none; }

.dc-ph__bc-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dc-ph__bc-item {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--ph-text);
}

.dc-ph__bc-item + .dc-ph__bc-item::before {
    content: '';
    width: 5px; height: 5px;
    border-right: 1.5px solid var(--ph-accent);
    border-top: 1.5px solid var(--ph-accent);
    transform: rotate(45deg);
    margin: 0 11px;
    opacity: 0.55;
}

.dc-ph__bc-item a {
    color: var(--ph-text);
    text-decoration: none;
    transition: color 0.2s;
}

.dc-ph__bc-item a:hover { color: var(--ph-accent); }

.dc-ph__bc-item span[aria-current] {
    color: var(--ph-accent);
    font-weight: 600;
}

.dc-ph__content .hero-eyebrow {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.18s, transform 0.4s ease 0.18s;
}

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

.dc-ph__title {
    color: var(--ph-title);
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease 0.24s, transform 0.5s ease 0.24s;
}

.dc-ph--visible .dc-ph__title { opacity: 1; transform: none; }

.dc-ph__subtitle {
    color: var(--ph-text);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.7;
    margin: 14px 0 0;
    max-width: 520px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.34s, transform 0.5s ease 0.34s;
}

.dc-ph--visible .dc-ph__subtitle { opacity: 1; transform: none; }

.dc-ph__usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}

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

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

.dc-ph__usp-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--ph-accent) 10%, transparent);
    color: var(--ph-accent);
    transition: transform 0.25s ease;
}

.dc-ph__usp-icon i { font-size: 13px; }
.dc-ph__usp-icon svg { width: 13px; height: 13px; }

.dc-ph__usp:hover .dc-ph__usp-icon {
    transform: scale(1.15);
}

.dc-ph__usp-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--ph-title);
    line-height: 1.35;
}

.dc-ph__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.dc-ph--visible .dc-ph__ctas { opacity: 1; transform: none; }

.dc-ph__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.6s, transform 0.4s ease 0.6s;
}

.dc-ph--visible .dc-ph__actions { opacity: 1; transform: none; }

.dc-ph__act {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dc-ph__act:hover { transform: translateY(-2px); }

.dc-ph__act--phone {
    background: var(--ph-accent);
    color: #fff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--ph-accent) 30%, transparent);
}

.dc-ph__act--phone:hover {
    box-shadow: 0 6px 22px color-mix(in srgb, var(--ph-accent) 45%, transparent);
}

.dc-ph__act--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.dc-ph__act--wa:hover {
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.dc-ph__act svg { flex-shrink: 0; }

.dc-ph__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease 0.8s;
}

.dc-ph--visible .dc-ph__scroll { opacity: 1; }

.dc-ph__scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid color-mix(in srgb, var(--ph-accent) 35%, transparent);
    border-radius: 11px;
    position: relative;
}

.dc-ph__scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--ph-accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: phScrollWheel 1.8s ease-in-out infinite;
}

@keyframes phScrollWheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.dc-ph__scroll-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ph-text);
    opacity: 0.5;
}

.dc-ph__visual {
    position: relative;
    min-height: 480px;
    
}

.dc-ph__img {
    position: absolute;
    overflow: hidden;
    will-change: transform;
    z-index: 1;
}

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

.dc-ph__img--main {
    width: 78%;
    aspect-ratio: 4 / 5;
    top: 4%;
    left: 8%;
    border-radius: 24px;
    z-index: 2;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 50px rgba(0,0,0,0.10);
    opacity: 0;
    transform: scale(0.94) translateY(16px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s cubic-bezier(0.22,1,0.36,1) 0.25s;
}

.dc-ph--visible .dc-ph__img--main {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.dc-ph__video-wrap {
    position: absolute;
    overflow: hidden;
}

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

.dc-ph__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    padding: 0;
}

.dc-ph__play-btn svg {
    width: 64px;
    height: 64px;
}

.dc-ph__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.5);
}

.dc-ph__play-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}

.dc-ph__video-wrap.is-playing .dc-ph__play-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dc-ph__img--float1 {
    width: 38%;
    aspect-ratio: 3 / 4;
    top: -4%;
    right: -3%;
    border-radius: 18px;
    z-index: 3;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.06);
    border: 3px solid #ffffff;
    transform: rotate(3deg);
    opacity: 0;
    transition: opacity 0.5s ease 0.45s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.45s;
}

.dc-ph--visible .dc-ph__img--float1 {
    opacity: 1;
    transform: rotate(3deg) translateY(0);
}

.dc-ph__img--float2 {
    width: 35%;
    aspect-ratio: 1 / 1;
    bottom: 2%;
    left: -5%;
    border-radius: 18px;
    z-index: 3;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.06);
    border: 3px solid #ffffff;
    transform: rotate(-2deg);
    opacity: 0;
    transition: opacity 0.5s ease 0.55s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.55s;
}

.dc-ph--visible .dc-ph__img--float2 {
    opacity: 1;
    transform: rotate(-2deg) translateY(0);
}

.dc-ph__badge {
    position: absolute;
    bottom: 14%;
    right: 2%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.10),
        0 1px 3px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(10px) scale(0.92);
    transition: opacity 0.5s ease 0.65s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.65s;
    will-change: transform;
}

.dc-ph--visible .dc-ph__badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dc-ph__badge-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--ph-accent) 10%, transparent);
    color: var(--ph-accent);
    flex-shrink: 0;
}

.dc-ph__badge-icon i { font-size: 16px; }
.dc-ph__badge-icon svg { width: 16px; height: 16px; }

.dc-ph__badge-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dc-ph__badge-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--ph-title);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.dc-ph__badge-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ph-text);
    letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
    .dc-ph__wrap {
        gap: 40px;
    }

    .dc-ph__visual {
        min-height: 400px;
    }
}

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

    .dc-ph__content { order: 1; }
    .dc-ph__visual  { order: 2; min-height: 0; aspect-ratio: 4 / 5; max-width: 520px; margin: 0 auto; width: 100%; }
    .dc-ph__scroll  { display: none; }

    .dc-ph__img--float1 { right: 0; }
    .dc-ph__img--float2 { left: 0; }
}

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

    .dc-ph__usps {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dc-ph__ctas {
        flex-direction: column;
    }

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

    .dc-ph__actions {
        flex-direction: column;
    }

    .dc-ph__act {
        justify-content: center;
    }

    .dc-ph__img--main {
        border-radius: 18px;
    }

    .dc-ph__img--float1,
    .dc-ph__img--float2 {
        border-radius: 14px;
    }

    .dc-ph__badge {
        padding: 10px 14px;
        border-radius: 12px;
    }

    .dc-ph__badge-num { font-size: 17px; }

    .dc-ph__play-btn {
        width: 60px;
        height: 60px;
    }

    .dc-ph__play-btn svg {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .dc-ph {
        padding: 28px 16px;
    }

    .dc-ph__bc-item { font-size: 12px; }

    .dc-ph__bc-item + .dc-ph__bc-item::before {
        margin: 0 8px;
        width: 4px; height: 4px;
    }

    .dc-ph__visual {
        aspect-ratio: 4 / 5;
    }

    .dc-ph__img--float1 { width: 32%; }
    .dc-ph__img--float2 { width: 30%; }
}

@media (prefers-reduced-motion: reduce) {
    .dc-ph__breadcrumb,
    .dc-ph__content .hero-eyebrow,
    .dc-ph__title,
    .dc-ph__subtitle,
    .dc-ph__usp,
    .dc-ph__ctas,
    .dc-ph__actions,
    .dc-ph__img,
    .dc-ph__badge {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .dc-ph__img--float1 { transform: rotate(3deg) !important; }
    .dc-ph__img--float2 { transform: rotate(-2deg) !important; }

    .dc-ph__scroll-wheel { animation: none !important; }
}

.elementor-editor-active .dc-ph__breadcrumb,
.elementor-editor-active .dc-ph__content .hero-eyebrow,
.elementor-editor-active .dc-ph__title,
.elementor-editor-active .dc-ph__subtitle,
.elementor-editor-active .dc-ph__usp,
.elementor-editor-active .dc-ph__ctas,
.elementor-editor-active .dc-ph__actions,
.elementor-editor-active .dc-ph__img,
.elementor-editor-active .dc-ph__badge {
    opacity: 1 !important;
    transform: none !important;
}

.elementor-editor-active .dc-ph__img--float1 { transform: rotate(3deg) !important; }
.elementor-editor-active .dc-ph__img--float2 { transform: rotate(-2deg) !important; }
