:root {
    /* --primary: #0F172A; */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;    
    --accent: #3B82F6;
    --accent-light: #60A5FA;
    --text-dark: #0F172A;
    --text-gray: #64748B;
    --bg-light: #F8FAFC;
    --surface: #FFFFFF;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFC 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatReverse 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.content-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 100px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    animation: fadeInDown 1s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge svg {
    width: 16px;
    height: 16px;
}

h1 {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease-out 0.3s both;
}

h1 .highlight {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 5vh 0 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid #E2E8F0;
}

.btn-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.content-right {
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 24px 48px rgba(15, 23, 42, 0.12),
        0 8px 16px rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
    opacity: 0.6;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover::after {
    opacity: 0.4;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    padding: 28px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.badge-item {
    text-align: center;
    padding: 12px 0;
    border-right: 1px solid #E2E8F0;
}

.badge-item:last-child {
    border-right: none;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.badge-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    h1 {
        font-size: clamp(40px, 8vw, 56px);
    }

    .image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    section {
        padding: 2vh 0;
    }    
    .badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }

    .badge-grid {
        gap: 16px;
    }

    .badge-item {
        padding: 8px 0;
    }

    .badge-number {
        font-size: 26px;
    }

    .badge-label {
        font-size: 12px;
    }

    .image-badge {
        padding: 20px 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .hero-image {
        min-height: 350px;
    }

    .image-wrapper {
        border-radius: 24px;
    }
}
