/**
 * Contact Page – contact.css
 *
 * World-class contact page styles: pastel hero, multi-channel cards,
 * multi-step form, locations, FAQ, CTA. Follows site design system.
 *
 * @package JamTelecom
 */

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */

.ct-hero {
    position: relative;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    overflow: hidden;
    background: linear-gradient(165deg, #eef2ff 0%, #e0e7ff 35%, #ddd6fe 60%, #c7d2fe 100%);
}

/* Animated orbs */
.ct-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    pointer-events: none;
    will-change: transform;
}
.ct-hero__orb--1 {
    width: 600px; height: 600px;
    top: -180px; left: -120px;
    background: radial-gradient(circle, rgba(139,92,246,.35), transparent 70%);
    animation: ct-float-1 18s ease-in-out infinite;
}
.ct-hero__orb--2 {
    width: 500px; height: 500px;
    top: 40%; right: -100px;
    background: radial-gradient(circle, rgba(79,70,229,.3), transparent 70%);
    animation: ct-float-2 22s ease-in-out infinite;
}
.ct-hero__orb--3 {
    width: 400px; height: 400px;
    bottom: -80px; left: 30%;
    background: radial-gradient(circle, rgba(6,182,212,.25), transparent 70%);
    animation: ct-float-3 20s ease-in-out infinite;
}

@keyframes ct-float-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,40px) scale(1.08); } }
@keyframes ct-float-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,30px) scale(1.05); } }
@keyframes ct-float-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.1); } }

.ct-hero__canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.ct-hero__wave {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 120px;
    pointer-events: none;
}

.ct-hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ct-hero__inner {
    position: relative; z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.ct-hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 1.5rem;
    font-size: .8125rem; font-weight: 600;
    color: var(--color-primary);
}

.ct-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.ct-hero__desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* Proof strip */
.ct-hero__proof {
    display: inline-flex; align-items: center; gap: 1.5rem;
    padding: .875rem 1.75rem;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 100px;
    white-space: nowrap;
}

.ct-hero__proof-item {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
}

.ct-hero__proof-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.ct-hero__proof-label {
    font-size: .7rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ct-hero__proof-divider {
    width: 1px; height: 28px;
    background: rgba(0,0,0,.1);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   CONTACT CHANNELS
   ═══════════════════════════════════════════════════════════════════════ */

.ct-channels {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.ct-channels__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ct-channel {
    display: flex; flex-direction: column;
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-xl, 16px);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.ct-channel:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(79,70,229,.12);
    border-color: rgba(79,70,229,.2);
}

.ct-channel__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform .3s ease;
}
.ct-channel:hover .ct-channel__icon { transform: scale(1.08); }

.ct-channel__icon--whatsapp { background: rgba(37,211,102,.1); }
.ct-channel__icon--email    { background: rgba(79,70,229,.08); }
.ct-channel__icon--phone    { background: rgba(6,182,212,.1); }
.ct-channel__icon--calendar { background: rgba(139,92,246,.08); }

.ct-channel__icon--email svg    { stroke: var(--color-primary); }
.ct-channel__icon--phone svg    { stroke: #06B6D4; }
.ct-channel__icon--calendar svg { stroke: #8B5CF6; }

.ct-channel__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .5rem;
}

.ct-channel__desc {
    font-size: .875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1rem;
}

.ct-channel__action {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .8125rem; font-weight: 600;
    color: var(--color-primary);
    transition: gap .2s ease;
}
.ct-channel:hover .ct-channel__action { gap: 10px; }

.ct-channel__status {
    display: flex; align-items: center; gap: 6px;
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: .7rem; font-weight: 600;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ct-channel__status-dot--online {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: ct-pulse-dot 2s ease-in-out infinite;
}

@keyframes ct-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
    50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.ct-channel--cta {
    background: linear-gradient(135deg, rgba(79,70,229,.04), rgba(139,92,246,.06));
    border-color: rgba(139,92,246,.15);
}


/* ═══════════════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.ct-form-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--surface-raised, #f8fafc);
}

.ct-form__layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

/* ── Form Panel ── */
.ct-form__panel {
    padding: 2.5rem;
    border-radius: var(--radius-xl, 16px);
}

/* ── Progress Bar ── */
.ct-form__progress {
    margin-bottom: 2.5rem;
}

.ct-form__progress-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0;
    margin-bottom: 1rem;
}

.ct-form__progress-step {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    position: relative;
    min-width: 80px;
}

.ct-form__progress-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .8125rem; font-weight: 700;
    color: var(--text-tertiary);
    background: #e5e7eb;
    transition: all .35s ease;
    font-family: var(--font-heading);
}

.ct-form__progress-step--active .ct-form__progress-num,
.ct-form__progress-step--completed .ct-form__progress-num {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79,70,229,.3);
}

.ct-form__progress-step--completed .ct-form__progress-num {
    background: #10B981;
    box-shadow: 0 4px 14px rgba(16,185,129,.3);
}

.ct-form__progress-label {
    font-size: .7rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: color .3s ease;
}

.ct-form__progress-step--active .ct-form__progress-label {
    color: var(--color-primary);
    font-weight: 600;
}
.ct-form__progress-step--completed .ct-form__progress-label {
    color: #10B981;
}

.ct-form__progress-connector {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 .5rem;
    margin-bottom: 18px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    min-width: 40px;
}

.ct-form__progress-connector::after {
    content: '';
    position: absolute; top: 0; left: 0;
    height: 100%; width: 0;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width .5s ease;
}

.ct-form__progress-connector--filled::after {
    width: 100%;
}

.ct-form__progress-bar {
    width: 100%; height: 3px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.ct-form__progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 4px;
    transition: width .5s ease;
}

/* ── Form Steps ── */
.ct-form__step {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
    min-inline-size: auto;
}

.ct-form__step--active {
    display: block;
    animation: ct-step-in .4s ease;
}

@keyframes ct-step-in {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.ct-form__step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding: 0;
}

/* ── Form Fields ── */
.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ct-form__group {
    margin-bottom: 1rem;
}

.ct-form__label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .375rem;
}

.ct-form__required {
    color: #ef4444;
}

.ct-form__input,
.ct-form__select,
.ct-form__textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: var(--radius-md, 10px);
    font-size: .9375rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--surface, #fff);
    transition: border-color .2s ease, box-shadow .2s ease;
    outline: none;
}

.ct-form__input:focus,
.ct-form__select:focus,
.ct-form__textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}

.ct-form__input.ct-form__input--error,
.ct-form__select.ct-form__select--error,
.ct-form__textarea.ct-form__textarea--error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.08);
}

.ct-form__input.ct-form__input--valid,
.ct-form__select.ct-form__select--valid {
    border-color: #10B981;
}

.ct-form__error {
    display: block;
    min-height: 1.25em;
    font-size: .75rem;
    color: #ef4444;
    margin-top: .25rem;
    transition: opacity .2s ease;
}

.ct-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.ct-form__char-count {
    text-align: right;
    font-size: .7rem;
    color: var(--text-tertiary);
    margin-top: .25rem;
    font-variant-numeric: tabular-nums;
}

/* ── Select Styling ── */
.ct-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* ── Radio Group ── */
.ct-form__radio-group {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-top: .375rem;
}

.ct-form__radio {
    display: inline-flex; align-items: center; gap: .375rem;
    padding: .5rem .875rem;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 100px;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .2s ease;
    user-select: none;
}

.ct-form__radio input { display: none; }

.ct-form__radio-check {
    width: 16px; height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s ease;
    flex-shrink: 0;
}

.ct-form__radio-check::after {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: scale(0);
    transition: transform .2s ease;
}

.ct-form__radio:hover {
    border-color: rgba(79,70,229,.3);
    color: var(--text-primary);
}

.ct-form__radio input:checked ~ .ct-form__radio-check {
    border-color: var(--color-primary);
}

.ct-form__radio input:checked ~ .ct-form__radio-check::after {
    transform: scale(1);
}

.ct-form__radio:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(79,70,229,.04);
    color: var(--color-primary);
    font-weight: 600;
}

/* ── Checkbox ── */
.ct-form__checkbox {
    display: flex; align-items: flex-start; gap: .5rem;
    font-size: .8125rem;
    line-height: 1.5;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.ct-form__checkbox input { display: none; }

.ct-form__checkbox-check {
    width: 18px; height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.ct-form__checkbox-check::after {
    content: '';
    width: 10px; height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transition: transform .2s ease;
    margin-top: -2px;
}

.ct-form__checkbox input:checked ~ .ct-form__checkbox-check {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.ct-form__checkbox input:checked ~ .ct-form__checkbox-check::after {
    transform: rotate(-45deg) scale(1);
}

.ct-form__checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Form Actions ── */
.ct-form__actions {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

/* ── Submit Loading ── */
.ct-form__submit-loading {
    display: none;
    align-items: center; gap: 6px;
}

.ct-form--submitting .ct-form__submit-text { display: none; }
.ct-form--submitting .ct-form__submit-loading { display: inline-flex; }
.ct-form--submitting .btn__icon { display: none; }

.ct-form__spinner {
    animation: ct-spin .8s linear infinite;
}

@keyframes ct-spin {
    to { transform: rotate(360deg); }
}

/* ── Success State ── */
.ct-form__success {
    text-align: center;
    padding: 3rem 2rem;
}

.ct-form__success-icon {
    margin-bottom: 1.5rem;
    animation: ct-success-pop .5s cubic-bezier(.34,1.56,.64,1);
}

@keyframes ct-success-pop {
    from { opacity: 0; transform: scale(.5); }
    to { opacity: 1; transform: scale(1); }
}

.ct-form__success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .75rem;
}

.ct-form__success-desc {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 auto 2rem;
}

.ct-form__success-actions {
    display: flex; flex-direction: column; gap: .75rem;
    align-items: center;
}


/* ═══════════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════════ */

.ct-form__sidebar {
    display: flex; flex-direction: column; gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.ct-sidebar-card {
    padding: 1.75rem;
    border-radius: var(--radius-xl, 16px);
}

.ct-sidebar-card__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(79,70,229,.08);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.ct-sidebar-card__icon--green {
    background: rgba(16,185,129,.08);
    color: #10B981;
}
.ct-sidebar-card__icon--green svg { stroke: #10B981; }

.ct-sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .75rem;
}

.ct-sidebar-card__hours {
    list-style: none; padding: 0; margin: 0 0 1rem;
}

.ct-sidebar-card__hours li {
    display: flex; justify-content: space-between; align-items: center;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
    font-size: .8125rem;
    color: var(--text-secondary);
}

.ct-sidebar-card__hours li:last-child { border-bottom: none; }

.ct-sidebar-card__time {
    font-weight: 600;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.ct-sidebar-card__live-status {
    display: flex; align-items: center; gap: 6px;
    font-size: .8125rem;
    font-weight: 600;
    padding: .5rem .75rem;
    border-radius: 100px;
    background: rgba(16,185,129,.06);
    width: fit-content;
}

.ct-sidebar-card__status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: ct-pulse-dot 2s ease-in-out infinite;
}

.ct-sidebar-card__live-status--closed {
    background: rgba(239,68,68,.06);
}

.ct-sidebar-card__live-status--closed .ct-sidebar-card__status-dot {
    background: #ef4444;
    animation: none;
}

.ct-sidebar-card__list {
    list-style: none; padding: 0; margin: 0;
}

.ct-sidebar-card__list li {
    display: flex; align-items: flex-start; gap: .5rem;
    font-size: .8125rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: .375rem 0;
}

.ct-sidebar-card__list li svg { flex-shrink: 0; margin-top: 2px; }

.ct-sidebar-card__desc {
    font-size: .8125rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.ct-sidebar-card__buttons {
    display: flex; gap: .5rem;
}

.ct-sidebar-card--connect {
    background: linear-gradient(135deg, rgba(79,70,229,.04), rgba(139,92,246,.06));
    border-color: rgba(139,92,246,.12);
}


/* ═══════════════════════════════════════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════════════════════════════════════ */

.ct-locations {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.ct-locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ct-location {
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.ct-location:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(79,70,229,.1);
}

.ct-location__map {
    height: 140px;
    position: relative;
    overflow: hidden;
}

.ct-location__map-bg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.ct-location__map-bg--eu {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.ct-location__map-bg--global {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
}

.ct-location__pin {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

.ct-location__pin-pulse {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(79,70,229,.15);
    animation: ct-pin-pulse 2s ease-in-out infinite;
}

.ct-location__pin-pulse--violet { background: rgba(139,92,246,.15); }
.ct-location__pin-pulse--cyan   { background: rgba(6,182,212,.15); }

@keyframes ct-pin-pulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.6); opacity: 0; }
}

.ct-location__info {
    padding: 1.5rem;
}

.ct-location__badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #10B981;
    margin-bottom: .5rem;
}
.ct-location__badge--violet { color: #8B5CF6; }
.ct-location__badge--cyan   { color: #06B6D4; }

.ct-location__name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .25rem;
}

.ct-location__address {
    font-size: .875rem;
    color: var(--text-secondary);
    margin-bottom: .75rem;
}

.ct-location__meta {
    display: flex; gap: 1rem;
}

.ct-location__meta span {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */

.ct-faq {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--surface-raised, #f8fafc);
}

.ct-faq__grid {
    max-width: 760px;
    margin: 3rem auto 0;
    display: flex; flex-direction: column; gap: .75rem;
}

.ct-faq__item {
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    transition: border-color .3s ease;
}

.ct-faq__item[open] {
    border-color: rgba(79,70,229,.15);
}

.ct-faq__question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
    user-select: none;
    transition: color .2s ease;
}

.ct-faq__question::-webkit-details-marker { display: none; }

.ct-faq__question:hover { color: var(--color-primary); }

.ct-faq__chevron {
    flex-shrink: 0;
    transition: transform .3s ease;
    color: var(--text-tertiary);
}

.ct-faq__item[open] .ct-faq__chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.ct-faq__answer {
    padding: 0 1.5rem 1.25rem;
    animation: ct-faq-open .3s ease;
}

@keyframes ct-faq-open {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ct-faq__answer p {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════════════ */

.ct-cta {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(165deg, #eef2ff 0%, #ddd6fe 50%, #c7d2fe 100%);
    overflow: hidden;
}

.ct-cta__bg {
    position: absolute; inset: 0;
    pointer-events: none;
}

.ct-cta__orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .4;
}

.ct-cta__orb--1 {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(139,92,246,.35), transparent 70%);
}

.ct-cta__orb--2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -80px;
    background: radial-gradient(circle, rgba(6,182,212,.3), transparent 70%);
}

.ct-cta__inner {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ct-cta__eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .8125rem; font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.ct-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ct-cta__desc {
    font-size: clamp(.9375rem, 1.6vw, 1.0625rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.ct-cta__actions {
    display: flex; flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .ct-channels__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ct-form__layout {
        grid-template-columns: 1fr;
    }
    .ct-form__sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .ct-locations__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ct-hero__proof {
        flex-wrap: wrap;
        gap: 1rem;
        padding: .75rem 1.25rem;
        border-radius: 16px;
        justify-content: center;
        white-space: normal;
    }
    .ct-hero__proof-divider {
        display: none;
    }
    .ct-channels__grid {
        grid-template-columns: 1fr;
    }
    .ct-form__panel {
        padding: 1.5rem;
    }
    .ct-form__row {
        grid-template-columns: 1fr;
    }
    .ct-form__sidebar {
        grid-template-columns: 1fr;
    }
    .ct-form__actions {
        flex-direction: column;
    }
    .ct-form__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .ct-locations__grid {
        grid-template-columns: 1fr;
    }
    .ct-form__progress-steps {
        gap: 0;
    }
    .ct-form__progress-label {
        font-size: .6rem;
    }
    .ct-cta__actions {
        flex-direction: column;
        align-items: center;
    }
    .ct-form__radio-group {
        gap: .375rem;
    }
}

@media (max-width: 480px) {
    .ct-hero {
        padding: 6rem 0 3rem;
    }
    .ct-form__progress-step {
        min-width: 60px;
    }
    .ct-form__progress-connector {
        min-width: 20px;
    }
}
