.csp-contact-page {
    --csp-contact-navy: #07111f;
    --csp-contact-blue: #163b66;
    --csp-contact-accent: #2563eb;
    --csp-contact-accent-dark: #174ea6;
    --csp-contact-text: #14213d;
    --csp-contact-muted: #64748b;
    --csp-contact-light: #f6f9fd;
    --csp-contact-line: #dce7f3;
    color: var(--csp-contact-text);
    background: #fff;
    font-family: Arial, sans-serif;
}
.csp-contact-page * { box-sizing: border-box; }
.csp-contact-page h1,
.csp-contact-page h2,
.csp-contact-page p { margin-top: 0; }
.csp-contact-container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.csp-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 142px 0 62px;
    color: #fff;
    text-align: center;
    background: radial-gradient(circle at 82% 18%, rgba(78,148,255,.34), transparent 28%), linear-gradient(135deg, var(--csp-contact-navy) 0%, var(--csp-contact-blue) 62%, #0f5da8 100%);
}
.csp-contact-hero::after {
    position: absolute;
    right: -120px;
    bottom: -230px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    content: '';
}
.csp-contact-hero .csp-contact-container { position: relative; z-index: 1; }
.csp-contact-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--csp-contact-accent);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.csp-contact-hero .csp-contact-eyebrow { color: #9ecbff; }
.csp-contact-hero h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -.025em;
}
.csp-contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,.84);
    font-size: 1.06rem;
    line-height: 1.7;
}
.csp-contact-content { padding: 76px 0 84px; background: var(--csp-contact-light); }
.csp-contact-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 28px; align-items: start; }
.csp-contact-form-card,
.csp-contact-support-card {
    border: 1px solid var(--csp-contact-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15,23,42,.07);
}
.csp-contact-form-card { padding: 34px; }
.csp-contact-form-card h2 {
    margin-bottom: 10px;
    color: var(--csp-contact-text);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.16;
    letter-spacing: -.02em;
}
.csp-contact-intro { margin-bottom: 27px; color: var(--csp-contact-muted); line-height: 1.7; }
.csp-contact-form { display: grid; gap: 19px; }
.csp-contact-fields { display: grid; gap: 16px; }
.csp-contact-fields-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.csp-contact-field { display: grid; gap: 8px; }
.csp-contact-field label { margin: 0; color: var(--csp-contact-text); font-weight: 800; }
.csp-contact-field label > span { color: #b42318; }
.csp-contact-field label small,
.csp-contact-field > small { color: var(--csp-contact-muted); font-size: .84rem; font-weight: 400; line-height: 1.5; }
.csp-contact-field input,
.csp-contact-field select,
.csp-contact-field textarea {
    width: 100%;
    min-height: 49px;
    padding: 13px 14px;
    border: 1px solid #cbd9e8;
    border-radius: 12px;
    color: var(--csp-contact-text);
    background: #fff;
    font: inherit;
}
.csp-contact-field select { cursor: pointer; }
.csp-contact-field textarea { min-height: 150px; resize: vertical; }
.csp-contact-field input:focus,
.csp-contact-field select:focus,
.csp-contact-field textarea:focus {
    border-color: var(--csp-contact-accent);
    outline: 3px solid rgba(37,99,235,.14);
}
.csp-contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.csp-contact-captcha {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
}
.csp-contact-status { padding: 14px 16px; border: 1px solid transparent; border-radius: 12px; font-weight: 700; line-height: 1.5; }
.csp-contact-status.is-success { border-color: #9fd8b3; color: #176534; background: #edf9f1; }
.csp-contact-status.is-error { border-color: #efb1ad; color: #842029; background: #fff1f0; }
.csp-contact-submit {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--csp-contact-blue), var(--csp-contact-accent));
    box-shadow: 0 14px 28px rgba(37,99,235,.18);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.csp-contact-submit:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(37,99,235,.24); }
.csp-contact-submit:disabled { opacity: .62; cursor: wait; transform: none; box-shadow: none; }
.csp-contact-submit.is-loading i { animation: csp-contact-spin .8s linear infinite; }
.csp-contact-submit:focus { outline: 3px solid rgba(37,99,235,.35); outline-offset: 3px; }
.csp-contact-privacy { margin-bottom: 0; color: var(--csp-contact-muted); font-size: .86rem; line-height: 1.58; text-align: center; }
.csp-contact-privacy a { color: var(--csp-contact-accent-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.csp-contact-support { display: grid; gap: 18px; }
.csp-contact-support-card { padding: 25px 24px; }
.csp-contact-support-card-primary { border-color: #b9d0e7; background: linear-gradient(145deg, #fff, #f3f8ff); }
.csp-contact-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    color: var(--csp-contact-accent);
    background: #e9f3ff;
    font-size: 1.15rem;
}
.csp-contact-support-card h2 { margin-bottom: 7px; color: var(--csp-contact-text); font-size: 1.2rem; line-height: 1.3; }
.csp-contact-support-card p { margin-bottom: 12px; color: var(--csp-contact-muted); line-height: 1.62; }
.csp-contact-support-card a { color: var(--csp-contact-accent-dark); font-weight: 900; line-height: 1.5; text-decoration: none; overflow-wrap: anywhere; }
.csp-contact-support-card a:hover { text-decoration: underline; }
.csp-contact-support-card a i { margin-left: 5px; font-size: .86rem; }
.csp-contact-response-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border: 1px solid #c9dced;
    border-radius: 16px;
    color: var(--csp-contact-blue);
    background: #edf6ff;
}
.csp-contact-response-note i { margin-top: 3px; color: var(--csp-contact-accent); }
.csp-contact-response-note p { margin-bottom: 0; color: var(--csp-contact-muted); font-size: .91rem; line-height: 1.58; }
@keyframes csp-contact-spin { to { transform: rotate(360deg); } }
@media (max-width: 900px) {
    .csp-contact-grid { grid-template-columns: 1fr; }
    .csp-contact-support { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .csp-contact-response-note { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
    .csp-contact-hero { padding: 112px 0 52px; }
    .csp-contact-content { padding: 58px 0 66px; }
    .csp-contact-form-card { padding: 27px 23px; }
}
@media (max-width: 620px) {
    .csp-contact-container { width: min(100% - 24px, 1120px); }
    .csp-contact-fields-two,
    .csp-contact-support { grid-template-columns: 1fr; }
    .csp-contact-response-note { grid-column: auto; }
    .csp-contact-captcha { transform-origin: left center; }
}
@media (prefers-reduced-motion: reduce) {
    .csp-contact-page * { transition: none !important; }
    .csp-contact-submit.is-loading i { animation: none; }
}
