.hero {
    padding: 100px 0 100px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%23049fd9" opacity="0.03"/></svg>');
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--network-gray);
}

.hero-text h1 span.linear-gradient {
    background: var(--secondary-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(4, 159, 217, 0.1);
    z-index: -1;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 90%;
}

.cta-stat{
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    max-width: 600px;
}

.hero-text h1 .surBriance{
    color: rgb(0, 0, 0);
    background: rgb(197, 216, 255);
    border-radius: 20px;
    padding: 0px 18px;
}

.button-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--secondary-orange);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

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

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-orange);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--secondary-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-family: 'IBM Plex Mono', monospace;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-visual {
    position: relative;
}
.hero-visual img {
    width: 100%;
    border-radius: 12px;
    transition: all 0.3s;
}





/* Responsive */
@media (max-width: 1024px) {
    .cta-stat{
        max-width: 99vw;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .button-group {
        flex-direction: column;
    }
    .stats-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

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

    .timeline::before {
        left: 25px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .grand-rentree {
        padding: 60px 0;
    }

    .grand-rentree h2 {
        font-size: 28px;
    }
    .container { padding: 0 16px; }
    .hero { padding: 80px 0 60px; }
    .section { padding: 60px 0; }
    .timeline::before { left: 25px; }
    .timeline-marker { width: 50px; height: 50px; }
}
