

/* Start:/local/components/china/school/templates/.default/style.css?177664489930037*/
/* =========================================================
   Школа китайского языка — лендинг
   Префикс .sch- для всех новых классов hero/секций
   ========================================================= */

.sch-page {
    --sch-brand:     #c62828;
    --sch-brand-dk:  #9e1b1b;
    --sch-gold:      #d4a24a;
    --sch-ink:       #15152a;
    --sch-ink-2:     #242440;
    --sch-muted:     #6b7280;
    --sch-line:      #e5e7eb;
    --sch-bg:        #fafafa;
    --sch-bg-alt:    #f4f4f6;
    --sch-shadow-sm: 0 2px 8px rgba(21, 21, 42, 0.05);
    --sch-shadow-md: 0 8px 24px rgba(21, 21, 42, 0.08);
    --sch-shadow-lg: 0 20px 48px rgba(21, 21, 42, 0.12);
    --sch-radius-sm: 10px;
    --sch-radius:    18px;
    --sch-radius-lg: 28px;
    --sch-maxw:      1200px;

    font-family: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--sch-ink);
    background: #fff;
    line-height: 1.55;
}

/* =========================================================
   HERO
   ========================================================= */
.sch-hero {
    position: relative;
    min-height: 640px;
    padding: 80px 0 100px;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(ellipse at top, #fdf6f6 0%, #fff 60%);
}

/* blobs */
.sch-hero__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.sch-hero__blob {
    position: absolute;
    width: 56vw;
    max-width: 800px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .7;
    will-change: transform;
}
.sch-hero__blob--red {
    top: -15%; left: -12%;
    background: radial-gradient(circle, rgba(198,40,40,.55) 0%, rgba(198,40,40,0) 65%);
    animation: schBlob1 38s ease-in-out infinite;
}
.sch-hero__blob--gold {
    bottom: -20%; right: -10%;
    background: radial-gradient(circle, rgba(212,162,74,.45) 0%, rgba(212,162,74,0) 65%);
    animation: schBlob2 52s ease-in-out infinite;
}
.sch-hero__blob--ink {
    top: 30%; left: 40%;
    width: 40vw; max-width: 520px;
    background: radial-gradient(circle, rgba(36,36,64,.22) 0%, rgba(36,36,64,0) 70%);
    animation: schBlob3 60s ease-in-out infinite;
    opacity: .5;
}
@keyframes schBlob1 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes schBlob2 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(-80px, -30px) scale(1.12); }
}
@keyframes schBlob3 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(40px, -60px) scale(1.05); }
}

/* floating chars */
.sch-hero__chars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.sch-hero__char {
    position: absolute;
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-weight: 300;
    color: var(--sch-ink);
    user-select: none;
    will-change: transform, opacity;
    animation-name: schCharDrift;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes schCharDrift {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    25%      { transform: translate(18px, -22px) rotate(3deg); }
    50%      { transform: translate(-14px, -36px) rotate(-2deg); }
    75%      { transform: translate(22px, -12px) rotate(4deg); }
}

/* hero content */
.sch-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--sch-maxw);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.sch-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: 999px;
    box-shadow: var(--sch-shadow-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--sch-ink-2);
}
.sch-hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sch-brand);
    box-shadow: 0 0 0 4px rgba(198,40,40,.15);
    animation: schPulse 2s ease-in-out infinite;
}
@keyframes schPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(198,40,40,.15); }
    50%      { box-shadow: 0 0 0 8px rgba(198,40,40,.05); }
}
.sch-hero__title {
    margin: 0 0 24px;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.sch-hero__title-line {
    display: block;
}
.sch-hero__ch {
    display: inline-block;
    margin-left: 8px;
    font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
    font-weight: 500;
    color: var(--sch-brand);
    font-size: 0.85em;
    vertical-align: baseline;
}
.sch-hero__title-grad {
    background: linear-gradient(120deg, var(--sch-brand) 0%, var(--sch-gold) 50%, var(--sch-brand) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: schGradShift 6s linear infinite;
}
@keyframes schGradShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.sch-hero__sub {
    max-width: 720px;
    margin: 0 auto 36px;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--sch-ink-2);
    line-height: 1.6;
}
.sch-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 56px;
}
.sch-hero__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.sch-hero__metrics li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    color: var(--sch-muted);
}
.sch-hero__metrics strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--sch-ink);
    letter-spacing: -0.01em;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.sch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.sch-btn:hover { transform: translateY(-1px); }
.sch-btn:active { transform: translateY(0); }
.sch-btn--primary {
    background: var(--sch-brand);
    color: #fff;
    box-shadow: 0 6px 18px rgba(198,40,40,.35);
}
.sch-btn--primary:hover {
    background: var(--sch-brand-dk);
    box-shadow: 0 10px 28px rgba(198,40,40,.45);
    color: #fff;
}
.sch-btn--ghost {
    background: #fff;
    border-color: var(--sch-line);
    color: var(--sch-ink);
    box-shadow: var(--sch-shadow-sm);
}
.sch-btn--ghost:hover {
    border-color: var(--sch-brand);
    color: var(--sch-brand);
}
.sch-btn--lg {
    padding: 18px 32px;
    font-size: 16px;
    border-radius: 14px;
}
.sch-btn__spinner {
    display: none;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: schSpin .7s linear infinite;
}
.sch-btn.is-loading .sch-btn__label { opacity: .6; }
.sch-btn.is-loading .sch-btn__spinner { display: inline-block; }
.sch-btn.is-loading { pointer-events: none; }
@keyframes schSpin { to { transform: rotate(360deg); } }

/* =========================================================
   SECTION COMMON
   ========================================================= */
.sch-section {
    padding: 96px 0;
    max-width: var(--sch-maxw);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.sch-section__head {
    text-align: center;
    margin-bottom: 56px;
}
.sch-section__kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: rgba(198,40,40,.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--sch-brand);
}
.sch-section__kicker--light {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.sch-section__title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.sch-section__lead {
    max-width: 640px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--sch-muted);
    line-height: 1.6;
}

/* =========================================================
   METHODS
   ========================================================= */
.sch-methods {
    background: var(--sch-bg);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.sch-methods > .sch-section__head,
.sch-methods > .sch-methods__grid {
    max-width: var(--sch-maxw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.sch-methods__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.sch-method {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: var(--sch-radius);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sch-method:hover {
    transform: translateY(-4px);
    border-color: rgba(198,40,40,.3);
    box-shadow: var(--sch-shadow-md);
}
.sch-method__icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(198,40,40,.08);
    border-radius: 12px;
    color: var(--sch-brand);
}
.sch-method__icon svg { width: 26px; height: 26px; }
.sch-method__title {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.sch-method__desc {
    margin: 0;
    font-size: 15px;
    color: var(--sch-muted);
    line-height: 1.6;
}

/* =========================================================
   ROADMAP
   ========================================================= */
.sch-roadmap__rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.sch-roadmap__rail::before {
    content: '';
    position: absolute;
    left: 5%; right: 5%;
    top: 48px;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #2196F3, #FF9800, var(--sch-brand));
    opacity: .3;
    z-index: 0;
}
.sch-roadmap__node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: var(--sch-radius);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sch-roadmap__node:hover {
    transform: translateY(-6px);
    border-color: var(--node-color);
    box-shadow: 0 20px 40px rgba(21,21,42,.1);
}
.sch-roadmap__step {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--sch-muted);
    margin-bottom: 4px;
}
.sch-roadmap__cn {
    font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
    color: var(--node-color);
    margin-bottom: 12px;
}
.sch-roadmap__name {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.sch-roadmap__hsk {
    display: inline-block;
    padding: 4px 10px;
    background: var(--node-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    align-self: flex-start;
}
.sch-roadmap__sub {
    margin: 0 0 18px;
    font-size: 14px;
    color: var(--sch-muted);
    line-height: 1.5;
}
.sch-roadmap__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--sch-ink-2);
}
.sch-roadmap__meta li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--sch-line);
}
.sch-roadmap__meta li:last-child { border-bottom: 0; }
.sch-roadmap__more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--node-color);
}

/* =========================================================
   PLANS
   ========================================================= */
.sch-plans {
    background: linear-gradient(180deg, #fff 0%, #faf7f7 100%);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.sch-plans > .sch-section__head,
.sch-plans > .sch-plans__grid {
    max-width: var(--sch-maxw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.sch-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.sch-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: var(--sch-radius);
    transition: transform .2s ease, box-shadow .2s ease;
}
.sch-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--sch-shadow-md);
}
.sch-plan--popular {
    border-color: var(--sch-brand);
    box-shadow: 0 20px 48px rgba(198,40,40,.12);
}
.sch-plan__badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: var(--sch-brand);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}
.sch-plan__name {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.sch-plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sch-line);
}
.sch-plan__price-value {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--sch-brand);
}
.sch-plan__price-unit {
    font-size: 14px;
    color: var(--sch-muted);
}
.sch-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.sch-plan__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--sch-ink-2);
}
.sch-plan__features svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--sch-brand);
}
.sch-plan__cta {
    display: block;
    padding: 14px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: 12px;
    color: var(--sch-ink);
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.sch-plan__cta:hover {
    background: var(--sch-brand);
    border-color: var(--sch-brand);
    color: #fff;
}
.sch-plan--popular .sch-plan__cta {
    background: var(--sch-brand);
    border-color: var(--sch-brand);
    color: #fff;
}
.sch-plan--popular .sch-plan__cta:hover {
    background: var(--sch-brand-dk);
}

/* =========================================================
   TEACHERS
   ========================================================= */
.sch-teachers__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.sch-teacher {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: var(--sch-radius);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sch-teacher:hover {
    transform: translateY(-4px);
    border-color: rgba(198,40,40,.3);
    box-shadow: var(--sch-shadow-md);
}
.sch-teacher__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
.sch-teacher__avatar {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--avatar-color), color-mix(in srgb, var(--avatar-color) 65%, #000));
    box-shadow: 0 8px 20px color-mix(in srgb, var(--avatar-color) 30%, transparent);
}
.sch-teacher__avatar span { line-height: 1; }
.sch-teacher__name {
    margin: 0 0 4px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.sch-teacher__role {
    font-size: 13px;
    color: var(--sch-muted);
    line-height: 1.4;
}
.sch-teacher__facts {
    list-style: none;
    padding: 18px 0;
    margin: 0 0 18px;
    border-top: 1px solid var(--sch-line);
    border-bottom: 1px solid var(--sch-line);
}
.sch-teacher__facts li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--sch-ink-2);
}
.sch-teacher__facts span {
    font-size: 12px;
    color: var(--sch-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    padding-top: 2px;
}
.sch-teacher__quote {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-style: italic;
    color: var(--sch-ink-2);
    line-height: 1.6;
    border: 0;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.sch-reviews {
    background: var(--sch-bg);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.sch-reviews > .sch-section__head,
.sch-reviews > .sch-reviews__grid {
    max-width: var(--sch-maxw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.sch-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.sch-review {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: var(--sch-radius);
}
.sch-review__stars {
    color: var(--sch-gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.sch-review__text {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--sch-ink-2);
}
.sch-review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sch-review__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sch-brand), var(--sch-brand-dk));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
}
.sch-review__name {
    font-size: 14px;
    font-weight: 700;
}
.sch-review__level {
    font-size: 12px;
    color: var(--sch-muted);
}

/* =========================================================
   FAQ
   ========================================================= */
.sch-faq__list {
    max-width: 1100px;
    margin: 0 auto;
}
.sch-faq__item {
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: var(--sch-radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.sch-faq__item[open] {
    border-color: rgba(198,40,40,.25);
}
.sch-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--sch-ink);
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.sch-faq__question::-webkit-details-marker { display: none; }
.sch-faq__chevron {
    flex-shrink: 0;
    color: var(--sch-muted);
    transition: transform .2s ease;
}
.sch-faq__item[open] .sch-faq__chevron { transform: rotate(180deg); }
.sch-faq__answer {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--sch-ink-2);
    line-height: 1.65;
}

/* =========================================================
   REGISTER
   ========================================================= */
.sch-register {
    background: linear-gradient(135deg, #1a1a2e 0%, #242440 50%, #c62828 100%);
    color: #fff;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.sch-register::before {
    content: '学';
    position: absolute;
    top: -40px;
    right: -60px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 440px;
    color: rgba(255,255,255,.04);
    line-height: 1;
    pointer-events: none;
}
.sch-register__inner {
    position: relative;
    z-index: 1;
    max-width: var(--sch-maxw);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.sch-register__title {
    margin: 14px 0 16px;
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.sch-register__lead {
    margin: 0 0 24px;
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
}
.sch-register__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sch-register__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255,255,255,.9);
}
.sch-register__bullets svg {
    color: var(--sch-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

/* form */
.sch-form {
    background: #fff;
    border-radius: var(--sch-radius-lg);
    padding: 36px;
    box-shadow: var(--sch-shadow-lg);
    color: var(--sch-ink);
    position: relative;
}
.sch-form__row {
    margin-bottom: 16px;
}
.sch-form__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.sch-field {
    display: block;
}
.sch-field__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sch-ink-2);
    margin-bottom: 6px;
}
.sch-field__input {
    width: 100%;
    padding: 13px 14px;
    background: var(--sch-bg);
    border: 1px solid var(--sch-line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--sch-ink);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.sch-field__input:focus {
    outline: none;
    background: #fff;
    border-color: var(--sch-brand);
    box-shadow: 0 0 0 3px rgba(198,40,40,.12);
}
.sch-field__textarea {
    resize: vertical;
    min-height: 72px;
    font-family: inherit;
    line-height: 1.5;
}
.sch-field__select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.sch-field.is-error .sch-field__input {
    border-color: var(--sch-brand);
    background: #fff6f6;
}
.sch-field__error {
    display: none;
    margin-top: 6px;
    font-size: 12px;
    color: var(--sch-brand);
}
.sch-field.is-error .sch-field__error {
    display: block;
}
.sch-form__submit {
    margin-top: 20px;
}
.sch-form__submit .sch-btn {
    width: 100%;
}
.sch-form__agree {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--sch-muted);
    text-align: center;
    line-height: 1.5;
}
.sch-form__agree a {
    color: var(--sch-brand);
    text-decoration: none;
}
.sch-form__status {
    display: none;
    padding: 24px;
    margin-top: 20px;
    background: #f0faf4;
    border: 1px solid #b7e4c7;
    border-radius: var(--sch-radius-sm);
    text-align: center;
}
.sch-form__status--error {
    background: #fef2f2;
    border-color: #fecaca;
}
.sch-form__status.is-visible {
    display: block;
    animation: schFadeIn .3s ease;
}
@keyframes schFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sch-form__status-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #2f855a;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.sch-form__status--error .sch-form__status-ico {
    background: var(--sch-brand);
}
.sch-form__status h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}
.sch-form__status p {
    margin: 0;
    font-size: 14px;
    color: var(--sch-ink-2);
}
.sch-form.is-sent .sch-form__row,
.sch-form.is-sent .sch-form__submit,
.sch-form.is-error-global .sch-form__row,
.sch-form.is-error-global .sch-form__submit { opacity: .3; pointer-events: none; }

/* =========================================================
   MODAL (QUIZ)
   ========================================================= */
.sch-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.sch-modal[hidden] { display: none; }
.sch-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(21,21,42,.65);
    backdrop-filter: blur(4px);
    animation: schFadeIn .2s ease;
}
.sch-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: var(--sch-radius);
    padding: 36px;
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--sch-shadow-lg);
    animation: schSlideUp .25s ease;
}
@keyframes schSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sch-modal__close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: var(--sch-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: background .2s ease;
}
.sch-modal__close:hover {
    background: var(--sch-bg);
    color: var(--sch-ink);
}
.sch-modal__title {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding-right: 32px;
}

/* quiz */
.sch-quiz__progress {
    height: 6px;
    background: var(--sch-bg);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}
.sch-quiz__progress-bar {
    display: block;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--sch-brand), var(--sch-gold));
    transition: width .3s ease;
}
.sch-quiz__counter {
    font-size: 13px;
    color: var(--sch-muted);
    margin-bottom: 24px;
}
.sch-quiz__counter span { font-weight: 700; color: var(--sch-ink); }
.sch-quiz__question {
    display: none;
}
.sch-quiz__question.is-active {
    display: block;
    animation: schFadeIn .3s ease;
}
.sch-quiz__q {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.4;
}
.sch-quiz__options {
    display: grid;
    gap: 10px;
}
.sch-quiz__option {
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--sch-line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--sch-ink);
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.sch-quiz__option:hover {
    border-color: var(--sch-brand);
    background: rgba(198,40,40,.04);
}
.sch-quiz__option.is-selected {
    background: var(--sch-brand);
    border-color: var(--sch-brand);
    color: #fff;
}
.sch-quiz__result {
    text-align: center;
    padding: 16px 0;
}
.sch-quiz__result-kicker {
    font-size: 13px;
    color: var(--sch-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}
.sch-quiz__result-level {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 800;
    color: var(--sch-brand);
}
.sch-quiz__result-desc {
    margin: 0 0 24px;
    font-size: 15px;
    color: var(--sch-ink-2);
    line-height: 1.6;
}
.sch-quiz__result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
}
.sch-quiz__restart {
    display: inline-block;
    padding: 8px 14px;
    background: transparent;
    border: 0;
    color: var(--sch-muted);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}
.sch-quiz__restart:hover { color: var(--sch-ink); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .sch-hero { min-height: 540px; padding: 60px 0 80px; }
    .sch-section { padding: 72px 0; }
    .sch-methods__grid,
    .sch-plans__grid,
    .sch-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sch-roadmap__rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sch-roadmap__rail::before { display: none; }
    .sch-register__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sch-teachers__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .sch-hero { min-height: 440px; padding: 48px 0 60px; }
    .sch-hero__actions .sch-btn { width: 100%; }
    .sch-hero__metrics { gap: 10px 24px; }
    .sch-hero__metrics strong { font-size: 18px; }
    .sch-hero__metrics li { font-size: 13px; }
    .sch-section { padding: 60px 0; padding-left: 16px; padding-right: 16px; }
    .sch-methods > .sch-section__head,
    .sch-methods > .sch-methods__grid,
    .sch-plans > .sch-section__head,
    .sch-plans > .sch-plans__grid,
    .sch-reviews > .sch-section__head,
    .sch-reviews > .sch-reviews__grid {
        padding-left: 16px;
        padding-right: 16px;
    }
    .sch-methods__grid,
    .sch-plans__grid,
    .sch-reviews__grid,
    .sch-roadmap__rail {
        grid-template-columns: 1fr;
    }
    .sch-form { padding: 24px; }
    .sch-form__row--2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sch-register { padding: 60px 0; }
    .sch-register__inner { padding: 0 16px; }
    .sch-modal__dialog { padding: 24px; }
    .sch-hero__title { font-size: 40px; }
}

/* End */
/* /local/components/china/school/templates/.default/style.css?177664489930037 */
