/* Contact — support desk. Not a product landing and not the About story page. */

body.vv-contact {
    --ink: #141b24;
    --navy: #0b1f33;
    --blue: #2563eb;
    --paper: #f6f7f9;
    --card: #fff;
    --muted: #5c6570;
    --line: #e2e8f0;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    user-select: text;
    -webkit-user-select: text;
}

.vv-contact a { color: inherit; }

.vv-ct-wrap {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 28px;
}

.vv-ct-hero {
    background:
        radial-gradient(ellipse 70% 55% at 12% 10%, rgba(37, 99, 235, 0.22), transparent 55%),
        linear-gradient(135deg, #0f1e2c 0%, #0b1f33 52%, #12304d 100%);
    color: #fff;
    padding: 64px 0 52px;
    text-align: center;
}

.vv-ct-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
    margin: 0 0 12px;
}

.vv-ct-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.035em;
    margin: 0 0 12px;
}

.vv-ct-hero .vv-ct-deck {
    max-width: 36rem;
    margin: 0 auto 22px;
    font-size: 18px;
    line-height: 1.55;
    color: #cbd5e1;
}

.vv-ct-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.vv-ct-pills span {
    font-size: 13px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.vv-ct-sec { padding: 56px 0; }

.vv-ct-sec h2 {
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}

.vv-ct-lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 38rem;
    margin: 0 0 24px;
}

.vv-ct-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vv-ct-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 20px;
    overflow: hidden;
}

.vv-ct-card strong {
    display: block;
    font-size: 17px;
    margin: 0 0 8px;
}

.vv-ct-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.vv-ct-card a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.vv-ct-card a:hover { text-decoration: underline; }

.vv-ct-mail {
    display: block;
    margin-bottom: 10px;
    word-break: break-all;
}

.vv-ct-desk {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.vv-ct-aside,
.vv-ct-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.vv-ct-aside { padding: 22px 20px; }

.vv-ct-aside h2 { font-size: 20px; }

.vv-ct-aside ul {
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.vv-ct-aside li { margin: 0 0 6px; }

.vv-ct-addr {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.vv-ct-addr strong { display: block; margin-bottom: 6px; }

.vv-ct-addr p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.vv-ct-form { padding: 24px 24px 22px; max-width: 700px; }

.vv-ct-form h2 { margin-bottom: 6px; }

.vv-ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vv-ct-field { margin: 0 0 12px; }

.vv-ct-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.vv-ct-field .opt {
    font-weight: 500;
    color: var(--muted);
}

.vv-ct-field input,
.vv-ct-field select,
.vv-ct-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit;
    font-size: 15px;
    background: #fafbfc;
}

.vv-ct-field textarea {
    min-height: 110px;
    resize: vertical;
}

.vv-ct-field input:focus,
.vv-ct-field select:focus,
.vv-ct-field textarea:focus {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #fff;
}

.vv-ct-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.vv-ct-form button {
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.vv-ct-form button:disabled { opacity: 0.65; cursor: wait; }

.vv-ct-msg {
    display: none;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.vv-ct-msg.is-on { display: block; }

.vv-ct-msg.is-ok { background: #ecfdf5; color: #047857; }

.vv-ct-msg.is-err { background: #fef2f2; color: #b91c1c; }

.vv-ct-note {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--muted);
}

.vv-ct-captcha {
    margin: 0 0 14px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8fafc;
    font-size: 13px;
    color: var(--muted);
}

.vv-ct-choose,
.vv-ct-data {
    background: #eef2f7;
}

.vv-ct-choose .vv-ct-lead { margin-bottom: 16px; }

.vv-ct-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vv-ct-steps article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 16px;
}

.vv-ct-steps em {
    display: block;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 6px;
}

.vv-ct-steps p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.vv-ct-faq details {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.vv-ct-faq summary {
    font-weight: 700;
    cursor: pointer;
}

.vv-ct-faq p {
    margin: 10px 0 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.vv-ct-cta { text-align: center; padding-bottom: 72px; }

.vv-ct-cta .vv-ct-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vv-ct-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.vv-ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
}

.vv-ct-btn-p { background: var(--navy); color: #fff !important; }

.vv-ct-btn-g { border-color: var(--line); background: #fff; color: var(--navy) !important; }

.vv-contact .grecaptcha-badge {
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 900px) {
    .vv-ct-cards,
    .vv-ct-desk,
    .vv-ct-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .vv-ct-wrap { padding: 0 18px; }
    .vv-ct-hero { padding: 48px 0 36px; }
    .vv-ct-sec { padding: 40px 0; }
    .vv-ct-row { grid-template-columns: 1fr; }
}
