.hero {
    padding: 40px 0 60px 0;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background: #e0f0e8;
    color: var(--primary-green);
    display: inline-block;
    padding: 10px 22px;
    border-radius: 45px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0b2b21;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    flex: 0.8;
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2f0ea;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    transition: all 0.25s;
    border: 1px solid #e8f0ed;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #cde2d8;
    box-shadow: 0 20px 30px -12px rgba(31, 110, 67, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.advantage-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin: 40px 0 20px;
}

.advantage-item {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 24px;
    border-left: 4px solid #2c8c5a;
}

.payment-flex {
    background: #f2f8f4;
    border-radius: 40px;
    padding: 48px 40px;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.payment-badge {
    background: var(--primary-green);
    color: white;
    border-radius: 60px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
}

.trust-section {
    background-color: var(--primary-dark);
    width: 100%;
    padding: 60px 0;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.trust-title {
    text-align: center;
    color: var(--accent-yellow);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.white-card {
    background: white;
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-items: center;
    align-items: start;
}

.partner-logo {
    text-align: center;
    width: 100%;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    background: #f0f6f2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #a0b8aa;
    transition: all 0.2s ease;
}

.partner-logo:hover .logo-placeholder {
    background: #e0ede6;
    transform: scale(1.02);
}

.partner-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
}

.cert-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    width: 240px;
    text-align: center;
    border: 1px solid #e0ede6;
    font-size: 0.8rem;
    font-weight: 500;
}

.cert-card .badge {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.footer-contact {
    background: #f0f6f2;
    border-radius: 48px;
    padding: 48px;
    text-align: center;
    margin: 40px 0 30px;
}

.director-card {
    background: white;
    border-radius: 28px;
    padding: 28px 32px;
    margin: 30px 0 20px;
    border: 1px solid #e0ede6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.director-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.director-info p {
    margin: 6px 0;
    font-size: 1rem;
}

.director-contacts {
    text-align: right;
}

.director-contacts a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}