* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ================= HERO SECTION ================= */
.ccc-hero {
    margin-top: 40px;
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

/* VIDEO BACKGROUND */
.ccc-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* DARK OVERLAY */
.ccc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.ccc-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.ccc-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 22px;
}

.ccc-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #f1f1f1;
}

.ccc-description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 36px;
    color: #d0d0d0;
}

.ccc-btn {
    display: inline-block;
    background: #6c2cff;
    color: #ffffff;
    padding: 15px 38px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ccc-btn:hover {
    background: #8148ff;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .ccc-content h1 {
        font-size: 34px;
    }

    .ccc-hero {
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .ccc-content h1 {
        font-size: 28px;
    }

    .ccc-btn {
        padding: 13px 28px;
    }
}

/* ================= ADHICS ABOUT ================= */
.ccc-about {
    background: #000;
    padding: 100px 20px;
}

.ccc-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.ccc-about-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 28px;
}

.ccc-about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 18px;
}

.ccc-about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ccc-about-logo img {
    width: 100%;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .ccc-about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ccc-about-logo img {
        max-width: 220px;
        margin-top: 30px;
    }
}

/* ================= UNDERSTANDING ================= */
.ccc-understanding {
    background: #000;
    padding: 30px 20px;
}

.ccc-understanding-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.ccc-understanding-left h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 28px;
}

.ccc-understanding-left p {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    max-width: 520px;
}

.ccc-understanding-right ul {
    list-style: none;
}

.ccc-understanding-right li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

.ccc-understanding-right li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4d2e;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .ccc-understanding-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ccc-understanding-left h2 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .ccc-understanding-left h2 {
        font-size: 28px;
    }
}

/* ================= SERVICES ================= */
.ccc-services {
    background: #d9412c;
    padding: 110px 20px;
    color: #fff;
}

.ccc-services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.ccc-services-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ccc-services-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.ccc-services-header p {
    font-size: 15px;
    color: #ffe5df;
}

.ccc-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ccc-service-card {
    background: #fdecea;
    color: #222;
    padding: 36px 30px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ccc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.ccc-service-card .icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.ccc-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ccc-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 992px) {
    .ccc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ccc-services-grid {
        grid-template-columns: 1fr;
    }

    .ccc-services-header h2 {
        font-size: 28px;
    }
}

/* ================= BENEFITS ================= */
.ccc-benefits {
    background: #000;
    padding: 110px 20px;
}

.ccc-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.ccc-benefits-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.ccc-benefits-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 22px;
}

.ccc-benefits-content .intro {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 26px;
}

.ccc-benefits-content ul {
    list-style: none;
}

.ccc-benefits-content li {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    position: relative;
    padding-left: 26px;
}

.ccc-benefits-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4d2e;
    font-size: 22px;
}

@media (max-width: 992px) {
    .ccc-benefits-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ccc-benefits-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .ccc-benefits-content h2 {
        font-size: 28px;
    }
}

/* ================= CHALLENGES ================= */
.ccc-challenges {
    background: #000;
    padding: 110px 20px;
}

.ccc-challenges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.ccc-challenges-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.85;
}

.ccc-challenges-brand img {
    max-width: 400px;
}

.ccc-challenges-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
}

.ccc-challenges-content .intro,
.ccc-challenges-content .outro {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 22px;
}

.ccc-challenges-content ul {
    list-style: none;
    margin-bottom: 26px;
}

.ccc-challenges-content li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

.ccc-challenges-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4d2e;
    font-size: 22px;
}

@media (max-width: 992px) {
    .ccc-challenges-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .ccc-challenges-brand img {
        max-width: 220px;
    }

    .ccc-challenges-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .ccc-challenges-content h2 {
        font-size: 28px;
    }
}

/* ================= WHY SELECT ================= */
.ccc-why {
    background: #000;
    padding: 120px 20px;
}

.ccc-why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.ccc-why-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

.ccc-why-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
}

.ccc-why-content ul {
    list-style: none;
}

.ccc-why-content li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

.ccc-why-content li::before {
    content: "◉";
    color: #ff4d2e;
    font-size: 14px;
    margin-top: 4px;
}

.security-phases {
    background: #000;
    padding: 70px 20px;
    color: #e0e0e0;
}

.phases-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.phase-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 35px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-8px);
    border-color: #6c2cff;
    box-shadow: 0 15px 40px rgba(108, 44, 255, 0.15);
}

.phase-icon {
    font-size: 52px;
    margin-bottom: 20px;
    color: #8d96ff;
}

.phase-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.phase-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #bbb;
}

/* ─── RESPONSIVE ───  */
@media (max-width: 1100px) {
    .phases-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .phases-container {
        grid-template-columns: 1fr;        
        gap: 35px;
    }

    .phase-card {
        padding: 30px 20px;
    }

    .phase-icon {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .security-phases {
        padding: 60px 15px;
    }
}

.phase-card.good-news-card {
    background: #111111 !important;      
    border-color: #222222 !important;
}

.phase-card.good-news-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.phase-card.good-news-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #bbb;
}

.book-now-btn {
    display: block;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    background: #6c2cff;                 
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 0;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: #fe0808;
    color: white;
    text-decoration: inherit;
}