#schedule-hero {
    position: relative;
    padding: 80px 24px 64px;
    overflow: hidden;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 1024px) {
    #schedule-hero {
        padding: 112px 24px 80px;
    }
}

/* ── Dark background ── */
.schh-bg {
    position: absolute;
    inset: 0;
    background: #1A1A2E;
    z-index: 0;
}

/* ── Glow orb ── */
.schh-glow-wrap {
    position: absolute;
    inset: 0;
    opacity: 0.10;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.schh-glow-orb {
    position: absolute;
    top: 80px;
    left: 33%;
    width: 384px;
    height: 384px;
    background: #ffffff;
    border-radius: 50%;
    filter: blur(120px);
}

/* ── Content ── */
.schh-container {
    position: relative;
    z-index: 10;
    max-width: 860px;
    margin: 0 auto;
}

/* ── Badge ── */
.schh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.schh-badge-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.schh-badge-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* ── Title ── */
.schh-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 720px;
    margin: 0 auto 24px;
    font-family: 'Inter', sans-serif;
}

/* ── Subtitle ── */
.schh-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* ════════════════════════════════════
   SCHEDULE — FORM
════════════════════════════════════ */

#schedule-form-section {
    padding: 64px 24px 80px;
    background: var(--color-bg-white);
    font-family: 'Inter', sans-serif;
}

.schf-container {
    max-width: 680px;
    margin: 0 auto;
}

/* ── Tab ── */
.schf-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.schf-tab {
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--color-text-secondary);
    transition: background 0.2s, color 0.2s;
}

.schf-tab--active {
    background: var(--color-primary-dark);
    color: var(--color-text-white);
}

/* ── Form Card ── */
.schf-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.schf-form {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 40px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 600px) {
    .schf-form {
        padding: 28px 20px;
    }
}

.schf-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.schf-form-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0 0 32px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ── Fields ── */
.schf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 520px) {
    .schf-row {
        grid-template-columns: 1fr;
    }
}

.schf-field {
    display: flex;
    flex-direction: column;
}

.schf-field--full {
    margin-bottom: 20px;
}

.schf-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.schf-label-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.schf-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    font-size: 14px;
    color: var(--color-text-primary);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.schf-input:focus {
    outline: none;
    border-color: var(--color-primary-dark);
}

.schf-input::placeholder {
    color: var(--color-text-placeholder);
}

.schf-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.schf-textarea {
    resize: none;
    line-height: 1.6;
}

/* ── Submit ── */
.schf-submit {
    width: 100%;
    padding: 14px;
    background: var(--color-primary-dark);
    color: var(--color-text-white);
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s ease;
    margin-bottom: 16px;
}

.schf-submit:hover {
    opacity: 0.88;
}

.schf-note {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-secondary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ════════════════════════════════════
   SCHEDULE — STEPS
════════════════════════════════════ */

#schedule-steps {
    padding: 80px 24px;
    background: var(--color-bg-light);
    font-family: 'Inter', sans-serif;
}

@media (min-width: 1024px) {
    #schedule-steps {
        padding: 96px 24px;
    }
}

.schs-container {
    max-width: 860px;
    margin: 0 auto;
}

.schs-header {
    text-align: center;
    margin-bottom: 56px;
}

.schs-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.schs-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.schs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 680px) {
    .schs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.schs-step {
    text-align: center;
    padding: 24px;
    font-family: 'Inter', sans-serif;
}

.schs-step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-border-medium);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.04em;
}

.schs-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
}

.schs-step-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ════════════════════════════════════
   SCHEDULE — FAQ
════════════════════════════════════ */

#schedule-faq {
    padding: 80px 24px;
    background: var(--color-bg-white);
    font-family: 'Inter', sans-serif;
}

@media (min-width: 1024px) {
    #schedule-faq {
        padding: 96px 24px;
    }
}

.schfaq-container {
    max-width: 680px;
    margin: 0 auto;
}

.schfaq-header {
    text-align: center;
    margin-bottom: 48px;
}

.schfaq-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.schfaq-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.schfaq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schfaq-item {
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.schfaq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.schfaq-btn span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    padding-right: 16px;
}

.schfaq-icon {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    line-height: 1;
}

.schfaq-body {
    display: none;
    padding: 0 24px 20px;
}

.schfaq-body p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.schfaq-item--open .schfaq-body {
    display: block;
}

/* ════════════════════════════════════
   SCHEDULE — SELF-ENROLL CTA
════════════════════════════════════ */

#schedule-cta {
    padding: 64px 24px;
    background: #1A1A2E;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

@media (min-width: 1024px) {
    #schedule-cta {
        padding: 80px 24px;
    }
}

.schcta-container {
    max-width: 620px;
    margin: 0 auto;
}

.schcta-pre {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
}

.schcta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
}

.schcta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 32px;
    font-family: 'Inter', sans-serif;
}

.schcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--color-text-white);
    color: var(--color-primary-dark);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s ease;
}

.schcta-btn:hover {
    opacity: 0.88;
}