/* ============================================================
 * Contact page — mobile-first responsive design
 * Breakpoints: 0+ (mobile), 600+ (large mobile), 768+ (tablet),
 *              992+ (small desktop), 1200+ (desktop)
 * ============================================================ */

/* ===== HERO ===== */
.ct-hero {
    position: relative;
    padding: calc(var(--header-h, 70px) + 48px) 0 56px;
    overflow: hidden;
    background:
        radial-gradient(60% 50% at 80% 0%, rgba(235,63,67,0.12) 0%, transparent 60%),
        radial-gradient(45% 50% at 0% 100%, rgba(124,92,255,0.10) 0%, transparent 65%),
        linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
}
@media (min-width: 768px) { .ct-hero { padding: calc(var(--header-h, 70px) + 70px) 0 80px; } }
@media (min-width: 992px) { .ct-hero { padding: calc(var(--header-h, 70px) + 100px) 0 110px; } }
.ct-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(235,63,67,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235,63,67,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 30%, transparent 80%);
    pointer-events: none;
}
.ct-hero-shell {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 0 var(--shell-pad);
    position: relative;
    z-index: 2;
    text-align: center;
}
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(235,63,67,0.10);
    color: var(--c-primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.ct-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 0 0 rgba(235,63,67,0.55);
    animation: liveDot 1.6s ease-in-out infinite;
}
@keyframes liveDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(235,63,67,0.55); }
    50%      { box-shadow: 0 0 0 8px rgba(235,63,67,0); }
}
.ct-hero h1 {
    font-size: clamp(2rem, 1.4rem + 3.6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 880px;
    margin: 0 auto 18px;
}
.ct-hero .ct-lede {
    font-size: clamp(1rem, 0.95rem + 0.35vw, 1.18rem);
    color: var(--c-ink-soft);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

/* Trust ribbon under hero */
.ct-trust-ribbon {
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 880px;
}
@media (min-width: 768px) { .ct-trust-ribbon { grid-template-columns: repeat(4, 1fr); } }
.ct-trust-stat {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
@media (min-width: 768px) {
    .ct-trust-stat { padding: 26px 18px; border-bottom: none; }
    .ct-trust-stat:last-child { border-right: none; }
}
@media (max-width: 767px) {
    .ct-trust-stat:nth-child(2n) { border-right: none; }
    .ct-trust-stat:nth-last-child(-n+2) { border-bottom: none; }
}
.ct-trust-stat .num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1rem + 1.6vw, 2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, var(--c-primary) 0%, #f6a93e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ct-trust-stat .lbl {
    display: block; margin-top: 8px;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
    font-weight: 600; color: var(--c-ink-soft);
}

/* ===== MAIN SECTION ===== */
.ct-section { padding: 56px 0; }
@media (min-width: 768px) { .ct-section { padding: 80px 0; } }
@media (min-width: 992px) { .ct-section { padding: 110px 0; } }
.ct-section.tone-soft { background: var(--c-bg-soft); }
.ct-section.tone-dark {
    background: linear-gradient(135deg, var(--c-ink) 0%, #2a1f3d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ct-section.tone-dark::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(60% 60% at 100% 0%, rgba(235,63,67,0.20) 0%, transparent 70%),
        radial-gradient(40% 50% at 0% 100%, rgba(124,92,255,0.18) 0%, transparent 70%);
}
.ct-section.tone-dark > * { position: relative; z-index: 1; }
.ct-shell { max-width: var(--shell-max); margin: 0 auto; padding: 0 var(--shell-pad); }

/* ===== FORM + ASIDE GRID ===== */
.ct-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px)  { .ct-grid { gap: 36px; } }
@media (min-width: 992px)  { .ct-grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; } }
@media (min-width: 1200px) { .ct-grid { gap: 56px; } }

/* === FORM CARD === */
.ct-form-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
@media (min-width: 600px) { .ct-form-card { padding: 32px; border-radius: var(--radius-xl); } }
@media (min-width: 992px) { .ct-form-card { padding: 40px; } }
.ct-form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary) 0%, #ff7a5e 50%, var(--c-amber) 100%);
}
.ct-form-head { margin-bottom: 24px; }
@media (min-width: 768px) { .ct-form-head { margin-bottom: 28px; } }
.ct-form-head .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px;
    background: rgba(235,63,67,0.10);
    color: var(--c-primary);
    border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 14px;
}
.ct-form-head h2 {
    font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 8px;
}
.ct-form-head p {
    color: var(--c-ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
}

.ct-form { display: grid; gap: 16px; }
@media (min-width: 600px) { .ct-form { gap: 18px; } }

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) { .ct-form-row { grid-template-columns: 1fr 1fr; gap: 14px; } }

.ct-field { display: flex; flex-direction: column; }
.ct-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-ink);
    margin-bottom: 8px;
    display: block;
}
.ct-field label .req { color: var(--c-primary); margin-left: 2px; }

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    padding: 13px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--c-ink);
    background: var(--c-bg-soft);
    border: 1.5px solid var(--c-line);
    border-radius: 12px;
    transition: border-color 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.4;
}
.ct-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4a5e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}
.ct-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.55;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: #9ea0b3;
}
.ct-field input:hover,
.ct-field select:hover,
.ct-field textarea:hover {
    border-color: #d5d2e2;
    background: #fff;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(235,63,67,0.12);
}
.ct-field.is-invalid input,
.ct-field.is-invalid select,
.ct-field.is-invalid textarea {
    border-color: var(--c-primary);
    background: var(--c-primary-50);
}
.ct-field .field-error {
    font-size: 12px;
    color: var(--c-primary);
    margin-top: 6px;
    min-height: 16px;
    display: block;
    font-weight: 600;
}

.ct-submit {
    margin-top: 4px;
    padding: 15px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-primary) 0%, #ff7a5e 100%);
    color: #fff;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 15.5px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(235,63,67,0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease), filter 200ms var(--ease);
}
@media (min-width: 600px) {
    .ct-submit { width: auto; justify-self: start; padding: 16px 28px; }
}
.ct-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(235,63,67,0.36); filter: brightness(1.05); }
.ct-submit:active { transform: translateY(0); }
.ct-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.ct-submit i { font-size: 14px; }

.ct-form-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--c-line);
    font-size: 12.5px;
    color: var(--c-ink-soft);
}
.ct-form-perks > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ct-form-perks i {
    color: var(--c-primary);
    font-size: 13px;
}

.ct-form-status {
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    margin: 4px 0 0;
    min-height: 18px;
    color: var(--c-ink-soft);
}
.ct-form-status.is-ok    { color: #1a8a4a; }
.ct-form-status.is-error { color: var(--c-primary); }

/* === SIDEBAR === */
.ct-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
@media (min-width: 992px) { .ct-aside { position: sticky; top: calc(var(--header-h, 70px) + 24px); } }

.ct-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
@media (min-width: 600px) { .ct-card { padding: 28px 26px; } }
.ct-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent; }
.ct-card .ct-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    display: block;
}
.ct-card h3 {
    font-size: 1.1rem;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 14px;
}

/* Studios list */
.ct-studios { display: flex; flex-direction: column; gap: 14px; }
.ct-studios li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed var(--c-line);
}
.ct-studios li:last-child { border-bottom: none; padding-bottom: 0; }
.ct-studios li:first-child { padding-top: 0; }
.ct-studios .pin {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(235,63,67,0.10);
    color: var(--c-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px;
}
.ct-studios .meta { flex: 1; }
.ct-studios .meta strong {
    display: block;
    font-size: 14.5px;
    color: var(--c-ink);
    font-weight: 700;
    letter-spacing: -0.005em;
}
.ct-studios .meta span {
    display: block;
    margin-top: 2px;
    color: var(--c-ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

/* Channels list */
.ct-channels { display: flex; flex-direction: column; gap: 4px; }
.ct-channels a {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 12px;
    margin: 0 -12px;
    border-radius: 12px;
    color: var(--c-ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 14.5px;
    transition: background 200ms var(--ease), color 200ms var(--ease);
}
.ct-channels a:hover { background: var(--c-bg-soft); color: var(--c-primary); }
.ct-channels .ch-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(235,63,67,0.10);
    color: var(--c-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: background 200ms var(--ease), color 200ms var(--ease);
}
.ct-channels a:hover .ch-icon { background: var(--c-primary); color: #fff; }
.ct-channels .ch-label { flex: 1; word-break: break-word; }
.ct-channels .ch-sub {
    display: block;
    font-size: 12px;
    color: var(--c-ink-soft);
    font-weight: 500;
    margin-top: 1px;
}
.ct-channels a:hover .ch-sub { color: var(--c-primary); opacity: 0.8; }

/* Promise card (dark) */
.ct-card.tone-dark {
    background: linear-gradient(135deg, var(--c-ink) 0%, #2a1f3d 100%);
    color: #fff;
    border-color: transparent;
    overflow: hidden;
    position: relative;
}
.ct-card.tone-dark::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(60% 60% at 100% 0%, rgba(235,63,67,0.30) 0%, transparent 60%),
        radial-gradient(50% 50% at 0% 100%, rgba(124,92,255,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.ct-card.tone-dark > * { position: relative; z-index: 1; }
.ct-card.tone-dark .ct-card-eyebrow { color: var(--c-primary-soft); }
.ct-card.tone-dark h3 { color: #fff; }
.ct-card.tone-dark p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.6; }
.ct-promise-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
}
.ct-promise-row i { color: var(--c-primary-soft); font-size: 15px; }

/* ===== FAQ ===== */
.ct-faq-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.ct-faq-head .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px;
    background: rgba(235,63,67,0.10);
    color: var(--c-primary);
    border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.ct-faq-head h2 {
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 10px;
}
.ct-faq-head p {
    color: var(--c-ink-soft);
    font-size: 1rem;
    line-height: 1.6;
}
.ct-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}
@media (min-width: 768px) { .ct-faq-list { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.ct-faq-item {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 20px 20px;
    transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease-out);
}
@media (min-width: 600px) { .ct-faq-item { padding: 22px 24px; } }
.ct-faq-item:hover { border-color: var(--c-primary-soft); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.ct-faq-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    display: flex; gap: 10px; align-items: flex-start;
}
.ct-faq-item h4 i {
    color: var(--c-primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}
.ct-faq-item p {
    color: var(--c-ink-soft);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== FINAL CTA ===== */
.ct-final {
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(235,63,67,0.18) 0%, transparent 70%),
        linear-gradient(180deg, #1a1a2e 0%, #2a1f3d 100%);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
@media (min-width: 768px) { .ct-final { padding: 90px 0; } }
@media (min-width: 992px) { .ct-final { padding: 110px 0; } }
.ct-final::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
    pointer-events: none;
}
.ct-final-shell {
    position: relative; z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--shell-pad);
}
.ct-final h2 {
    font-size: clamp(1.7rem, 1.2rem + 2vw, 2.8rem);
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 14px;
}
.ct-final p {
    color: rgba(255,255,255,0.82);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 28px;
}
.ct-final-row {
    display: flex; flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.ct-final-row .btn-primary {
    background: #fff;
    color: var(--c-primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.ct-final-row .btn-primary:hover { background: var(--c-ink); color: #fff; }
.ct-final-row .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.30);
    background: transparent;
}
.ct-final-row .btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; color: #fff; }
