/* Mitai Course — digital learning platform */

:root {
  --bg: #f8f7fb;
  --bg-2: #ffffff;
  --bg-soft: #eeebf5;
  --indigo: #5b3ec7;
  --indigo-deep: #432a9c;
  --indigo-soft: #ddd5f3;
  --blue: #3068dc;
  --blue-soft: #d0dffa;
  --graphite: #2a2d3a;
  --gray: #6e7281;
  --line: rgba(42, 45, 58, 0.10);
  --line-2: rgba(42, 45, 58, 0.20);
  --ink: #1c1e29;
  --ink-soft: rgba(28, 30, 41, 0.74);
  --ink-mute: rgba(28, 30, 41, 0.5);
  --sans: "Inter", -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --display: "Plus Jakarta Sans", "Inter", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.65; color: var(--ink-soft); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--indigo); }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--display); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1.55vw, 1.35rem); font-weight: 600; }
p { color: var(--ink-soft); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--graphite); color: #fff; padding: 8px 14px; border-radius: 6px; }
.skip:focus { left: 16px; z-index: 200; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(248, 247, 251, 0.88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; max-width: 1240px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.brand-mark { width: 30px; height: 30px; background: linear-gradient(135deg, var(--indigo), var(--blue)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--mono); font-size: 14px; font-weight: 600; }
.nav-links { display: flex; gap: 4px; list-style: none; font-size: 14px; }
.nav-links a { padding: 8px 14px; color: var(--ink-soft); border-radius: 8px; font-weight: 500; transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--indigo-soft); color: var(--indigo-deep); }
.nav-links a.active { background: var(--graphite); color: #fff; }
.nav-cta { background: linear-gradient(135deg, var(--indigo), var(--blue)) !important; color: #fff !important; padding: 10px 20px !important; border-radius: 999px; font-weight: 600; transition: transform .25s, box-shadow .25s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(91, 62, 199, 0.45); }
.nav-toggle { display: none; background: #fff; border: 1px solid var(--line-2); padding: 8px 14px; border-radius: 8px; font-size: 13px; cursor: pointer; }

/* HERO */
.hero { padding: 90px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 20% 20%, var(--indigo-soft), transparent 60%), radial-gradient(ellipse 50% 50% at 90% 90%, var(--blue-soft), transparent 60%); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px; background: #fff; border: 1px solid var(--line-2); border-radius: 999px; font-family: var(--mono); font-size: 12px; color: var(--indigo); margin-bottom: 26px; }
.hero-badge::before { content: ""; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .gradient { background: linear-gradient(135deg, var(--indigo) 0%, var(--blue) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.12rem; max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid var(--line-2); background: transparent; color: var(--ink); border-radius: 999px; transition: all .25s; }
.btn-primary { background: linear-gradient(135deg, var(--indigo), var(--blue)); border-color: transparent; color: #fff; box-shadow: 0 10px 24px -12px rgba(91, 62, 199, 0.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(91, 62, 199, 0.55); color: #fff; }
.btn-ghost { background: #fff; }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }

/* HERO PREVIEW CARD */
.hero-card { background: var(--graphite); border-radius: 18px; padding: 6px; box-shadow: 0 30px 60px -24px rgba(28, 30, 41, 0.3); position: relative; }
.hero-card-bar { display: flex; gap: 6px; padding: 10px 14px; }
.hero-card-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.hero-card-content { background: #1c1e29; border-radius: 12px; padding: 28px 30px; font-family: var(--mono); font-size: 13px; line-height: 1.8; color: #c9d4e8; }
.hero-card-content .k { color: #c084fc; }
.hero-card-content .v { color: #86efac; }
.hero-card-content .n { color: #fbbf24; }
.hero-card-content .c { color: #6b7280; font-style: italic; }
.hero-card-content .h { color: #5fc8ff; }

/* SECTIONS */
section { padding: 110px 0; position: relative; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 5px 14px; background: var(--indigo-soft); color: var(--indigo-deep); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 999px; margin-bottom: 22px; font-weight: 600; }

.section-head { margin-bottom: 60px; max-width: 760px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.08rem; max-width: 640px; }

/* SKILL ROADMAP */
.roadmap { background: #fff; border-radius: 20px; border: 1px solid var(--line); padding: 50px 40px; position: relative; }
.rm-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; position: relative; }
.rm-track::before { content: ""; position: absolute; top: 26px; left: 10%; right: 10%; height: 3px; background: repeating-linear-gradient(90deg, var(--indigo) 0 8px, var(--indigo-soft) 8px 16px); border-radius: 3px; }
.rm-node { text-align: center; position: relative; z-index: 1; background: #fff; padding-top: 0; }
.rm-circle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--blue)); color: #fff; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1.1rem; box-shadow: 0 8px 20px -8px rgba(91, 62, 199, 0.4); }
.rm-node h4 { font-size: 1rem; margin-bottom: 6px; }
.rm-node small { font-family: var(--mono); font-size: 10px; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.rm-node p { font-size: 0.88rem; color: var(--ink-soft); }

/* MODULE CARDS */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.module { background: #fff; border-radius: 16px; padding: 30px 30px 32px; border: 1px solid var(--line); transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.module:hover { transform: translateY(-4px); border-color: var(--indigo); box-shadow: 0 24px 40px -22px rgba(91, 62, 199, 0.30); }
.module::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--indigo), var(--blue)); }
.mod-meta { display: flex; justify-content: space-between; margin-bottom: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
.mod-meta .lvl { color: var(--indigo); font-weight: 600; text-transform: uppercase; }
.mod-meta .dur { color: var(--gray); }
.module h3 { margin-bottom: 10px; }
.module p { font-size: 0.95rem; margin-bottom: 18px; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.mod-tag { font-family: var(--mono); font-size: 10px; padding: 3px 10px; border-radius: 999px; background: var(--bg-soft); color: var(--ink-soft); letter-spacing: 0.04em; }

/* PROGRESS / STATS */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.stat { background: #fff; border-radius: 14px; padding: 26px 24px; border: 1px solid var(--line); }
.stat-num { font-family: var(--display); font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--indigo), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; }

/* SECTION GRAPHITE */
.section-dark { background: var(--graphite); color: rgba(255,255,255,0.78); }
.section-dark h2 { color: #fff; }
.section-dark .eyebrow { background: rgba(91, 62, 199, 0.18); color: #c084fc; }
.section-dark .section-head p { color: rgba(255,255,255,0.72); }

/* CARD WITH IMG */
.lab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.lab { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; transition: border-color .3s, transform .3s; }
.lab:hover { border-color: var(--blue); transform: translateY(-3px); }
.lab-img { aspect-ratio: 16/9; overflow: hidden; opacity: 0.7; }
.lab-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .3s; }
.lab:hover .lab-img { opacity: 0.95; }
.lab:hover .lab-img img { transform: scale(1.04); }
.lab-body { padding: 26px 28px 28px; }
.lab-meta { font-family: var(--mono); font-size: 11px; color: #c084fc; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.lab h3 { color: #fff; margin-bottom: 10px; }
.lab p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }

/* COMPARE TABLE */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th { background: var(--graphite); color: #fff; padding: 16px 22px; text-align: left; font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; }
.compare th:first-child { border-top-left-radius: 14px; }
.compare th:last-child { border-top-right-radius: 14px; }
.compare td { padding: 16px 22px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover { background: var(--bg-soft); }
.compare td:first-child { font-weight: 600; color: var(--ink); }
.compare .ok { color: var(--indigo); font-weight: 600; }

/* CAROUSEL */
.carousel { position: relative; }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 360px); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 28px; scrollbar-width: thin; scrollbar-color: var(--indigo) transparent; }
.carousel-track::-webkit-scrollbar { height: 5px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 5px; }
.cc { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .3s, border-color .3s; }
.cc:hover { transform: translateY(-3px); border-color: var(--indigo); }
.cc-img { aspect-ratio: 16/10; overflow: hidden; }
.cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cc:hover .cc-img img { transform: scale(1.04); }
.cc-body { padding: 22px 24px 24px; }
.cc-meta { font-family: var(--mono); font-size: 11px; color: var(--indigo); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.cc h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cc p { font-size: 0.92rem; }
.carousel-nav { display: flex; gap: 10px; margin-top: 14px; }
.carousel-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .2s, color .2s, border-color .2s; }
.carousel-btn:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-img { border-radius: 16px; overflow: hidden; aspect-ratio: 5/4; border: 1px solid var(--line); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* RESOURCE BLOCKS */
.res-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.res { background: #fff; border-radius: 14px; padding: 30px 32px; border: 1px solid var(--line); display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; transition: border-color .25s, transform .25s; }
.res:hover { border-color: var(--indigo); transform: translateY(-2px); }
.res-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--indigo-soft), var(--blue-soft)); color: var(--indigo-deep); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.res h3 { margin-bottom: 10px; font-size: 1.18rem; }
.res p { font-size: 0.95rem; }
.res-meta { display: inline-block; margin-top: 12px; font-family: var(--mono); font-size: 10px; color: var(--gray); letter-spacing: 0.12em; text-transform: uppercase; }

/* FAQ */
.faq-list { max-width: 880px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; transition: border-color .25s; }
.faq-item:hover { border-color: var(--indigo); }
.faq-question { width: 100%; background: none; border: none; text-align: left; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-question::after { content: "+"; color: var(--indigo); font-size: 1.5rem; width: 32px; height: 32px; background: var(--indigo-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s, background .3s, color .3s; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: "−"; background: var(--indigo); color: #fff; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-answer-inner { padding: 0 24px 24px; color: var(--ink-soft); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; }
.contact-side { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 42px 38px; }
.form { display: grid; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--mono); font-size: 11px; color: var(--indigo); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; padding: 13px 16px; font-family: var(--sans); font-size: 15px; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-status { font-family: var(--mono); font-size: 12px; color: var(--indigo); font-weight: 600; min-height: 18px; }

.contact-block { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-block:first-child { padding-top: 0; }
.contact-block:last-child { border-bottom: none; }
.contact-label { font-family: var(--mono); font-size: 11px; color: var(--indigo); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
.contact-value { color: var(--ink); font-size: 1.05rem; line-height: 1.5; }
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--indigo); }

.map-wrap { margin-top: 56px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 6; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--indigo), var(--blue)); border-radius: 22px; padding: 64px 56px; color: #fff; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; top: -80px; right: -60px; width: 280px; height: 280px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta .btn-primary { background: #fff; color: var(--indigo-deep); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.3); }
.cta .btn-primary:hover { background: var(--graphite); color: #fff; }

/* PAGE HERO */
.page-hero { padding: 90px 0 70px; border-bottom: 1px solid var(--line); position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 50% at 80% 30%, var(--indigo-soft), transparent 60%); z-index: -1; }
.breadcrumb { font-family: var(--mono); font-size: 12px; color: var(--indigo); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px; }
.breadcrumb .sep { color: var(--gray); margin: 0 8px; }
.page-hero h1 { max-width: 920px; margin-bottom: 22px; }
.page-hero p { max-width: 660px; font-size: 1.1rem; }

/* FOOTER */
.site-footer { background: var(--graphite); color: rgba(255,255,255,0.72); padding: 80px 0 32px; margin-top: 80px; border-top: 4px solid var(--indigo); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand .brand { color: #fff; margin-bottom: 22px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 340px; }
.footer-col h4 { color: #c084fc; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 22px; font-weight: 600; }
.footer-col ul { list-style: none; display: grid; gap: 12px; font-size: 14px; }
.footer-col a:hover { color: #c084fc; }
.footer-col p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 8px; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.social { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s; }
.social:hover { background: var(--indigo); }
.social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.14em; text-transform: uppercase; }

/* BACK TOP */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; background: linear-gradient(135deg, var(--indigo), var(--blue)); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s, box-shadow .3s; z-index: 70; box-shadow: 0 10px 24px -10px rgba(91, 62, 199, 0.45); }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { box-shadow: 0 14px 30px -10px rgba(91, 62, 199, 0.6); }

/* COOKIE */
.cookie { position: fixed; bottom: 24px; left: 24px; max-width: 460px; background: #fff; border: 1px solid var(--line-2); border-radius: 16px; padding: 22px 26px; font-size: 13px; color: var(--ink-soft); box-shadow: 0 14px 40px -10px rgba(28, 30, 41, 0.20); z-index: 80; transform: translateY(140%); transition: transform .5s cubic-bezier(.4,0,.2,1); }
.cookie.show { transform: translateY(0); }
.cookie h4 { color: var(--ink); font-family: var(--display); font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; margin-top: 14px; }
.cookie .btn { padding: 9px 18px; font-size: 12px; }

/* PROGRESS LINE */
.progress-line { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--indigo), var(--blue)); z-index: 100; width: 0; transition: width .1s linear; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s ease, transform .85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.r1 { transition-delay: .08s; }
.r2 { transition-delay: .16s; }
.r3 { transition-delay: .24s; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; padding: 20px 32px; gap: 6px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-grid, .contact-grid, .split, .cta { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
  .modules, .lab-grid, .res-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .rm-track { grid-template-columns: 1fr 1fr; gap: 28px; }
  .rm-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .cta { padding: 44px 30px; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .stat-grid, .rm-track, .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
