/* ──────────────────────────────────────────────────
   /contact page — visual styles
────────────────────────────────────────────────── */

/* Hero accent — green to match the careers / about pages */
#pg-h1 .text-grad {
    background: none;
    color: #10B981;
    -webkit-text-fill-color: #10B981;
}

.ct-breadcrumb a,
.ct-breadcrumb span {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: none;
    transition: color .25s;
}
.ct-breadcrumb a:hover  { color: rgba(255, 255, 255, .7); }
.ct-breadcrumb .sep     { margin: 0 .5rem; color: rgba(255, 255, 255, .2); }
.ct-breadcrumb .current { color: rgba(255, 255, 255, .6); }

/* ── Form shell ───────────────────────────────────── */
.ct-form-card {
    background: #fff;
    border: 1px solid rgba(10, 22, 40, .07);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 14px 40px rgba(4, 12, 30, .04);
}
@media (min-width: 1024px) {
    .ct-form-card { padding: 3rem; }
}

.ct-form-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, .55);
    margin-bottom: .55rem;
}
.ct-form-label .req {
    color: #10B981;
    margin-left: 2px;
}

.ct-input,
.ct-textarea,
.ct-select {
    width: 100%;
    background: #F4F7FF;
    border: 1px solid rgba(10, 22, 40, .08);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    color: var(--midnight, #040C1E);
    transition: border-color .25s, background .25s, box-shadow .25s;
    outline: none;
    cursor: none;
}
.ct-input::placeholder,
.ct-textarea::placeholder {
    color: rgba(10, 22, 40, .35);
    font-weight: 400;
}
.ct-input:hover,
.ct-textarea:hover,
.ct-select:hover {
    border-color: rgba(16, 185, 129, .25);
    background: #fff;
}
.ct-input:focus,
.ct-textarea:focus,
.ct-select:focus {
    border-color: #10B981;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}
.ct-textarea { resize: vertical; min-height: 140px; line-height: 1.65; }
.ct-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2310B981' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

/* Inline error chips */
.ct-error {
    margin-top: .45rem;
    font-size: .76rem;
    font-weight: 500;
    color: #b91c1c;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.ct-error::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
}

/* Field with error state */
.ct-input.is-invalid,
.ct-textarea.is-invalid,
.ct-select.is-invalid {
    border-color: rgba(239, 68, 68, .55);
    background: rgba(239, 68, 68, .03);
}

/* Inquiry-type radio pills */
.ct-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.ct-pill-radio {
    position: relative;
    cursor: none;
}
.ct-pill-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ct-pill-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 9px 16px;
    background: #fff;
    border: 1px solid rgba(10, 22, 40, .1);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(10, 22, 40, .6);
    letter-spacing: -.005em;
    transition: all .25s;
    cursor: none;
}
.ct-pill-radio input:checked + .ct-pill-label {
    background: linear-gradient(135deg, #10B981, #059669);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 18px rgba(16, 185, 129, .25);
}
.ct-pill-radio:hover .ct-pill-label {
    border-color: rgba(16, 185, 129, .35);
    color: var(--midnight, #040C1E);
}
.ct-pill-radio input:checked:hover + .ct-pill-label {
    color: #fff;
}

/* Consent checkbox */
.ct-checkbox {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: none;
    padding: .85rem 1rem;
    border-radius: 12px;
    background: #F4F7FF;
    border: 1px solid rgba(10, 22, 40, .08);
    transition: border-color .25s, background .25s;
}
.ct-checkbox:hover {
    border-color: rgba(16, 185, 129, .35);
    background: #fff;
}
.ct-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ct-checkbox-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid rgba(10, 22, 40, .35);
    background: #fff;
    margin-top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.ct-checkbox:hover .ct-checkbox-mark {
    border-color: #10B981;
}
.ct-checkbox-mark svg {
    opacity: 0;
    transform: scale(.6);
    transition: all .2s;
    color: #fff;
}
.ct-checkbox input:checked + .ct-checkbox-mark {
    background: #10B981;
    border-color: #10B981;
}
.ct-checkbox input:checked + .ct-checkbox-mark svg {
    opacity: 1;
    transform: scale(1);
}
.ct-checkbox-text {
    font-size: .82rem;
    line-height: 1.55;
    color: rgba(10, 22, 40, .55);
}
.ct-checkbox-text a {
    color: #10B981;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit button — green gradient */
.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: 14px 28px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: -.005em;
    border: none;
    cursor: none;
    box-shadow: 0 12px 30px rgba(16, 185, 129, .25);
    transition: transform .25s, box-shadow .25s;
}
.ct-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(16, 185, 129, .35);
}
.ct-submit:active { transform: translateY(0); }

/* Banner — success / error */
.ct-banner {
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .88rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}
.ct-banner--success {
    background: rgba(16, 185, 129, .08);
    border: 1px solid rgba(16, 185, 129, .22);
    color: #047857;
}
.ct-banner--error {
    background: rgba(239, 68, 68, .06);
    border: 1px solid rgba(239, 68, 68, .2);
    color: #b91c1c;
}
.ct-banner svg { flex-shrink: 0; margin-top: 2px; }

/* ── Sidebar info cards ───────────────────────────── */
.ct-info-card {
    background: #fff;
    border: 1px solid rgba(10, 22, 40, .07);
    border-radius: 20px;
    padding: 1.65rem 1.75rem;
    transition: transform .35s, border-color .35s, box-shadow .35s;
}
.ct-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, .22);
    box-shadow: 0 18px 40px rgba(4, 12, 30, .06);
}
.ct-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, .12), rgba(5, 150, 105, .06));
    border: 1px solid rgba(16, 185, 129, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.ct-info-icon svg { color: #10B981; }
.ct-info-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, .4);
    margin-bottom: .35rem;
}
.ct-info-value {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--midnight, #040C1E);
    letter-spacing: -.015em;
    line-height: 1.4;
    word-break: break-word;
}
.ct-info-value a {
    color: var(--midnight, #040C1E);
    text-decoration: none;
    transition: color .25s;
}
.ct-info-value a:hover { color: #10B981; }
.ct-info-meta {
    font-size: .8rem;
    color: rgba(10, 22, 40, .5);
    margin-top: .25rem;
    font-weight: 400;
    line-height: 1.5;
}

/* FAQ accordion */
.ct-faq-item {
    border-top: 1px solid rgba(10, 22, 40, .07);
    padding: 1.35rem 0;
}
.ct-faq-item:last-child { border-bottom: 1px solid rgba(10, 22, 40, .07); }
.ct-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: none;
    list-style: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -.02em;
    color: var(--midnight, #040C1E);
    transition: color .25s;
}
.ct-faq-q::-webkit-details-marker { display: none; }
.ct-faq-q:hover { color: #10B981; }
.ct-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(16, 185, 129, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    transition: transform .35s;
}
details[open] .ct-faq-icon { transform: rotate(45deg); }
.ct-faq-a {
    margin-top: .85rem;
    color: rgba(10, 22, 40, .55);
    font-size: .9rem;
    line-height: 1.7;
}
