.hero {
    padding: 90px 0 100px;
    overflow: hidden;
}

.hero-grid,
.project-grid,
.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6.2rem);
    letter-spacing: -0.055em;
}

.hero-lead,
.project-lead,
.section-copy,
.projection > p {
    max-width: 690px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-panel {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 25% 20%, #dceadc 0, transparent 32%),
        linear-gradient(145deg, #edf1e9, #dfe7df);
}

.hero-map {
    position: relative;
    min-height: 310px;
    border-radius: 26px;
    background:
        linear-gradient(125deg, transparent 45%, #c3d1c5 46%, transparent 48%),
        linear-gradient(35deg, transparent 42%, #c3d1c5 43%, transparent 45%);
}

.map-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 8px 18px rgba(12, 60, 42, 0.22);
}

.map-dot-one {
    top: 21%;
    left: 27%;
}

.map-dot-two {
    top: 55%;
    right: 30%;
}

.map-dot-three {
    bottom: 15%;
    left: 45%;
    background: var(--accent);
}

.hero-panel-copy {
    display: grid;
    gap: 5px;
}

.hero-panel-copy span {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 42px;
}

.section-heading h2,
.split h2,
.contact-box h2,
.project-grid h2 {
    font-size: clamp(2rem, 4.4vw, 3.7rem);
    letter-spacing: -0.04em;
}

.experience-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 30px;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.experience-tag {
    font-weight: 800;
    color: var(--brand);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.card-number {
    display: block;
    margin-bottom: 52px;
    color: var(--brand);
    font-weight: 850;
}

.project-lead {
    color: #d4dfd8;
}

.project-panel {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 34px;
    border-radius: 28px;
    background: #174f39;
}

.project-panel span {
    margin-bottom: 12px;
    color: #bce6d2;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.project-panel strong {
    max-width: 400px;
    font-size: 1.7rem;
    line-height: 1.25;
}

.process {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.process span {
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    font-weight: 700;
}

.contact-section {
    padding-top: 30px;
}

.contact-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 52px;
    border-radius: 30px;
    background: #e8eee8;
}

@media (max-width: 860px) {
    .hero-grid,
    .project-grid,
    .split,
    .contact-box {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: 360px;
    }

    .experience-card {
        grid-template-columns: 1fr;
    }
}

.territory-network {
    position: relative;
    min-height: 310px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 45%, #d6e4d7, transparent 35%),
        linear-gradient(135deg, #edf2eb, #dce6dc);
}

.network-point {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 8px 20px rgba(12, 60, 42, 0.2);
}

.point-a {
    top: 18%;
    left: 22%;
}

.point-b {
    top: 38%;
    right: 20%;
}

.point-c {
    bottom: 20%;
    left: 38%;
}

.point-d {
    bottom: 12%;
    right: 30%;
    background: var(--accent);
}
