/* ── Hero ────────────────────────────────────────────────────────────────── */
#ct-hero {
    background: var(--dark);
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--border);
}
.ct-hero-inner { max-width: 720px; }
.ct-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 20px;
    line-height: 1.1;
}
.ct-hero-sub { font-size: 1rem; color: var(--white); line-height: 1.7; margin: 0 0 32px; max-width: 560px; }
.ct-hero-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}
.ct-hero-phone svg { width: 18px; height: 18px; color: var(--red); }
.ct-hero-phone a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.ct-hero-phone a:hover { color: var(--red); }

/* ── Form Section ────────────────────────────────────────────────────────── */
#ct-form-section {
    background: var(--ultra-light-blue);
    padding: var(--section-gap) 0;
}
.ct-form-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}
.ct-form-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.ct-form-info > p {
    font-size: 0.88rem;
    color: var(--color-black);
    line-height: 1.65;
    margin: 0 0 20px;
}
.ct-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ct-info-list li {
    font-size: 0.85rem;
    color: var(--color-black);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.ct-info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
}
.ct-email-box {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
}
.ct-email-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 6px;
}
.ct-email-link {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}
.ct-email-link:hover { color: var(--red); }

/* ── Form layout ───────────────────────────────────────────────────────────
 * Field controls themselves come from the general-purpose .form-field /
 * .form-input / .form-select / .form-textarea / .form-check components in
 * components.css. Page CSS only handles the row arrangement.
 * ──────────────────────────────────────────────────────────────────────────*/
.ct-form { display: flex; flex-direction: column; gap: var(--space-lg); }
.ct-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}
.ct-col-full { width: 100%; }

/* intl-tel-input wrapper must fill the field width. */
.ct-form .iti { width: 100%; display: block; }

/* Honeypot — visually hidden but reachable by bots. */
.ct-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ct-submit { width: 100%; justify-content: center; }
.ct-submit.is-loading { opacity: 0.75; cursor: progress; }

/* ── Mobile scroll hint ─────────────────────────────────────────────────────
 * On desktop the form sits beside the info column (already visible), so this
 * is hidden. Below 1024px the columns stack and the form drops under the info
 * block — the hint nudges users down to it and links straight to the form.
 * ──────────────────────────────────────────────────────────────────────────*/
.ct-scroll-hint { display: none; }

@media (max-width: 1024px) {
    .ct-form-inner { grid-template-columns: 1fr; gap: 48px; }

    .ct-scroll-hint {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-md);
        border-bottom: 1px solid var(--gray-200);
        text-decoration: none;
    }
    .ct-scroll-hint__text {
        font-family: var(--font-display);
        font-size: var(--fs-caption);
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--color-black);
    }
    .ct-scroll-hint__arrow {
        color: var(--red);
        animation: ct-scroll-bounce 1.5s ease-in-out infinite;
    }
}

@keyframes ct-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
    .ct-scroll-hint__arrow { animation: none; }
}

@media (max-width: 768px) {
    .ct-row-2 { grid-template-columns: 1fr; }
}
