/* ==========================================================
   Contact Page — CrankUp
   Full-bleed editorial layout. Calendly embed. FAQ accordion.
   Sections: Hero → Calendar → Contact → Steps → Upsell → FAQ
   ========================================================== */

/* ── Hero ──────────────────────────────────────────────── */
.ct-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg);
    overflow: hidden;
    padding: 160px 24px 80px;
}

.ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.ct-hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ct-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border-hi);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.ct-hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.ct-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.ct-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* ── Calendar Section ──────────────────────────────────── */
.ct-calendar {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ct-calendar-header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 48px;
}

.ct-calendar-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ct-calendar-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ct-calendar-header p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
}

.ct-calendar-embed {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Calendly widget container */
.ct-calendar-embed .calendly-inline-widget {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 700px;
}

/* Placeholder (shown until Calendly URL is set) */
.ct-calendar-placeholder {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
}

.ct-calendar-placeholder i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.ct-calendar-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ct-calendar-placeholder p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.ct-calendar-placeholder a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.ct-calendar-placeholder a:hover {
    color: var(--text-primary);
}

/* ── Contact Methods — Full-bleed bands ────────────────── */
.ct-contact {
    padding: 100px 0 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ct-contact-header {
    text-align: center;
    padding: 0 24px 56px;
}

.ct-contact-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ct-contact-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

/* Each contact method = full-width band */
.ct-method {
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.ct-method:last-child {
    border-bottom: 1px solid var(--border);
}

.ct-method:hover {
    background: var(--surface);
}

.ct-method::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ct-method:hover::after {
    transform: scaleX(1);
}

.ct-method-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.ct-method-icon {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
}

.ct-method-left h3 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ct-method-right {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.ct-method-right a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ct-method-right a:hover {
    color: var(--gold);
}

.ct-method-right .ct-method-note {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-faint);
    margin-top: 4px;
}

/* ── What Happens After — Full-width stacked steps ─────── */
.ct-steps {
    padding: 100px 0 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ct-steps-header {
    text-align: center;
    padding: 0 24px 56px;
}

.ct-steps-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ct-steps-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.ct-step {
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.ct-step:last-child {
    border-bottom: 1px solid var(--border);
}

.ct-step:hover {
    background: var(--surface);
}

.ct-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ct-step:hover::after {
    transform: scaleX(1);
}

.ct-step-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: start;
}

.ct-step-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em;
}

.ct-step-right h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ct-step-right p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
}

/* ── Strategy Session Upsell ───────────────────────────── */
.ct-upsell {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.ct-upsell-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.ct-upsell-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ct-upsell h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.ct-upsell p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.ct-upsell .ct-upsell-price {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
    display: block;
    margin-bottom: 24px;
}

/* ── FAQ ───────────────────────────────────────────────── */
.ct-faq {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ct-faq-header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 56px;
}

.ct-faq-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ct-faq-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.ct-faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--surface);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hi);
}

.faq-item.active {
    border-color: var(--border-hi);
    background: var(--surface-hi);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-family: var(--font-body);
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .ct-hero {
        min-height: auto;
        padding: 140px 20px 60px;
    }

    .ct-calendar {
        padding: 80px 0;
    }

    .ct-calendar-embed {
        padding: 0 16px;
    }

    .ct-calendar-embed .calendly-inline-widget {
        min-height: 500px;
    }

    .ct-calendar-placeholder {
        min-height: 300px;
        padding: 36px 24px;
    }

    .ct-contact {
        padding: 80px 0 0;
    }

    .ct-method-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 32px 24px;
    }

    .ct-method-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ct-method-icon {
        margin-bottom: 0;
    }

    .ct-steps {
        padding: 80px 0 0;
    }

    .ct-step-inner {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 32px 24px;
    }

    .ct-upsell {
        padding: 80px 0;
    }

    .ct-faq {
        padding: 80px 0;
    }

    .ct-faq-list {
        padding: 0 16px;
    }
}
