:root {
    --black: #02050b;
    --deep-black: #010309;
    --dark-blue: #06112a;
    --navy: #071b3f;
    --blue: #0097ff;
    --cyan: #34d7ff;
    --white: #ffffff;
    --muted: #b9c7dc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* HEADER */

.crc-floating-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transition: 0.45s ease;
}

.crc-floating-header.hide-header {
    transform: translateY(-120%);
    opacity: 0;
}

.crc-logo-wrap,
.crc-menu-btn {
    pointer-events: auto;
}

.crc-logo-wrap img {
    width: 125px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 153, 255, 0.28));
}

.crc-menu-btn {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 12, 28, 0.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 15px 10px 19px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: 0.35s ease;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.crc-menu-btn i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0097ff, #031e73);
    display: grid;
    place-items: center;
    box-shadow: 0 0 24px rgba(0, 153, 255, 0.48);
}

.crc-menu-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 215, 255, 0.62);
    box-shadow: 0 22px 60px rgba(0, 151, 255, 0.22);
}

/* SIDEBAR */

.crc-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.66);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 1100;
}

.crc-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.crc-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 390px;
    max-width: 92%;
    height: 100vh;
    z-index: 1200;
    padding: 88px 34px 34px;
    background:
        radial-gradient(circle at top right, rgba(0, 151, 255, 0.35), transparent 35%),
        radial-gradient(circle at bottom left, rgba(52, 215, 255, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(3, 9, 24, 0.98), rgba(5, 21, 55, 0.96));
    border-left: 1px solid rgba(255,255,255,0.12);
    box-shadow: -30px 0 90px rgba(0,0,0,0.65);
    transition: 0.55s cubic-bezier(.22,1,.36,1);
}

.crc-sidebar.active {
    right: 0;
}

.crc-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    transition: 0.3s ease;
}

.crc-close-btn:hover {
    background: var(--blue);
    transform: rotate(90deg);
}

.crc-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crc-sidebar-links a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 21px;
    font-weight: 600;
    padding: 14px 0 14px 26px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: 0.35s ease;
}

.crc-sidebar-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    transform: translateY(-50%) scale(0.5);
    opacity: 0.35;
    transition: 0.35s ease;
    box-shadow: 0 0 20px rgba(52, 215, 255, 0.9);
}

.crc-sidebar-links a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,151,255,0.18), transparent);
    transform: translateX(-100%);
    transition: 0.45s ease;
}

.crc-sidebar-links a:hover {
    color: var(--cyan);
    padding-left: 40px;
}

.crc-sidebar-links a:hover::before {
    transform: translateY(-50%) scale(1.35);
    opacity: 1;
}

.crc-sidebar-links a:hover::after {
    transform: translateX(0);
}

.crc-sidebar-cta {
    margin-top: 34px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--white);
    padding: 17px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #008cff, #061a6b);
    box-shadow: 0 18px 50px rgba(0, 140, 255, 0.35);
    transition: 0.35s ease;
}

.crc-sidebar-cta:hover {
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 140, 255, 0.5);
}

/* HERO */

.crc-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.crc-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
    transform: scale(1.04);
}

.crc-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(0,151,255,0.24),
            transparent 36%
        ),

        radial-gradient(
            circle at center,
            rgba(255,255,255,0.07),
            transparent 48%
        ),

        linear-gradient(
            90deg,
            rgba(2,5,11,0.34),
            rgba(2,5,11,0.08),
            rgba(2,5,11,0.34)
        ),

        linear-gradient(
            180deg,
            rgba(2,5,11,0.06),
            rgba(2,5,11,0.62)
        );

    z-index: 1;
}

.crc-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.crc-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1400px;
    padding-top: 40px;
}

.crc-hero-content h1 {
    font-size: clamp(34px, 4.2vw, 74px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.crc-hero-content p {
    max-width: 560px;
    margin: 0 auto;
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.7;
    color: var(--muted);
}

.crc-hero-fade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 190px;
    background: linear-gradient(to bottom, transparent, var(--black));
    z-index: 6;
}

/* PLACEHOLDER SECTIONS */

.crc-section-placeholder {
    min-height: 65vh;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(0,151,255,0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(52,215,255,0.08), transparent 28%),
        var(--black);
}

.crc-section-placeholder h2 {
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -2px;
}

/* FOOTER */

.crc-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 151, 255, 0.16), transparent 26%),
        radial-gradient(circle at 85% 15%, rgba(52, 215, 255, 0.13), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(0, 64, 255, 0.09), transparent 34%),
        linear-gradient(180deg, #030817 0%, #010309 100%);
    padding: 90px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.crc-footer::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    left: -180px;
    top: 40px;
    background: rgba(0, 151, 255, 0.18);
    border-radius: 50%;
    filter: blur(95px);
    pointer-events: none;
}

.crc-footer::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    right: -150px;
    bottom: -70px;
    background: rgba(52, 215, 255, 0.14);
    border-radius: 50%;
    filter: blur(95px);
    pointer-events: none;
}

.crc-footer .container {
    position: relative;
    z-index: 2;
}

.crc-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.crc-footer img {
    width: 140px;
    margin-bottom: 18px;
}

.crc-footer p {
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    font-size: 15px;
    max-width: 380px;
}

.crc-footer h4 {
    color: var(--cyan);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.crc-footer a {
    display: block;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.crc-footer a:hover {
    color: var(--cyan);
    padding-left: 6px;
    text-shadow: 0 0 18px rgba(52,215,255,0.45);
}

.crc-socials {
    display: flex;
    gap: 12px;
}

.crc-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    margin: 0;
    transition: 0.35s ease;
}

.crc-socials a:hover {
    background: linear-gradient(135deg, #0097ff, #061a6b);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,151,255,0.3);
}

.crc-footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.58);
    font-size: 14px;
}

.crc-footer-bottom a {
    display: inline;
    color: var(--cyan);
}

/* =================================
   FLOATING WHATSAPP
================================= */

.crc-floating-whatsapp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 998;

    width: 84px;
    height: 84px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    text-decoration: none;
    color: #fff;

    background:
        radial-gradient(circle at center,
        rgba(0,151,255,0.14),
        rgba(52,215,255,0.03) 62%,
        transparent 72%);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);

    box-shadow:
        0 0 0 12px rgba(0,151,255,0.025),
        0 0 0 24px rgba(52,215,255,0.012),
        0 18px 45px rgba(0,151,255,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);

    overflow: hidden;
    transition: 0.4s ease;
}

/* OUTER GLASS RING */

.crc-floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.01)
        );

    opacity: 0.8;
    z-index: 0;
}

/* INNER GLOW CIRCLE */

.crc-floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 25%,
        rgba(255,255,255,0.22),
        transparent 34%),

        linear-gradient(
            135deg,
            rgba(0,151,255,0.42),
            rgba(3,30,115,0.34)
        );

    border: 1px solid rgba(255,255,255,0.09);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 12px 28px rgba(0,151,255,0.18);

    z-index: 1;
}

/* ICON */

.crc-floating-whatsapp i {
    position: relative;
    z-index: 2;

    font-size: 33px;
    color: #ffffff;

    text-shadow:
        0 0 18px rgba(255,255,255,0.18),
        0 0 28px rgba(52,215,255,0.18);
}

/* HOVER */

.crc-floating-whatsapp:hover {
    color: #fff;

    transform: translateY(-7px) scale(1.05);

    border-color: rgba(255,255,255,0.14);

    box-shadow:
        0 0 0 14px rgba(0,151,255,0.03),
        0 0 0 28px rgba(52,215,255,0.015),
        0 24px 70px rgba(0,151,255,0.22),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.crc-floating-whatsapp:hover::before {
    background:
        radial-gradient(circle at 35% 25%,
        rgba(255,255,255,0.28),
        transparent 34%),

        linear-gradient(
            135deg,
            rgba(0,151,255,0.55),
            rgba(3,30,115,0.46)
        );
}

/* MOBILE */

@media (max-width: 768px) {

    .crc-floating-whatsapp {
        width: 68px;
        height: 68px;

        right: 18px;
        bottom: 18px;

        box-shadow:
            0 0 0 10px rgba(0,151,255,0.02),
            0 0 0 20px rgba(52,215,255,0.01),
            0 16px 40px rgba(0,151,255,0.12);
    }

    .crc-floating-whatsapp::before {
        inset: 11px;
    }

    .crc-floating-whatsapp i {
        font-size: 28px;
    }
}

/* RESPONSIVE */

@media (max-width: 480px) {

    .crc-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .crc-footer {
        padding: 70px 0 26px;
    }

    .crc-footer img {
        width: 110px;
    }

    .crc-footer h4 {
        font-size: 14px;
    }

    .crc-footer a,
    .crc-footer p {
        font-size: 13px;
        line-height: 1.7;
    }

    .crc-footer-bottom {
        font-size: 12px;
        margin-top: 40px;
    }

    .crc-socials {
        gap: 8px;
    }

    .crc-socials a {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 991px) {

    .crc-hero-content h1 {
        font-size: clamp(28px, 7vw, 42px);
        letter-spacing: -1.5px;
        white-space: normal;
    }
    }

@media (max-width: 768px) {
    .crc-floating-header {
        top: 18px;
        padding: 0 18px;
    }

    .crc-logo-wrap img {
        width: 96px;
    }

    .crc-menu-btn {
        padding: 9px 10px 9px 15px;
        font-size: 12px;
    }

    .crc-menu-btn i {
        width: 33px;
        height: 33px;
    }

    .crc-sidebar {
        width: 100%;
        right: -100%;
        padding: 86px 26px 30px;
    }

    .crc-sidebar-links a {
        font-size: 19px;
        padding: 13px 0 13px 25px;
    }

    .crc-hero {
        min-height: 88vh;
        padding: 0 12px;
    }

    .crc-hero-overlay {
        background:
            radial-gradient(
                circle at 50% 32%,
                rgba(0,151,255,0.22),
                transparent 40%
            ),

            radial-gradient(
                circle at center,
                rgba(255,255,255,0.05),
                transparent 52%
            ),

            linear-gradient(
                90deg,
                rgba(2,5,11,0.28),
                rgba(2,5,11,0.06),
                rgba(2,5,11,0.28)
            ),

            linear-gradient(
                180deg,
                rgba(2,5,11,0.03),
                rgba(2,5,11,0.58)
            );
    }

    .crc-hero-content {
        padding-top: 30px;
    }

    .crc-hero-content h1 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1.8px;
    }

    .crc-hero-content p {
        font-size: 15px;
        max-width: 330px;
    }

    .crc-section-placeholder {
        min-height: 50vh;
        padding: 80px 0;
    }

    .crc-section-placeholder h2 {
        font-size: 36px;
    }

}


/* =================================
   INSIGHTS SECTION
================================= */

.crc-insights-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background:
        radial-gradient(circle at top left, rgba(0,151,255,0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(52,215,255,0.08), transparent 24%),
        linear-gradient(180deg, #02050b 0%, #040a16 100%);
}

/* GRID OVERLAY */

.crc-insights-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size: 80px 80px;

    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

/* HEADING */

.crc-insights-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.crc-insights-heading h2 {
    font-size: clamp(25px, 4vw, 55px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.crc-insights-heading p {
    max-width: 760px;
    margin: auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

/* CARDS */

.crc-insight-card {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 38px 30px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 20px 50px rgba(0,0,0,0.25);
}

/* HOVER LIGHT */

.crc-insight-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(0,151,255,0.12),
            transparent 45%
        );

    opacity: 0;
    transition: 0.4s ease;
}

.crc-insight-card:hover {
    transform: translateY(-10px);

    border-color: rgba(52,215,255,0.22);

    box-shadow:
        0 25px 60px rgba(0,151,255,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.crc-insight-card:hover::before {
    opacity: 1;
}

/* ICON */

.crc-insight-icon {
    position: relative;

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    margin-bottom: 26px;

    background:
        radial-gradient(circle at top left,
        rgba(255,255,255,0.12),
        transparent 42%),

        linear-gradient(
            135deg,
            rgba(0,151,255,0.26),
            rgba(3,30,115,0.36)
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 18px 40px rgba(0,151,255,0.16),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.crc-insight-icon i {
    font-size: 28px;
    color: var(--cyan);
}

/* TEXT */

.crc-insight-card h4 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 16px;
}

.crc-insight-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .crc-insights-section {
        padding: 90px 0;
    }

    .crc-insights-heading {
        margin-bottom: 50px;
    }

    .crc-insights-heading h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .crc-insights-heading p {
        font-size: 15px;
    }

    .crc-insight-card {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .crc-insight-card h4 {
        font-size: 20px;
    }

    .crc-insight-card p {
        font-size: 14px;
    }

    .crc-insight-icon {
        width: 64px;
        height: 64px;
    }

    .crc-insight-icon i {
        font-size: 24px;
    }
}

/* =================================
   HOME ABOUT SECTION
================================= */

.crc-home-about {
    position: relative;
    overflow: hidden;
    padding: 60px 0 150px;
    background:
        radial-gradient(circle at 18% 45%, rgba(0,151,255,0.13), transparent 30%),
        radial-gradient(circle at 82% 55%, rgba(52,215,255,0.08), transparent 26%),
        linear-gradient(180deg, #040a16 0%, #02050b 100%);
}

.crc-about-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 0;
}

.crc-about-image-card {
    position: relative;
    min-height: 620px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 35px 90px rgba(0,0,0,0.42),
        0 0 80px rgba(0,151,255,0.08);
}

.crc-about-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,5,11,0.04),
            rgba(2,5,11,0.28)
        ),
        linear-gradient(
            180deg,
            rgba(2,5,11,0.02),
            rgba(2,5,11,0.18)
        ),
        radial-gradient(
            circle at 35% 35%,
            rgba(0,151,255,0.08),
            transparent 42%
        );
    z-index: 1;
}

.crc-about-image-card img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    transform: scale(1.02);
}

.crc-about-info-card {
    position: relative;
    z-index: 3;
    margin-left: -70px;
    margin-top: 150px;
    padding: 50px 54px;
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.115),
            rgba(255,255,255,0.04)
        );
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 35px 90px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.crc-about-info-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(52,215,255,0.18),
            transparent 38%,
            rgba(0,151,255,0.12)
        );
    opacity: 0.58;
    z-index: -1;
}


.crc-about-info-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.crc-about-info-card h2 {
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.7px;
    margin-bottom: 24px;
}

.crc-about-info-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.crc-about-info-card strong {
    color: #ffffff;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(0,151,255,0.16);
    border: 1px solid rgba(52,215,255,0.16);
    white-space: nowrap;
}

.crc-about-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    padding: 15px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(0,151,255,0.95), rgba(3,30,115,0.9));
    box-shadow: 0 18px 45px rgba(0,151,255,0.25);
    transition: 0.35s ease;
}

.crc-about-btn:hover {
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 25px 65px rgba(0,151,255,0.4);
}

/* TABLET */

@media (max-width: 991px) {
    .crc-home-about {
        padding: 100px 0 120px;
    }

    .crc-about-wrap {
        grid-template-columns: 1fr;
    }

    .crc-about-image-card {
        min-height: 500px;
    }

    .crc-about-image-card img {
        min-height: 500px;
    }

    .crc-about-image-card::before {
        background:
            linear-gradient(
                180deg,
                rgba(2,5,11,0.02),
                rgba(2,5,11,0.22)
            ),
            radial-gradient(
                circle at 45% 35%,
                rgba(0,151,255,0.08),
                transparent 44%
            );
    }

    .crc-about-info-card {
        margin-left: auto;
        margin-right: 0;
        margin-top: -110px;
        max-width: 86%;
        padding: 44px 40px;
    }

    .crc-about-info-card h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .crc-home-about {
        padding: 90px 0 100px;
    }

    .crc-about-image-card {
        min-height: 390px;
        border-radius: 28px;
    }

    .crc-about-image-card img {
        min-height: 390px;
    }

    .crc-about-image-card::before {
        background:
            linear-gradient(
                180deg,
                rgba(2,5,11,0.01),
                rgba(2,5,11,0.18)
            ),
            linear-gradient(
                90deg,
                rgba(2,5,11,0.02),
                rgba(2,5,11,0.12)
            );
    }

    .crc-about-info-card {
        position: relative;

        left: 50%;
        transform: translateX(-50%);

        margin-left: 0;
        margin-right: 0;

        margin-top: -65px;

        padding: 34px 25px;

        border-radius: 26px;

        max-width: 92%;
    }

}

    .crc-about-info-card h2 {
        font-size: 30px;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

    .crc-about-info-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .crc-about-info-card strong {
        display: inline-flex;
        margin: 3px 2px;
    }
}

@media (max-width: 480px) {

    .crc-about-image-card {
        min-height: 340px;
    }

    .crc-about-image-card img {
        min-height: 340px;
    }

    .crc-about-info-card {
        left: 50%;
        transform: translateX(-50%);

        max-width: 94%;

        margin-top: -50px;

        padding: 30px 22px;
    }

    .crc-about-info-card h2 {
        font-size: 27px;
    }
}
/* =================================
   WHAT WE DO / SERVICES
================================= */

.crc-services-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;

    background:
        radial-gradient(circle at 15% 10%, rgba(0,151,255,0.13), transparent 30%),
        radial-gradient(circle at 85% 35%, rgba(52,215,255,0.08), transparent 28%),
        linear-gradient(180deg, #02050b 0%, #040a16 48%, #02050b 100%);
}

/* GRID */

.crc-services-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);

    background-size: 82px 82px;

    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

/* HEADING */

.crc-services-heading {
    position: relative;
    z-index: 2;

    max-width: 920px;

    margin: 0 auto 70px;

    text-align: center;
}

.crc-services-heading span {
    display: inline-flex;

    margin-bottom: 18px;

    color: var(--cyan);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-services-heading h2 {
    font-size: clamp(30px, 3.2vw, 46px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2.2px;

    margin-bottom: 22px;
}

.crc-services-heading p {
    max-width: 760px;

    margin: auto;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.9;
}

/* CARD */

.crc-service-card {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 38px 34px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 22px 55px rgba(0,0,0,0.26);
}

/* HOVER LIGHT */

.crc-service-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(0,151,255,0.12),
            transparent 42%
        );

    opacity: 0;

    transition: 0.4s ease;
}

.crc-service-card:hover {
    transform: translateY(-10px);

    border-color: rgba(52,215,255,0.22);

    box-shadow:
        0 28px 70px rgba(0,151,255,0.14),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.crc-service-card:hover::before {
    opacity: 1;
}

/* ICON */

.crc-service-icon {
    position: relative;

    width: 78px;
    height: 78px;

    border-radius: 24px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,0.12),
            transparent 42%
        ),

        linear-gradient(
            135deg,
            rgba(0,151,255,0.26),
            rgba(3,30,115,0.36)
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 18px 40px rgba(0,151,255,0.14),
        inset 0 1px 0 rgba(255,255,255,0.06);

    transition: 0.4s ease;
}

.crc-service-icon i {
    font-size: 32px;
    color: var(--cyan);
}

.crc-service-card:hover .crc-service-icon {
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 24px 55px rgba(0,151,255,0.22),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* TEXT */

.crc-service-content h3 {
    font-size: 27px;

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 16px;
}

.crc-service-content p {
    color: rgba(230,240,255,0.78);

    font-size: 15px;

    line-height: 1.9;

    margin: 0;
}

/* TABLET */

@media (max-width: 991px) {

    .crc-services-section {
        padding: 110px 0;
    }

    .crc-services-heading h2 {
        font-size: 48px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .crc-services-section {
        padding: 90px 0;
    }

    .crc-services-heading {
        margin-bottom: 50px;
    }

    .crc-services-heading h2 {
        font-size: 34px;
        letter-spacing: -1.4px;
    }

    .crc-services-heading p {
        font-size: 15px;
    }

    .crc-service-card {
        padding: 32px 26px;
        border-radius: 26px;
    }

    .crc-service-icon {
        width: 70px;
        height: 70px;
        border-radius: 22px;
        margin-bottom: 24px;
    }

    .crc-service-icon i {
        font-size: 28px;
    }

    .crc-service-content h3 {
        font-size: 24px;
    }

    .crc-service-content p {
        font-size: 14px;
    }
}

/* =================================
   OUR PROJECTS
================================= */

.crc-projects-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(0,151,255,0.12), transparent 28%),
        radial-gradient(circle at 88% 35%, rgba(52,215,255,0.08), transparent 28%),
        linear-gradient(180deg, #02050b 0%, #040a16 50%, #02050b 100%);
}

.crc-projects-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

.crc-projects-heading {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto 70px;
    text-align: center;
}

.crc-projects-heading span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-projects-heading h2 {
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2.2px;
    margin-bottom: 22px;
}

.crc-projects-heading p {
    max-width: 760px;
    margin: auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.crc-projects-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.crc-project-item {
    display: flex;
}

.crc-hidden-project {
    display: none;
}

.crc-projects-wrap.show-all .crc-hidden-project {
    display: flex;
}

.crc-latest-project {
    grid-column: 2 / 3;
}

.crc-project-card {
    position: relative;
    width: 100%;
    height: 330px;
    padding: 30px 28px;
    border-radius: 30px;
    overflow-y: auto;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 24px 65px rgba(0,0,0,0.32);
    transition: 0.4s ease;
}

.crc-project-card::-webkit-scrollbar {
    width: 5px;
}

.crc-project-card::-webkit-scrollbar-thumb {
    background: rgba(52,215,255,0.35);
    border-radius: 99px;
}

.crc-project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0,151,255,0.16), transparent 38%),
        linear-gradient(145deg, rgba(0,151,255,0.08), transparent 42%);
    opacity: 0.7;
    pointer-events: none;
}

.crc-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(52,215,255,0.22);
    box-shadow:
        0 28px 75px rgba(0,151,255,0.14),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.crc-project-card.latest {
    border-color: rgba(52,215,255,0.34);
    box-shadow:
        0 28px 85px rgba(0,151,255,0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.crc-project-date,
.crc-project-title,
.crc-project-meta,
.crc-project-details {
    position: relative;
    z-index: 2;
}

.crc-project-date {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.crc-project-title {
    width: 100%;
    min-height: 96px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.8px;
    cursor: pointer;
}

.crc-project-title i {
    flex: 0 0 auto;
    margin-top: 6px;
    font-size: 17px;
    color: var(--cyan);
    transition: 0.35s ease;
}

.crc-project-card.active .crc-project-title i {
    transform: rotate(180deg);
}

.crc-project-meta {
    color: rgba(230,240,255,0.72);
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0 0;
}

.crc-project-readmore {
    position: relative;
    z-index: 2;

    margin-top: 18px;

    border: 1px solid rgba(52,215,255,0.18);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    color: #ffffff;

    padding: 10px 16px;

    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 13px;
    font-weight: 700;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: 0.35s ease;
}

.crc-project-readmore i {
    color: var(--cyan);
    font-size: 14px;
}

.crc-project-readmore:hover {
    transform: translateY(-3px);
    border-color: rgba(52,215,255,0.45);
    box-shadow: 0 16px 36px rgba(0,151,255,0.16);
}

.crc-project-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.45s ease;
}

.crc-project-card.active .crc-project-details {
    max-height: 700px;
    opacity: 1;
    margin-top: 18px;
}

.crc-project-details ul {
    padding-left: 18px;
    margin: 0;
}

.crc-project-details li {
    color: rgba(230,240,255,0.8);
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.crc-projects-fade {
    position: relative;
    z-index: 3;

    height: 130px;

    margin-top: -110px;

    background:
        linear-gradient(
            to bottom,
            rgba(2,5,11,0),
            rgba(2,5,11,0.35) 38%,
            rgba(2,5,11,0.78) 100%
        );

    pointer-events: none;
}

.crc-projects-wrap {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    max-height: 560px;
    overflow: hidden;

    transition: 0.55s ease;
}

.crc-projects-more-wrap {
    position: relative;
    z-index: 4;

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 18px;
}

.crc-projects-wrap.show-all {
    max-height: 5000px;
    overflow: visible;
}

.crc-project-item {
    display: flex;
}

.crc-hidden-project {
    display: flex;
}

.crc-projects-more-btn {
    border: 1px solid rgba(52,215,255,0.22);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    color: #fff;
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 18px 45px rgba(0,151,255,0.16),
        inset 0 1px 0 rgba(255,255,255,0.07);
    transition: 0.35s ease;
}

.crc-projects-more-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(52,215,255,0.45);
    box-shadow:
        0 26px 65px rgba(0,151,255,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* TABLET */

@media (max-width: 991px) {
    .crc-projects-section {
        padding: 110px 0;
    }

    .crc-projects-heading h2 {
        font-size: 48px;
    }

    .crc-projects-wrap {
        grid-template-columns: 1fr;
        gap: 18px;

        max-height: 1080px;
        overflow: hidden;
    }

    .crc-projects-wrap.show-all {
        max-height: 5000px;
        overflow: visible;
    }

    .crc-latest-project {
        grid-column: auto;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .crc-projects-section {
        padding: 90px 0;
    }

    .crc-projects-heading {
        margin-bottom: 50px;
    }

    .crc-projects-heading h2 {
        font-size: 34px;
        letter-spacing: -1.4px;
    }

    .crc-projects-heading p {
        font-size: 15px;
    }

    .crc-projects-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .crc-project-card {
        height: 315px;
        padding: 26px 22px;
        border-radius: 26px;
    }

    .crc-project-title {
        font-size: 20px;
        min-height: 82px;
    }

    .crc-project-meta {
        font-size: 13.5px;
    }

    .crc-project-details li {
        font-size: 13px;
    }

    .crc-projects-fade {
        height: 110px;
        margin-top: -90px;

        background:
            linear-gradient(
                to bottom,
                rgba(2,5,11,0),
                rgba(2,5,11,0.28) 40%,
                rgba(2,5,11,0.72) 100%
            );
    }
}

/* =================================
   WHY CHOOSE US
================================= */

.crc-why-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background:
        radial-gradient(circle at 18% 35%, rgba(0,151,255,0.13), transparent 28%),
        radial-gradient(circle at 82% 65%, rgba(52,215,255,0.08), transparent 26%),
        linear-gradient(180deg, #02050b 0%, #040a16 55%, #02050b 100%);
}

.crc-why-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 58px;
    align-items: center;
}

.crc-why-image {
    position: relative;
    height: 700px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        0 35px 90px rgba(0,0,0,0.42),
        0 0 80px rgba(0,151,255,0.08);
}

.crc-why-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2,5,11,0.02), rgba(2,5,11,0.24)),
        radial-gradient(circle at 35% 30%, rgba(0,151,255,0.1), transparent 42%);
}

.crc-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crc-why-content {
    max-width: 690px;
}

.crc-why-content span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-why-content h2 {
    max-width: 620px;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.crc-why-content > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 30px;
}

.crc-why-list {
    display: grid;
    gap: 14px;
}

.crc-why-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.022));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.35s ease;
}

.crc-why-item:hover {
    transform: translateX(6px);
    border-color: rgba(52,215,255,0.24);
    box-shadow: 0 22px 55px rgba(0,151,255,0.12);
}

.crc-why-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 42%),
        linear-gradient(135deg, rgba(0,151,255,0.28), rgba(3,30,115,0.38));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 40px rgba(0,151,255,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.crc-why-icon i {
    color: var(--cyan);
    font-size: 23px;
}

.crc-why-item h4 {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 7px;
}

.crc-why-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* TABLET */

@media (max-width: 991px) {
    .crc-why-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .crc-why-image {
        height: 500px;
    }

    .crc-why-content {
        max-width: 100%;
    }

    .crc-why-content h2,
    .crc-why-content > p {
        max-width: 100%;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .crc-why-section {
        padding: 90px 0;
    }

    .crc-why-image {
        height: 380px;
        border-radius: 28px;
    }

    .crc-why-content h2 {
        font-size: 34px;
        letter-spacing: -1.4px;
    }

    .crc-why-content > p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .crc-why-item {
        grid-template-columns: 54px 1fr;
        gap: 14px;
        padding: 18px;
        border-radius: 22px;
    }

    .crc-why-icon {
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .crc-why-icon i {
        font-size: 21px;
    }

    .crc-why-item h4 {
        font-size: 18px;
    }

    .crc-why-item p {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .crc-why-image {
        height: 330px;
    }

    .crc-why-item {
        grid-template-columns: 1fr;
    }

    .crc-why-icon {
        margin-bottom: 4px;
    }
}

/* =================================
   PARTNERS SECTION
================================= */

.crc-partners-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;

    background:
        radial-gradient(circle at 18% 20%, rgba(0,151,255,0.12), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(52,215,255,0.08), transparent 26%),
        linear-gradient(180deg, #02050b 0%, #040a16 55%, #02050b 100%);
}

.crc-partners-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);

    background-size: 82px 82px;

    mask-image: linear-gradient(to bottom, black, transparent 90%);

    pointer-events: none;
}

/* HEADING */

.crc-partners-heading {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 70px;

    text-align: center;
}

.crc-partners-heading span {
    display: inline-flex;

    margin-bottom: 16px;

    color: var(--cyan);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-partners-heading h2 {
    font-size: clamp(34px, 4.5vw, 60px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.crc-partners-heading p {
    max-width: 720px;

    margin: auto;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.9;
}

/* LOGOS GRID */

.crc-partners-wrap {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

/* CARD */

.crc-partner-card {
    position: relative;

    height: 150px;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: 0.4s ease;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 22px 55px rgba(0,0,0,0.28);
}

/* LIGHT EFFECT */

.crc-partner-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top left, rgba(0,151,255,0.16), transparent 42%);

    opacity: 0;

    transition: 0.4s ease;
}

.crc-partner-card:hover {
    transform: translateY(-8px);

    border-color: rgba(52,215,255,0.22);

    box-shadow:
        0 28px 75px rgba(0,151,255,0.14),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.crc-partner-card:hover::before {
    opacity: 1;
}

/* LOGO */

.crc-partner-card img {
    position: relative;
    z-index: 2;

    max-width: 100%;
    max-height: 90px;

    object-fit: contain;

    transition: 0.35s ease;
}

.crc-partner-card:hover img {
    transform: scale(1.04);
}

/* MOBILE */

@media (max-width: 768px) {

    .crc-partners-section {
        padding: 90px 0;
    }

    .crc-partners-heading,
    .crc-partners-left {
        margin-bottom: 50px;
    }

    .crc-partners-heading h2,
    .crc-partners-left h2 {
        font-size: 34px;
        letter-spacing: -1.4px;
    }

    .crc-partners-heading p,
    .crc-partners-left p {
        font-size: 15px;
    }

    /* 2 LOGOS PER ROW */

    .crc-partners-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .crc-partner-card {
        height: 110px;
        border-radius: 22px;
        padding: 18px;
    }

    .crc-partner-card img {
        max-height: 52px;
    }

    .crc-partners-image {
        height: 340px;
    }
}

/* =================================
   CTA SECTION
================================= */

.crc-cta-section {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);

    background: #02050b;
}

/* BACKGROUND IMAGE */

.crc-cta-bg {
    position: absolute;
    inset: 0;
}

.crc-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0.45;
}

/* OVERLAY */

.crc-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(2,5,11,0.78),
            rgba(2,5,11,0.72)
        ),

        radial-gradient(
            circle at 20% 20%,
            rgba(0,151,255,0.14),
            transparent 30%
        ),

        radial-gradient(
            circle at 80% 70%,
            rgba(52,215,255,0.08),
            transparent 28%
        );
}

/* GRID EFFECT */

.crc-cta-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);

    background-size: 82px 82px;

    opacity: 0.45;

    pointer-events: none;
}

/* CONTENT */

.crc-cta-content {
    position: relative;
    z-index: 2;

    max-width: 860px;

    margin: auto;

    text-align: center;
}

.crc-cta-content span {
    display: inline-flex;

    margin-bottom: 16px;

    color: var(--cyan);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-cta-content h2 {
    font-size: clamp(34px, 4vw, 56px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 22px;
}

.crc-cta-content p {
    max-width: 720px;

    margin: 0 auto 34px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;
}

/* BUTTON */

.crc-cta-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 16px 28px;

    border-radius: 999px;

    text-decoration: none;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            rgba(0,151,255,0.95),
            rgba(3,30,115,0.95)
        );

    border: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition: 0.35s ease;

    box-shadow:
        0 22px 55px rgba(0,151,255,0.22),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

/* BUTTON LIGHT */

.crc-cta-btn::before {
    content: "";

    position: absolute;

    width: 160%;
    height: 160%;

    left: -120%;
    top: -30%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            transparent
        );

    transform: rotate(18deg);

    transition: 0.7s ease;
}

.crc-cta-btn:hover::before {
    left: 130%;
}

.crc-cta-btn i {
    font-size: 15px;
}

.crc-cta-btn:hover {
    transform: translateY(-4px);

    color: #fff;

    box-shadow:
        0 28px 70px rgba(0,151,255,0.3),
        inset 0 1px 0 rgba(255,255,255,0.14);
}

/* TABLET */

@media (max-width: 991px) {

    .crc-cta-section {
        padding: 95px 0;
    }

    .crc-cta-content h2 {
        font-size: 46px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .crc-cta-section {
        padding: 80px 0;
    }

    .crc-cta-content h2 {
        font-size: 34px;

        letter-spacing: -1.4px;
    }

    .crc-cta-content p {
        font-size: 14px;

        margin-bottom: 28px;
    }

    .crc-cta-btn {
        width: 100%;

        justify-content: center;

        padding: 16px 24px;
    }

    .crc-cta-bg img {
        opacity: 0.38;
    }
}

/* =================================
   MIDDLE CTA SECTION
================================= */

.crc-middle-cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,151,255,0.18), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(52,215,255,0.08), transparent 28%),
        linear-gradient(135deg, #030712 0%, #02050b 100%);
}

.crc-middle-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 82px 82px;
    opacity: 0.5;
    pointer-events: none;
}

.crc-middle-cta-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT VISUAL */

.crc-middle-cta-left-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.crc-middle-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,151,255,0.34), transparent 68%);
    filter: blur(40px);
}

.crc-middle-cta-left-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    object-fit: contain;
    filter: drop-shadow(0 35px 80px rgba(0,151,255,0.25));
    animation: crcFloat 5s ease-in-out infinite;
}

@keyframes crcFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* RIGHT CONTENT */

.crc-middle-cta-content span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-middle-cta-content h2 {
    max-width: 780px;
    font-size: clamp(42px, 5vw, 78px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 44px;
}

/* STATS */

.crc-middle-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.crc-middle-stats div {
    position: relative;
    padding: 24px 20px;
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    transition: 0.35s ease;
}

.crc-middle-stats div::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0,151,255,0.18), transparent 45%);
    opacity: 0;
    transition: 0.35s ease;
}

.crc-middle-stats div:hover {
    transform: translateY(-6px);
    border-color: rgba(52,215,255,0.25);
    box-shadow: 0 22px 55px rgba(0,151,255,0.14);
}

.crc-middle-stats div:hover::before {
    opacity: 1;
}

.crc-middle-stats h4 {
    position: relative;
    z-index: 2;
    color: var(--cyan);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
}

.crc-middle-stats p {
    position: relative;
    z-index: 2;
    color: rgba(230,240,255,0.72);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

/* TABLET */

@media (max-width: 991px) {
    .crc-middle-cta-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crc-middle-cta-left-visual {
        min-height: 380px;
    }

    .crc-middle-cta-left-visual img {
        max-width: 380px;
    }

    .crc-middle-cta-content h2 {
        font-size: 54px;
    }

    .crc-middle-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .crc-middle-cta-section {
        padding: 90px 0;
    }

    .crc-middle-cta-left-visual {
        min-height: 300px;
    }

    .crc-middle-cta-left-visual img {
        max-width: 300px;
    }

    .crc-middle-glow {
        width: 320px;
        height: 320px;
    }

    .crc-middle-cta-content h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
        margin-bottom: 32px;
    }

    .crc-middle-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .crc-middle-stats div {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .crc-middle-stats h4 {
        font-size: 30px;
    }

    .crc-middle-stats p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .crc-middle-cta-content h2 {
        font-size: 34px;
    }

    .crc-middle-stats {
        grid-template-columns: 1fr;
    }
}

/* =================================
   ABOUT PAGE HERO
================================= */

.crc-about-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #02050b;
}

.crc-about-hero-bg {
    position: absolute;
    inset: 0;
}

.crc-about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
}

.crc-about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 45% 45%, rgba(0,151,255,0.18), transparent 35%),
        linear-gradient(180deg, rgba(2,5,11,0.42), rgba(2,5,11,0.82)),
        linear-gradient(90deg, rgba(2,5,11,0.72), rgba(2,5,11,0.18), rgba(2,5,11,0.72));
}

.crc-about-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.crc-about-hero h1 {
    font-size: clamp(30px, 5.5vw, 75px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -3px;
}

/* =================================
   MISSION VISION VALUES
================================= */

.crc-mvv-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(0,151,255,0.12), transparent 28%),
        linear-gradient(180deg, #02050b, #040a16);
}

.crc-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.crc-mvv-card {
    height: 100%;
    min-height: 330px;
    padding: 38px 32px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 65px rgba(0,0,0,0.28);
    transition: 0.35s ease;
}

.crc-mvv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(52,215,255,0.24);
    box-shadow: 0 28px 75px rgba(0,151,255,0.16);
}

.crc-mvv-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(0,151,255,0.28), rgba(3,30,115,0.4));
    border: 1px solid rgba(255,255,255,0.08);
}

.crc-mvv-icon i {
    color: var(--cyan);
    font-size: 30px;
}

.crc-mvv-card h3 {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 16px;
}

.crc-mvv-card p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 15px;
    margin: 0;
}

/* =================================
   ABOUT STORY
================================= */

.crc-about-story-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at 80% 40%, rgba(52,215,255,0.08), transparent 30%),
        linear-gradient(180deg, #040a16, #02050b);
}

.crc-about-story-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.crc-about-story-image {
    height: 620px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 35px 90px rgba(0,0,0,0.42);
}

.crc-about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crc-about-story-content span,
.crc-team-heading span,
.crc-clients-box span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-about-story-content h2,
.crc-team-heading h2,
.crc-clients-box h2 {
    font-size: clamp(30px, 4vw, 55px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.crc-about-story-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* =================================
   TEAM
================================= */

.crc-team-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(0,151,255,0.12), transparent 28%),
        radial-gradient(circle at 85% 65%, rgba(52,215,255,0.08), transparent 28%),
        linear-gradient(180deg, #02050b, #040a16);
}

.crc-team-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.crc-team-heading span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-team-heading h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.crc-team-heading p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.crc-team-slider {
    position: relative;
    max-width: 1080px;
    margin: auto;
}

.crc-team-track {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.crc-team-card {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    align-items: center;
    min-height: 430px;
    padding: 28px;
    border-radius: 34px;
    cursor: pointer;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 50%, rgba(0,151,255,0.14), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        0 35px 90px rgba(0,0,0,0.36),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.crc-team-photo {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.crc-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.crc-team-card:hover .crc-team-photo img {
    transform: scale(1.06);
}

.crc-team-info {
    padding: 40px 48px;
}

.crc-team-info span {
    display: inline-flex;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
}

.crc-team-info h3 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.crc-team-info p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
    max-width: 580px;
    margin: 0;
}

.crc-team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(52,215,255,0.2);
    background: rgba(3,12,28,0.65);
    color: #fff;
    backdrop-filter: blur(16px);
    transition: 0.3s ease;
}

.crc-team-arrow:hover {
    background: var(--blue);
    box-shadow: 0 18px 45px rgba(0,151,255,0.28);
}

.crc-team-arrow.left {
    left: -80px;
}

.crc-team-arrow.right {
    right: -80px;
}

.crc-team-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.crc-team-dots button {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.22);
    transition: 0.3s ease;
}

.crc-team-dots button.active {
    width: 48px;
    background: var(--cyan);
    box-shadow: 0 0 20px rgba(52,215,255,0.55);
}

/* RESPONSIVE TEAM */

@media (max-width: 1200px) {
    .crc-team-arrow.left {
        left: 18px;
    }

    .crc-team-arrow.right {
        right: 18px;
    }
}

@media (max-width: 991px) {
    .crc-team-slider {
        max-width: 100%;
        overflow: visible;
    }

    .crc-team-track {
        overflow-x: hidden;
    }

    .crc-team-card {
        grid-template-columns: 1fr;
        min-height: auto;
        overflow: visible;
    }

    .crc-team-photo {
        height: 420px;
    }

    .crc-team-info {
        padding: 34px 20px 10px;
    }

    .crc-team-info h3 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {

    .crc-team-section {
        padding: 90px 0;
    }

    .crc-team-slider {
        width: 100%;
        overflow: hidden;
    }

    .crc-team-track {
        display: flex;
        overflow-x: hidden;
    }

    .crc-team-card {
        flex: 0 0 100%;
        min-width: 100%;

        display: flex;
        flex-direction: column;

        padding: 0;
        border-radius: 28px;
        overflow: hidden;

        background:
            radial-gradient(circle at top left, rgba(0,151,255,0.12), transparent 30%),
            linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));

        border: 1px solid rgba(255,255,255,0.08);
    }

    .crc-team-photo {
        width: 100%;
        height: 340px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        background: #0a101d;
    
        overflow: hidden;
    }
    
    .crc-team-photo img {
        width: 100%;
        height: 100%;
    
        object-fit: contain;
        object-position: center;
    
        background: #0a101d;
    }

    .crc-team-info {
        padding: 28px 24px 30px;
    }

    .crc-team-info span {
        display: block;

        font-size: 11px;
        letter-spacing: 1.8px;

        margin-bottom: 14px;
    }

    .crc-team-info h3 {
        font-size: 42px;
        line-height: 0.95;

        letter-spacing: -2px;

        margin-bottom: 18px;

        white-space: normal;
    }

    .crc-team-info p {
        font-size: 15px;
        line-height: 1.8;

        max-width: 100%;
    }

    .crc-team-readmore {
        margin-top: 18px;
        font-size: 12px;
    }

    .crc-team-arrow {
        width: 44px;
        height: 44px;

        top: 34%;
    }

    .crc-team-arrow.left {
        left: 18px;
    }

    .crc-team-arrow.right {
        right: 18px;
    }
}

@media (max-width: 480px) {

    .crc-team-photo {
        height: 300px;
    }

    .crc-team-info {
        padding: 24px 20px 26px;
    }

    .crc-team-info h3 {
        font-size: 34px;
        line-height: 1;
    }

    .crc-team-info p {
        font-size: 14px;
        line-height: 1.75;
    }

    .crc-team-arrow {
        top: 31%;
    }
}
/* =================================
   CLIENTS
================================= */

.crc-clients-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at 18% 45%, rgba(0,151,255,0.12), transparent 30%),
        linear-gradient(180deg, #040a16, #02050b);
}

.crc-clients-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.crc-clients-image {
    height: 560px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 35px 90px rgba(0,0,0,0.38);
}

.crc-clients-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crc-clients-content span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.crc-clients-content h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.crc-clients-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .crc-clients-wrap {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .crc-clients-image {
        height: 460px;
    }
}

@media (max-width: 768px) {
    .crc-clients-section {
        padding: 90px 0;
    }

    .crc-clients-image {
        height: 360px;
        border-radius: 28px;
    }

    .crc-clients-content h2 {
        font-size: 34px;
        letter-spacing: -1.4px;
    }

    .crc-clients-content p {
        font-size: 15px;
    }
}
/* RESPONSIVE */

@media (max-width: 991px) {
    .crc-mvv-grid,
    .crc-about-story-wrap {
        grid-template-columns: 1fr;
    }

    .crc-about-story-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .crc-about-hero {
        min-height: 60vh;
    }

    .crc-about-hero h1 {
        font-size: 42px;
        letter-spacing: -1.6px;
    }

    .crc-mvv-section,
    .crc-about-story-section,
    .crc-team-section,
    .crc-clients-section {
        padding: 90px 0;
    }

    .crc-mvv-card {
        min-height: auto;
        padding: 32px 26px;
    }

    .crc-about-story-image {
        height: 380px;
        border-radius: 28px;
    }

    .crc-about-story-content h2,
    .crc-team-heading h2,
    .crc-clients-box h2 {
        font-size: 34px;
        letter-spacing: -1.4px;
    }

    .crc-team-card,
    .crc-team-card img {
        min-height: 460px;
        height: 460px;
    }

    .crc-team-card div {
        left: 26px;
        bottom: 28px;
    }

    .crc-team-card h3 {
        font-size: 28px;
    }

    .crc-team-arrow {
        width: 46px;
        height: 46px;
    }

    .crc-clients-box {
        padding: 46px 26px;
        border-radius: 28px;
    }

    .crc-clients-box p {
        font-size: 15px;
    }
}

/* =================================
   TEAM MODAL / POPUP
================================= */

.crc-team-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.crc-team-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.crc-team-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(860px, 92%);
    max-height: 82vh;
    overflow-y: auto;
    transform: translate(-50%, -45%) scale(0.96);
    z-index: 1600;
    padding: 44px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(0,151,255,0.18), transparent 36%),
        linear-gradient(145deg, rgba(4,12,30,0.98), rgba(2,5,11,0.98));
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    box-shadow: 0 35px 90px rgba(0,0,0,0.55);
}

.crc-team-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.crc-team-modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: 0.3s ease;
}

.crc-team-modal-close:hover {
    background: var(--blue);
    transform: rotate(90deg);
}

.crc-team-modal-content h3 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 6px;
}

.crc-team-modal-content h5 {
    color: var(--cyan);
    font-size: 17px;
    margin-bottom: 24px;
}

.crc-team-modal-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .crc-team-modal {
        padding: 32px 24px;
        border-radius: 26px;
    }

    .crc-team-modal-content h3 {
        font-size: 28px;
    }
}

/* READ MORE */

.crc-team-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 28px;

    color: var(--cyan);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.4px;

    transition: 0.3s ease;
}

.crc-team-readmore i {
    font-size: 14px;
    transition: 0.3s ease;
}

.crc-team-card:hover .crc-team-readmore {
    color: #fff;
}

.crc-team-card:hover .crc-team-readmore i {
    transform: translate(3px, -3px);
}