.construction-page {
    min-height: calc(100vh - 74px);
    margin-top: 74px; /* pushes section below fixed header */

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 24px;
    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(28, 91, 170, 0.08),
            transparent 35%
        ),
        #f7f9fc;
}
.construction-page__inner {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;

    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 24px;
    padding: 64px 48px;

    box-shadow: 0 18px 50px rgba(18, 38, 63, 0.08);
}
.construction-page__icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef5ff;
}

.construction-page__icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #174f9b;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.construction-page__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #174f9b;
}

.construction-page h1 {
    margin: 0;
    color: #17263c;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
}

.construction-page p {
    max-width: 570px;
    margin: 22px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.construction-page__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.construction-page__primary,
.construction-page__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.construction-page__primary {
    background: #f78220;
    color: #ffffff;
}

.construction-page__primary:hover {
    background: #123f7c;
    color: #ffffff;
}

.construction-page__secondary {
    border: 1px solid #d9e0e8;
    background: #ffffff;
    color: #17263c;
}

.construction-page__secondary:hover {
    background: #f5f7fa;
    color: #17263c;
}

@media (max-width: 640px) {
    .construction-page {
        padding: 50px 18px;
    }

    .construction-page__inner {
        padding: 46px 24px;
        border-radius: 18px;
    }

    .construction-page__actions {
        flex-direction: column;
    }

    .construction-page__primary,
    .construction-page__secondary {
        width: 100%;
    }
}