/* ═══════════════════════════════════════════════════════════
   Free Starter Course — Landing Page
   Fonts : PT Serif (headings) | SFProText (body)
   Colors: #0C1D3D dark navy | #1A4C8B blue | #EBF6FF light bg
           #444444 body text  | #FFFFFF    white
   ═══════════════════════════════════════════════════════════ */


/* ── Hero ─────────────────────────────────────────────────── */

.fsc-hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #EBF6FF 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.fsc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF9E6;
    border: 1px solid #E8C840;
    border-radius: 100px;
    padding: 6px 18px;
    font-family: "SFProText", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #0C1D3D;
    margin-bottom: 28px;
}

.fsc-hero__badge-star {
    color: #DBA116;
    font-size: 13px;
    line-height: 1;
}

.fsc-hero__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.2;
    color: #0C1D3D;
    max-width: 760px;
    margin: 0 auto 24px;
}

.fsc-hero__title .color-blue {
    color: #1A4C8B;
}

.fsc-hero__desc {
    font-family: "SFProText", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Video block */
.fsc-hero__video-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(12, 29, 61, 0.22);
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0C1D3D 0%, #1A4C8B 60%, #0C1D3D 100%);
    cursor: pointer;
}

.fsc-hero__video-wrap:hover .fsc-hero__play-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.fsc-hero__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(12, 29, 61, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 300ms ease;
}

.fsc-hero__play-btn:hover {
    background: rgba(12, 29, 61, 0.1);
}

.fsc-hero__play-circle {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 200ms ease, background 200ms ease;
}

.fsc-hero__play-label {
    font-family: "SFProText", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    line-height: 1;
}

/* Mobile hero CTA shown below video */
.fsc-hero__mobile-cta {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.fsc-hero__mobile-note {
    font-family: "SFProText", sans-serif;
    font-size: 13px;
    color: #666;
}


/* ── Trust bar ────────────────────────────────────────────── */

.fsc-trust {
    background: #0C1D3D;
    padding: 44px 0;
}

.fsc-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.fsc-trust__item {
    padding: 0 32px;
}

.fsc-trust__item + .fsc-trust__item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.fsc-trust__label {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.fsc-trust__text {
    font-family: "SFProText", sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.fsc-trust__stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.fsc-trust__stars {
    color: #00B67A;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1;
}

.fsc-trust__score {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
}

.fsc-trust__tp-logo {
    font-family: "SFProText", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #00B67A;
    letter-spacing: 0.02em;
}


/* ── "If Any Of This Sounds Familiar…" ───────────────────── */

.fsc-familiar {
    padding: 100px 0;
    background: #FFFFFF;
    text-align: center;
}

.fsc-familiar__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
    color: #0C1D3D;
    margin-bottom: 16px;
}

.fsc-familiar__title .color-blue {
    color: #1A4C8B;
}

.fsc-familiar__intro {
    font-family: "SFProText", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #444444;
    max-width: 560px;
    margin: 0 auto 48px;
}

.fsc-familiar__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.fsc-familiar__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: "SFProText", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #444444;
}

.fsc-familiar__check {
    flex-shrink: 0;
    margin-top: 1px;
}


/* ── About Course (two-column) ────────────────────────────── */

.fsc-about-course {
    padding: 100px 0;
    background: #F6FAFF;
}

.fsc-about-course__inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.fsc-about-course__media {
    flex-shrink: 0;
    width: 44%;
}

.fsc-about-course__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(12, 29, 61, 0.12);
    position: relative;
}

.fsc-about-course__img {
    width: 100%;
    height: auto;
    display: block;
}

.fsc-about-course__img-placeholder {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #0C1D3D 0%, #1A4C8B 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.fsc-about-course__caption {
    font-family: "SFProText", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.fsc-about-course__content {
    flex: 1;
    min-width: 0;
}

.fsc-about-course__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: italic;
    font-size: 32px;
    line-height: 1.3;
    color: #1A4C8B;
    margin-bottom: 20px;
}

.fsc-about-course__text {
    font-family: "SFProText", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 16px;
}

.fsc-about-course__note {
    font-family: "SFProText", sans-serif;
    font-size: 13px;
    color: #888;
    margin-top: 10px;
}


/* ── What You Get For Free ────────────────────────────────── */

.fsc-includes {
    padding: 100px 0;
    background: #FFFFFF;
    text-align: center;
}

.fsc-includes__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    color: #0C1D3D;
    max-width: 680px;
    margin: 0 auto 14px;
}

.fsc-includes__title .color-blue {
    color: #1A4C8B;
}

.fsc-includes__desc {
    font-family: "SFProText", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #444444;
    max-width: 560px;
    margin: 0 auto 52px;
}

.fsc-includes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
    text-align: left;
}

.fsc-includes__card {
    background: #F6FAFF;
    border-radius: 10px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(12, 29, 61, 0.06);
}

.fsc-includes__card-icon {
    width: 48px;
    height: 48px;
    background: #EBF6FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fsc-includes__card-title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 19px;
    color: #0C1D3D;
    margin-bottom: 10px;
    line-height: 1.35;
}

.fsc-includes__card-text {
    font-family: "SFProText", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #444444;
    margin: 0;
}

.fsc-includes__note {
    font-family: "SFProText", sans-serif;
    font-size: 13px;
    color: #888;
    margin-top: 12px;
}


/* ── How It Works ─────────────────────────────────────────── */

.fsc-how {
    padding: 100px 0;
    background: #ECF7FF;
}

.fsc-how__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    color: #0C1D3D;
    text-align: center;
    margin-bottom: 56px;
}

.fsc-how__steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fsc-how__step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.fsc-how__step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1A4C8B;
    color: #FFFFFF;
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 2px;
}

.fsc-how__step-content {
    flex: 1;
}

.fsc-how__step-title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 22px;
    color: #0C1D3D;
    margin-bottom: 8px;
    line-height: 1.3;
}

.fsc-how__step-text {
    font-family: "SFProText", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin: 0;
}


/* ── Testimonials ─────────────────────────────────────────── */

.fsc-testimonials {
    padding: 100px 0;
    background: #FFFFFF;
    text-align: center;
}

.fsc-testimonials__eyebrow {
    font-family: "SFProText", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00B67A;
    margin-bottom: 10px;
}

.fsc-testimonials__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    color: #0C1D3D;
    margin-bottom: 52px;
}

.fsc-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.fsc-testimonials__card {
    background: #F6FAFF;
    border-radius: 10px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fsc-testimonials__stars {
    color: #00B67A;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}

.fsc-testimonials__quote {
    font-family: "SFProText", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
    flex: 1;
    margin: 0;
}

.fsc-testimonials__name {
    font-family: "SFProText", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0C1D3D;
    margin: 0;
}

.fsc-testimonials__name span {
    font-weight: 400;
    color: #888;
}

.fsc-testimonials__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fsc-testimonials__tp-stars {
    color: #00B67A;
    font-size: 20px;
    letter-spacing: 2px;
}

.fsc-testimonials__tp-score {
    font-family: "SFProText", sans-serif;
    font-size: 15px;
    color: #0C1D3D;
}

.fsc-testimonials__tp-link {
    font-family: "SFProText", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A4C8B;
    text-decoration: none;
    transition: color 200ms ease;
}

.fsc-testimonials__tp-link:hover {
    color: #153D6F;
}


/* ── A Few Things This Is Not ─────────────────────────────── */

.fsc-not-this {
    padding: 100px 0;
    background: #F6FAFF;
}

.fsc-not-this__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    color: #0C1D3D;
    text-align: center;
    margin-bottom: 48px;
}

.fsc-not-this__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fsc-not-this__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: "SFProText", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #444444;
}

.fsc-not-this__icon {
    flex-shrink: 0;
    margin-top: 1px;
}


/* ── Founders ─────────────────────────────────────────────── */

.fsc-founders {
    padding: 100px 0;
    background: #FFFFFF;
}

.fsc-founders__inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.fsc-founders__photos {
    flex-shrink: 0;
    display: flex;
    gap: 16px;
    width: 44%;
}

.fsc-founders__photo-wrap {
    flex: 1;
    text-align: center;
}

.fsc-founders__photo-placeholder {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    margin-bottom: 10px;
}

.fsc-founders__photo-placeholder--carla {
    background: linear-gradient(160deg, #EBF6FF 0%, #4D89C7 100%);
}

.fsc-founders__photo-placeholder--marlon {
    background: linear-gradient(160deg, #EBF6FF 0%, #0C1D3D 100%);
}

.fsc-founders__photo-name {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 16px;
    color: #0C1D3D;
    margin: 0;
}

.fsc-founders__content {
    flex: 1;
}

.fsc-founders__eyebrow {
    font-family: "SFProText", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1A4C8B;
    margin-bottom: 10px;
}

.fsc-founders__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.25;
    color: #0C1D3D;
    margin-bottom: 20px;
}

.fsc-founders__text {
    font-family: "SFProText", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 14px;
}


/* ── Inline form ──────────────────────────────────────────── */

.fsc-inline-form {
    padding: 100px 0;
    background: #EBF6FF;
    text-align: center;
}

.fsc-inline-form__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    color: #0C1D3D;
    margin-bottom: 12px;
}

.fsc-inline-form__title .color-blue {
    color: #1A4C8B;
}

.fsc-inline-form__subtitle {
    font-family: "SFProText", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #444444;
    max-width: 420px;
    margin: 0 auto 32px;
}

.fsc-inline-form__form {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 36px 36px;
    box-shadow: 0 4px 24px rgba(12, 29, 61, 0.08);
    text-align: left;
}


/* ── Quote banner ─────────────────────────────────────────── */

.fsc-quote-banner {
    padding: 80px 0;
    background: #0C1D3D;
    text-align: center;
}

.fsc-quote-banner__stars {
    display: block;
    color: #00B67A;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.fsc-quote-banner__quote {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 24px;
}

.fsc-quote-banner__attr {
    font-family: "SFProText", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}


/* ── FAQ ──────────────────────────────────────────────────── */

.fsc-faq {
    padding: 100px 0;
    background: #FFFFFF;
}

.fsc-faq__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    color: #0C1D3D;
    text-align: center;
    margin-bottom: 52px;
}


/* ── Shared button ────────────────────────────────────────── */

.fsc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "SFProText", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    background: #1A4C8B;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background 200ms ease;
    line-height: 1.2;
}

.fsc-btn:hover {
    background: #153D6F;
    color: #FFFFFF;
    text-decoration: none;
}

.fsc-btn--full {
    width: 100%;
}

.fsc-btn--large {
    font-size: 18px;
    padding: 18px 40px;
}


/* ── Registration modal ───────────────────────────────────── */

.fsc-reg-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.fsc-reg-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fsc-reg-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 29, 61, 0.75);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.fsc-reg-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 48px 40px 40px;
    overflow-y: auto;
    max-height: 92vh;
}

.fsc-reg-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 200ms ease, color 200ms ease;
}

.fsc-reg-modal__close:hover {
    background: #F0F0F0;
    color: #333;
}

.fsc-reg-modal__title {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.25;
    color: #0C1D3D;
    text-align: center;
    margin-bottom: 12px;
}

.fsc-reg-modal__title .color-blue {
    color: #1A4C8B;
}

.fsc-reg-modal__subtitle {
    font-family: "SFProText", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #444444;
    text-align: center;
    max-width: 420px;
    margin: 0 auto 32px;
}

.fsc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.fsc-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.fsc-form__label {
    font-family: "SFProText", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0C1D3D;
}

.fsc-form__input,
.fsc-form__textarea {
    font-family: "SFProText", sans-serif;
    font-size: 15px;
    color: #0C1D3D;
    background: #FFFFFF;
    border: 1px solid #DDE3EE;
    border-radius: 4px;
    padding: 12px 14px;
    width: 100%;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    outline: none;
    line-height: 1.5;
    -webkit-appearance: none;
}

.fsc-form__input:focus,
.fsc-form__textarea:focus {
    border-color: #1A4C8B;
    box-shadow: 0 0 0 3px rgba(26, 76, 139, 0.1);
}

.fsc-form__input::placeholder,
.fsc-form__textarea::placeholder {
    color: #AAAAAA;
}

.fsc-form__textarea {
    resize: vertical;
    min-height: 76px;
}

.fsc-form__submit-wrap {
    margin-bottom: 20px;
}

.fsc-form__trust {
    text-align: center;
}

.fsc-form__trust p {
    font-family: "SFProText", sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #999;
    margin: 0 0 4px;
}


/* ── Video modal ──────────────────────────────────────────── */

.fsc-vid-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.fsc-vid-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fsc-vid-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 29, 61, 0.9);
    cursor: pointer;
}

.fsc-vid-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.fsc-vid-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease;
}

.fsc-vid-modal__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fsc-vid-modal__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.fsc-vid-modal__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

body.fsc-modal-open {
    overflow: hidden;
}


/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1100px) {
    .fsc-hero__title { font-size: 46px; }
    .fsc-about-course__title { font-size: 28px; }
}

@media (max-width: 991px) {
    .fsc-hero { padding: 110px 0 64px; }
    .fsc-hero__title { font-size: 40px; }
    .fsc-hero__desc { font-size: 16px; }

    .fsc-trust__grid { grid-template-columns: 1fr; }
    .fsc-trust__item { padding: 18px 24px; }
    .fsc-trust__item + .fsc-trust__item { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }

    .fsc-familiar__title { font-size: 36px; }
    .fsc-familiar__intro { font-size: 16px; }

    .fsc-about-course__inner { gap: 40px; }
    .fsc-about-course__media { width: 42%; }

    .fsc-includes__title { font-size: 34px; }
    .fsc-includes__grid { grid-template-columns: 1fr 1fr; }

    .fsc-how__title { font-size: 34px; }

    .fsc-testimonials__title { font-size: 34px; }

    .fsc-not-this__title { font-size: 34px; }

    .fsc-founders__inner { gap: 40px; }
    .fsc-founders__photos { width: 40%; }
    .fsc-founders__title { font-size: 30px; }

    .fsc-inline-form__title { font-size: 34px; }
    .fsc-inline-form__form { padding: 32px 28px; }

    .fsc-quote-banner__quote { font-size: 19px; }

    .fsc-faq__title { font-size: 34px; }
}

@media (max-width: 767px) {
    .fsc-hero { padding: 90px 0 52px; }
    .fsc-hero__title { font-size: 30px; }
    .fsc-hero__desc { font-size: 15px; margin-bottom: 32px; }
    .fsc-hero__play-circle { width: 60px; height: 60px; }
    .fsc-hero__mobile-cta { display: flex; }

    .fsc-familiar { padding: 72px 0; }
    .fsc-familiar__title { font-size: 28px; }
    .fsc-familiar__intro { font-size: 15px; }

    .fsc-about-course { padding: 72px 0; }
    .fsc-about-course__inner { flex-direction: column; gap: 36px; }
    .fsc-about-course__media { width: 100%; max-width: 480px; margin: 0 auto; }
    .fsc-about-course__title { font-size: 24px; text-align: center; }
    .fsc-about-course__content { text-align: center; }

    .fsc-includes { padding: 72px 0; }
    .fsc-includes__title { font-size: 28px; }
    .fsc-includes__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

    .fsc-how { padding: 72px 0; }
    .fsc-how__title { font-size: 28px; }

    .fsc-testimonials { padding: 72px 0; }
    .fsc-testimonials__title { font-size: 28px; }
    .fsc-testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }

    .fsc-not-this { padding: 72px 0; }
    .fsc-not-this__title { font-size: 28px; }

    .fsc-founders { padding: 72px 0; }
    .fsc-founders__inner { flex-direction: column; gap: 36px; }
    .fsc-founders__photos { width: 100%; max-width: 400px; margin: 0 auto; }
    .fsc-founders__title { font-size: 26px; text-align: center; }
    .fsc-founders__eyebrow { text-align: center; }
    .fsc-founders__text { font-size: 15px; }

    .fsc-inline-form { padding: 72px 0; }
    .fsc-inline-form__title { font-size: 28px; }
    .fsc-inline-form__form { padding: 28px 20px; }

    .fsc-quote-banner { padding: 64px 0; }
    .fsc-quote-banner__quote { font-size: 17px; }

    .fsc-faq { padding: 72px 0; }
    .fsc-faq__title { font-size: 28px; }

    .fsc-reg-modal__dialog { padding: 40px 24px 32px; }
    .fsc-reg-modal__title { font-size: 28px; }
    .fsc-form__row { grid-template-columns: 1fr; }
    .fsc-btn--large { font-size: 16px; padding: 16px 28px; }
}

@media (max-width: 568px) {
    .fsc-hero { padding: 80px 0 44px; }
    .fsc-hero__title { font-size: 24px; }
    .fsc-hero__badge { font-size: 10px; padding: 5px 14px; }
    .fsc-hero__desc { font-size: 14px; }

    .fsc-familiar__title { font-size: 22px; }
    .fsc-familiar__intro { font-size: 14px; }

    .fsc-about-course__title { font-size: 22px; }

    .fsc-includes__title { font-size: 24px; }

    .fsc-how__title { font-size: 24px; }
    .fsc-how__step-title { font-size: 19px; }

    .fsc-testimonials__title { font-size: 24px; }

    .fsc-not-this__title { font-size: 24px; }

    .fsc-founders__title { font-size: 22px; }

    .fsc-inline-form__title { font-size: 24px; }

    .fsc-quote-banner__quote { font-size: 16px; }

    .fsc-faq__title { font-size: 24px; }

    .fsc-reg-modal__title { font-size: 24px; }
}
