/**
 * EXACT Sports - Complete Forms (Profile / X1 Verification split pages)
 *
 * Net-new chrome for the two standalone forms: the black "// LABEL" section
 * kicker headers and the static step indicator. Reuses the design tokens from
 * camperinfo-updated.css (EXACT Orange #FE5000, Poppins / Bebas Neue). Does NOT
 * touch predash.css. Hand-authored — no bundling / Vite / npm.
 */

.cf-wrapper {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 820px;
    margin: 0 auto;
    padding: 8px 0 40px;
    color: #111827;
}

.cf-hidden {
    display: none !important;
}

.cf-req {
    color: #FE5000;
    font-weight: 700;
}

/* ---------- Step chrome ---------- */
.cf-stepper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cf-stepper-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(254, 80, 0, 0.12);
    color: #FE5000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cf-stepper-text {
    flex: 1 1 auto;
}

.cf-stepper-title {
    font-weight: 700;
    font-size: 16px;
}

.cf-stepper-sub {
    color: #6B7280;
    font-size: 13px;
    margin-top: 2px;
}

.cf-stepper-segments {
    flex: 0 0 auto;
    display: flex;
    gap: 6px;
}

.cf-seg {
    width: 34px;
    height: 6px;
    border-radius: 3px;
    background: #D1D5DB;
}

.cf-seg-active {
    background: #FE5000;
}

/* ---------- Section cards + black kicker headers ---------- */
.cf-section {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.cf-section-header {
    background: #000000;
    color: #FFFFFF;
    padding: 16px 22px;
}

.cf-kicker {
    display: block;
    color: #FE5000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cf-section-title {
    display: block;
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1;
}

.cf-section-body {
    padding: 22px;
}

.cf-help {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ---------- Profile photo ---------- */
.cf-photo {
    text-align: center;
}

.cf-photo-preview {
    max-height: 260px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin-bottom: 12px;
}

.cf-photo-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

/* ---------- Teammates ---------- */
.cf-teammate {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 16px 16px 4px;
    margin-bottom: 16px;
    background: #F9FAFB;
}

.cf-teammate-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.cf-add-teammate {
    margin-top: 4px;
    color: #FE5000;
    border-color: #FE5000;
    background: transparent;
    font-weight: 600;
}

.cf-add-teammate:hover {
    color: #FFFFFF;
    background: #FE5000;
}

/* ---------- Attestation + submit ---------- */
.cf-attestation {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    margin: 0;
}

.cf-attestation input {
    margin-top: 4px;
}

.cf-submit {
    background: #FE5000;
    border-color: #FE5000;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px;
}

.cf-submit:hover:not(:disabled) {
    background: #D94400;
    border-color: #D94400;
}

.cf-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
