.static-page {
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding: 48px 0 96px;
}

.static-hero {
    border: 1px solid rgba(195, 198, 214, .45);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(25, 27, 35, .06);
    padding: clamp(28px, 5vw, 56px);
}

.static-hero span {
    color: #0052cc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.static-hero h1 {
    color: #191b23;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 10px 0 14px;
}

.static-hero p {
    max-width: 760px;
    color: #434654;
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.static-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.static-card {
    border: 1px solid rgba(195, 198, 214, .45);
    border-radius: 18px;
    background: #fff;
    padding: 24px;
}

.static-card .material-symbols-outlined {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: #eaf1ff;
    color: #0052cc;
    margin-bottom: 16px;
}

.static-card h2 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 10px;
}

.static-card p {
    color: #545767;
    line-height: 1.65;
    margin: 0;
}

.static-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-radius: 20px;
    background: #003d9b;
    color: #fff;
    margin-top: 24px;
    padding: 28px;
}

.static-cta h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 6px;
}

.static-cta p {
    color: rgba(255,255,255,.78);
    margin: 0;
}

.static-cta a {
    border-radius: 999px;
    background: #fff;
    color: #003d9b;
    font-weight: 900;
    padding: 12px 20px;
    text-decoration: none;
    white-space: nowrap;
}

.static-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border: 1px solid rgba(195, 198, 214, .45);
    border-radius: 20px;
    background: #fff;
    margin-top: 24px;
    padding: 24px;
}

.static-form label {
    display: grid;
    gap: 8px;
    color: #434654;
    font-size: 13px;
    font-weight: 800;
}

.static-form input,
.static-form textarea {
    width: 100%;
    border: 1px solid rgba(195, 198, 214, .85);
    border-radius: 12px;
    background: #f8f8ff;
    color: #191b23;
    font: inherit;
    padding: 12px 14px;
    outline: none;
}

.static-form input:focus,
.static-form textarea:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, .12);
}

.static-form__wide,
.static-form button {
    grid-column: 1 / -1;
}

.static-form button {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    background: #0052cc;
    color: #fff;
    font-weight: 900;
    padding: 13px 24px;
}

@media (max-width: 900px) {
    .static-grid { grid-template-columns: 1fr; }
    .static-cta { align-items: flex-start; flex-direction: column; }
    .static-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .static-page {
        width: min(100% - 28px, 1120px);
        padding: 28px 0 92px;
    }
}
