﻿.home-container {
    position: relative;
    margin: 0;
    padding: 40px 20px 80px;
    overflow: hidden;
}

.blur-orb {
    z-index: 0;
    opacity: 0.45;
}

.home-hero {
    position: relative;
    z-index: 1;
}

.home-hero__inner {
    max-width: 1550px;
    margin: 0 auto;
    padding: 60px 0px 0;
    display: flex;
    gap: 55px;
    align-items: center;
    justify-content: space-between;
}

.home-hero__content {
    flex: 1;
    min-width: 380px;
    transform: translateX(-100px);
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffffcc;
    border: 1px solid #e5e7eb;
    color: #00bc81;
    font-size: 15px;
    font-weight: 700;
    box-shadow: #a7a7a761 0px 2px 25px 0px;
}

.home-hero__title {
    margin: 18px 0 12px;
    font-size: 80px;
    line-height: 1.05;
    font-weight: 800;
    color: #0b0f14;
}

.home-hero__title span {
    background: linear-gradient(130deg, #00cb89a8, #00b5db91);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #009967;
    font-weight: 700;
}

.home-hero__description {
    margin: 25px 0 25px;
    max-width: 520px;
    color: #475569;
    font-size: 20px;
    line-height: 1.6;
}

.home-hero__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.3s ease-in-out;
}

.btn:hover{
    transform: scale(1.05);
}

.btn--accent:hover {
    background: #0aa974;
}

.btn--pill {
    border-radius: 999px;
}

.btn--outline:hover {
    background: #bbffe869;
}

.btn--accent {
    background: #10b981;
    color: #fff;
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.25);
}

.btn--outline {
    background: #ffffffcc;
    color: #0b0f14;
    border-color: #5ee9b5;
}

.home-hero__stats {
    display: flex;
    gap: 40px;
}

.stat {
    width: 190px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ffffffcc;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.1);
}

.stat h3 {
    margin: 0 0 6px;
    font-size: 30px;
    font-weight: 800;
    color: #009871;
}

.stat p {
    margin: 0;
    font-size: 16px;
    color: #64748b;
}

.home-hero__image {
    flex: 1.3;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    animation: slideInFromRight 0.8s ease-out 0.2s forwards;
}

.home-hero__image img {
    width: 650px;
    height: 420px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255,255,255,0.7);
    animation: img 3s ease-in-out 1s infinite;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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


@media (max-width: 768px) { 

    .home-hero__inner {
        flex-direction: column;
        align-items: flex-start; 
        padding: 40px 0 0; 
        gap: 30px;
    }

    .home-hero__content {
        min-width: 0; 
        width: 100%;
        opacity: 1; 
    }

    .home-hero__title {
        font-size: 38px;
        line-height: 1.1;
        margin: 15px 0;
    }

    .home-hero__title br {
        display: none;
    }

    .home-hero__description {
        font-size: 16px;
        max-width: 100%;
        margin: 0 0 30px 0; 
        padding-right: 10px; 
    }

    .home-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn {
        width: 100%; 
        padding: 10px 0;
        font-size: 15px;
    }

    .home-hero__stats {
        width: 100%;
        justify-content: space-between;
        gap: 10px; 
    }

    .stat {
        width: auto; 
        flex: 1;
        padding: 12px 10px;
        min-width: 0; 
        text-align: center; 
        box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05); 
    }

    .stat h3 {
        font-size: 20px; 
    }

    .stat p {
        font-size: 12px;
        line-height: 1.2;
    }

    .home-hero__image {
        width: 100%;
        justify-content: center;
        opacity: 0;
        margin-top: 20px;
    }

    .home-hero__image img {
        width: 100%;
        height: 350px; 
        object-fit: cover;
    }
}
