.cnc-hero-wrapper {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f1f38 100%);
    overflow: hidden;
    padding: 120px 20px 80px;
    isolation: isolate;
}

.cnc-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===================================
   LEFT CONTENT AREA
   =================================== */
.cnc-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: cnc-hero-fade-in-left 0.8s ease-out;
}

@keyframes cnc-hero-fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge */
.cnc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px 20px;
    width: fit-content;
    animation: cnc-hero-badge-glow 3s ease-in-out infinite;
}

@keyframes cnc-hero-badge-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
    }
}

.cnc-hero-badge-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.8));
}

.cnc-hero-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Heading */
.cnc-hero-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.cnc-hero-heading-accent {
    display: block;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

/* Subheading */
.cnc-hero-subheading {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 540px;
}

/* CTA Buttons */
.cnc-hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.cnc-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cnc-hero-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.cnc-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.cnc-hero-btn-primary:active {
    transform: translateY(0);
}

.cnc-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cnc-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cnc-hero-btn-icon,
.cnc-hero-btn-icon-left {
    transition: transform 0.3s ease;
}

.cnc-hero-btn-primary:hover .cnc-hero-btn-icon {
    transform: translateX(4px);
}

.cnc-hero-btn-secondary:hover .cnc-hero-btn-icon-left {
    transform: translateY(-2px);
}

/* Stats Row */
.cnc-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cnc-hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cnc-hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
}

.cnc-hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cnc-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===================================
   RIGHT VISUAL AREA
   =================================== */
.cnc-hero-visual {
    position: relative;
    animation: cnc-hero-fade-in-right 0.8s ease-out 0.2s backwards;
}

@keyframes cnc-hero-fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cnc-hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Background Circles */
.cnc-hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: cnc-hero-pulse 4s ease-in-out infinite;
}

.cnc-hero-bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.cnc-hero-bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes cnc-hero-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Grid Pattern */
.cnc-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* Main Image */
.cnc-hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cnc-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cnc-hero-image-container:hover .cnc-hero-image {
    transform: scale(1.05);
}

.cnc-hero-image-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.4);
    gap: 16px;
}

.cnc-hero-image-placeholder svg {
    opacity: 0.5;
}

.cnc-hero-image-placeholder span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Badge */
.cnc-hero-floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: cnc-hero-float 3s ease-in-out infinite;
}

@keyframes cnc-hero-float {

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

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

.cnc-hero-floating-badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    color: #ffffff;
}

.cnc-hero-floating-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cnc-hero-floating-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.cnc-hero-floating-badge-subtitle {
    font-size: 12px;
    color: #64748b;
}

/* ===================================
   DECORATIVE WAVE
   =================================== */
.cnc-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.cnc-hero-wave-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cnc-hero-wave-path {
    fill: rgba(255, 255, 255, 0.03);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
/* Tablet */
@media (max-width: 1024px) {
    .cnc-hero-wrapper {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }

    .cnc-hero-container {
        gap: 40px;
    }

    .cnc-hero-heading {
        font-size: 48px;
    }

    .cnc-hero-subheading {
        font-size: 16px;
    }

    .cnc-hero-image-wrapper {
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cnc-hero-wrapper {
        padding: 80px 16px 40px;
        min-height: auto;
    }

    .cnc-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cnc-hero-content {
        text-align: center;
        align-items: center;
    }

    .cnc-hero-heading {
        font-size: 36px;
    }

    .cnc-hero-subheading {
        font-size: 15px;
        max-width: 100%;
    }

    .cnc-hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

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

    .cnc-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cnc-hero-stat-number {
        font-size: 24px;
    }

    .cnc-hero-image-wrapper {
        max-width: 100%;
    }

    .cnc-hero-floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .cnc-hero-floating-badge-icon {
        width: 36px;
        height: 36px;
    }

    .cnc-hero-wave {
        height: 80px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cnc-hero-heading {
        font-size: 28px;
    }

    .cnc-hero-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .cnc-hero-stats {
        gap: 16px;
    }

    .cnc-hero-stat-divider {
        display: none;
    }

    .cnc-hero-floating-badge {
        position: static;
        margin-top: 20px;
    }
}