/* ── Exo Inquiry Form ─────────────────────────────────────────────────────── */
:root {
    --exo-primary:   #1E73BE;
    --exo-dark:      #1E3A5F;
    --exo-white:     #FEFEFF;
    --exo-border:    #dde3ea;
    --exo-bg-field:  #f8fafb;
    --exo-text:      #1a2b3c;
    --exo-muted:     #6b7a8a;
    --exo-error:     #dc2626;
    --exo-radius:    8px;
}

.exo-wrap {
    max-width: 680px;
    margin: 0 auto;
    font-family: inherit;
    box-sizing: border-box;
}

/* ── Card ─────────────────────────────────────────────────────────────────── */
.exo-card {
    background: var(--exo-white);
    border: 1px solid var(--exo-border);
    border-radius: var(--exo-radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 36px 40px;
}

/* ── Section titles ───────────────────────────────────────────────────────── */
.exo-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--exo-muted);
    margin: 28px 0 16px;
    padding: 0;
}
.exo-section-title:first-of-type { margin-top: 0; }

/* ── Form layout ──────────────────────────────────────────────────────────── */
.exo-form { display: flex; flex-direction: column; gap: 0; }

.exo-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.exo-cols-2             { flex-direction: row; gap: 20px; }
.exo-cols-2 .exo-field  { flex: 1; min-width: 0; }

/* ── Fields ───────────────────────────────────────────────────────────────── */
.exo-field { display: flex; flex-direction: column; gap: 5px; }

.exo-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--exo-text);
}

.exo-req { color: var(--exo-error); margin-left: 2px; }
.exo-opt { font-weight: 400; color: var(--exo-muted); font-size: 12px; }

.exo-field input[type="text"],
.exo-field input[type="email"],
.exo-field input[type="tel"],
.exo-field select,
.exo-field textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--exo-border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--exo-text);
    background: var(--exo-bg-field);
    transition: border-color .18s, box-shadow .18s, background .18s;
    box-sizing: border-box;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.exo-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%236b7a8a' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 34px;
}

.exo-field input:focus,
.exo-field select:focus,
.exo-field textarea:focus {
    outline: none;
    border-color: var(--exo-primary);
    background: var(--exo-white);
    box-shadow: 0 0 0 3px rgba(30,115,190,.10);
}

.exo-field textarea { resize: vertical; min-height: 96px; }
.exo-field input::placeholder,
.exo-field textarea::placeholder { color: #b0bcc8; }

/* ── Honeypot ─────────────────────────────────────────────────────────────── */
.exo-hp { position: absolute; left: -9999px; }

/* ── Privacy ──────────────────────────────────────────────────────────────── */
.exo-privacy-wrap { margin: 8px 0 20px; }

.exo-privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--exo-muted);
    cursor: pointer;
    line-height: 1.6;
}

.exo-privacy-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    min-width: 17px;
    border: 1.5px solid var(--exo-border);
    border-radius: 4px;
    background: var(--exo-bg-field);
    cursor: pointer;
    margin-top: 3px;
    transition: background .15s, border-color .15s;
    position: relative;
}

.exo-privacy-label input[type="checkbox"]:checked {
    background: var(--exo-primary);
    border-color: var(--exo-primary);
}

.exo-privacy-label input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
    left: 4px;
}

.exo-privacy-label a { color: var(--exo-primary); }

/* ── Button ───────────────────────────────────────────────────────────────── */
.exo-btn {
    display: block;
    width: 100%;
    padding: 13px 28px;
    background: var(--exo-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
    font-family: inherit;
    margin-top: 4px;
}

.exo-btn:hover:not(:disabled) { background: var(--exo-dark); }
.exo-btn:disabled { background: #a0b8cc; cursor: not-allowed; }

/* ── Notices ──────────────────────────────────────────────────────────────── */
.exo-notice {
    padding: 13px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
}

.exo-success { background: #f0faf5; border: 1px solid #a7dfc4; color: #1a5c3a; }
.exo-error   { background: #fff5f5; border: 1px solid #f5c0c0; color: #8b1c1c; }

/* ── Validation ───────────────────────────────────────────────────────────── */
.exo-field-invalid input,
.exo-field-invalid select,
.exo-field-invalid textarea,
.exo-field-invalid input[type="checkbox"] {
    border-color: var(--exo-error) !important;
    box-shadow: 0 0 0 3px rgba(220,38,38,.08) !important;
}

.exo-field-error {
    display: block;
    font-size: 12px;
    color: var(--exo-error);
    margin-top: 3px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .exo-card    { padding: 24px 18px; }
    .exo-cols-2  { flex-direction: column; gap: 16px; }
    .exo-btn     { font-size: 14px; padding: 12px 20px; }
}

@media (max-width: 380px) {
    .exo-card { padding: 20px 12px; border-radius: 0; border-left: none; border-right: none; }
}
