/* assets/css/contact.css */

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.ct-hero {
    position: relative;
    background: #0d0f1a;
    padding: 72px 0 100px;
    overflow: hidden;
}

/* Orbs lumineux */
.ct-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
}
.ct-hero-orb--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(255,107,53,.28) 0%, transparent 70%);
    top: -120px; left: -100px;
    animation: orbDrift1 12s ease-in-out infinite alternate;
}
.ct-hero-orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 70%);
    top: 20px; right: -60px;
    animation: orbDrift2 15s ease-in-out infinite alternate;
}
.ct-hero-orb--3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,184,148,.18) 0%, transparent 70%);
    bottom: -40px; left: 40%;
    animation: orbDrift1 10s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift1 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.1); }
}
@keyframes orbDrift2 {
    from { transform: translate(0,0); }
    to   { transform: translate(-20px, 30px); }
}

/* Grille de points */
.ct-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.ct-hero-inner {
    position: relative;
    z-index: 2;
}

/* Fil d'Ariane */
.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
}
.ct-breadcrumb a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}
.ct-breadcrumb a:hover { color: #fff; }
.ct-breadcrumb .fa-chevron-right { font-size: .55rem; opacity: .4; }
.ct-breadcrumb span  { color: rgba(255,255,255,.75); }

/* Badge eyebrow */
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fdba74;
    background: rgba(255,107,53,.15);
    border: 1px solid rgba(255,107,53,.3);
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.ct-eyebrow i { animation: headsetBounce 1.8s ease-in-out infinite; }
@keyframes headsetBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* Titre hero */
.ct-hero-title {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.08;
    letter-spacing: -.035em;
}
.ct-hero-gradient {
    background: linear-gradient(90deg, #fdba74, #c4b5fd, #67e8f9);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 6s linear infinite;
}
@keyframes gradShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Sous-titre */
.ct-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.58);
    margin: 0 0 36px;
    line-height: 1.75;
    max-width: 580px;
}
.ct-hero-sub strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* Chips */
.ct-hero-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ct-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.85) !important; /* force sur a { color: inherit } */
    border: 1.5px solid rgba(255,255,255,.16);
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none !important;
    backdrop-filter: blur(6px);
    transition: background .22s, border-color .22s, color .22s, transform .22s;
    /* CSS fallback si GSAP ne complète pas */
    opacity: 1;
    animation: ctChipIn .5s ease both;
}
.ct-hero-chips .ct-chip:nth-child(1) { animation-delay: .55s; }
.ct-hero-chips .ct-chip:nth-child(2) { animation-delay: .65s; }
.ct-hero-chips .ct-chip:nth-child(3) { animation-delay: .75s; }

@keyframes ctChipIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ct-chip:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.35);
    color: #fff !important;
    transform: translateY(-2px);
}
.ct-chip i { font-size: .72rem; color: #fdba74 !important; }
.ct-chip--wa {
    background: rgba(37,211,102,.14);
    border-color: rgba(37,211,102,.35);
    color: #86efac !important;
}
.ct-chip--wa i { color: #4ade80 !important; }
.ct-chip--wa:hover {
    background: rgba(37,211,102,.25);
    border-color: rgba(37,211,102,.55);
    color: #fff !important;
}

/* Stats hero */
.ct-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ct-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ct-stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}
.ct-stat-lbl {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.ct-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.12);
}

/* Vague */
.ct-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}
.ct-hero-wave svg { width: 100%; height: 70px; display: block; }

/* ══════════════════════════════════════════════════════════
   BODY
══════════════════════════════════════════════════════════ */
.ct-body {
    background: var(--bg-soft, #f5f7fa);
    padding: 56px 0 100px;
}

.ct-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: start;
}

/* ══════════════════════════════════════════════════════════
   LABELS & TITRES
══════════════════════════════════════════════════════════ */
.ct-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary, #FF6B35);
    margin-bottom: 10px;
}
.ct-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--primary, #FF6B35);
    border-radius: 2px;
}

.ct-section-title {
    font-family: var(--font-display, sans-serif);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text, #1a202c);
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.ct-section-sub {
    font-size: .875rem;
    color: var(--text-muted, #6b7280);
    line-height: 1.72;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   COLONNE GAUCHE
══════════════════════════════════════════════════════════ */
.ct-section-head { margin-bottom: 30px; }

/* ── Info cards ── */
.ct-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.ct-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg, #fff);
    border-radius: 14px;
    padding: 16px 18px;
    border: 1.5px solid var(--border-light, #e9ecef);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    overflow: hidden;
    animation: ctCardIn .5s var(--ease-out, ease-out) both;
}
@keyframes ctCardIn {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}
.ct-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--ic, var(--primary, #FF6B35));
    border-radius: 14px 0 0 14px;
    transition: width .3s ease;
}
.ct-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-color: var(--ic, var(--primary, #FF6B35));
}
.ct-card:hover::before { width: 4px; }

.ct-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.ct-card:hover .ct-card-icon { transform: scale(1.15) rotate(8deg); }

.ct-card-text {
    flex: 1;
    min-width: 0;
}
.ct-card-text h3 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 3px;
}
.ct-card-text p {
    font-size: .875rem;
    color: var(--text, #1a202c);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ct-card-arrow {
    font-size: .7rem;
    color: var(--ic, var(--primary, #FF6B35));
    opacity: 0;
    transform: translateX(-6px);
    transition: all .2s;
}
.ct-card:hover .ct-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── WhatsApp CTA ── */
.ct-wa-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #075e54, #128c7e);
    border-radius: 16px;
    padding: 18px 20px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 24px;
    border: 1.5px solid rgba(255,255,255,.15);
    box-shadow: 0 8px 28px rgba(18,140,126,.3);
    transition: all .28s ease;
    position: relative;
    overflow: hidden;
}
.ct-wa-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
    transform: translateX(-100%);
    transition: transform .5s ease;
}
.ct-wa-cta:hover::before { transform: translateX(100%); }
.ct-wa-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(18,140,126,.4);
}
.ct-wa-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    animation: waPulse 2s ease infinite;
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
    50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.ct-wa-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ct-wa-text strong {
    font-size: .9rem;
    font-weight: 700;
}
.ct-wa-text span {
    font-size: .78rem;
    opacity: .75;
}
.ct-wa-arrow {
    font-size: .72rem;
    opacity: .6;
}

/* ── Réseaux sociaux ── */
.ct-social-block { margin-bottom: 20px; }
.ct-social-block .ct-label { margin-bottom: 12px; }

.ct-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ct-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: var(--bg, #fff);
    border: 1.5px solid var(--border-light, #e9ecef);
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 600;
    color: #1a202c !important;
    text-decoration: none !important;
    transition: background .22s, border-color .22s, color .22s, transform .22s, box-shadow .22s;
    /* fallback visible même si GSAP reste à opacity:0 */
    opacity: 1;
    animation: ctPillIn .45s ease both;
}
.ct-social-row .ct-social-pill:nth-child(1) { animation-delay: .1s; }
.ct-social-row .ct-social-pill:nth-child(2) { animation-delay: .18s; }
.ct-social-row .ct-social-pill:nth-child(3) { animation-delay: .26s; }
.ct-social-row .ct-social-pill:nth-child(4) { animation-delay: .34s; }
.ct-social-row .ct-social-pill:nth-child(5) { animation-delay: .42s; }

@keyframes ctPillIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ct-social-pill:hover {
    background: var(--sc, var(--primary, #FF6B35));
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 16px rgba(0,0,0,.15);
}
.ct-social-pill i { font-size: .73rem; color: var(--sc, var(--primary, #FF6B35)) !important; transition: color .2s; }
.ct-social-pill:hover i { color: #fff !important; }

/* ── Badge réponse ── */
.ct-response-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg, #fff);
    border-radius: 14px;
    padding: 14px 18px;
    border: 1.5px solid var(--border-light, #e9ecef);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.ct-rb-dot {
    width: 12px;
    height: 12px;
    background: #00B894;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(0,184,148,.4);
    animation: rbPulse 2s ease infinite;
}
@keyframes rbPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,184,148,.45); }
    70%  { box-shadow: 0 0 0 8px rgba(0,184,148,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,184,148,0); }
}
.ct-rb-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ct-rb-body strong { font-size: .82rem; font-weight: 700; color: var(--text, #1a202c); }
.ct-rb-body span   { font-size: .73rem; color: var(--text-muted, #6b7280); }

/* ══════════════════════════════════════════════════════════
   COLONNE DROITE — FORM CARD
══════════════════════════════════════════════════════════ */
.ct-form-card {
    background: var(--bg, #fff);
    border-radius: 24px;
    padding: 40px;
    border: 1.5px solid var(--border-light, #e9ecef);
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.ct-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #6366f1, #00B894, #FF6B35);
    background-size: 300%;
    animation: topBarShift 5s linear infinite;
}
@keyframes topBarShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.ct-form-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
    padding-top: 8px;
}
.ct-form-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255,107,53,.12), rgba(99,102,241,.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary, #FF6B35);
    flex-shrink: 0;
    border: 1.5px solid rgba(255,107,53,.15);
}

/* Form rows & fields */
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cf-field-full { margin-bottom: 16px; }

.cf-field label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted, #6b7280);
}
.cf-req { color: var(--primary, #FF6B35); margin-left: 2px; }

.cf-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.cf-ico {
    position: absolute;
    left: 13px;
    font-size: .8rem;
    color: #adb5bd;
    pointer-events: none;
    transition: color .2s;
    z-index: 1;
}
.cf-ico--top {
    top: 14px;
    align-self: flex-start;
}

.cf-wrap input,
.cf-wrap select,
.cf-wrap textarea {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 1.5px solid var(--border, #dee2e6);
    border-radius: 10px;
    font-size: .875rem;
    font-family: var(--font-body, sans-serif);
    color: var(--text, #1a202c);
    background: var(--bg-soft, #f8f9fa);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    box-sizing: border-box;
}
.cf-wrap textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: 12px;
    line-height: 1.6;
}
.cf-wrap input:focus,
.cf-wrap select:focus,
.cf-wrap textarea:focus {
    border-color: var(--primary, #FF6B35);
    background: var(--bg, #fff);
    box-shadow: 0 0 0 3px rgba(255,107,53,.1);
}
.cf-wrap input:focus ~ .cf-ico,
.cf-wrap select:focus ~ .cf-ico,
.cf-wrap textarea:focus ~ .cf-ico { color: var(--primary, #FF6B35); }

/* Compteur de caractères */
.cf-char-count {
    display: block;
    text-align: right;
    font-size: .66rem;
    color: var(--text-muted, #6b7280);
    margin-top: 4px;
}

/* Bouton submit */
.cf-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #e85a22 50%, #FFA62B 100%);
    background-size: 200% 100%;
    background-position: 0%;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 700;
    font-family: var(--font-body, sans-serif);
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 6px 20px rgba(255,107,53,.35);
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}
.cf-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
    transform: translateX(-100%);
    transition: transform .55s ease;
}
.cf-submit:hover::before { transform: translateX(100%); }
.cf-submit:hover {
    background-position: 100%;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,107,53,.4);
}
.cf-submit:active { transform: translateY(0); }
.cf-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.cf-submit-text,
.cf-submit-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

/* Mention légale */
.cf-legal {
    font-size: .7rem;
    color: var(--text-muted, #6b7280);
    line-height: 1.55;
    text-align: center;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    justify-content: center;
}
.cf-legal i { color: #00B894; flex-shrink: 0; margin-top: 1px; }

/* Validation erreur */
.cf-wrap input.cf-error,
.cf-wrap select.cf-error,
.cf-wrap textarea.cf-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231,76,60,.08) !important;
}
.cf-field-error {
    font-size: .7rem;
    color: #e74c3c;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cf-field-error::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .6rem;
}

/* Aide téléphone */
#cf-tel {
    font-variant-numeric: tabular-nums;
    letter-spacing: .03em;
}
.cf-tel-hint {
    font-size: .68rem;
    color: var(--text-muted, #6b7280);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cf-tel-hint i { color: var(--primary, #FF6B35); }

/* ══════════════════════════════════════════════════════════
   FAQ RAPIDE
══════════════════════════════════════════════════════════ */
.ct-faq {
    background: var(--bg, #fff);
    border-radius: 20px;
    padding: 28px 30px;
    border: 1.5px solid var(--border-light, #e9ecef);
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.ct-faq .ct-label { margin-bottom: 16px; }

.ct-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ct-faq-item {
    border-radius: 10px;
    border: 1.5px solid var(--border-light, #e9ecef);
    overflow: hidden;
    background: var(--bg-soft, #f8f9fa);
    transition: border-color .2s;
}
.ct-faq-item[open] {
    border-color: var(--primary, #FF6B35);
    background: var(--bg, #fff);
}
.ct-faq-item summary {
    list-style: none;
    padding: 13px 16px;
    cursor: pointer;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text, #1a202c);
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: color .2s;
}
.ct-faq-item summary::-webkit-details-marker { display: none; }
.ct-faq-item summary i {
    font-size: .65rem;
    color: var(--primary, #FF6B35);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.ct-faq-item[open] summary { color: var(--primary, #FF6B35); }
.ct-faq-item[open] summary i { transform: rotate(90deg); }

.ct-faq-item p {
    margin: 0;
    padding: 0 16px 14px 36px;
    font-size: .83rem;
    color: var(--text-muted, #6b7280);
    line-height: 1.65;
    border-top: 1px solid var(--border-light, #e9ecef);
    padding-top: 12px;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
.ct-info-col {
    animation: colSlideIn .6s ease both;
}
.ct-form-col {
    animation: colSlideIn .6s ease .1s both;
}
@keyframes colSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .ct-layout {
        grid-template-columns: 360px 1fr;
        gap: 36px;
    }
}

@media (max-width: 991px) {
    .ct-layout {
        grid-template-columns: 1fr;
    }
    .ct-info-col { order: 2; }
    .ct-form-col { order: 1; }

    .ct-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .ct-card:hover { transform: translateY(-4px); }
    .ct-card::before { display: none; }
}

@media (max-width: 768px) {
    .ct-hero { padding: 52px 0 80px; }

    .ct-hero-stats { gap: 16px; }
    .ct-stat-val { font-size: 1.05rem; }

    .cf-row { grid-template-columns: 1fr; }

    .ct-form-card { padding: 28px 22px; }
    .ct-form-card-top { flex-direction: column; gap: 12px; }

    .ct-faq { padding: 22px 18px; }

    .ct-hero-chips { flex-direction: column; }
}

@media (max-width: 576px) {
    .ct-cards { grid-template-columns: 1fr; }

    .ct-social-pill span { display: none; }
    .ct-social-pill { padding: 8px 12px; }

    .ct-hero-stats { flex-direction: column; gap: 10px; }
    .ct-stat-sep { width: 40px; height: 1px; }
}
