.page-hero {
    position: relative;
    min-height: 48vh;

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

    overflow: hidden;

    background:
        radial-gradient(circle at top, rgba(99, 102, 241, 0.2), transparent 38%),
        linear-gradient(180deg, #020617, #0f172a);
}

.shop-hero {
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 38%),
        linear-gradient(180deg, #020617, #0f172a);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 35%),
        linear-gradient(rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.95));
}

.page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    padding: 80px 24px 60px;
}

.page-hero-content h1 {
    margin: 0 0 22px;

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;

    color: #ffffff;
    text-shadow:
        0 0 18px rgba(99, 102, 241, 0.45),
        0 0 30px rgba(0, 0, 0, 0.8);
}

.page-hero-content p {
    margin: 0 auto;

    max-width: 760px;

    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.construction-section {
    padding: 110px 30px;

    background:
        radial-gradient(circle at left, rgba(212, 175, 55, 0.1), transparent 35%),
        linear-gradient(180deg, #020617, #0f172a);
}

.construction-card {
    position: relative;
    overflow: hidden;

    max-width: 950px;
    margin: auto;
    padding: 45px 36px;

    text-align: center;

    background:
        linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));

    border: 1px solid var(--border-gold);
    border-radius: 22px;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.45),
        inset 0 0 35px rgba(99, 102, 241, 0.12);
}

.construction-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;

    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.construction-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 22px;

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

    color: var(--gold);
    font-size: 28px;

    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
}

.construction-card h2 {
    margin: 0 0 20px;

    font-size: clamp(30px, 4vw, 44px);
}

.construction-card p {
    max-width: 760px;
    margin: auto;

    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

.construction-grid {
    margin-top: 34px;

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

.construction-item {
    padding: 22px;

    background: rgba(2, 6, 23, 0.45);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
}

.construction-item strong {
    display: block;

    margin-bottom: 10px;

    color: #ffffff;
    font-size: 18px;
}

.construction-item span {
    color: var(--text-muted);
    line-height: 1.6;
}

.construction-actions {
    margin-top: 34px;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 42vh;
    }

    .page-hero-content {
        padding: 60px 20px 45px;
    }

    .construction-section {
        padding: 75px 20px;
    }

    .construction-card {
        padding: 34px 24px;
    }

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