.page-wrap.static-page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 20px 56px;
}

.static-page-header {
    margin-bottom: 24px;
}

.static-page-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 14px;
}

.static-page-header h1 {
    margin: 0 0 12px 0;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.08;
    color: #0F172A;
}

.static-page-header p {
    margin: 0;
    max-width: 760px;
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
}

.static-card {
    padding: 28px;
    border-radius: 24px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.static-card h2 {
    margin: 0 0 16px 0;
    font-size: 21px;
    line-height: 1.2;
    color: #0F172A;
}

.static-card p,
.static-card li {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.static-card p {
    margin: 0 0 14px 0;
}

.static-card p:last-child {
    margin-bottom: 0;
}

.static-card ul {
    margin: 0;
    padding-left: 20px;
}

.static-card a {
    color: #F97316;
    text-decoration: none;
    font-weight: 600;
}

.static-card a:hover {
    text-decoration: underline;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.info-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.info-item .label {
    display: block;
    margin-bottom: 8px;
    color: #64748B;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.info-item strong {
    display: block;
    color: #0F172A;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-wrap.static-page-wrap {
        padding: 20px 14px 40px;
    }

    .static-card {
        padding: 20px;
        border-radius: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .static-page-header h1 {
        font-size: 30px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #64748B;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    color: #0F172A;
    font-size: 15px;
    line-height: 1.5;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
    background: #fff;
}

.form-field textarea {
    min-height: 160px;
    resize: vertical;
}

.form-actions {
    margin-top: 20px;
}

.form-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.form-alert.success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.form-alert.error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}