.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 150px 0 78px;
    color: var(--white);
    overflow: hidden;
}

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

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.nav-links a[aria-current="page"] {
    color: var(--blue);
    background: rgba(36, 87, 255, 0.08);
}

.page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 14, 34, 0.95), rgba(5, 14, 34, 0.7) 58%, rgba(5, 14, 34, 0.34)),
        radial-gradient(circle at 78% 20%, rgba(245, 181, 68, 0.24), transparent 34%),
        radial-gradient(circle at 20% 90%, rgba(25, 182, 163, 0.32), transparent 36%);
}

.page-hero-content {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.page-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0;
}

.page-hero p {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.page-hero .hero-actions {
    justify-content: center;
}

.split-section,
.contact-section,
.legal-section {
    padding: 104px 0;
}

.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 52px;
    align-items: center;
}

.split-grid h2,
.legal-shell h2,
.modern-form h2 {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}

.split-grid p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    color: #344054;
    font-weight: 700;
}

.check-list i {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--white);
    background: var(--teal);
    font-size: 12px;
}

.image-frame,
.accent-panel,
.modern-card,
.product-tile,
.modern-form,
.contact-cards article,
.legal-shell {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(16, 24, 40, 0.08);
}

.image-frame {
    padding: 22px;
}

.image-frame img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.accent-panel {
    padding: 34px;
    background: #101828;
    color: var(--white);
}

.accent-panel h3 {
    margin: 0 0 14px;
    font-size: 28px;
}

.accent-panel p,
.accent-panel .check-list li {
    color: rgba(255, 255, 255, 0.76);
}

.accent-panel .btn-primary-modern {
    margin-top: 24px;
}

.modern-grid {
    display: grid;
    gap: 18px;
}

.modern-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.modern-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.modern-card {
    min-height: 235px;
    padding: 26px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.modern-card:hover,
.product-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(36, 87, 255, 0.32);
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
}

.modern-card i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue);
}

.modern-card:nth-child(even) i {
    background: var(--teal);
}

.modern-card h3,
.product-tile h3,
.contact-cards h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.22;
}

.modern-card p,
.contact-cards p,
.legal-shell p {
    margin: 0;
    color: var(--muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-tile {
    padding: 22px;
    text-align: center;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-tile img {
    width: 100%;
    height: 240px;
    object-fit: contain;
}

.modern-form {
    padding: 34px;
}

.modern-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 800;
}

.modern-form input,
.modern-form textarea,
.modern-form select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #f8fafc;
    font: inherit;
}

.modern-form textarea {
    resize: vertical;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-cards article {
    padding: 22px;
}

.contact-cards i {
    color: var(--blue);
    margin-bottom: 14px;
}

.legal-section {
    background: #ffffff;
}

.legal-shell {
    max-width: 920px;
    padding: 42px;
}

.legal-shell p + p {
    margin-top: 18px;
}

.legal-shell a {
    color: var(--blue);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .modern-grid.four,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .page-hero {
        min-height: auto;
        padding: 132px 0 66px;
    }

    .split-grid,
    .contact-grid,
    .modern-grid.three,
    .modern-grid.four,
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .split-section,
    .contact-section,
    .legal-section {
        padding: 72px 0;
    }

    .accent-panel,
    .modern-form,
    .legal-shell {
        padding: 24px;
    }

    .product-tile img {
        height: 210px;
    }
}
