:root {
    --brand: #0250a3;
    --brand-dark: #003f82;
    --brand-deep: #062b57;
    --accent: #04aeef;
    --accent-soft: #e6f7ff;
    --cream: #f1f8fd;
    --ink: #102033;
    --muted: #607489;
    --line: #dbe8f2;
    --soft: #f5f9fc;
    --white: #fff;
    --shadow-sm: 0 10px 28px rgba(2, 43, 87, .09);
    --shadow: 0 22px 54px rgba(2, 43, 87, .14);
    --shadow-lg: 0 30px 80px rgba(2, 43, 87, .22);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --red: var(--brand);
    --red-dark: var(--brand-dark);
    --red-deep: var(--brand-deep);
    --gold: var(--accent);
    --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-decor: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { scrollbar-color: var(--brand) var(--soft); scrollbar-width: thin; }
::selection { background: var(--accent); color: var(--brand-deep); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--soft); }
::-webkit-scrollbar-thumb { border: 3px solid var(--soft); border-radius: 999px; background: var(--brand); }
.skip-link {
    position: fixed;
    z-index: 1100;
    top: 12px;
    left: 12px;
    padding: .75rem 1rem;
    border-radius: 4px;
    background: #fff;
    color: var(--red-dark);
    font-weight: 800;
    box-shadow: var(--shadow);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
body {
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    background: var(--white);
}
a { color: inherit; text-decoration: none; text-underline-offset: .2em; }
img { max-width: 100%; }
button, a, input, select, textarea { touch-action: manipulation; }
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
main:focus { outline: 0; }
h1, h2, h3, .navbar-brand strong {
    font-family: var(--font-display);
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
}
h1, h2, h3 { letter-spacing: -.025em; text-wrap: balance; }
p, li { text-wrap: pretty; }
h1 { font-size: clamp(2.6rem, 6vw, 5.3rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.12; }
h3 { font-size: 1.3rem; }
.container { max-width: 1220px; }
.container-narrow { width: min(100% - 2rem, 820px); margin-inline: auto; }
.section-space { padding: 92px 0; }
.bg-soft { background: var(--soft); }
.text-brand { color: var(--red) !important; }
.topbar {
    padding: 7px 0;
    background: var(--red-deep);
    color: #d8efff;
    font-size: .78rem;
    letter-spacing: .04em;
}
.topbar a { color: var(--gold); font-weight: 700; }
.navbar { min-height: 82px; border-bottom: 1px solid rgba(2,80,163,.08); box-shadow: 0 10px 32px rgba(2,43,87,.07) !important; }
.navbar-toggler { min-width: 44px; min-height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.navbar-brand { line-height: 1; color: var(--red-dark); }
.navbar-brand strong { display: block; font-size: 1rem; letter-spacing: .03em; }
.navbar-brand small { display: block; margin-top: 6px; color: var(--muted); font-size: .6rem; letter-spacing: .16em; }
.brand-logo, .footer-logo {
    display: block;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}
.brand-logo {
    width: 56px;
    height: 56px;
    border: 1px solid var(--line);
    padding: 3px;
}
.footer-logo {
    width: 64px;
    height: 64px;
    padding: 4px;
}
.navbar .nav-link { position: relative; color: #20354b; font-size: .91rem; font-weight: 650; padding: .7rem .72rem !important; }
.navbar .nav-link:hover, .navbar .nav-link:focus, .navbar .nav-link.active { color: var(--red); }
.navbar .nav-link::after { content: ""; position: absolute; right: .72rem; bottom: .35rem; left: .72rem; height: 2px; border-radius: 999px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out); }
.navbar .nav-link:hover::after, .navbar .nav-link:focus-visible::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.btn { border-radius: 10px; padding: .72rem 1.15rem; font-weight: 750; letter-spacing: .01em; transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background-color .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn.disabled { transform: none; box-shadow: none; }
.btn-lg { padding: .9rem 1.5rem; font-size: 1rem; }
.btn-brand { background: var(--red); border-color: var(--red); color: #fff; }
.btn-brand:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn-outline-brand { border-color: var(--red); color: var(--red); }
.btn-outline-brand:hover { background: var(--red); color: #fff; }
.btn-warning {
    background: var(--accent);
    border-color: var(--accent);
    color: #03294f;
}
.btn-warning:hover, .btn-warning:focus {
    background: #039bd6;
    border-color: #039bd6;
    color: #03294f;
}
.text-warning { color: var(--accent) !important; }
.eyebrow { margin-bottom: 12px; color: var(--red); font-size: .76rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.text-link { color: var(--red); font-weight: 800; }
.text-link span { transition: transform .2s ease; display: inline-block; }
.text-link:hover span { transform: translateX(5px); }
.pill {
    display: inline-block;
    padding: .32rem .65rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--red);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pill-light { background: rgba(255,255,255,.13); color: #fff; }
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 72px;
    background:
        radial-gradient(circle at 87% 18%, rgba(4,174,239,.24), transparent 23%),
        linear-gradient(125deg, #062b57, #0250a3 58%, #04aeef);
    color: white;
}
.home-hero > .container { z-index: 1; }
.home-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -90px;
    bottom: -150px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,.03), 0 0 0 110px rgba(255,255,255,.03);
}
.hero-pattern {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    color: rgba(255,255,255,.035);
    font: 800 13vw/1 var(--font-decor);
    letter-spacing: .15em;
    white-space: nowrap;
    transform: rotate(-8deg) translate(-7%, 35%);
}
.home-journey-banner {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    width: clamp(66px, 8vw, 126px);
    background-image: linear-gradient(165deg, rgba(255,228,124,.94), rgba(247,164,45,.88)), url("../img/study-journey-side-banners-v2.edc9d60b5e91.png");
    background-position: 0% center;
    background-size: cover;
    background-blend-mode: color;
    opacity: .84;
    filter: saturate(1.3) contrast(1.06) brightness(1.1);
    pointer-events: none;
}
.home-journey-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,43,87,0), rgba(6,43,87,.58));
}
.home-journey-banner--left { left: 0; }
.home-journey-banner--right { right: 0; background-position: 100% center; }
.home-journey-banner--right::before { background: linear-gradient(90deg, rgba(6,43,87,.58), rgba(6,43,87,0)); }
.hero-kicker { color: #bdeeff; font-size: .78rem; font-weight: 850; letter-spacing: .16em; }
.home-hero h1 { max-width: 720px; margin: 18px 0 25px; font-size: clamp(3.4rem, 5.2vw, 5.9rem); letter-spacing: -.035em; }
.home-hero h1 span { color: var(--gold); font-style: italic; }
.hero-copy { max-width: 670px; margin-bottom: 32px; color: #e5f5ff; font-size: 1.16rem; }
.hero-stickers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.hero-stickers span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ecf8ff;
    font-size: .82rem;
    font-weight: 750;
    backdrop-filter: blur(7px);
}
.hero-stickers b {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 24px;
    border-radius: 999px;
    background: #fff;
    color: var(--red);
    font-size: .8rem;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 42px; color: #c9e9fb; font-size: .82rem; }
.hero-trust span { display: flex; flex-direction: column; padding-left: 14px; border-left: 2px solid var(--gold); }
.hero-trust b { color: #fff; font-size: 1.35rem; }
.hero-card {
    position: relative;
    z-index: 1;
    max-width: 450px;
    margin-left: auto;
    padding: 28px 32px 32px;
    border-radius: var(--radius-lg);
    background: rgba(2,43,87,.76);
    box-shadow: var(--shadow-lg);
}
.hero-card-sticker {
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--gold);
    color: var(--red-deep);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .02em;
    box-shadow: 0 10px 25px rgba(2,43,87,.22);
}
.hero-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0 0 26px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center;
}
.hero-card-top { display: flex; justify-content: space-between; align-items: start; color: #bdeeff; letter-spacing: .12em; }
.hero-card-top span { font: 2.2rem var(--font-decor); }
.mock-score { display: flex; align-items: end; gap: 16px; margin: 28px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.mock-score span { padding-bottom: 17px; font-size: 1.7rem; font-weight: 850; }
.mock-score strong { color: var(--gold); font: 8rem/.8 var(--font-decor); }
.hero-card a { color: var(--gold); font-weight: 800; }
.trust-strip { padding: 28px 0; border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: var(--red-dark); font-size: .98rem; }
.trust-strip span { color: var(--muted); font-size: .78rem; }
.course-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .25s, box-shadow .25s;
}
.course-card:hover { border-color: transparent; transform: translateY(-7px); box-shadow: var(--shadow); }
.course-card:focus-within { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow); }
.course-visual {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 190px;
    padding: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #0250a3, #04aeef);
    color: white;
}
.course-visual::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -65px;
    top: -85px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255,255,255,.05), 0 0 0 56px rgba(255,255,255,.04);
}
.course-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,43,87,.08) 5%, rgba(2,43,87,.68)); }
.course-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.course-visual > span {
    position: relative;
    z-index: 2;
    align-self: start;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .08em;
    backdrop-filter: blur(6px);
}
.course-visual > strong {
    position: absolute;
    z-index: 1;
    right: 8px;
    bottom: -10px;
    color: rgba(255,255,255,.22);
    font: 6.5rem/.75 var(--font-decor);
    letter-spacing: -.08em;
    text-shadow: 0 16px 35px rgba(2,43,87,.28);
    transform: rotate(-7deg);
}
.course-visual > em {
    position: relative;
    z-index: 2;
    align-self: end;
    padding: 9px 13px;
    border-radius: 10px;
    background: #fff;
    color: var(--red);
    font-style: normal;
    font-weight: 900;
    letter-spacing: .06em;
    box-shadow: 0 12px 28px rgba(2,43,87,.22);
}
.course-card:nth-child(2n) .course-visual, .course-item:nth-child(2n) .course-visual { background: linear-gradient(135deg, #003f82, #4bc5f3); }
.course-card-body { padding: 25px; }
.course-card h3 { margin: 13px 0 10px; font-size: 1.45rem; }
.course-card h3 a:hover { color: var(--red); }
.course-card p { min-height: 78px; color: var(--muted); }
.course-meta { display: flex; justify-content: space-between; margin: 20px 0; padding-top: 17px; border-top: 1px solid var(--line); font-size: .85rem; }
.course-meta strong { color: var(--red); font-size: 1.03rem; }
.roadmap-section { background: var(--cream); }
.study-stickers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: -8px 0 42px;
}
.study-stickers span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid #bfe8fb;
    border-radius: 10px;
    background: #fff;
    color: var(--red-dark);
    font-size: .86rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(2,80,163,.08);
}
.study-stickers span:nth-child(1) { transform: rotate(-2deg); }
.study-stickers span:nth-child(2) { transform: rotate(1.6deg); }
.study-stickers span:nth-child(3) { transform: rotate(-1deg); }
.roadmap { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.roadmap::before { content: ""; position: absolute; left: 8%; right: 8%; top: 62px; height: 1px; background: #b9d7ec; }
.road-step { position: relative; text-align: center; padding: 0 15px; }
.road-step > b { position: absolute; top: 4px; right: 18%; color: #6f9fc6; font-size: .7rem; }
.road-step > span { position: relative; display: grid; place-items: center; width: 90px; height: 90px; margin: 18px auto 25px; border: 1px solid #a9cce6; border-radius: 50%; background: var(--cream); color: var(--red); font: 2.1rem var(--font-decor); }
.road-step h3 { font-size: 1.05rem; }
.road-step p { color: var(--muted); font-size: .83rem; line-height: 1.5; }
.reasons-section { background: #061d38; color: white; }
.reasons-section .lead { color: #c4d9ea; }
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #20415f; }
.reason-grid article { display: flex; gap: 20px; padding: 30px; background: #0b2748; }
.reason-grid article > span { color: var(--gold); font: 2rem var(--font-decor); }
.reason-grid h3 { font-size: 1.12rem; }
.reason-grid p { margin: 0; color: #bfd1e1; font-size: .85rem; }
.learning-snapshots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.learning-snapshots figure {
    margin: 0;
    padding: 8px 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(2,80,163,.1);
}
.learning-snapshots figure:first-child { transform: rotate(-1.4deg); }
.learning-snapshots figure:last-child { transform: rotate(1.2deg); margin-top: 18px; }
.learning-snapshots img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 5px;
    object-fit: cover;
}
.learning-snapshots figcaption {
    margin-top: 9px;
    color: var(--red-dark);
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
}
.schedule-home { border-top: 1px solid var(--line); }
.schedule-home article { display: grid; grid-template-columns: 100px 1fr 100px auto; gap: 25px; align-items: center; padding: 22px 10px; border-bottom: 1px solid var(--line); }
.schedule-home time { text-align: center; border-right: 1px solid var(--line); }
.schedule-home time b, .schedule-home time span { display: block; }
.schedule-home time b { color: var(--red); font: 2.2rem/1 var(--font-decor); }
.schedule-home time span { font-size: .7rem; text-transform: uppercase; }
.schedule-home h3 { margin: 6px 0 0; }
.schedule-home p { margin: 0; color: var(--muted); font-size: .85rem; }
.seats { display: flex; flex-direction: column; text-align: center; }
.seats b { color: var(--red); font-size: 1.4rem; }
.seats span { font-size: .7rem; }
.testimonial-section { background: var(--soft); }
.testimonial-card { position: relative; padding: 30px; border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.testimonial-card .quote { height: 38px; color: var(--gold); font: 4rem/.7 var(--font-decor); }
.testimonial-card > p { color: #31445a; font-size: .95rem; }
.student { display: flex; gap: 12px; align-items: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); }
.student > span, .student > img { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: white; font-weight: 800; object-fit: cover; }
.student strong, .student small { display: block; }
.student small { color: var(--muted); font-size: .75rem; }
.stars { color: var(--accent); letter-spacing: .08em; }
.score-badge { display: inline-block; padding: .25rem .65rem; border-radius: var(--radius-sm); background: var(--accent-soft); color: #02507e; font-weight: 800; box-shadow: inset 0 0 0 1px rgba(4,174,239,.18); }
.consultation-section { background: linear-gradient(180deg, #fff 50%, var(--soft) 50%); }
.consultation-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 55px; padding: 55px; border-radius: var(--radius-lg); background: linear-gradient(125deg, #062b57, #0250a3); color: white; box-shadow: var(--shadow-lg); }
.consultation-panel h2 { margin-bottom: 18px; }
.consultation-panel > div > p { color: #d9effc; }
.consultation-panel li { margin: 10px 0; }
.quick-form { padding: 28px; border-radius: var(--radius); background: white; color: var(--ink); }
.quick-form > div { margin-bottom: 13px; }
.quick-form label, .main-form label { display: block; margin-bottom: 5px; font-size: .78rem; font-weight: 750; }
.quick-form small, .privacy-note { display: block; margin-top: 12px; color: var(--muted); text-align: center; font-size: .7rem; }
.form-check label { display: inline; font-weight: 500; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s, box-shadow .25s var(--ease-out), transform .25s var(--ease-out); }
.blog-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-5px); }
.blog-visual {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 180px;
    padding: 25px;
    background: linear-gradient(145deg, #062b57, #0250a3);
    color: white;
}
.blog-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-visual::before { content: "学习"; color: rgba(255,255,255,.08); position: absolute; font: 7rem var(--font-decor); }
.blog-visual span { position: relative; font: 4.5rem/.8 var(--font-decor); color: var(--gold); }
.blog-visual small { position: relative; font-weight: 800; letter-spacing: .1em; }
.blog-card time { color: var(--red); font-size: .7rem; font-weight: 800; }
.blog-card h2, .blog-card h3 { margin: 10px 0; font-size: 1.35rem; line-height: 1.25; }
.blog-card h2 a:hover, .blog-card h3 a:hover { color: var(--red); }
.blog-card p { color: var(--muted); font-size: .88rem; }
.site-footer { padding: 68px 0 0; background: #061d38; color: #cfdeeb; }
.site-footer p { font-size: .86rem; }
.site-footer a { display: block; margin: 8px 0; color: #d8e8f4; font-size: .85rem; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-title { color: white; font: 800 .75rem/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { margin-top: 45px; padding: 22px 0; border-top: 1px solid #24415f; font-size: .75rem; color: #8fa9bf; }
.quick-actions { position: fixed; z-index: 99; right: 16px; bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.quick-actions a { display: flex; align-items: center; gap: 8px; min-height: 46px; padding: 8px 12px; border-radius: 30px; box-shadow: 0 10px 28px rgba(2,43,87,.24); color: white; font-size: .75rem; transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.quick-actions a:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(2,43,87,.3); }
.quick-actions span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: rgba(255,255,255,.2); font-weight: 900; }
.quick-actions svg { display: block; }
.quick-call { background: var(--red); }
.quick-zalo { background: #0879e8; }
.page-hero { padding: 70px 0 75px; background: linear-gradient(115deg, #f1f8fd, #eaf7ff); border-bottom: 1px solid var(--line); }
.page-hero::after { content: "中文"; position: absolute; right: 8%; top: 145px; color: rgba(2,80,163,.06); font: 9rem var(--font-decor); pointer-events: none; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.page-lead { max-width: 720px; margin-top: 20px; color: var(--muted); font-size: 1.1rem; }
.breadcrumb { font-size: .75rem; }
.breadcrumb a { color: var(--red); }
.about-visual { display: flex; align-items: center; justify-content: center; min-height: 410px; background: var(--red); color: white; }
.about-visual > span { padding: 50px; border-right: 1px solid rgba(255,255,255,.3); font: 8rem var(--font-decor); }
.about-visual > div { display: flex; flex-direction: column; gap: 20px; padding: 35px; color: var(--gold); font-size: .75rem; letter-spacing: .15em; }
.value-card { height: 100%; padding: 40px 30px; border-top: 3px solid var(--red); background: white; box-shadow: 0 10px 35px rgba(2,80,163,.08); }
.value-card > span { color: var(--red); font: 3rem var(--font-decor); }
.value-card p { color: var(--muted); }
.method-list { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.method-list > div { position: relative; padding: 30px; border: 1px solid var(--line); }
.method-list b { color: #c6dcea; font: 2.5rem var(--font-decor); }
.method-list h3 { margin-top: -13px; color: var(--red); }
.method-list p { margin: 0; color: var(--muted); font-size: .87rem; }
.cta-band { padding: 55px 0; background: #062b57; color: white; }
.cta-band h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.faq-accordion .accordion-item { border: 0; border-bottom: 1px solid var(--line); }
.faq-accordion .accordion-button { padding: 23px 8px; background: white; box-shadow: none; color: var(--ink); font: 700 1.15rem var(--font-display); }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--red); }
.faq-accordion .accordion-body { padding: 5px 8px 25px; color: var(--muted); }
.help-card, .sticky-enroll { padding: 32px; border-top: 4px solid var(--gold); background: var(--soft); }
.help-card > span, .hanzi { color: var(--red); font: 4rem var(--font-decor); }
.help-card h2, .sticky-enroll h2 { font-size: 1.65rem; }
.contact-card { height: 100%; padding: 28px; border: 1px solid var(--line); }
.contact-card > span { display: block; color: var(--red); font: 2rem var(--font-decor); }
.contact-card small, .contact-card strong, .contact-card a { display: block; }
.contact-card small { margin: 9px 0; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.contact-card strong, .contact-card a { font-weight: 800; }
.contact-card p { margin: 10px 0 0; color: var(--muted); font-size: .78rem; }
.map-wrap { position: relative; min-height: 460px; background: var(--soft); }
.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; margin: -18px 0 35px; }
.map-info { position: absolute; left: 30px; bottom: 30px; width: min(370px, calc(100% - 60px)); padding: 28px; background: white; box-shadow: var(--shadow); }
.map-info h2 { font-size: 1.5rem; }
.course-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.course-filter button { padding: 9px 16px; border: 1px solid var(--line); background: white; color: var(--muted); font-size: .8rem; font-weight: 750; }
.course-filter button.active, .course-filter button:hover { border-color: var(--red); background: var(--red); color: white; }
.course-detail-hero { padding: 75px 0; background: linear-gradient(120deg, #062b57, #0250a3); color: white; }
.course-detail-hero .breadcrumb-item, .course-detail-hero .breadcrumb-item::before { color: #bedff3; }
.course-detail-hero .breadcrumb a { color: var(--gold); }
.course-detail-hero h1 { margin: 18px 0; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.course-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.course-facts > div { display: flex; flex-direction: column; padding: 24px; background: rgba(2,43,87,.58); }
.course-facts span { color: var(--gold); font: 2rem var(--font-decor); }
.course-facts small { margin: 8px 0 3px; color: #bddcf0; font-size: .65rem; letter-spacing: .1em; }
.prose h2 { margin: 38px 0 15px; font-size: 2rem; }
.prose p { color: #31445a; }
.outcomes-box { margin-top: 45px; padding: 35px; background: var(--cream); }
.outcome-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 30px; }
.outcome-grid > div { display: flex; gap: 12px; }
.outcome-grid span { display: grid; flex: 0 0 26px; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: white; font-size: .75rem; }
.outcome-grid p { margin: 0; font-size: .88rem; }
.syllabus { border-top: 1px solid var(--line); }
.syllabus > div { display: grid; grid-template-columns: 65px 1fr; gap: 20px; padding: 22px 10px; border-bottom: 1px solid var(--line); }
.syllabus b { color: var(--red); font: 1.5rem var(--font-decor); }
.syllabus p { margin: 0; }
.detail-schedule { display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 20px; padding: 18px; border-bottom: 1px solid var(--line); background: var(--soft); }
.detail-schedule time { color: var(--red); font-weight: 800; }
.detail-schedule p { margin: 0; color: var(--muted); font-size: .82rem; }
.detail-schedule > span { color: var(--red); font-weight: 800; }
.sticky-enroll { position: sticky; top: 115px; box-shadow: var(--shadow); }
.sticky-enroll .price { display: block; color: var(--red); font: 2rem var(--font-decor); }
.schedule-filter { display: flex; align-items: center; gap: 15px; max-width: 600px; margin-bottom: 35px; }
.schedule-filter label { flex: 0 0 auto; font-weight: 800; }
.schedule-table-wrap { border: 1px solid var(--line); }
.schedule-table { margin: 0; min-width: 980px; }
.schedule-table th { padding: 15px; background: var(--red-dark); color: white; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; }
.schedule-table td { padding: 17px 15px; }
.schedule-table time b, .schedule-table time span, .schedule-table td:nth-child(2) span, .schedule-table td:nth-child(2) a { display: block; }
.schedule-table time b { color: var(--red); font-size: 1.1rem; }
.schedule-table time span, .class-code { color: var(--muted); font-size: .7rem; }
.format-badge { padding: .3rem .55rem; background: var(--soft); font-size: .72rem; }
.form-page { padding: 90px 0; background: linear-gradient(115deg, #062b57 0, #0250a3 48%, var(--soft) 48%); color: white; }
.form-page-gold { background: linear-gradient(115deg, #04aeef 0, #8ddfff 48%, var(--soft) 48%); color: var(--ink); }
.form-page h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); }
.form-page .lead { max-width: 500px; color: #d9effc; }
.form-page-gold .lead { color: #0b4369; }
.form-benefits { margin-top: 35px; }
.form-benefits > div { display: flex; gap: 18px; margin: 18px 0; }
.form-benefits span { color: var(--gold); font-weight: 800; }
.form-benefits p { margin: 0; }
.trial-note { display: flex; gap: 22px; margin-top: 35px; padding: 25px; background: rgba(255,255,255,.23); }
.trial-note > span { font: 3rem var(--font-decor); color: var(--red); }
.main-form { padding: 40px; border-radius: var(--radius); background: white; color: var(--ink); box-shadow: var(--shadow); }
.main-form h2 { font-size: 1.9rem; }
.main-form > p { color: var(--muted); font-size: .86rem; }
.form-control, .form-select { min-height: 48px; border-color: #cdddea; border-radius: var(--radius-sm); }
textarea.form-control { min-height: 96px; }
.form-control:focus, .form-select:focus { border-color: var(--red); box-shadow: 0 0 0 .2rem rgba(4,174,239,.18); }
.btn[aria-busy="true"] { cursor: wait; opacity: .82; }
.course-size { display: inline-flex; align-items: center; gap: 6px; }
.home-hero .hero-kicker,
.home-hero h1,
.home-hero .hero-copy,
.home-hero .hero-stickers,
.home-hero .hero-trust,
.home-hero .hero-card {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transition: opacity .65s var(--ease-out), filter .65s var(--ease-out), transform .65s var(--ease-out);
}
@starting-style {
    .home-hero .hero-kicker,
    .home-hero h1,
    .home-hero .hero-copy,
    .home-hero .hero-stickers,
    .home-hero .hero-trust,
    .home-hero .hero-card {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(18px);
    }
}
.success-page { display: grid; place-items: center; min-height: 70vh; padding: 75px 15px; background: var(--cream); }
.success-card { max-width: 650px; padding: 55px; background: white; text-align: center; box-shadow: var(--shadow); }
.success-card > span { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 25px; border-radius: 50%; background: #e8f5ea; color: #258238; font-size: 2rem; }
.success-card h1 { font-size: 3rem; }
.stats-band { padding: 35px 0; background: var(--red); color: white; }
.stats-band .container { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stats-band .container > div { border-right: 1px solid rgba(255,255,255,.25); }
.stats-band .container > div:last-child { border: 0; }
.stats-band strong, .stats-band span { display: block; }
.stats-band strong { color: var(--gold); font: 2.5rem var(--font-decor); }
.stats-band span { font-size: .75rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 22px; align-items: start; }
.gallery-item { position: relative; overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: 0 10px 30px rgba(2,80,163,.08); }
.gallery-art { position: relative; display: grid; place-items: center; min-height: 260px; overflow: hidden; background: #fff; color: white; }
.gallery-art > span { z-index: 1; font: 6rem var(--font-decor); color: var(--gold); }
.gallery-art > img { display: block; width: 100%; height: auto; object-fit: contain; }
.gallery-pattern { position: absolute; color: rgba(255,255,255,.09); font: 3.5rem/1.5 var(--font-decor); transform: rotate(-15deg); }
.art-2, .art-5, .art-8 { background: linear-gradient(145deg, #0250a3, #04aeef); }
.art-3, .art-6, .art-9 { background: linear-gradient(145deg, #061d38, #4a82bd); }
.gallery-caption { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding: 18px 20px; border-top: 1px solid var(--line); background: #fff; color: var(--ink); }
.gallery-caption h2 { margin: 0; font-size: 1.15rem; }
.gallery-caption p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }
.gallery-caption time { flex: 0 0 auto; color: var(--red); font-size: .72rem; font-weight: 800; }
.article-header { padding: 78px 0 64px; background: var(--red-dark); color: white; text-align: center; }
.article-header h1 { margin: 22px auto; font-size: clamp(2.5rem, 5vw, 4.3rem); }
.article-excerpt { color: #d9ecf8; font-size: 1.1rem; }
.article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 30px; margin-top: 25px; color: #bdd6e9; font-size: .75rem; }
.article-featured-media {
    margin-top: -34px;
    margin-bottom: 0;
}
.article-featured-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    border: 8px solid #fff;
    box-shadow: var(--shadow);
}
.article-body { padding-top: 70px; padding-bottom: 80px; }
.article-body > p { margin-bottom: 25px; color: #31445a; font-family: var(--font-sans); font-size: 1.08rem; line-height: 1.85; }
.article-body > .lead { color: var(--ink); font-size: 1.35rem; }
.article-cta { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; margin-top: 50px; padding: 28px; background: var(--red); color: white; }
.article-cta > span { color: var(--gold); font: 3rem var(--font-decor); }
.article-cta h2 { font-size: 1.3rem; }
.article-cta p { margin: 0; color: #d8effc; font-size: .82rem; }

.study-abroad-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 0 76px;
    background:
        radial-gradient(circle at 8% 10%, rgba(4,174,239,.19), transparent 25%),
        linear-gradient(125deg, var(--brand-deep), var(--brand) 72%, #067ab4);
    color: #fff;
}
.study-abroad-hero > .container { position: relative; z-index: 1; }
.study-journey-ribbon {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    width: clamp(72px, 9vw, 140px);
    background-image: linear-gradient(165deg, rgba(255,228,124,.94), rgba(247,164,45,.88)), url("../img/study-journey-side-banners-v2.edc9d60b5e91.png");
    background-position: 0% center;
    background-size: cover;
    background-blend-mode: color;
    opacity: .94;
    filter: saturate(1.3) contrast(1.06) brightness(1.1);
    pointer-events: none;
}
.study-journey-ribbon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,43,87,0), rgba(6,43,87,.56));
}
.study-journey-ribbon--left { left: 0; }
.study-journey-ribbon--right { right: 0; background-position: 100% center; }
.study-journey-ribbon--right::before { background: linear-gradient(90deg, rgba(6,43,87,.74), rgba(6,43,87,0)); }
.study-abroad-hero::after {
    content: "留学";
    position: absolute;
    right: -18px;
    bottom: -65px;
    color: rgba(255,255,255,.04);
    font: 12rem/1 var(--font-decor);
    pointer-events: none;
}
.study-breadcrumb, .study-breadcrumb a { color: #cfeaff; }
.study-breadcrumb .active, .study-breadcrumb .breadcrumb-item::before { color: #9ecbe6; }
.study-abroad-hero h1 { max-width: 660px; margin: 16px 0 24px; font-size: clamp(3rem, 5.4vw, 5.25rem); }
.study-hero-copy { max-width: 620px; color: #e0f3ff; font-size: 1.12rem; }
.study-hero-actions { margin-top: 30px; }
.study-boundary { display: flex; gap: 10px; align-items: flex-start; margin: 24px 0 0; color: #c7e8fa; font-size: .82rem; }
.study-boundary span { color: var(--gold); font-weight: 900; }
.study-hero-visual { position: relative; z-index: 1; overflow: hidden; border: 8px solid rgba(255,255,255,.9); background: #dff3ff; box-shadow: 0 28px 70px rgba(0,26,55,.34); }
.study-hero-visual img { display: block; width: 100%; height: clamp(570px, 48vw, 700px); object-fit: cover; object-position: 64% center; }
.study-hero-visual figcaption { position: absolute; right: 12px; bottom: 12px; padding: 6px 10px; background: rgba(6,43,87,.82); color: #dcefff; font-size: .68rem; }
.study-hero-focus { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 650px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); }
.study-hero-focus > div { min-width: 0; padding: 0 18px; border-right: 1px solid rgba(255,255,255,.18); }
.study-hero-focus > div:first-child { padding-left: 0; }
.study-hero-focus > div:last-child { padding-right: 0; border-right: 0; }
.study-hero-focus span { display: block; margin-bottom: 8px; color: var(--gold); font: 1.1rem/1 var(--font-decor); }
.study-hero-focus strong { display: block; color: #fff; font-size: .93rem; }
.study-hero-focus p { margin: 5px 0 0; color: #bcdff3; font-size: .75rem; line-height: 1.45; }
.study-topic-card { height: 100%; padding: 31px 27px; border: 1px solid var(--line); border-top: 4px solid var(--brand); background: #fff; box-shadow: 0 12px 32px rgba(2,80,163,.07); }
.study-topic-card > span { display: inline-block; margin-bottom: 26px; color: #b6cfdf; font: 2.2rem/1 var(--font-decor); }
.study-topic-card h3 { min-height: 3.05rem; color: var(--brand-dark); }
.study-topic-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.study-route { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.study-route-step { position: relative; padding: 28px 22px; border-right: 1px solid var(--line); background: #fff; }
.study-route-step:last-child { border-right: 0; }
.study-route-step b { display: block; margin-bottom: 34px; color: var(--brand); font: 2.2rem/1 var(--font-decor); }
.study-route-step h3 { font-size: 1.08rem; }
.study-route-step p { margin: 0; color: var(--muted); font-size: .82rem; }
.study-assurance { padding: 44px; border-radius: var(--radius); background: var(--brand-deep); color: #fff; box-shadow: var(--shadow); }
.study-assurance h2 { max-width: 720px; margin-bottom: 32px; font-size: clamp(2rem, 4vw, 3.05rem); }
.study-check-list { display: grid; gap: 18px; }
.study-check-list > div { display: grid; grid-template-columns: 32px 1fr; gap: 13px; }
.study-check-list span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--accent); color: #03335a; font-weight: 900; }
.study-check-list p { margin: 0; color: #d6eaf6; }
.study-check-list strong { color: #fff; }
.study-prepare { padding: 40px; border-radius: var(--radius); background: var(--soft); }
.study-prepare h2 { margin: 4px 0 24px; font-size: 2rem; }
.study-prepare li { margin-bottom: 12px; color: #31445a; }
.study-prepare > p { padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.study-final-cta p:last-child { margin-top: 12px; color: #cfe5f2; }

@media (max-width: 1199.98px) {
    .navbar-collapse { margin-top: 10px; padding: 15px 0 22px; border-top: 1px solid var(--line); }
    .navbar .btn { margin: 10px 0 0 !important; }
    .navbar .nav-link { min-height: 44px; display: flex; align-items: center; }
    .navbar .nav-link::after { right: auto; bottom: .45rem; width: 32px; }
    .study-route { grid-template-columns: repeat(3, 1fr); }
    .study-route-step:nth-child(3) { border-right: 0; }
    .study-route-step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 991.98px) {
    .section-space { padding: 70px 0; }
    .home-hero { padding: 75px 0; }
    .home-hero h1 { max-width: 100%; font-size: clamp(3rem, 9vw, 5rem); }
    .hero-card { max-width: 100%; margin: 0; }
    .learning-snapshots { max-width: 620px; }
    .roadmap { grid-template-columns: repeat(3, 1fr); gap: 25px 0; }
    .roadmap::before { display: none; }
    .consultation-panel { grid-template-columns: 1fr; }
    .form-page, .form-page-gold { background: var(--red-dark); }
    .form-page-gold { background: #8ddfff; }
    .sticky-enroll { position: static; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
    .page-hero::after { display: none; }
    .study-abroad-hero { padding-top: 35px; }
    .study-abroad-hero::after { display: none; }
    .home-journey-banner { width: clamp(52px, 9vw, 72px); opacity: .68; }
    .study-journey-ribbon { width: clamp(56px, 10vw, 84px); opacity: .84; }
    .study-hero-visual { max-width: 760px; }
    .study-hero-visual img { height: auto; aspect-ratio: 3 / 2; }
}
@media (max-width: 767.98px) {
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); font-size: 15px; }
    .row.g-5 { --bs-gutter-x: 1.5rem; }
    .topbar span { display: none; }
    .topbar .container { justify-content: center !important; }
    .navbar { min-height: 70px; }
    .brand-logo { width: 46px; height: 46px; }
    .navbar-brand strong { font-size: .85rem; }
    .home-hero { padding: 52px 0 54px; }
    .home-hero h1 { font-size: clamp(2.75rem, 11.5vw, 4rem); line-height: .98; }
    .hero-copy { margin-bottom: 26px; font-size: 1.05rem; }
    .hero-stickers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 22px; }
    .hero-stickers span { flex-direction: column; justify-content: center; width: auto; min-width: 0; min-height: 70px; padding: 8px 5px; text-align: center; }
    .hero-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
    .hero-trust span { width: auto; min-width: 0; padding-left: 10px; }
    .hero-card { padding: 18px; }
    .hero-card-media { margin-bottom: 18px; }
    .hero-card-sticker { top: 12px; right: 12px; }
    .mock-score { margin: 18px 0; }
    .mock-score strong { font-size: 5.2rem; }
    .course-visual > strong { font-size: 5.7rem; }
    .course-visual > em { padding: 8px 11px; font-size: .86rem; }
    .roadmap { grid-template-columns: repeat(2, 1fr); }
    .reason-grid { grid-template-columns: 1fr; }
    .learning-snapshots { grid-template-columns: 1fr 1fr; }
    .schedule-home article { grid-template-columns: 70px 1fr; }
    .schedule-home article .seats { display: none; }
    .schedule-home article .btn { grid-column: 2; justify-self: start; }
    .consultation-panel { padding: 30px 20px; gap: 30px; }
    .quick-form, .main-form { padding: 25px 20px; }
    .method-list { grid-template-columns: 1fr; }
    .about-visual > span { padding: 30px; font-size: 5rem; }
    .about-visual > div { padding: 25px; }
    .outcome-grid { grid-template-columns: 1fr; }
    .stats-band .container { gap: 15px; }
    .stats-band strong { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .article-cta { grid-template-columns: 1fr; text-align: center; }
    .article-cta > span { display: none; }
    .map-info { position: relative; left: auto; bottom: auto; width: 100%; }
    .quick-actions { right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 12px; flex-direction: row; gap: 10px; padding: 6px; border: 1px solid rgba(219,232,242,.9); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 16px 40px rgba(2,43,87,.2); backdrop-filter: blur(12px); }
    .quick-actions a { flex: 1 1 0; justify-content: center; min-width: 0; min-height: 48px; padding: 7px 10px; box-shadow: none; }
    .quick-actions a:hover { box-shadow: none; }
    .study-abroad-hero { padding-bottom: 58px; }
    .home-journey-banner { width: 46px; opacity: .54; }
    .study-journey-ribbon { width: 58px; opacity: .72; }
    .study-abroad-hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
    .study-hero-focus { gap: 18px 0; grid-template-columns: 1fr; }
    .study-hero-focus > div, .study-hero-focus > div:first-child, .study-hero-focus > div:last-child { padding: 0; border-right: 0; }
    .study-hero-focus > div { display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: baseline; }
    .study-hero-focus span { grid-row: 1 / span 2; margin: 0; }
    .study-topic-card h3 { min-height: 0; }
    .study-route { grid-template-columns: 1fr; border: 0; gap: 14px; }
    .study-route-step, .study-route-step:nth-child(3) { border: 1px solid var(--line); }
    .study-route-step b { margin-bottom: 15px; }
    .study-assurance, .study-prepare { padding: 30px 22px; }
}
@media (max-width: 479.98px) {
    .section-space { padding: 58px 0; }
    .home-hero .btn { width: 100%; }
    .hero-stickers span, .hero-trust span { width: auto; }
    .study-stickers { justify-content: stretch; }
    .study-stickers span { width: 100%; justify-content: center; transform: none !important; }
    .learning-snapshots { grid-template-columns: 1fr; }
    .learning-snapshots figure { transform: none !important; }
    .learning-snapshots figure:last-child { margin-top: 0; }
    .roadmap { grid-template-columns: 1fr; }
    .road-step { display: grid; grid-template-columns: 75px 1fr; text-align: left; }
    .road-step > span { grid-row: span 2; width: 65px; height: 65px; margin: 0; }
    .road-step > b { display: none; }
    .road-step h3 { margin: 3px 0; }
    .schedule-home article { padding-inline: 0; gap: 14px; }
    .course-facts { grid-template-columns: 1fr; }
    .detail-schedule { grid-template-columns: 1fr; }
    .stats-band span { font-size: .64rem; }
    .success-card { padding: 35px 20px; }
    .study-hero-actions .btn { width: 100%; }
    .study-hero-visual { border-width: 5px; }
    .study-hero-visual figcaption { position: static; display: block; background: #fff; color: var(--muted); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .home-hero .hero-kicker, .home-hero h1, .home-hero .hero-copy, .home-hero .hero-stickers, .home-hero .hero-trust, .home-hero .hero-card { opacity: 1; filter: none; transform: none; }
}
