p{
    font-size:18px;
}

section{
    position:relative;
}

/* HERO */

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

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:90px;
    align-items:center;
}

.hero h1{
    font-size:3rem;
    line-height:1.1;
    font-weight:700;
    color: #111827;
    margin-bottom:30px;
}

.hero p{
    color:#6b7280;
    font-size:18px;
    margin-bottom:24px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn-primary{
    background: linear-gradient(135deg,#73be0f,#64a40f);
    color:#fff;
    text-decoration:none;
    padding:17px 32px;
    border-radius:16px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 15px 40px rgba(34,197,94,0.25);
}

.btn-primary:hover{
    transform:translateY(-4px);
    color:#fff;
}

.btn-secondary{
    background:#fff;
    border:1px solid #d1d5db;
    color:#111827;
    text-decoration:none;
    padding:17px 32px;
    border-radius:16px;
    font-weight:600;
    transition:0.3s;
}

.btn-secondary:hover{
    border-color:#64a40f;
    color:#64a40f;
}

/* FLOATING CARDS */

.hero-image{
    position:relative;
}

.hero-image img {
    width:100%;
    display:block;
    border-radius:30px;
}

.floating-wrapper{
    position:absolute;
    bottom:25px;
    left:-40px;
    width:270px;
    height:145px;
}

.floating-card{
    position:absolute;
    inset:0;

    background:rgba(255,255,255,0.78);
    backdrop-filter:blur(18px);

    border-radius:28px;
    padding:26px;

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

    box-shadow:0 20px 60px rgba(0,0,0,0.08);

    opacity:0;
    transform:translateY(20px);

    transition:0.6s ease;
}

.floating-card.active{
    opacity:1;
    transform:translateY(0);
}

.floating-card h3{
    color:#64a40f;
    font-size:2.4rem;
    margin-bottom:6px;
}

.floating-card p{
    margin:0;
    color:#6b7280;
}

/* GLOBAL */

.section-title{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:24px;
}

.section-text{
    max-width:1000px;
    color:#6b7280;
    font-size:18px;
}

/* VALUES */

.values{
    padding:100px 0;
    background:#f9fafb;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:60px;
}

.value-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:30px;
    padding:40px;
    transition:0.3s;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.06);
}

.value-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:#ecfdf5;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    font-size:1.5rem;
}

.value-card h3{
    margin-bottom:16px;
}

.value-card p{
    color:#6b7280;
}

/* SPECIALIZATION */

.specialization{
    padding:100px 0;
}

.spec-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-top:60px;
}

.spec-box{
    flex-direction: column;
    display: flex;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:30px;
    padding:42px;
    transition:0.3s;
}

.spec-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}

.spec-box h3{
    margin-bottom:18px;
}

.spec-box p{
    color:#6b7280;
    margin-bottom:18px;
}

.spec-box ul{
    margin-top: auto;
    display:grid;
    gap:12px;
}

.spec-box li{
    list-style:none;
    color:#374151;
    font-size: 16px;
}

/* COMPANY */

.company{
    padding:100px 0;
    background:#f9fafb;
}

.company-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.company-grid img {
    width:100%;
    display:block;
    border-radius:30px;
}

.company-data{
    display:grid;
    gap:18px;
    margin-top:30px;
}

.data-item{
    display:flex;
    justify-content:space-between;
    padding:18px 22px;
    background:#fff;
    border-radius:14px;
    border:1px solid #e5e7eb;
    font-size: 18px;
    align-items: center;
}

.data-item span:first-child{
    color:#6b7280;
}

.data-item span:last-child{
    font-weight:600;
}

/* CTA */

.cta{
    padding:100px 0;
}

.cta-box{
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 40px;
    padding: 90px;
    position: relative;
    text-align: center;
    overflow: hidden;
    color: #111;
}

.cta-box::before{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.cta-box h2{
    font-size:3rem;
    margin-bottom:24px;
    position:relative;
}

.cta-box p{
    color:#6b7280;
    max-width:720px;
    margin:auto;
    margin-bottom:42px;
    position:relative;
}


/* RESPONSIVE */
@media(max-width:700px){
    .company_img {
        display: none;
    }
    
    .company-grid{
        grid-template-columns: 1fr;
    }
}

@media(max-width:1050px){

    .hero-grid,
    .about-grid,
    .values-grid,
    .spec-grid,
    .stats-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .floating-wrapper{
        left:10px;
    }

    .nav-links{
        display:none;
    }

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2{
        font-size:2rem;
    }

    .footer-inner{
        flex-direction:column;
        gap:14px;
    }
}