.hero {
    padding: 124px 0 74px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 3vw, 44px);
    align-items: stretch;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(15, 23, 42, .1);
}

.hero-content,
.hero-visual,
.object-card {
    min-height: 640px;
}

.hero-content {
    display: grid;
    align-content: center;
    min-width: 0;
}

.hero h1 {
    max-width: 520px;
    font-size: clamp(40px, 3.6vw, 58px);
    line-height: 1.05;
}

.hero-copy {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.65;
}

.hero-actions,
.page-actions,
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 28px;
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 520px;
    margin-top: 30px;
}

.hero-kpis div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--soft);
}

.hero-kpis strong {
    display: block;
    color: var(--blue);
    font-size: 24px;
}

.hero-kpis span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.scroll-hint {
    display: none;
}

.hero-visual {
    display: grid;
    align-items: stretch;
    min-width: 0;
}

.object-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(15, 23, 42, .14);
}

.object-photo {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.object-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.object-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}

.object-badge strong {
    color: var(--blue);
    font-size: 34px;
    line-height: 1;
}

.object-badge span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.object-info {
    padding: 20px;
}

.object-info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.object-info-head span {
    display: block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.object-info-head strong {
    display: block;
    margin-top: 4px;
    font-size: 22px;
}

.object-info-head i,
.object-step i {
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
}

.object-info-head i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.object-steps {
    display: grid;
    gap: 10px;
}

.object-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--soft);
}

.object-step i {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
}

.object-step strong {
    display: block;
    font-size: 15px;
}

.object-step span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.object-progress {
    height: 8px;
    margin-top: 16px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
}

.object-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--blue);
}

.services-grid,
.process-grid {
    display: grid;
    gap: 16px;
}

.services-grid {
    grid-template-columns: repeat(6, 1fr);
}

.service-card {
    position: relative;
    grid-column: span 2;
    min-height: 310px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .06);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
    grid-column: span 3;
}

.service-index {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(15, 111, 220, .18);
    font-size: 42px;
    font-weight: 900;
}

.service-icon {
    display: grid;
    width: 60px;
    height: 60px;
    margin-bottom: 54px;
    place-items: center;
    border-radius: 18px;
    color: var(--blue);
    background: rgba(15, 111, 220, .09);
    font-size: 24px;
}

.service-card h3,
.process-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.service-card p,
.process-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.62;
}

.proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.proof-media {
    min-height: 430px;
    background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
}

.proof-content {
    display: grid;
    align-content: center;
    padding: clamp(26px, 4vw, 52px);
}

.proof-content p {
    color: var(--muted);
    line-height: 1.7;
}

.proof-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.proof-list li {
    display: flex;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
}

.proof-list i {
    color: var(--blue);
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-card {
    min-height: 250px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .06);
}

.step {
    display: inline-grid;
    width: 50px;
    height: 50px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--blue);
    font-weight: 900;
}

.contact-card {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 28px;
    padding: clamp(22px, 4vw, 40px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-card p {
    color: var(--muted);
    line-height: 1.72;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-methods a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    font-weight: 800;
}

form {
    display: grid;
    gap: 10px;
}

@media (max-width: 1120px) {
    .hero-grid,
    .proof,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .hero-visual,
    .object-card {
        min-height: auto;
    }

    .object-photo {
        height: 360px;
    }
}

@media (max-width: 980px) {
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card,
    .service-card:nth-child(1),
    .service-card:nth-child(2) {
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 96px 0 52px;
    }

    .hero-grid {
        gap: 18px;
        padding: 14px;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: clamp(36px, 10.5vw, 54px);
    }

    .hero-actions .btn,
    .contact-methods a,
    form .btn {
        width: 100%;
    }

    .hero-kpis,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .object-card {
        border-radius: 22px;
    }

    .object-photo {
        height: 220px;
    }
}
