:root {
    --fc-ink: #1e2b49;
    --fc-ink-soft: #44516d;
    --fc-muted: #69758e;
    --fc-blue: #3157d5;
    --fc-blue-dark: #243fae;
    --fc-blue-deep: #16285f;
    --fc-mint: #5ccbb5;
    --fc-mint-soft: #e7f8f3;
    --fc-orange: #ff8b43;
    --fc-yellow: #ffd66b;
    --fc-cream: #fffaf0;
    --fc-paper: #ffffff;
    --fc-line: #dfe5f0;
    --fc-danger: #c43d4f;
    --fc-danger-soft: #fff1f3;
    --fc-success: #24785d;
    --fc-success-soft: #eaf9f3;
    --fc-shadow-sm: 0 12px 30px rgba(34, 53, 103, .08);
    --fc-shadow-md: 0 24px 70px rgba(34, 53, 103, .13);
    --fc-radius-sm: 16px;
    --fc-radius-md: 24px;
    --fc-radius-lg: 34px;
    --fc-container: 1180px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body.fonema-page {
    margin: 0;
    min-width: 320px;
    color: var(--fc-ink);
    background: #fff;
    font-family: var(--public-font-family, "Montserrat", "Segoe UI", Arial, sans-serif);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.fonema-page *,
.fonema-page *::before,
.fonema-page *::after {
    box-sizing: border-box;
}

.fonema-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.fonema-page a {
    color: inherit;
    text-decoration: none;
}

.fonema-page button,
.fonema-page input {
    font: inherit;
}

.fonema-page button {
    cursor: pointer;
}

.fonema-page h1,
.fonema-page h2,
.fonema-page h3,
.fonema-page p,
.fonema-page ul,
.fonema-page ol,
.fonema-page figure,
.fonema-page blockquote {
    margin-top: 0;
}

.fonema-page section[id],
.fonema-page div[id] {
    scroll-margin-top: 96px;
}

.fc-container {
    width: min(calc(100% - 40px), var(--fc-container));
    margin-inline: auto;
}

.fc-svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.fc-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fc-skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--fc-blue-deep);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.fc-skip-link:focus {
    transform: translateY(0);
}

.fonema-page a:focus-visible,
.fonema-page button:focus-visible,
.fonema-page input:focus-visible,
.fonema-page summary:focus-visible {
    outline: 3px solid rgba(49, 87, 213, .36);
    outline-offset: 4px;
}

.fc-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(216, 224, 239, .8);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}

.fc-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 32px;
}

.fc-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.fc-brand__mark {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, var(--fc-blue), #6784ef);
    box-shadow: 0 8px 18px rgba(49, 87, 213, .25);
}

.fc-brand__mark span {
    width: 3px;
    border-radius: 999px;
    background: currentColor;
}

.fc-brand__mark span:nth-child(1) {
    height: 9px;
}

.fc-brand__mark span:nth-child(2) {
    height: 19px;
}

.fc-brand__mark span:nth-child(3) {
    height: 13px;
}

.fc-brand__mark span:nth-child(4) {
    height: 23px;
}

.fc-brand__name {
    color: var(--fc-ink);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.fc-brand__name span {
    color: var(--fc-blue);
}

.fc-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 31px);
    margin-left: auto;
}

.fc-nav a {
    position: relative;
    color: var(--fc-ink-soft);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.fc-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    content: "";
    background: var(--fc-blue);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.fc-nav a:hover::after,
.fc-nav a:focus-visible::after {
    transform: scaleX(1);
}

.fc-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.fc-button:hover {
    transform: translateY(-2px);
}

.fc-button--small {
    min-height: 44px;
    margin-left: 8px;
    padding: 10px 17px;
    color: #fff !important;
    background: var(--fc-blue);
    box-shadow: 0 8px 20px rgba(49, 87, 213, .22);
}

.fc-header__price {
    padding-left: 9px;
    border-left: 1px solid rgba(255, 255, 255, .35);
    font-weight: 600;
}

.fc-button--primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--fc-blue), #4c72ec);
    box-shadow: 0 14px 30px rgba(49, 87, 213, .28);
}

.fc-button--primary:hover {
    box-shadow: 0 18px 35px rgba(49, 87, 213, .34);
}

.fc-button--ghost {
    border-color: #ccd6e9;
    color: var(--fc-ink) !important;
    background: rgba(255, 255, 255, .82);
}

.fc-button--ghost:hover {
    border-color: #a9b8d4;
    background: #fff;
}

.fc-button--light {
    color: var(--fc-blue-deep) !important;
    background: #fff;
    box-shadow: 0 14px 32px rgba(2, 14, 56, .2);
}

.fc-alert-wrap {
    position: relative;
    z-index: 4;
    margin-top: 18px;
}

.fc-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    border: 1px solid;
    border-radius: 15px;
    font-size: 14px;
}

.fc-alert p {
    margin: 2px 0 0;
}

.fc-alert a {
    flex: 0 0 auto;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fc-alert--error {
    border-color: #f2b9c1;
    color: #7e2633;
    background: var(--fc-danger-soft);
}

.fc-alert--success {
    justify-content: flex-start;
    border-color: #b9e6d6;
    color: #185f49;
    background: var(--fc-success-soft);
}

.fc-alert--success p {
    margin: 0;
}

.fc-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 8vw, 112px) 0 96px;
    background:
        linear-gradient(90deg, rgba(250, 252, 255, .98) 0%, rgba(250, 252, 255, .9) 47%, rgba(255, 251, 241, .55) 100%),
        url("/img/course/Leonardo_Phoenix_10_Create_a_gentle_cozy_background_with_a_gra_1.jpg") center / cover no-repeat;
}

.fc-hero::after {
    position: absolute;
    right: -12%;
    bottom: -130px;
    width: 58%;
    height: 270px;
    border-radius: 50% 50% 0 0;
    content: "";
    background: rgba(255, 255, 255, .54);
    filter: blur(2px);
}

.fc-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(4px);
}

.fc-hero__glow--one {
    top: -110px;
    left: 43%;
    width: 320px;
    height: 320px;
    background: rgba(100, 128, 239, .13);
}

.fc-hero__glow--two {
    right: -70px;
    bottom: -40px;
    width: 290px;
    height: 290px;
    background: rgba(255, 188, 112, .2);
}

.fc-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
    gap: 62px;
}

.fc-eyebrow,
.fc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--fc-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.fc-eyebrow {
    padding: 8px 13px;
    border: 1px solid #dce5fa;
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    letter-spacing: .06em;
}

.fc-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fc-mint);
    box-shadow: 0 0 0 5px rgba(92, 203, 181, .16);
}

.fc-hero h1 {
    max-width: 680px;
    margin: 23px 0 21px;
    color: var(--fc-ink);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .98;
}

.fc-hero__lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--fc-ink-soft);
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.65;
}

.fc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.fc-hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 25px 0 0;
    padding: 0;
    color: var(--fc-muted);
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.fc-hero__benefits li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fc-hero__benefits .fc-icon {
    width: 16px;
    height: 16px;
    color: var(--fc-success);
    stroke-width: 2.6;
}

.fc-hero-visual {
    position: relative;
    min-height: 500px;
}

.fc-hero-visual__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(49, 87, 213, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .56);
    box-shadow:
        0 0 0 28px rgba(255, 255, 255, .23),
        0 0 0 58px rgba(255, 255, 255, .11);
    transform: translate(-50%, -50%);
}

.fc-hero-visual__ear {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    width: 236px;
    height: 236px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--fc-shadow-md);
    transform: translate(-50%, -50%);
}

.fc-hero-visual__ear img {
    width: 174px;
}

.fc-sound-wave {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 4px;
    transform: translateY(-50%);
}

.fc-sound-wave--left {
    right: calc(100% + 12px);
}

.fc-sound-wave--right {
    left: calc(100% + 12px);
}

.fc-sound-wave i {
    display: block;
    width: 3px;
    border-radius: 999px;
    background: var(--fc-orange);
    animation: fc-wave 1.4s ease-in-out infinite;
}

.fc-sound-wave i:nth-child(1) {
    height: 16px;
}

.fc-sound-wave i:nth-child(2) {
    height: 31px;
    animation-delay: .15s;
}

.fc-sound-wave i:nth-child(3) {
    height: 21px;
    animation-delay: .3s;
}

.fc-hero-visual__child {
    position: absolute;
    z-index: 4;
    width: 154px;
    filter: drop-shadow(0 17px 20px rgba(36, 53, 91, .16));
}

.fc-hero-visual__child--listen {
    top: 37px;
    left: 8px;
    transform: rotate(-7deg);
}

.fc-hero-visual__child--speak {
    right: 1px;
    bottom: 35px;
    transform: rotate(7deg);
}

.fc-hero-visual__chip {
    position: absolute;
    z-index: 6;
    border: 1px solid rgba(216, 224, 239, .85);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--fc-shadow-sm);
    backdrop-filter: blur(10px);
}

.fc-hero-visual__chip--sound {
    right: 6px;
    top: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: 14px;
    color: var(--fc-ink);
    font-size: 12px;
    font-weight: 800;
}

.fc-chip-icon {
    display: inline-flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #7e4c00;
    background: var(--fc-yellow);
    font-size: 19px;
}

.fc-hero-visual__chip--progress {
    bottom: 32px;
    left: 19px;
    display: grid;
    min-width: 178px;
    gap: 2px;
    padding: 13px 16px;
    border-radius: 15px;
    color: var(--fc-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.fc-hero-visual__chip--progress strong {
    color: var(--fc-ink);
    font-size: 14px;
    text-transform: none;
}

.fc-mini-progress {
    display: block;
    height: 5px;
    margin-top: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7ebf4;
}

.fc-mini-progress i {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fc-mint), #7addca);
}

.fc-facts-section {
    position: relative;
    z-index: 5;
    margin-top: -44px;
}

.fc-facts {
    display: grid;
    margin: 0;
    padding: 18px 22px;
    border: 1px solid rgba(219, 226, 239, .9);
    border-radius: var(--fc-radius-md);
    background: #fff;
    box-shadow: var(--fc-shadow-md);
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.fc-facts li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    padding: 8px 21px;
    border-right: 1px solid var(--fc-line);
}

.fc-facts li:last-child {
    border-right: 0;
}

.fc-facts__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--fc-blue);
    background: #eef2ff;
}

.fc-facts li:nth-child(2) .fc-facts__icon {
    color: #ad641e;
    background: #fff3dc;
}

.fc-facts li:nth-child(3) .fc-facts__icon {
    color: var(--fc-success);
    background: var(--fc-mint-soft);
}

.fc-facts li:nth-child(4) .fc-facts__icon {
    color: #8658ba;
    background: #f4ecfc;
}

.fc-facts strong,
.fc-facts small {
    display: block;
}

.fc-facts strong {
    color: var(--fc-ink);
    font-size: 14px;
    line-height: 1.35;
}

.fc-facts small {
    margin-top: 2px;
    color: var(--fc-muted);
    font-size: 10px;
    line-height: 1.35;
}

.fc-section {
    padding: clamp(76px, 9vw, 120px) 0;
}

.fc-section--soft {
    background: var(--fc-cream);
}

.fc-section--program {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 214, 107, .24), transparent 25%),
        #f4f7ff;
}

.fc-section--faq {
    background: #f8fafc;
}

.fc-section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.fc-section-heading--left {
    max-width: 750px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.fc-section-heading h2,
.fc-author h2,
.fc-enroll h2,
.fc-test-section h2 {
    margin: 10px 0 17px;
    color: var(--fc-ink);
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.fc-section-heading p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 17px;
}

.fc-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fc-audience-card {
    position: relative;
    min-height: 265px;
    overflow: hidden;
    padding: 34px 30px;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius-md);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fc-audience-card::after {
    position: absolute;
    right: -42px;
    bottom: -52px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    content: "";
    background: #eef2ff;
}

.fc-audience-card:nth-child(2)::after {
    background: var(--fc-mint-soft);
}

.fc-audience-card:nth-child(3)::after {
    background: #fff2dd;
}

.fc-audience-card:hover {
    border-color: #c9d4e8;
    box-shadow: var(--fc-shadow-sm);
    transform: translateY(-5px);
}

.fc-card-number {
    display: inline-block;
    margin-bottom: 47px;
    color: var(--fc-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.fc-audience-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.3;
}

.fc-audience-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 14px;
}

.fc-expert-note {
    display: grid;
    align-items: center;
    margin-top: 22px;
    padding: 20px 24px;
    border: 1px solid #cce9e1;
    border-radius: var(--fc-radius-md);
    background: var(--fc-mint-soft);
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 20px;
}

.fc-expert-note img {
    width: 72px;
}

.fc-expert-note strong {
    color: var(--fc-success);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fc-expert-note p {
    margin: 2px 0 0;
    color: #315f55;
    font-size: 13px;
}

.fc-expert-note a,
.fc-text-link,
.fc-enroll__offer > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fc-blue);
    font-size: 13px;
    font-weight: 900;
}

.fc-expert-note a .fc-icon,
.fc-text-link .fc-icon,
.fc-enroll__offer > a .fc-icon {
    width: 18px;
    height: 18px;
    transition: transform .2s ease;
}

.fc-expert-note a:hover .fc-icon,
.fc-text-link:hover .fc-icon,
.fc-enroll__offer > a:hover .fc-icon {
    transform: translateX(4px);
}

.fc-steps {
    position: relative;
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    list-style: none;
}

.fc-steps::before {
    position: absolute;
    z-index: 0;
    top: 74px;
    right: 17%;
    left: 17%;
    border-top: 2px dashed #d6dce9;
    content: "";
}

.fc-steps li {
    position: relative;
    z-index: 1;
    padding: 31px;
    border: 1px solid #e7dfcf;
    border-radius: var(--fc-radius-md);
    background: rgba(255, 255, 255, .88);
}

.fc-steps__number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #c4b8a5;
    font-size: 12px;
    font-weight: 900;
}

.fc-steps__icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 20px;
    color: var(--fc-blue);
    background: #edf1ff;
}

.fc-steps li:nth-child(2) .fc-steps__icon {
    color: #18755f;
    background: var(--fc-mint-soft);
}

.fc-steps li:nth-child(3) .fc-steps__icon {
    color: #a1571d;
    background: #fff0dc;
}

.fc-steps__icon .fc-icon {
    width: 30px;
    height: 30px;
}

.fc-steps h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.fc-steps p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 14px;
}

.fc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.fc-feature-card {
    padding: 25px;
    border: 1px solid var(--fc-line);
    border-radius: 19px;
    background: #fff;
}

.fc-feature-card > span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--fc-blue);
    background: #eef2ff;
}

.fc-feature-card:nth-child(2n) > span {
    color: #18755f;
    background: var(--fc-mint-soft);
}

.fc-feature-card:nth-child(3n) > span {
    color: #a75d21;
    background: #fff1df;
}

.fc-feature-card h3 {
    margin-bottom: 7px;
    font-size: 17px;
}

.fc-feature-card p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 13px;
}

.fc-demo-grid {
    display: grid;
    align-items: start;
    margin-top: 54px;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 22px;
}

.fc-demo-video,
.fc-game-card {
    overflow: hidden;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius-md);
    background: #fff;
    box-shadow: var(--fc-shadow-sm);
}

.fc-demo-video__frame,
.fc-game-card__stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #19233f;
}

.fc-demo-video__frame iframe,
.fc-game-card__stage iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fc-demo-video__body {
    padding: 27px 29px 30px;
}

.fc-demo-video__body h3 {
    margin: 7px 0 8px;
    font-size: 23px;
    line-height: 1.3;
}

.fc-demo-video__body p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 14px;
}

.fc-game-stack {
    display: grid;
    gap: 18px;
}

.fc-game-card__stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .3s ease;
}

.fc-game-card:hover .fc-game-card__stage img {
    filter: brightness(.82);
    transform: scale(1.025);
}

.fc-game-card__play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--fc-blue);
    box-shadow: 0 10px 25px rgba(10, 21, 61, .38);
    transform: translate(-50%, -50%);
    transition: transform .2s ease, background-color .2s ease;
}

.fc-game-card__play:hover {
    background: var(--fc-blue-dark);
    transform: translate(-50%, -50%) scale(1.08);
}

.fc-game-card__play .fc-icon {
    width: 25px;
    height: 25px;
    margin-left: 3px;
    fill: currentColor;
    stroke: currentColor;
}

.fc-game-card__caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 17px;
}

.fc-game-card__caption span {
    color: var(--fc-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.fc-game-card__caption strong {
    font-size: 12px;
    text-align: right;
}

.fc-test-section {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 9vw, 120px) 0;
    color: #fff;
    background:
        radial-gradient(circle at 86% 18%, rgba(105, 135, 242, .42), transparent 28%),
        linear-gradient(135deg, #182b66, #2449bf 68%, #315de2);
}

.fc-test-section::before,
.fc-test-section::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
}

.fc-test-section::before {
    top: -210px;
    left: -140px;
    width: 480px;
    height: 480px;
}

.fc-test-section::after {
    right: -120px;
    bottom: -260px;
    width: 560px;
    height: 560px;
}

.fc-test-section__grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
    gap: 80px;
}

.fc-kicker--light {
    color: #a9f0df;
}

.fc-test-section h2,
.fc-enroll h2 {
    color: #fff;
}

.fc-test-section__copy > p {
    max-width: 610px;
    margin-bottom: 23px;
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
}

.fc-test-section__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .83);
    font-size: 12px;
    font-weight: 700;
}

.fc-test-section__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.fc-test-section__meta .fc-icon {
    width: 18px;
    height: 18px;
    color: var(--fc-yellow);
}

.fc-test-section__copy > small {
    display: block;
    max-width: 520px;
    margin-top: 16px;
    color: rgba(255, 255, 255, .57);
    font-size: 10px;
}

.fc-test-gallery {
    position: relative;
    min-height: 440px;
}

.fc-test-gallery figure {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 5px solid rgba(255, 255, 255, .94);
    border-radius: 21px;
    box-shadow: 0 26px 55px rgba(3, 10, 38, .32);
}

.fc-test-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-test-gallery__main {
    z-index: 2;
    top: 35px;
    left: 11%;
    width: 78%;
    aspect-ratio: 16 / 9;
}

.fc-test-gallery__small {
    z-index: 3;
    width: 42%;
    aspect-ratio: 16 / 9;
}

.fc-test-gallery__small--one {
    bottom: 1px;
    left: 0;
    transform: rotate(-5deg);
}

.fc-test-gallery__small--two {
    right: 0;
    bottom: 7px;
    transform: rotate(5deg);
}

.fc-skill-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fc-skill-grid article {
    min-height: 235px;
    padding: 28px 24px;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius-md);
    background: #fff;
}

.fc-skill-grid article > span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 44px;
    border-radius: 12px;
    color: var(--fc-blue);
    background: #eef2ff;
    font-size: 11px;
    font-weight: 900;
}

.fc-skill-grid article:nth-child(2) > span {
    color: #18755f;
    background: var(--fc-mint-soft);
}

.fc-skill-grid article:nth-child(3) > span {
    color: #a75d21;
    background: #fff1df;
}

.fc-skill-grid article:nth-child(4) > span {
    color: #7952a7;
    background: #f4ecfc;
}

.fc-skill-grid h3 {
    margin-bottom: 7px;
    font-size: 18px;
}

.fc-skill-grid p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 13px;
}

.fc-program {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    list-style: none;
}

.fc-program li {
    display: grid;
    min-height: 174px;
    align-items: center;
    padding: 24px;
    border: 1px solid #dce4f3;
    border-radius: var(--fc-radius-md);
    background: rgba(255, 255, 255, .9);
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 23px;
}

.fc-program__week {
    display: flex;
    height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--fc-blue);
    background: #eef2ff;
}

.fc-program li:nth-child(2) .fc-program__week {
    color: #18755f;
    background: var(--fc-mint-soft);
}

.fc-program li:nth-child(3) .fc-program__week {
    color: #a75d21;
    background: #fff1df;
}

.fc-program li:nth-child(4) .fc-program__week {
    color: #7952a7;
    background: #f4ecfc;
}

.fc-program__week span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fc-program__week strong {
    margin-top: 2px;
    font-size: 34px;
    line-height: 1;
}

.fc-program h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.fc-program p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 13px;
}

.fc-focus-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 860px;
    margin-top: 26px;
    padding: 18px 21px;
    border: 1px solid #cdd7ea;
    border-radius: 17px;
    background: rgba(255, 255, 255, .72);
}

.fc-focus-note .fc-icon {
    margin-top: 2px;
    color: var(--fc-blue);
}

.fc-focus-note p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 13px;
}

.fc-focus-note strong {
    color: var(--fc-ink);
}

.fc-author {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(48px, 7vw, 90px);
}

.fc-author__photo {
    position: relative;
}

.fc-author__photo > img {
    width: 100%;
    border-radius: var(--fc-radius-lg);
    box-shadow: var(--fc-shadow-md);
}

.fc-author__photo::before {
    position: absolute;
    z-index: -1;
    top: -25px;
    left: -25px;
    width: 47%;
    height: 62%;
    border-radius: 30px;
    content: "";
    background: var(--fc-mint-soft);
}

.fc-author__badge {
    position: absolute;
    right: -18px;
    bottom: 25px;
    display: flex;
    min-width: 155px;
    flex-direction: column;
    padding: 17px 20px;
    border: 1px solid rgba(223, 229, 240, .9);
    border-radius: 17px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--fc-shadow-sm);
}

.fc-author__badge strong {
    color: var(--fc-blue);
    font-size: 22px;
    line-height: 1.2;
}

.fc-author__badge span {
    color: var(--fc-muted);
    font-size: 10px;
}

.fc-author__copy > p {
    color: var(--fc-muted);
}

.fc-author__role {
    margin-bottom: 21px;
    color: var(--fc-blue) !important;
    font-size: 14px;
    font-weight: 800;
}

.fc-author__principle {
    position: relative;
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 3px solid var(--fc-mint);
    border-radius: 0 17px 17px 0;
    color: var(--fc-ink-soft);
    background: var(--fc-mint-soft);
}

.fc-author__principle strong {
    display: block;
    margin-bottom: 4px;
    color: var(--fc-success);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fc-author__principle p {
    margin-bottom: 0;
    color: var(--fc-ink-soft);
    font-size: 14px;
    font-weight: 600;
}

.fc-faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: clamp(50px, 7vw, 92px);
}

.fc-faq-layout .fc-section-heading {
    position: sticky;
    top: 116px;
    margin-bottom: 0;
}

.fc-faq-layout .fc-section-heading .fc-button {
    margin-top: 25px;
}

.fc-faq {
    display: grid;
    gap: 11px;
}

.fc-faq details {
    overflow: hidden;
    border: 1px solid var(--fc-line);
    border-radius: 17px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.fc-faq details[open] {
    border-color: #c9d5ec;
    box-shadow: var(--fc-shadow-sm);
}

.fc-faq summary {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

.fc-faq summary::-webkit-details-marker {
    display: none;
}

.fc-faq summary i {
    position: relative;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #eef2ff;
}

.fc-faq summary i::before,
.fc-faq summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    border-radius: 2px;
    content: "";
    background: var(--fc-blue);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.fc-faq summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.fc-faq details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.fc-faq details > div {
    padding: 0 22px 21px;
}

.fc-faq details p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 13px;
}

.fc-enroll {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 9vw, 120px) 0;
    color: #fff;
    background:
        radial-gradient(circle at 6% 82%, rgba(92, 203, 181, .18), transparent 30%),
        linear-gradient(135deg, #17275a, #203c9d);
}

.fc-enroll::after {
    position: absolute;
    top: -250px;
    right: -230px;
    width: 600px;
    height: 600px;
    border: 80px solid rgba(255, 255, 255, .03);
    border-radius: 50%;
    content: "";
}

.fc-enroll__grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, .88fr) minmax(420px, .72fr);
    gap: clamp(50px, 8vw, 100px);
}

.fc-enroll__offer > p {
    max-width: 560px;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
}

.fc-price {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin: 34px 0 27px;
}

.fc-price span {
    padding-bottom: 7px;
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fc-price strong {
    color: #fff;
    font-size: 45px;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
}

.fc-offer-list {
    display: grid;
    gap: 12px;
    margin: 0 0 31px;
    padding: 0;
    list-style: none;
}

.fc-offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 600;
}

.fc-offer-list .fc-icon {
    width: 18px;
    height: 18px;
    color: #8be3cf;
    stroke-width: 2.5;
}

.fc-enroll__offer > a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .35);
    text-underline-offset: 5px;
}

.fc-enroll-form-wrap {
    padding: 33px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--fc-radius-lg);
    color: var(--fc-ink);
    background: #fff;
    box-shadow: 0 32px 75px rgba(3, 12, 47, .3);
}

.fc-enroll-form__heading {
    margin-bottom: 24px;
}

.fc-enroll-form__heading > span {
    color: var(--fc-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fc-enroll-form__heading h3 {
    margin: 6px 0 4px;
    font-size: 25px;
    line-height: 1.25;
}

.fc-enroll-form__heading p {
    margin-bottom: 0;
    color: var(--fc-muted);
    font-size: 11px;
}

.fc-form-errors {
    margin-bottom: 19px;
    padding: 14px 16px;
    border: 1px solid #efbbc3;
    border-radius: 13px;
    color: #7e2633;
    background: var(--fc-danger-soft);
    font-size: 11px;
}

.fc-form-errors ul {
    margin: 5px 0 0;
    padding-left: 18px;
}

.fc-field {
    margin-bottom: 15px;
}

.fc-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--fc-ink-soft);
    font-size: 11px;
    font-weight: 800;
}

.fc-field input {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #d6deeb;
    border-radius: 12px;
    outline: none;
    color: var(--fc-ink);
    background: #fbfcfe;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.fc-field input::placeholder {
    color: #a0a9bb;
}

.fc-field input:hover {
    border-color: #bdc9dc;
}

.fc-field input:focus {
    border-color: var(--fc-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(49, 87, 213, .1);
}

.fc-field input[aria-invalid="true"] {
    border-color: var(--fc-danger);
}

.fc-field__error {
    display: block;
    margin-top: 4px;
    color: var(--fc-danger);
    font-size: 10px;
}

.fc-button--submit {
    width: 100%;
    margin-top: 6px;
    border: 0;
}

.fc-button--submit[disabled] {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.fc-form-consent {
    margin: 12px 0 0;
    color: var(--fc-muted);
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.fc-form-consent a {
    color: var(--fc-blue);
    text-decoration: underline;
}

.fc-form-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 14px 0 0;
    color: #6b7790;
    font-size: 9px;
}

.fc-form-secure .fc-icon {
    width: 15px;
    height: 15px;
    color: var(--fc-success);
}

.fc-existing-account {
    margin: 12px 0 0;
    color: var(--fc-muted);
    font-size: 10px;
    text-align: center;
}

.fc-existing-account a {
    color: var(--fc-blue);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fc-footer {
    padding: 45px 0 110px;
    color: var(--fc-muted);
    background: #f8fafc;
}

.fc-footer__inner {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr auto auto;
    gap: 50px;
}

.fc-brand--footer {
    margin-bottom: 12px;
}

.fc-footer__inner > div > p {
    max-width: 410px;
    margin-bottom: 0;
    font-size: 11px;
}

.fc-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.fc-footer nav a {
    font-size: 11px;
    font-weight: 700;
}

.fc-footer nav a:hover {
    color: var(--fc-blue);
}

.fc-footer__inner > span {
    font-size: 10px;
    white-space: nowrap;
}

.fc-mobile-cta {
    display: none;
}

.fc-js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.22, .8, .35, 1);
}

.fc-js [data-reveal][data-reveal-delay="1"] {
    transition-delay: .1s;
}

.fc-js [data-reveal][data-reveal-delay="2"] {
    transition-delay: .2s;
}

.fc-js [data-reveal][data-reveal-delay="3"] {
    transition-delay: .3s;
}

.fc-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fc-wave {
    0%,
    100% {
        transform: scaleY(.55);
        opacity: .65;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .fc-nav {
        gap: 16px;
    }

    .fc-nav a {
        font-size: 11px;
    }

    .fc-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
        gap: 34px;
    }

    .fc-hero-visual {
        min-height: 460px;
        transform: scale(.93);
    }

    .fc-facts li {
        padding-inline: 12px;
    }

    .fc-test-section__grid {
        gap: 48px;
    }

    .fc-test-gallery {
        min-height: 390px;
    }
}

@media (max-width: 920px) {
    .fc-nav {
        display: none;
    }

    .fc-header .fc-button {
        margin-left: auto;
    }

    .fc-hero {
        padding-top: 72px;
    }

    .fc-hero__grid {
        grid-template-columns: 1fr;
    }

    .fc-hero__copy {
        max-width: 760px;
    }

    .fc-hero-visual {
        width: min(100%, 620px);
        min-height: 470px;
        margin: -10px auto 0;
    }

    .fc-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-facts li:nth-child(2) {
        border-right: 0;
    }

    .fc-facts li:nth-child(-n+2) {
        padding-bottom: 17px;
        border-bottom: 1px solid var(--fc-line);
    }

    .fc-facts li:nth-child(n+3) {
        padding-top: 17px;
    }

    .fc-demo-grid,
    .fc-test-section__grid,
    .fc-author,
    .fc-faq-layout,
    .fc-enroll__grid {
        grid-template-columns: 1fr;
    }

    .fc-game-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-test-section__copy {
        max-width: 700px;
    }

    .fc-test-gallery {
        width: min(100%, 650px);
        min-height: 430px;
        margin-inline: auto;
    }

    .fc-skill-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-author__photo {
        width: min(100%, 720px);
    }

    .fc-faq-layout .fc-section-heading {
        position: static;
    }

    .fc-enroll__offer {
        max-width: 700px;
    }

    .fc-enroll-form-wrap {
        width: min(100%, 620px);
    }

    .fc-footer__inner {
        grid-template-columns: 1fr auto;
    }

    .fc-footer__inner > span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    html {
        scroll-padding-top: 72px;
    }

    body.fonema-page {
        padding-bottom: 70px;
    }

    .fc-container {
        width: min(calc(100% - 28px), var(--fc-container));
    }

    .fc-header__inner {
        min-height: 66px;
    }

    .fc-header .fc-button {
        display: none;
    }

    .fc-brand__mark {
        width: 34px;
        height: 34px;
    }

    .fc-brand__name {
        font-size: 19px;
    }

    .fc-alert {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .fc-hero {
        padding: 54px 0 78px;
    }

    .fc-hero::after {
        display: none;
    }

    .fc-eyebrow {
        font-size: 9px;
    }

    .fc-hero h1 {
        margin-top: 18px;
        font-size: clamp(42px, 13vw, 57px);
    }

    .fc-hero__lead {
        font-size: 16px;
    }

    .fc-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .fc-hero__actions .fc-button {
        width: 100%;
    }

    .fc-hero__benefits {
        display: grid;
        gap: 9px;
    }

    .fc-hero-visual {
        min-height: 340px;
        margin-top: 10px;
        transform: none;
    }

    .fc-hero-visual__ring {
        width: 260px;
        height: 260px;
        box-shadow:
            0 0 0 18px rgba(255, 255, 255, .23),
            0 0 0 36px rgba(255, 255, 255, .11);
    }

    .fc-hero-visual__ear {
        width: 166px;
        height: 166px;
    }

    .fc-hero-visual__ear img {
        width: 124px;
    }

    .fc-sound-wave {
        display: none;
    }

    .fc-hero-visual__child {
        width: 105px;
    }

    .fc-hero-visual__child--listen {
        top: 20px;
        left: 0;
    }

    .fc-hero-visual__child--speak {
        right: 0;
        bottom: 15px;
    }

    .fc-hero-visual__chip--sound {
        top: 8px;
        right: 1px;
        padding: 8px 10px;
        font-size: 9px;
    }

    .fc-chip-icon {
        width: 25px;
        height: 25px;
        font-size: 15px;
    }

    .fc-hero-visual__chip--progress {
        bottom: 4px;
        left: 0;
        min-width: 142px;
        padding: 10px 12px;
    }

    .fc-hero-visual__chip--progress strong {
        font-size: 11px;
    }

    .fc-facts-section {
        margin-top: -36px;
    }

    .fc-facts {
        padding: 12px;
        border-radius: 19px;
    }

    .fc-facts li {
        gap: 9px;
        padding: 10px 8px;
    }

    .fc-facts__icon {
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }

    .fc-facts__icon .fc-icon {
        width: 18px;
        height: 18px;
    }

    .fc-facts strong {
        font-size: 11px;
    }

    .fc-facts small {
        font-size: 8px;
    }

    .fc-section {
        padding: 72px 0;
    }

    .fc-section-heading {
        margin-bottom: 33px;
    }

    .fc-section-heading h2,
    .fc-author h2,
    .fc-enroll h2,
    .fc-test-section h2 {
        font-size: clamp(31px, 10vw, 42px);
    }

    .fc-section-heading p,
    .fc-test-section__copy > p {
        font-size: 15px;
    }

    .fc-audience-grid,
    .fc-steps,
    .fc-feature-grid,
    .fc-game-stack,
    .fc-program {
        grid-template-columns: 1fr;
    }

    .fc-audience-card {
        min-height: 0;
    }

    .fc-card-number {
        margin-bottom: 30px;
    }

    .fc-expert-note {
        grid-template-columns: 56px 1fr;
    }

    .fc-expert-note img {
        width: 56px;
    }

    .fc-expert-note a {
        grid-column: 2;
    }

    .fc-steps::before {
        display: none;
    }

    .fc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-feature-card {
        padding: 20px;
    }

    .fc-demo-grid {
        margin-top: 38px;
    }

    .fc-demo-video__body {
        padding: 22px;
    }

    .fc-game-card__caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .fc-game-card__caption strong {
        text-align: left;
    }

    .fc-test-section {
        padding: 75px 0;
    }

    .fc-test-gallery {
        min-height: 310px;
    }

    .fc-test-gallery figure {
        border-width: 3px;
        border-radius: 13px;
    }

    .fc-test-gallery__main {
        top: 20px;
        left: 6%;
        width: 88%;
    }

    .fc-test-gallery__small {
        width: 47%;
    }

    .fc-skill-grid {
        grid-template-columns: 1fr;
    }

    .fc-skill-grid article {
        min-height: 0;
    }

    .fc-skill-grid article > span {
        margin-bottom: 28px;
    }

    .fc-program li {
        min-height: 0;
        padding: 18px;
        grid-template-columns: 82px 1fr;
        gap: 16px;
    }

    .fc-program__week {
        height: 92px;
    }

    .fc-author {
        gap: 49px;
    }

    .fc-author__photo::before {
        top: -13px;
        left: -8px;
    }

    .fc-author__photo > img {
        border-radius: 22px;
    }

    .fc-author__badge {
        right: 10px;
        bottom: -22px;
    }

    .fc-faq-layout {
        gap: 38px;
    }

    .fc-enroll__grid {
        gap: 45px;
    }

    .fc-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .fc-price span {
        padding-bottom: 0;
    }

    .fc-enroll-form-wrap {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .fc-field input {
        font-size: 16px;
    }

    .fc-footer {
        padding: 45px 0;
    }

    .fc-footer__inner {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fc-footer nav {
        gap: 12px 17px;
    }

    .fc-footer__inner > span {
        grid-column: auto;
    }

    .fc-mobile-cta {
        position: fixed;
        z-index: 60;
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: flex;
        min-height: 56px;
        align-items: center;
        justify-content: space-between;
        padding: 11px 18px;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: 16px;
        color: #fff !important;
        background: rgba(35, 68, 179, .94);
        box-shadow: 0 14px 35px rgba(11, 27, 79, .33);
        backdrop-filter: blur(12px);
    }

    .fc-mobile-cta span {
        font-size: 13px;
        font-weight: 800;
    }

    .fc-mobile-cta strong {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .fc-feature-grid,
    .fc-facts {
        grid-template-columns: 1fr;
    }

    .fc-facts li {
        padding: 11px 8px !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--fc-line);
    }

    .fc-facts li:last-child {
        border-bottom: 0;
    }

    .fc-expert-note {
        grid-template-columns: 1fr;
    }

    .fc-expert-note a {
        grid-column: auto;
    }

    .fc-test-gallery {
        min-height: 260px;
    }

    .fc-program li {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .fc-program__week {
        width: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fonema-page *,
    .fonema-page *::before,
    .fonema-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .fc-js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
