:root {
  --navy-950: #041326;
  --navy-900: #071a33;
  --navy-850: #0b2241;
  --navy-800: #0d2b50;
  --navy-700: #17436e;
  --gold-500: #c99a4b;
  --gold-400: #dbae64;
  --gold-300: #e9c98f;
  --ivory: #f7f4ee;
  --paper: #fffdfa;
  --white: #ffffff;
  --ink: #12233b;
  --muted: #657184;
  --line: #e6e3dc;
  --shadow: 0 22px 60px rgba(6, 25, 50, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.site-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 99; opacity: .025;
  background-image: radial-gradient(#071a33 0.7px, transparent 0.7px);
  background-size: 6px 6px;
}

/* Header */
.site-header {
  position: fixed; left: 0; right: 0; top: 0; z-index: 80;
  height: 78px; display: flex; align-items: center;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,32,61,.08);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(5,22,44,.08); height: 70px; }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 205px; }
.brand-mark { width: 38px; height: 40px; display: flex; align-items: flex-end; justify-content: center; gap: 3px; position: relative; }
.brand-mark::after { content: ""; position: absolute; width: 39px; height: 10px; background: var(--gold-500); transform: skewX(-28deg); bottom: -4px; opacity: .9; }
.brand-mark span { width: 8px; background: var(--navy-900); border-radius: 2px 2px 0 0; z-index: 1; }
.brand-mark span:nth-child(1){ height: 17px; }
.brand-mark span:nth-child(2){ height: 27px; }
.brand-mark span:nth-child(3){ height: 36px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--navy-900); font-size: 24px; letter-spacing: 1px; font-family: "STSong", "Songti SC", serif; }
.brand-text small { margin-top: 5px; color: #788291; font-size: 10px; letter-spacing: .65px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a { font-size: 14px; font-weight: 650; position: relative; padding: 28px 0; color: #29384e; }
.main-nav a::after { content: ""; position: absolute; height: 2px; left: 50%; right: 50%; bottom: 18px; background: var(--gold-500); transition: .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.main-nav a:hover, .main-nav a.active { color: var(--navy-900); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; margin-left: auto; }
.menu-toggle span { display:block; width:25px; height:2px; background:var(--navy-900); margin:5px 0; transition:.2s; }

/* Buttons */
.btn { border: 0; border-radius: 9px; padding: 12px 20px; font-weight: 750; letter-spacing: .2px; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: #13233b; background: linear-gradient(135deg, #e7c27e, #c7923e); box-shadow: 0 10px 26px rgba(201,154,75,.26); }
.btn-gold:hover { box-shadow: 0 15px 30px rgba(201,154,75,.35); }
.btn-navy { color: #fff; background: var(--navy-900); box-shadow: 0 12px 26px rgba(7,26,51,.2); }
.btn-ghost { border: 1px solid rgba(255,255,255,.45); color: white; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-outline { background: transparent; color: var(--navy-900); border: 1px solid #cbd2dc; }
.btn-lg { padding: 14px 24px; min-height: 52px; }
.btn-block { width: 100%; min-height: 50px; }
.nav-cta { white-space: nowrap; }

/* Hero */
.hero { position: relative; min-height: 845px; padding-top: 78px; color: white; background: var(--navy-950); overflow: hidden; }
.hero-media { position: absolute; inset: 78px 0 0 0; background-image: linear-gradient(90deg, rgba(4,19,38,.98) 0%, rgba(4,19,38,.88) 42%, rgba(4,19,38,.30) 74%, rgba(4,19,38,.12) 100%), url('../images/hero-finance.jpg'); background-size: cover; background-position: center; }
.hero-media::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 82% 28%, rgba(217,174,101,.18), transparent 30%), linear-gradient(0deg, rgba(4,19,38,.88) 0%, transparent 28%); }
.hero-grid { position:absolute; inset:0; opacity:.18; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, rgba(0,0,0,.8), transparent 75%); }
.hero-inner { position:relative; z-index:2; display:grid; grid-template-columns: 1.2fr .58fr; gap:70px; align-items:center; min-height: 655px; padding-top: 55px; padding-bottom: 92px; }
.eyebrow { color: var(--gold-300); display:flex; align-items:center; gap:12px; font-size:12px; letter-spacing:1.8px; font-weight:700; }
.eyebrow span { width:40px; height:1px; background:var(--gold-500); }
.hero h1 { margin: 22px 0 22px; font-family: "STSong", "Songti SC", serif; font-size: clamp(46px, 5vw, 74px); line-height: 1.08; letter-spacing: 1px; font-weight: 700; }
.hero h1 em { color: #e6bd72; font-style: normal; }
.hero-lead { max-width:700px; font-size:18px; color:#d5deea; line-height:1.9; margin:0 0 24px; }
.hero-points { display:flex; flex-wrap:wrap; gap:10px 18px; margin-bottom:34px; }
.hero-points span { font-size:14px; color:#f1f4f7; display:flex; align-items:center; gap:8px; }
.hero-points span::before { content:""; width:8px; height:8px; border:2px solid var(--gold-400); border-radius:50%; }
.hero-actions { display:flex; gap:12px; }
.hero-panel { background: rgba(6,26,50,.72); border:1px solid rgba(225,190,128,.25); box-shadow: 0 22px 65px rgba(0,0,0,.18); border-radius:24px; padding:30px; backdrop-filter: blur(12px); }
.panel-kicker { color:var(--gold-300); font-size:13px; letter-spacing:1.2px; margin-bottom:20px; }
.panel-row { display:grid; grid-template-columns:95px 1fr; align-items:center; gap:18px; }
.panel-row strong { font-family: Georgia, serif; color:#f3d49c; font-size:38px; }
.panel-row span { color:#e6edf5; font-size:14px; line-height:1.65; }
.panel-line { height:1px; background:rgba(255,255,255,.12); margin:18px 0; }
.panel-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.panel-tags span { border:1px solid rgba(255,255,255,.16); color:#cbd6e2; padding:5px 9px; border-radius:20px; font-size:11px; }
.hero-bottom { position:relative; z-index:3; margin-top:-58px; min-height:118px; background:#fff; color:var(--ink); border-radius:20px; box-shadow: var(--shadow); display:grid; grid-template-columns:repeat(4,1fr); padding:0 18px; }
.hero-bottom article { display:flex; align-items:center; gap:15px; padding:22px 20px; border-right:1px solid #e9e8e3; }
.hero-bottom article:last-child { border-right:0; }
.hero-bottom b { font-family:Georgia,serif; font-size:28px; color:#d6aa5d; font-weight:500; }
.hero-bottom div { display:flex; flex-direction:column; }
.hero-bottom strong { color:var(--navy-900); font-size:15px; }
.hero-bottom span { color:#7a8491; font-size:12px; margin-top:3px; }

/* Shared sections */
.section { padding: 112px 0; }
.section-label { color:var(--gold-500); font-size:12px; font-weight:800; letter-spacing:2px; margin-bottom:13px; }
.section h2 { margin:0; color:var(--navy-900); font-size:clamp(32px, 4vw, 48px); line-height:1.25; font-family:"STSong","Songti SC",serif; letter-spacing:.5px; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:60px; margin-bottom:48px; }
.section-head > p { max-width:470px; color:var(--muted); margin:0 0 5px; }
.section-head-light h2 { color:#fff; }
.section-head-light > p { color:#b8c7d8; }
.split-layout { display:grid; grid-template-columns: 1fr .95fr; gap:90px; align-items:center; }
.about-copy > p { color:var(--muted); font-size:16px; margin:24px 0 0; }
.quote-card { margin-top:30px; padding:22px 24px; border-left:3px solid var(--gold-500); background:linear-gradient(90deg,#f7f2e8,#fff); border-radius:0 14px 14px 0; }
.quote-card span { display:block; color:#8b744d; font-size:12px; margin-bottom:5px; }
.quote-card strong { color:var(--navy-900); font-size:18px; }
.about-visual { position:relative; }
.about-visual::before { content:""; position:absolute; width:70%; height:70%; right:-22px; bottom:-22px; background:#e6bc74; border-radius:28px; opacity:.75; }
.about-visual img { position:relative; width:100%; aspect-ratio: 1.18 / 1; object-fit:cover; border-radius:26px; box-shadow:var(--shadow); }
.floating-card { position:absolute; z-index:3; background:rgba(255,255,255,.95); border:1px solid rgba(11,34,65,.08); border-radius:14px; padding:14px 17px; min-width:170px; box-shadow:0 14px 35px rgba(10,31,58,.14); backdrop-filter:blur(8px); }
.floating-card small { display:block; color:#7d8795; font-size:11px; }
.floating-card strong { color:var(--navy-900); font-size:14px; }
.floating-card-top { top:28px; left:-38px; }
.floating-card-bottom { right:-20px; bottom:28px; }

/* Advantages */
.dark-section { background: radial-gradient(circle at 75% 12%, #173c66 0%, transparent 28%), var(--navy-950); position:relative; overflow:hidden; }
.dark-section::after { content:""; position:absolute; inset:0; opacity:.12; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 54px 54px; }
.dark-section .container { position:relative; z-index:1; }
.adv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.adv-card { position:relative; min-height:320px; padding:30px 26px; border:1px solid rgba(255,255,255,.11); border-radius:18px; background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025)); color:white; overflow:hidden; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.adv-card:hover { transform:translateY(-7px); border-color:rgba(223,183,112,.42); background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035)); }
.card-index { position:absolute; right:22px; top:18px; color:rgba(255,255,255,.16); font:34px Georgia,serif; }
.icon-badge { width:52px; height:52px; border-radius:50%; display:grid; place-items:center; margin:30px 0 42px; background:#d5a95b; color:#071a33; font:700 22px Georgia,serif; }
.adv-card h3 { margin:0 0 13px; font-size:19px; }
.adv-card p { color:#b7c6d7; font-size:14px; margin:0; }

/* Services */
.services { background:#fbfaf7; }
.services-layout { display:grid; grid-template-columns:1.45fr .55fr; gap:28px; align-items:stretch; }
.service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.service-card { padding:28px; background:#fff; border:1px solid #ece9e2; border-radius:16px; transition:.25s ease; }
.service-card:hover { transform:translateY(-5px); box-shadow:0 16px 38px rgba(7,26,51,.08); border-color:#e4ceaa; }
.service-icon { width:42px; height:42px; display:grid; place-items:center; background:#f3eadb; color:#a6782f; border-radius:11px; font:700 13px Georgia,serif; }
.service-card h3 { color:var(--navy-900); margin:18px 0 8px; font-size:17px; }
.service-card p { color:#6f7885; margin:0; font-size:13px; }
.service-photo { position:relative; border-radius:20px; overflow:hidden; min-height:550px; box-shadow:var(--shadow); }
.service-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(5,22,42,.92),transparent 55%); }
.service-photo img { width:100%; height:100%; object-fit:cover; }
.photo-caption { position:absolute; z-index:2; left:28px; right:28px; bottom:28px; color:white; }
.photo-caption span { display:block; color:#e0b66e; font-size:11px; letter-spacing:1.6px; }
.photo-caption strong { display:block; margin-top:6px; font-size:20px; }

/* Roadmap */
.timeline { position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:0; }
.timeline::before { content:""; position:absolute; top:29px; left:8%; right:8%; height:1px; background:linear-gradient(90deg,transparent,#d6ba89 10%,#d6ba89 90%,transparent); }
.timeline-item { position:relative; padding:0 20px 0 0; }
.timeline-num { position:relative; z-index:2; width:58px; height:58px; border-radius:50%; display:grid; place-items:center; background:#fff; border:1px solid #d8bd8d; color:#ad7d31; font:700 14px Georgia,serif; box-shadow:0 10px 28px rgba(12,39,68,.08); }
.timeline-item div { margin-top:28px; }
.timeline-item small { color:#a98b5d; }
.timeline-item h3 { margin:6px 0 10px; color:var(--navy-900); font-size:17px; }
.timeline-item p { margin:0; color:#737d89; font-size:13px; }

/* Schools */
.schools { background:var(--ivory); }
.schools-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.schools-copy > p { color:var(--muted); margin:22px 0; }
.school-tags { display:flex; flex-wrap:wrap; gap:10px; margin:0 0 28px; }
.school-tags span { padding:8px 12px; border:1px solid #d8d6d0; background:#fff; border-radius:999px; color:#3c4c61; font-size:12px; }
.schools-visual { position:relative; }
.schools-visual img { width:100%; aspect-ratio:1.45; object-fit:cover; border-radius:22px; box-shadow:var(--shadow); }
.schools-visual::after { content:""; position:absolute; inset:0; border-radius:22px; background:linear-gradient(90deg,rgba(7,26,51,.18),transparent 60%); }
.market-card { position:absolute; z-index:2; left:30px; bottom:28px; max-width:360px; padding:18px 20px; border-radius:14px; background:rgba(7,26,51,.88); color:white; border:1px solid rgba(255,255,255,.14); backdrop-filter:blur(8px); }
.market-card small { color:#deb66f; display:block; }
.market-card strong { display:block; margin-top:5px; font-size:16px; }

/* Fit */
.fit-section { background:white; }
.fit-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.fit-card { padding:28px 24px; border:1px solid #e8e5df; border-radius:16px; background:linear-gradient(145deg,#fff,#fbfaf7); }
.fit-card span { color:#c29548; font:700 24px Georgia,serif; }
.fit-card h3 { font-size:16px; color:var(--navy-900); margin:22px 0 8px; }
.fit-card p { color:#727c89; margin:0; font-size:13px; }

/* FAQ */
.faq { background:#f7f7f6; }
.faq-layout { display:grid; grid-template-columns:.65fr 1.35fr; gap:80px; }
.faq-intro p { color:var(--muted); margin:22px 0 28px; }
.accordion { border-top:1px solid #dcdedc; }
.faq-item { border-bottom:1px solid #dcdedc; }
.faq-question { width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:24px 0; border:0; background:transparent; text-align:left; color:var(--navy-900); font-weight:750; }
.faq-question b { font-size:22px; color:#b28848; transition:transform .25s ease; }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .28s ease; }
.faq-answer p { overflow:hidden; margin:0; color:#6f7986; padding-right:50px; }
.faq-item.active .faq-answer { grid-template-rows:1fr; }
.faq-item.active .faq-answer p { padding-bottom:24px; }
.faq-item.active .faq-question b { transform:rotate(45deg); }

/* CTA */
.cta-section { position:relative; background:var(--navy-950); color:#fff; overflow:hidden; }
.cta-bg { position:absolute; inset:0; background-image:linear-gradient(90deg,rgba(4,19,38,.98),rgba(4,19,38,.80),rgba(4,19,38,.60)); background-size:cover; background-position:center; opacity:.95; }
.cta-inner { position:relative; z-index:2; min-height:370px; display:flex; align-items:center; justify-content:space-between; gap:80px; }
.cta-inner span { color:#e1bb78; font-size:11px; letter-spacing:2px; }
.cta-inner h2 { font-family:"STSong","Songti SC",serif; font-size:42px; line-height:1.25; margin:12px 0 12px; }
.cta-inner p { color:#c1cfde; margin:0; }

/* Footer */
.site-footer { background:#031225; color:#d4deea; padding:62px 0 18px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr .7fr .8fr; gap:60px; }
.brand-footer .brand-text strong { color:#fff; }
.brand-footer .brand-text small { color:#91a0b0; }
.footer-grid > div:first-child p { max-width:320px; color:#8fa0b4; font-size:13px; }
.footer-grid > div:not(:first-child) { display:flex; flex-direction:column; gap:9px; }
.footer-grid strong { color:white; margin-bottom:8px; font-size:14px; }
.footer-grid a, .footer-grid span, .footer-link { color:#8fa0b4; font-size:12px; }
.footer-grid a:hover, .footer-link:hover { color:#e0bd7e; }
.footer-link { border:0; padding:0; background:none; text-align:left; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); margin-top:45px; padding-top:16px; display:flex; justify-content:space-between; color:#66768a; font-size:11px; }

/* Modal */
.modal { position:fixed; inset:0; z-index:120; display:grid; place-items:center; opacity:0; visibility:hidden; transition:.25s ease; }
.modal.show { opacity:1; visibility:visible; }
.modal-backdrop { position:absolute; inset:0; background:rgba(2,12,25,.72); backdrop-filter:blur(5px); }
.modal-card { position:relative; z-index:2; width:min(560px, calc(100% - 30px)); max-height:calc(100vh - 40px); overflow:auto; background:#fff; border-radius:22px; padding:34px; box-shadow:0 30px 90px rgba(0,0,0,.3); transform:translateY(20px) scale(.98); transition:.25s ease; }
.modal.show .modal-card { transform:none; }
.modal-close { position:absolute; right:18px; top:14px; border:0; background:none; color:#6c7784; font-size:28px; }
.modal-heading > span { color:#b1843d; font-size:11px; letter-spacing:1.5px; font-weight:750; }
.modal-heading h2 { color:var(--navy-900); margin:5px 0 8px; font-size:28px; }
.modal-heading p { color:#7b8490; font-size:12px; margin:0 0 22px; }
#consultForm { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
#consultForm label { display:flex; flex-direction:column; gap:6px; color:#39485b; font-size:12px; font-weight:650; }
#consultForm label:nth-child(4), #consultForm label:nth-child(5), #consultForm .btn { grid-column:1 / -1; }
#consultForm input, #consultForm select, #consultForm textarea { border:1px solid #dce0e5; border-radius:9px; padding:11px 12px; background:#fbfcfd; outline:none; resize:vertical; color:#203248; }
#consultForm input:focus, #consultForm select:focus, #consultForm textarea:focus { border-color:#c89a4b; box-shadow:0 0 0 3px rgba(200,154,75,.12); }
.toast { position:fixed; z-index:140; left:50%; bottom:34px; transform:translate(-50%,30px); background:#081d37; color:#fff; padding:11px 18px; border-radius:999px; font-size:13px; opacity:0; visibility:hidden; transition:.25s ease; box-shadow:0 12px 30px rgba(0,0,0,.2); }
.toast.show { opacity:1; visibility:visible; transform:translate(-50%,0); }

/* Reveal */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity:1; transform:none; }
.reveal-delay { transition-delay:.14s; }

@media (max-width: 1080px) {
  .main-nav { gap:16px; }
  .main-nav a { font-size:13px; }
  .nav-cta { display:none; }
  .hero-inner { grid-template-columns:1fr .5fr; gap:35px; }
  .adv-grid, .fit-grid { grid-template-columns:repeat(2,1fr); }
  .timeline { grid-template-columns:1fr; gap:0; }
  .timeline::before { top:0; bottom:0; left:29px; right:auto; height:auto; width:1px; }
  .timeline-item { display:grid; grid-template-columns:58px 1fr; gap:20px; padding:0 0 25px; }
  .timeline-item div { margin:0; }
  .services-layout { grid-template-columns:1fr; }
  .service-photo { min-height:420px; }
}

@media (max-width: 860px) {
  .site-header { height:70px; }
  .brand { min-width:auto; }
  .brand-text strong { font-size:21px; }
  .brand-text small { display:none; }
  .menu-toggle { display:block; }
  .main-nav { position:absolute; left:18px; right:18px; top:74px; padding:12px; border-radius:14px; background:#fff; box-shadow:0 20px 55px rgba(8,28,50,.18); display:flex; flex-direction:column; align-items:stretch; gap:0; opacity:0; visibility:hidden; transform:translateY(-8px); transition:.2s ease; }
  .main-nav.open { opacity:1; visibility:visible; transform:none; }
  .main-nav a { padding:12px 14px; border-bottom:1px solid #edf0f2; }
  .main-nav a:last-child { border-bottom:0; }
  .main-nav a::after { display:none; }
  .menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2){ opacity:0; }
  .menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .hero { min-height:auto; padding-top:70px; }
  .hero-media { inset:70px 0 0; background-image:linear-gradient(90deg,rgba(4,19,38,.97),rgba(4,19,38,.74)),url('../images/hero-finance.jpg'); background-position:62% center; }
  .hero-inner { grid-template-columns:1fr; min-height:auto; padding-top:100px; padding-bottom:110px; }
  .hero-panel { max-width:480px; }
  .hero-bottom { grid-template-columns:repeat(2,1fr); margin-top:-48px; }
  .hero-bottom article:nth-child(2) { border-right:0; }
  .hero-bottom article:nth-child(-n+2){ border-bottom:1px solid #e9e8e3; }
  .section { padding:85px 0; }
  .split-layout, .schools-grid, .faq-layout { grid-template-columns:1fr; gap:50px; }
  .section-head { align-items:flex-start; flex-direction:column; gap:18px; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 560px) {
  .container { width:min(100% - 28px, var(--container)); }
  .brand-mark { transform:scale(.9); transform-origin:left center; }
  .hero-inner { padding-top:76px; padding-bottom:95px; }
  .hero h1 { font-size:42px; }
  .hero-lead { font-size:15px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-panel { padding:22px; }
  .panel-row { grid-template-columns:82px 1fr; }
  .panel-row strong { font-size:31px; }
  .hero-bottom { grid-template-columns:1fr; padding:8px 18px; }
  .hero-bottom article { border-right:0; border-bottom:1px solid #e9e8e3 !important; }
  .hero-bottom article:last-child { border-bottom:0 !important; }
  .section h2 { font-size:34px; }
  .section-head { margin-bottom:34px; }
  .adv-grid, .fit-grid, .service-grid { grid-template-columns:1fr; }
  .adv-card { min-height:auto; }
  .icon-badge { margin:20px 0 30px; }
  .floating-card-top { left:10px; top:10px; }
  .floating-card-bottom { right:10px; bottom:10px; }
  .timeline-item { grid-template-columns:48px 1fr; gap:15px; }
  .timeline-num { width:48px; height:48px; }
  .timeline::before { left:23px; }
  .schools-visual img { aspect-ratio:1; }
  .market-card { left:14px; right:14px; bottom:14px; }
  .cta-inner { min-height:430px; flex-direction:column; align-items:flex-start; justify-content:center; gap:30px; }
  .cta-inner h2 { font-size:34px; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-bottom { flex-direction:column; gap:7px; }
  #consultForm { grid-template-columns:1fr; }
  #consultForm label { grid-column:1 / -1 !important; }
  .modal-card { padding:28px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
