/****************************************************/
/***   Crypto Scam Service Page – Custom Styles   ***/
/****************************************************/

/* -------- 1. Page header tweaks -------- */

.crypto-page-header {
    position: relative;
    overflow: hidden;
}

.crypto-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(115, 202, 237, 0.18),
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(1, 146, 151, 0.25),
            transparent 55%
        );
    /* mix-blend-mode: screen; */
    pointer-events: none;
}

.crypto-page-subtitle {
    max-width: 640px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    margin: 18px 0 0;
    opacity: 0.9;
}

.page-header .breadcrumb {
    margin-top: 20px;
}

/* -------- 2. Intro section layout & base -------- */

.crypto-service-intro {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 70px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f8f7 45%, #edf5f7 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(4, 42, 45, 0.02);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.crypto-service-intro::before,
.crypto-service-intro::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: soft-light;
    opacity: 0.8;
}

.crypto-service-intro::before {
    width: 260px;
    height: 260px;
    right: -80px;
    top: -120px;
    background: radial-gradient(
        circle,
        rgba(115, 202, 237, 0.55),
        transparent 70%
    );
}

.crypto-service-intro::after {
    width: 180px;
    height: 180px;
    left: -40px;
    bottom: -60px;
    background: radial-gradient(
        circle,
        rgba(1, 146, 151, 0.5),
        transparent 70%
    );
}

.crypto-intro-row {
    row-gap: 40px;
}

.crypto-intro-content .section-title h2 {
    max-width: 540px;
}

.crypto-intro-content > p:first-of-type {
    font-size: 17px;
    color: #555b63;
}

.crypto-intro-content > p + p {
    margin-top: 6px;
}

/* -------- 3. Intro list & bullets -------- */

.crypto-intro-list {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--divider-color);
}

.crypto-intro-list h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.crypto-intro-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.crypto-intro-list ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #4b4f53;
    font-size: 15px;
}

.crypto-intro-list ul li:last-child {
    margin-bottom: 0;
}

.crypto-intro-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dark-color), var(--accent-color));
    box-shadow: 0 0 0 3px rgba(1, 146, 151, 0.12);
}

/* -------- 4. Sidebar summary card -------- */

.crypto-summary-card {
    position: relative;
    background: #042a2d;
    color: var(--white-color);
    border-radius: 24px;
    padding: 28px 26px 26px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.crypto-summary-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(115, 202, 237, 0.5),
            transparent 55%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(255, 255, 255, 0.08),
            transparent 65%
        );
    pointer-events: none;
}

.crypto-summary-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.crypto-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.crypto-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    column-gap: 8px;
}

.crypto-summary-list li:last-child {
    border-bottom: none;
}

.crypto-summary-list .label {
    font-size: 14px;
    opacity: 0.9;
}

.crypto-summary-list .value {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.crypto-summary-highlight {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.crypto-summary-highlight p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.crypto-summary-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 12px;
}

.crypto-summary-note {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

/* -------- 5. Process section base -------- */

.crypto-process-section {
    padding: 90px 0 70px;
}

.crypto-process-section .section-title h2 {
    max-width: 680px;
}

.crypto-steps-row {
    row-gap: 30px;
}

.crypto-steps-row-bottom {
    margin-top: 20px;
}

/* -------- 6. Process cards / steps -------- */

.crypto-step-item {
    position: relative;
    height: 100%;
    padding: 24px 22px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(4, 42, 45, 0.06);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.4);
    transition:
        transform 0.25s ease-out,
        box-shadow 0.25s ease-out,
        border-color 0.25s ease-out,
        background 0.25s ease-out;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crypto-step-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(
                135deg,
                rgba(115, 202, 237, 0.5),
                rgba(1, 146, 151, 0.7)
            )
            border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
    z-index: -1;
}

.crypto-step-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(4, 42, 45, 0.06);
}

.crypto-step-item:hover::before {
    opacity: 1;
}

.crypto-step-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dark-color), var(--accent-color));
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    box-shadow:
        0 10px 22px rgba(1, 146, 151, 0.45),
        0 0 0 3px rgba(115, 202, 237, 0.3);
}

.crypto-step-item h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.crypto-step-item p {
    font-size: 14px;
    color: #4f5459;
    margin-bottom: 6px;
}

.crypto-step-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.crypto-step-item ul li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: #5a5f64;
    margin-bottom: 4px;
}

.crypto-step-item ul li:last-child {
    margin-bottom: 0;
}

.crypto-step-item ul li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 14px;
    color: var(--dark-color);
}

/* -------- 7. Conditions & CTA section base -------- */

.crypto-conditions-section {
    margin: 20px 0 100px;
    padding: 70px 40px 60px;
    background: linear-gradient(135deg, #042a2d 0%, #06464d 55%, #0b646e 100%);
    color: var(--white-color);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.crypto-conditions-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(255, 255, 255, 0.14),
            transparent 50%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(115, 202, 237, 0.35),
            transparent 60%
        );
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
}

.crypto-conditions-row {
    position: relative;
    z-index: 1;
    row-gap: 40px;
}

.crypto-conditions-block {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 22px;
    padding: 26px 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.02);
}

.crypto-conditions-block .section-title h2 {
    color: var(--white-color);
}

.crypto-conditions-block .section-title h3 {
    color: var(--white-color);
    background-image: url("../images/icon-sub-heading.svg");
}

.crypto-conditions-block p {
    color: rgba(255, 255, 255, 0.9);
}

.crypto-conditions-note {
    margin-top: 10px;
    font-size: 14px;
}

/* альтернативний блок (rechts) */

.crypto-conditions-block-alt {
    background: rgba(0, 0, 0, 0.28);
}

.crypto-conditions-block-alt h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #fff;
    filter: drop-shadow(2px 4px 6px black);
}

/* -------- 8. Conditions lists -------- */

.crypto-conditions-list {
    margin: 18px 0 14px;
    padding: 0;
    list-style: none;
}

.crypto-conditions-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.96);
}

.crypto-conditions-list li:last-child {
    margin-bottom: 0;
}

.crypto-conditions-list li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(
        135deg,
        rgba(115, 202, 237, 0.7),
        rgba(1, 146, 151, 0.9)
    );
    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.15),
        0 0 12px rgba(115, 202, 237, 0.5);
}

/* highlight box in right block */

.crypto-conditions-highlight {
    margin-top: 16px;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(4, 42, 45, 0.75);
    border: 1px solid rgba(115, 202, 237, 0.6);
}

.crypto-conditions-highlight p {
    margin: 0;
    font-size: 14px;
}

/* -------- 9. CTA row -------- */

.crypto-cta-row {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.crypto-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.crypto-cta-text h3 {
    color: var(--white-color);
    font-size: 20px;
    margin-bottom: 4px;
}

.crypto-cta-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.crypto-cta-actions {
    text-align: right;
}

.crypto-cta-actions .btn-default {
    padding-inline: 26px;
    padding-right: 54px;
}

.crypto-cta-small {
    margin: 6px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

/* -------- 10. Responsiveness -------- */

@media (max-width: 1199.98px) {
    .crypto-service-intro {
        padding: 60px 30px;
    }

    .crypto-summary-card {
        margin-top: 10px;
    }

    .crypto-conditions-section {
        padding: 60px 30px 50px;
    }
}

@media (max-width: 991.98px) {
    .crypto-service-intro {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .crypto-summary-card {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .crypto-process-section {
        padding: 70px 0 60px;
    }

    .crypto-conditions-section {
        margin-bottom: 70px;
    }

    .crypto-cta-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .crypto-cta-actions {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .crypto-service-intro {
        padding: 40px 22px;
        border-radius: 22px;
    }

    .crypto-page-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .crypto-summary-card {
        padding: 22px 20px 20px;
    }

    .crypto-conditions-section {
        padding: 40px 22px 40px;
        border-radius: 22px;
    }

    .crypto-conditions-block {
        padding: 20px 18px 18px;
    }

    .crypto-cta-box {
        padding: 18px 16px;
    }
}

@media (max-width: 575.98px) {
    .crypto-service-intro {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .crypto-intro-list ul li {
        font-size: 14px;
    }

    .crypto-step-item {
        padding: 20px 18px 18px;
    }

    .crypto-step-item h3 {
        font-size: 17px;
    }

    .crypto-step-item p,
    .crypto-step-item ul li {
        font-size: 13px;
    }

    .crypto-cta-text h3 {
        font-size: 18px;
    }
}

#contactForm {
    scroll-margin-top: 380px;
}

.page-header:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    border-radius: inherit;
}
.page-header {
    position: relative;
    background: url("../images/phishing-s.webp") no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    padding: 250px 0 140px;
    margin-top: -120px;
}

@media (min-width: 768px) {
    #contactForm {
        scroll-margin-top: 450px;
    }
    .page-header {
        background: url("../images/phishing.webp") no-repeat;
        background-position: center 330% !important;
    }
}

.page-header-content {
    filter: drop-shadow(1px 1px 1px black) drop-shadow(0 0 15px rgba(255, 255, 255, .35));
}

.crypto-page .page-header {
    background: url("../images/crypto-scam2-bg.webp") no-repeat;
    background-position: center center;
}

@media (min-width: 768px) {
    .crypto-page .page-header {
        background: url("../images/crypto-scam2-bg.webp") no-repeat;
    }
}

.broker-page .page-header {
    background: url("../images/service-broker-bg-s.webp") no-repeat;
    background-position: center center;
}

@media (min-width: 768px) {
    .broker-page .page-header {
        background: url("../images/service-broker-bg.webp") no-repeat;
    }
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
    margin: 10px 0;
}

.main-menu ul li.submenu > a {
    position: relative;
    padding-right: 28px !important;
}

.main-menu ul li.submenu > a:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.submenu-list {
    width: max-content !important;
}

.submenu-list li {
    margin: 10px 0 !important;
}

@media (max-width: 991px) {
    .nav-link-arrow:after {
        content: "\f107";
        font-family: "FontAwesome";
        font-weight: 900;
        font-size: 12px;
        margin-left: 8px;
        color: var(--white-color);
        position: absolute;
        /* right: 15px;
    top: 15px; */
        right: -20px;
        top: 5px;
        transition: all 0.3s ease-out;
    }

    .slicknav_collapsed .nav-link-arrow:after {
        transform: rotate(0);
        color: var(--white-color);
    }

    .slicknav_open .nav-link-arrow:after {
        transform: rotate(-180deg);
        color: var(--primary-color);
    }
}
