.hero-modern {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
    padding: 4.5rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero-modern::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(80, 163, 78, 0.15);
}
.hero-modern::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(49, 120, 69, 0.1);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(49, 120, 69, 0.2);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(49, 120, 69, 0.1);
}
.hero-modern h1 {
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--text);
    line-height: 1.15;
}
.hero-modern h1 span { color: var(--primary); }
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.hero-circle {
    width: min(340px, 80vw);
    height: min(340px, 80vw);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(49, 120, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-circle img { width: 78%; height: auto; }
.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(49, 120, 69, 0.18);
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.hero-float i { font-size: 1.1rem; }
.float-1 { top: 8%; left: 0; }
.float-2 { bottom: 10%; right: 0; }

.trust-strip {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(49, 120, 69, 0.1);
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}
.trust-strip .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
}
.trust-strip .trust-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.trust-strip .trust-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.trust-strip .trust-item strong { display: block; color: var(--text); }
.trust-strip .trust-item small { color: var(--text-light); }

.home-block {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
}
.home-block h2 {
    color: var(--primary);
    font-weight: 700;
}
.home-block img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(49, 120, 69, 0.18);
    object-fit: cover;
}
@media (min-width: 992px) {
    .home-block img { height: 100%; }
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    border: 1px solid rgba(49, 120, 69, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(49, 120, 69, 0.3);
}
