﻿/* =========================================================
   HERO
========================================================= */

.sx-cpt-hero {
    padding: 110px 20px 90px;
    background: linear-gradient(135deg,#07152b 0%,#16395f 100%);
    text-align: center;
}

.sx-cpt-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
}

.sx-cpt-hero h1 {
    max-width: 1000px;
    margin: 0 auto 24px;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -3px;
    color: #ffffff;
}

.sx-cpt-hero p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 2;
    color: rgba(255,255,255,0.86);
}

/* =========================================================
   AUDIO
========================================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

    .hero-buttons .btn-secondary {
        min-width: 150px;
        min-height: 54px;
        border-radius: 999px;
        border: none;
        background: #ffffff;
        color: #111827;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.25s ease;
        padding: 12px 24px;
    }

        .hero-buttons .btn-secondary:hover {
            background: #eef2ff;
            transform: translateY(-2px);
        }

/* =========================================================
   CONTENT
========================================================= */

.sx-cpt-content {
    padding: 110px 20px;
    background: #f5f7fb;
}

    .sx-cpt-content .container {
        max-width: 1300px;
        margin: 0 auto;
    }

/* =========================================================
   TABLE
========================================================= */

.sx-cpt-table-wrapper {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(15,23,42,0.06);
}

.sx-cpt-table {
    width: 100%;
    border-collapse: collapse;
}

    .sx-cpt-table thead {
        background: linear-gradient(90deg,#18bfd8,#46d1e4);
    }

    .sx-cpt-table th {
        padding: 28px 26px;
        text-align: left;
        color: #ffffff;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .sx-cpt-table td {
        padding: 34px 26px;
        border-top: 1px solid #edf2f7;
        color: #243b53;
        font-size: 18px;
        line-height: 1.9;
        vertical-align: top;
    }

    .sx-cpt-table tbody tr:nth-child(even) td {
        background: #fafcff;
    }

    .sx-cpt-table tbody tr:hover td {
        background: #f4f8ff;
    }

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .sx-cpt-hero h1 {
        font-size: 52px;
        line-height: 1.1;
    }

    .sx-cpt-table th,
    .sx-cpt-table td {
        padding: 24px 18px;
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {

    .sx-cpt-hero {
        padding: 80px 16px 70px;
    }

        .sx-cpt-hero h1 {
            font-size: 40px;
            letter-spacing: -1px;
        }

        .sx-cpt-hero p {
            font-size: 16px;
            line-height: 1.9;
        }

    .sx-cpt-content {
        padding: 70px 12px;
    }

    .sx-cpt-table-wrapper {
        overflow-x: auto;
        border-radius: 22px;
    }

    .sx-cpt-table {
        min-width: 760px;
    }

    .hero-buttons .btn-secondary {
        min-width: 130px;
        min-height: 48px;
        font-size: 14px;
    }
}
