:root {
  --navy: #082b5b;
  --navy-2: #0d376e;
  --blue: #0a55b4;
  --blue-bright: #1968d5;
  --teal: #0e9c8b;
  --gold: #e7b949;
  --gold-dark: #b68116;
  --cream: #f6f1e7;
  --cream-2: #fbf8f2;
  --soft: #f3f7fb;
  --ink: #14223a;
  --body: #46566a;
  --muted: #6f7d8e;
  --line: #dbe4ee;
  --white: #ffffff;
  --danger: #c85a4b;
  --shadow-sm: 0 12px 35px rgba(8, 43, 91, 0.08);
  --shadow-md: 0 24px 70px rgba(8, 43, 91, 0.14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
svg { width: 1em; height: 1em; }

::selection { color: var(--white); background: var(--blue); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 8px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 40px), 920px); }
.section-pad { padding: 112px 0; }
.section-soft { background: var(--soft); }
.section-cream { background: var(--cream-2); }
.section-ink { color: var(--white); background: var(--navy); }
#tq-test, #diagnosis, #method, #evidence, #director, #location { scroll-margin-top: calc(var(--header-h) + 54px); }

.notice-bar { color: #dbe9fb; background: #061f43; font-size: 13px; }
.notice-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.notice-inner a { color: var(--white); font-weight: 800; }
.notice-inner a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(219,228,238,.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: 15px;
  box-shadow: 0 10px 22px rgba(8,43,91,.18);
}
.brand-mark svg { width: 33px; height: 33px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 21px; letter-spacing: -.04em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 700; }
.primary-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 750; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 8px 0; color: #34465c; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--blue); transition: right .22s ease; }
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }
.primary-nav > a:not(.nav-cta):hover { color: var(--navy); }
.nav-cta { padding: 11px 18px; color: var(--white); background: var(--navy); border-radius: 999px; box-shadow: 0 10px 20px rgba(8,43,91,.14); }
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; border-radius: 12px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); border-radius: 2px; transition: .2s ease; }

.hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 20%, rgba(231,185,73,.13), transparent 30%),
    radial-gradient(circle at 93% 12%, rgba(25,104,213,.13), transparent 28%),
    linear-gradient(180deg, #fdfefe 0%, #f6f9fd 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -135px;
  height: 250px;
  border: 44px solid rgba(10,85,180,.055);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit { position: absolute; border: 1px solid rgba(10,85,180,.12); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 580px; height: 580px; right: -300px; top: 20px; }
.hero-orbit-two { width: 360px; height: 360px; right: -170px; top: 130px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--navy); font-size: 14px; font-weight: 800; }
.eyebrow span { padding: 7px 11px; color: var(--white); background: var(--blue); border-radius: 999px; }
.hero h1 { margin: 0; font-size: clamp(44px, 5.1vw, 72px); line-height: 1.12; letter-spacing: -.065em; }
.hero h1 em, .section-heading h2 em, .evidence-copy h2 em, .director-copy h2 em, .location-info h2 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 660px; margin: 26px 0 0; color: var(--body); font-size: 19px; line-height: 1.78; letter-spacing: -.02em; }
.hero-lead strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width: 21px; height: 21px; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(25,104,213,.34); outline-offset: 3px; }
.btn-lg { min-height: 58px; padding-inline: 24px; font-size: 16px; }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--navy), var(--blue)); box-shadow: 0 15px 30px rgba(8,43,91,.18); }
.btn-primary:hover { box-shadow: 0 20px 38px rgba(8,43,91,.24); }
.btn-secondary { color: var(--navy); background: var(--white); border-color: #cfdbe8; box-shadow: 0 9px 24px rgba(8,43,91,.06); }
.btn-secondary:hover { border-color: var(--blue); }
.btn-gold { color: #1d2a3b; background: var(--gold); box-shadow: 0 15px 32px rgba(231,185,73,.2); }
.btn-gold:hover { background: #f2ca63; }
.btn-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.btn-full { width: 100%; }
.hero-helper { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; color: var(--muted); font-size: 13px; }
.helper-dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 8px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(14,156,139,.11); }
.hero-tq-link {
  display: flex;
  max-width: 575px;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  padding: 13px 15px;
  color: var(--navy);
  background: rgba(255,255,255,.82);
  border: 1px solid #d5e0ec;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(8,43,91,.065);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-tq-link:hover { transform: translateY(-2px); border-color: #a9c7e9; box-shadow: 0 17px 38px rgba(8,43,91,.11); }
.hero-tq-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); background: linear-gradient(145deg, var(--navy), var(--blue)); border-radius: 12px; font-size: 13px; font-weight: 950; letter-spacing: -.02em; }
.hero-tq-link > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; line-height: 1.35; }
.hero-tq-link strong { font-size: 13px; }
.hero-tq-link small { margin-top: 3px; color: var(--muted); font-size: 10px; font-weight: 700; }
.hero-tq-link > svg { width: 21px; height: 21px; flex: 0 0 auto; color: var(--blue); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-trust div { display: flex; flex-direction: column; gap: 3px; }
.hero-trust strong { color: var(--navy); font-size: 24px; line-height: 1.1; }
.hero-trust span { color: var(--muted); font-size: 12px; font-weight: 700; }

.hero-visual { position: relative; padding: 22px 12px 18px 38px; }
.diagnosis-card {
  position: relative;
  z-index: 3;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(255,255,255,.08), transparent 45%),
    linear-gradient(145deg, #0c3974 0%, #061f43 65%, #092c59 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  box-shadow: 0 34px 80px rgba(8,43,91,.25);
}
.diagnosis-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 23px;
  pointer-events: none;
}
.card-topline { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }
.mini-badge { padding: 5px 9px; color: #ffe9ab; background: rgba(231,185,73,.16); border: 1px solid rgba(231,185,73,.36); border-radius: 999px; font-size: 11px; font-weight: 850; }
.card-kicker { color: #cfe1f8; font-size: 13px; font-weight: 800; }
.diagnosis-card h2 { position: relative; z-index: 1; margin: 22px 0 10px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.23; letter-spacing: -.055em; }
.diagnosis-card > p { position: relative; z-index: 1; max-width: 430px; margin: 0; color: #bfd0e5; font-size: 14px; }
.diagnosis-steps { position: relative; z-index: 1; display: grid; gap: 11px; margin: 27px 0 0; padding: 0; list-style: none; }
.diagnosis-steps li { display: flex; gap: 14px; align-items: center; padding: 15px 16px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.08); border-radius: 17px; }
.step-number { flex: 0 0 auto; color: var(--gold); font-size: 13px; font-weight: 900; }
.diagnosis-steps div { display: flex; flex-direction: column; line-height: 1.45; }
.diagnosis-steps strong { font-size: 14px; }
.diagnosis-steps small { color: #b7c9df; font-size: 12px; }
.diagnosis-result { position: relative; z-index: 1; display: flex; gap: 12px; align-items: center; margin-top: 20px; padding: 15px; color: #fef8e3; background: rgba(231,185,73,.12); border: 1px solid rgba(231,185,73,.25); border-radius: 16px; }
.result-icon { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; color: var(--navy); background: var(--gold); border-radius: 50%; font-weight: 900; }
.diagnosis-result div { display: flex; flex-direction: column; line-height: 1.45; }
.diagnosis-result strong { font-size: 13px; }
.diagnosis-result span:last-child { color: #e3d8b2; font-size: 11px; }
.floating-chip { position: absolute; z-index: 4; display: flex; gap: 7px; align-items: center; padding: 10px 14px; color: var(--navy); background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 750; white-space: nowrap; }
.floating-chip span { color: var(--blue); font-weight: 900; }
.chip-one { top: 78px; left: -7px; }
.chip-two { top: 220px; right: -22px; }
.chip-three { bottom: -2px; left: 70px; }

.proof-strip { position: relative; z-index: 4; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { display: flex; gap: 14px; align-items: center; min-height: 108px; padding: 20px 26px; border-right: 1px solid var(--line); }
.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item svg { flex: 0 0 auto; width: 34px; height: 34px; color: var(--blue); }
.proof-item div { display: flex; flex-direction: column; line-height: 1.4; }
.proof-item strong { font-size: 14px; }
.proof-item span { color: var(--muted); font-size: 11px; }

/* Online TQ reading diagnostic */
.tq-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(231,185,73,.14), transparent 27%),
    radial-gradient(circle at 90% 75%, rgba(25,104,213,.34), transparent 34%),
    linear-gradient(125deg, #061f43 0%, #08346d 54%, #0a55b4 100%);
}
.tq-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -280px;
  top: -250px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(255,255,255,.026), 0 0 0 190px rgba(255,255,255,.018);
}
.tq-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 76px; align-items: center; }
.tq-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 19px; color: #bcd1e9; font-size: 12px; font-weight: 800; }
.tq-wordmark { padding: 7px 11px; color: var(--navy); background: var(--gold); border-radius: 9px; font-size: 13px; font-weight: 950; letter-spacing: .04em; }
.tq-copy h2 { margin: 18px 0 0; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.2; letter-spacing: -.055em; }
.tq-copy h2 em { color: #80b9ff; font-style: normal; }
.tq-copy > p:not(.tq-note) { max-width: 680px; margin: 21px 0 0; color: #c9d8e9; font-size: 16px; }
.tq-feature-list { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.tq-feature-list li { display: flex; gap: 15px; align-items: center; padding: 14px 16px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.095); border-radius: 15px; }
.tq-feature-list li > span { color: var(--gold); font-size: 11px; font-weight: 950; }
.tq-feature-list div { display: flex; flex-direction: column; line-height: 1.45; }
.tq-feature-list strong { font-size: 13px; }
.tq-feature-list small { color: #aec4dc; font-size: 11px; }
.tq-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 29px; }
.tq-phone-link { color: #d9e8f8; font-size: 12px; font-weight: 750; }
.tq-phone-link strong { display: block; color: var(--white); font-size: 16px; }
.tq-phone-link:hover strong { color: var(--gold); }
.tq-note { margin: 13px 0 0; color: #91aac4; font-size: 10px; }
.tq-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.tq-orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.tq-orbit-one { width: 430px; height: 430px; }
.tq-orbit-two { width: 330px; height: 330px; border-color: rgba(231,185,73,.2); }
.tq-test-card {
  position: relative;
  z-index: 2;
  width: min(100%, 410px);
  padding: 28px;
  background: linear-gradient(155deg, rgba(255,255,255,.98), rgba(239,246,255,.92));
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 29px;
  box-shadow: 0 36px 90px rgba(0,11,31,.34);
  transform: rotate(1.5deg);
}
.tq-test-card::after { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(8,43,91,.08); border-radius: 21px; pointer-events: none; }
.tq-test-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 15px; color: var(--navy); font-size: 10px; font-weight: 950; letter-spacing: .08em; }
.tq-test-head small { color: #71849a; font-size: 8px; }
.tq-gauge { position: relative; z-index: 1; display: grid; place-items: center; margin: 27px 0 22px; }
.tq-gauge-ring { width: 178px; height: 178px; display: grid; place-content: center; text-align: center; color: var(--navy); background: radial-gradient(circle at center, #fff 0 56%, transparent 57%), conic-gradient(var(--gold) 0 25%, var(--blue) 25% 72%, #dce8f5 72% 100%); border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(8,43,91,.07), 0 20px 42px rgba(8,43,91,.12); }
.tq-gauge-ring strong { font-size: 53px; line-height: .9; letter-spacing: -.06em; }
.tq-gauge-ring span { margin-top: 7px; color: var(--blue); font-size: 11px; font-weight: 950; letter-spacing: .14em; }
.tq-analysis-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.tq-analysis-tags span { padding: 6px 9px; color: #41536a; background: #edf4fb; border: 1px solid #d7e4f1; border-radius: 999px; font-size: 9px; font-weight: 850; }
.tq-report-line { position: relative; z-index: 1; display: flex; height: 56px; align-items: end; justify-content: center; gap: 9px; margin: 20px 0 14px; }
.tq-report-line span { width: 12%; background: linear-gradient(180deg, var(--blue-bright), var(--navy)); border-radius: 7px 7px 2px 2px; }
.tq-report-line span:nth-child(1) { height: 42%; }
.tq-report-line span:nth-child(2) { height: 68%; }
.tq-report-line span:nth-child(3) { height: 52%; }
.tq-report-line span:nth-child(4) { height: 84%; background: linear-gradient(180deg, #f0c65a, #c58a18); }
.tq-report-line span:nth-child(5) { height: 73%; }
.tq-test-card > p { position: relative; z-index: 1; margin: 0; color: #5c6d82; text-align: center; font-size: 11px; line-height: 1.6; }
.tq-test-card > p strong { color: var(--navy); font-size: 14px; }

.section-heading { margin-bottom: 46px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.split { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; }
.section-heading h2, .evidence-copy h2, .director-copy h2, .location-info h2 { margin: 13px 0 0; font-size: clamp(34px, 4.5vw, 54px); line-height: 1.22; letter-spacing: -.055em; }
.section-heading p { margin: 17px 0 0; color: var(--body); font-size: 17px; }
.section-heading.split > p { margin: 0; color: var(--body); }
.section-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .02em; }
.section-tag::before { content: ""; width: 24px; height: 3px; background: var(--gold); border-radius: 3px; }
.section-tag.light { color: #dceaff; }

.check-panel { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.check-item { position: relative; display: flex; min-height: 92px; gap: 14px; align-items: flex-start; padding: 26px 28px; color: #2f4055; background: var(--white); cursor: pointer; transition: background .2s ease; }
.check-item:hover { background: #f8fbff; }
.check-item input { position: absolute; opacity: 0; pointer-events: none; }
.check-box { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; margin-top: 1px; border: 2px solid #bdcad8; border-radius: 8px; transition: .2s ease; }
.check-box::after { content: "✓"; color: var(--white); font-size: 14px; font-weight: 900; opacity: 0; transform: scale(.6); transition: .2s ease; }
.check-item input:checked + .check-box { background: var(--blue); border-color: var(--blue); }
.check-item input:checked + .check-box::after { opacity: 1; transform: scale(1); }
.check-item input:checked ~ span:last-child { color: var(--navy); font-weight: 800; }
.check-item:has(input:checked) { background: #f3f8ff; }
.check-item input:focus-visible + .check-box { outline: 3px solid rgba(25,104,213,.25); outline-offset: 3px; }
.check-result { display: grid; grid-template-columns: 140px 1fr auto; gap: 22px; align-items: center; padding: 26px 28px; background: #f6f9fd; }
.check-meter { grid-column: 1 / -1; height: 5px; overflow: hidden; background: #dce5ef; border-radius: 999px; }
.check-meter span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--teal), var(--blue)); border-radius: inherit; transition: width .28s ease; }
.check-count { display: flex; gap: 6px; align-items: baseline; }
.check-count strong { color: var(--blue); font-size: 34px; line-height: 1; }
.check-count span { color: var(--muted); font-size: 13px; font-weight: 800; }
.check-message { color: var(--body); font-size: 14px; }
.check-message.is-alert { color: var(--navy); font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 310px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 35px rgba(8,43,91,.055); }
.process-card.accent-card { color: var(--white); background: linear-gradient(145deg, var(--navy), var(--blue)); border-color: transparent; }
.process-index { position: absolute; right: 24px; top: 22px; color: #c3cfdd; font-size: 13px; font-weight: 900; }
.accent-card .process-index { color: rgba(255,255,255,.45); }
.process-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--blue); background: #eef5ff; border-radius: 17px; }
.process-icon svg { width: 34px; height: 34px; }
.accent-card .process-icon { color: var(--gold); background: rgba(255,255,255,.1); }
.process-card h3 { margin: 25px 0 12px; font-size: 21px; line-height: 1.35; letter-spacing: -.035em; }
.process-card p { margin: 0; color: var(--body); font-size: 14px; }
.accent-card p { color: #c5d7ea; }

.diagnosis-areas { display: grid; grid-template-columns: .72fr 1.28fr; gap: 56px; margin-top: 72px; padding: 50px; color: var(--white); background: var(--navy); border-radius: 30px; box-shadow: var(--shadow-md); }
.area-intro h3 { margin: 15px 0 0; font-size: 31px; line-height: 1.35; letter-spacing: -.04em; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-item { display: flex; gap: 14px; align-items: center; padding: 15px 17px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 15px; }
.area-item > span { color: var(--gold); font-size: 12px; font-weight: 900; }
.area-item div { display: flex; flex-direction: column; line-height: 1.4; }
.area-item strong { font-size: 14px; }
.area-item small { color: #b9cbe0; font-size: 11px; }

.race-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 30px; }
.track-line { position: absolute; left: 15%; right: 15%; top: 54px; height: 4px; background: linear-gradient(90deg, var(--teal), var(--blue), var(--gold)); border-radius: 999px; }
.track-stage { position: relative; z-index: 1; text-align: center; }
.track-dot { width: 50px; height: 50px; display: grid; place-items: center; margin: 0 auto 22px; color: var(--white); background: var(--blue); border: 7px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px rgba(10,85,180,.16); font-weight: 900; }
.track-dot.finish { color: var(--navy); background: var(--gold); box-shadow: 0 0 0 3px rgba(231,185,73,.2); }
.track-card { min-height: 310px; padding: 30px; text-align: left; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.track-period { color: var(--blue); font-size: 13px; font-weight: 900; }
.track-card h3 { margin: 9px 0 18px; font-size: 23px; letter-spacing: -.04em; }
.track-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.track-card li { position: relative; padding-left: 18px; color: var(--body); font-size: 14px; }
.track-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.deliverables { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: center; margin-top: 30px; padding: 25px 30px; color: var(--white); background: linear-gradient(100deg, var(--navy), var(--navy-2)); border-radius: 20px; }
.deliverable-title { display: flex; flex-direction: column; }
.deliverable-title strong { font-size: 18px; }
.deliverable-title span { color: #b9cbe0; font-size: 12px; }
.deliverable-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.deliverable-list span { padding: 11px 8px; text-align: center; color: #eef5ff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; font-size: 12px; font-weight: 800; }

.evidence { overflow: hidden; }
.evidence-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 88px; align-items: center; }
.evidence-copy h2 em { color: var(--gold); }
.evidence-copy > p { margin: 24px 0 0; color: #bcd0e7; font-size: 17px; }
.evidence-list { display: grid; gap: 13px; margin: 28px 0 32px; padding: 0; list-style: none; }
.evidence-list li { display: flex; gap: 12px; align-items: center; color: #e9f2fb; }
.evidence-list li span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; color: var(--navy); background: var(--gold); border-radius: 50%; font-size: 12px; font-weight: 900; }
.report-card { position: relative; padding: 32px; color: var(--ink); background: var(--white); border-radius: 28px; box-shadow: 0 34px 80px rgba(0,0,0,.22); }
.report-card::before { content: ""; position: absolute; inset: -25px -40px auto auto; width: 150px; height: 150px; background: rgba(231,185,73,.15); border-radius: 50%; filter: blur(2px); }
.report-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.report-head div { display: flex; flex-direction: column; }
.report-head span:first-child { color: var(--blue); font-size: 11px; font-weight: 900; }
.report-head h3 { margin: 3px 0 0; font-size: 28px; letter-spacing: -.04em; }
.report-month { padding: 7px 11px; color: var(--navy); background: #eef5ff; border-radius: 999px; font-size: 11px; font-weight: 900; }
.report-student { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 18px 0 24px; }
.report-student span { font-size: 14px; font-weight: 850; }
.report-student small { color: var(--muted); font-size: 10px; }
.report-metric { margin-top: 18px; }
.metric-label { display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.metric-label span { color: var(--body); font-weight: 750; }
.metric-label strong { color: var(--navy); }
.metric-bar { height: 8px; margin-top: 8px; overflow: hidden; background: #e8eef5; border-radius: 999px; }
.metric-bar span { display: block; width: var(--progress); height: 100%; background: linear-gradient(90deg, var(--teal), var(--blue)); border-radius: inherit; }
.report-metric.inverse .metric-bar span { background: linear-gradient(90deg, var(--gold), #e88952); }
.report-note, .report-next { margin-top: 22px; padding: 16px; background: #f5f8fb; border-radius: 14px; }
.report-note strong, .report-next span { color: var(--blue); font-size: 11px; font-weight: 900; }
.report-note p, .report-next p { margin: 5px 0 0; color: var(--body); font-size: 12px; line-height: 1.65; }
.report-next { background: #fff8e8; }
.report-next span { color: var(--gold-dark); }

.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.type-card { position: relative; overflow: hidden; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.type-card::after { content: ""; position: absolute; right: -55px; top: -55px; width: 140px; height: 140px; background: #f1f6fd; border-radius: 50%; }
.type-symbol { position: relative; z-index: 1; width: 52px; height: 52px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 15px; font-size: 14px; font-weight: 900; }
.type-grade { display: inline-block; margin-top: 24px; color: var(--blue); font-size: 12px; font-weight: 900; }
.type-card h3 { min-height: 64px; margin: 7px 0 8px; font-size: 22px; line-height: 1.4; letter-spacing: -.04em; }
.type-symptom { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.type-detail { display: grid; gap: 5px; padding: 14px 0; border-top: 1px solid var(--line); }
.type-detail strong { color: var(--navy); font-size: 11px; }
.type-detail span { color: var(--body); font-size: 13px; }

.gallery-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; grid-template-rows: 250px 250px; gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 20px; background: #dfe6ef; }
.gallery-grid .gallery-large { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 9px 12px; color: var(--white); background: rgba(6,31,67,.82); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; backdrop-filter: blur(10px); font-size: 12px; font-weight: 800; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { margin: 0; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.review-label { display: inline-flex; padding: 6px 10px; color: var(--blue); background: var(--soft); border-radius: 999px; font-size: 12px; font-weight: 850; }
.review-card p { min-height: 112px; margin: 17px 0 20px; color: var(--ink); font-size: 17px; line-height: 1.75; font-weight: 700; letter-spacing: -.025em; }
.review-card footer { color: var(--muted); font-size: 12px; }
.review-disclaimer { margin: 22px 0 0; color: var(--muted); text-align: center; font-size: 11px; }

.director-panel {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
  overflow: hidden;
  padding: 62px;
  background: rgba(255,255,255,.88);
  border: 1px solid #e6ded0;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}
.director-panel::before { content: "1993"; position: absolute; right: -18px; top: -76px; color: rgba(8,43,91,.035); font-size: 210px; line-height: 1; font-weight: 950; letter-spacing: -.09em; pointer-events: none; }
.director-copy, .director-details { position: relative; z-index: 1; }
.director-copy blockquote { margin: 24px 0; padding: 20px 24px; color: var(--navy); background: #f6f9fd; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; font-size: 18px; font-weight: 750; }
.director-copy > p { margin-bottom: 0; color: var(--body); }
.director-details { display: grid; gap: 18px; }
.director-year-card { position: relative; overflow: hidden; padding: 26px 29px; color: var(--white); background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 20px; box-shadow: 0 17px 38px rgba(8,43,91,.16); }
.director-year-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -70px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255,255,255,.035); }
.director-year-card span, .director-year-card strong, .director-year-card small { position: relative; z-index: 1; display: block; }
.director-year-card span { color: #c3d7ed; font-size: 11px; font-weight: 850; }
.director-year-card strong { margin-top: 4px; color: var(--gold); font-size: 45px; line-height: 1.05; letter-spacing: -.055em; }
.director-year-card small { margin-top: 7px; color: #d5e2f1; font-size: 11px; font-weight: 700; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 0; }
.credentials > div { padding: 22px; background: var(--white); border: 1px solid #e3ddd1; border-radius: 17px; }
.credentials strong { color: var(--navy); font-size: 13px; }
.credentials ul { display: grid; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; }
.credentials li { position: relative; padding-left: 13px; color: var(--body); font-size: 12px; }
.credentials li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; background: var(--gold-dark); border-radius: 50%; }
.award-line { display: flex; flex-wrap: wrap; gap: 8px; }
.award-line span { padding: 7px 11px; color: #6c5120; background: #fff7e4; border: 1px solid #ead7a5; border-radius: 999px; font-size: 11px; font-weight: 800; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 52px 24px 4px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 50%; width: 30px; height: 30px; display: grid; place-items: center; transform: translateY(-50%); color: var(--blue); background: #eef5ff; border-radius: 50%; font-size: 20px; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 48px 25px 4px; }
.faq-answer p { margin: 0; color: var(--body); font-size: 14px; }
.faq-inline-link { display: inline-block; margin-left: 5px; color: var(--blue); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }

.final-cta { color: var(--white); background: linear-gradient(115deg, #061f43, #0a4a9b); }
.final-cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.final-cta h2 { margin: 13px 0 0; font-size: clamp(36px, 4.8vw, 58px); line-height: 1.2; letter-spacing: -.055em; }
.final-cta p { margin: 17px 0 0; color: #c5d7ea; }
.final-actions { display: grid; gap: 10px; }
.final-actions small { color: #aebfd3; text-align: center; font-size: 11px; }
.final-tq-link { color: #dceaff; text-align: center; font-size: 12px; font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.final-tq-link:hover { color: var(--gold); }

.location-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.location-list { display: grid; gap: 0; margin: 30px 0; border-top: 1px solid var(--line); }
.location-list > div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.location-list span { color: var(--muted); font-size: 12px; font-weight: 800; }
.location-list strong { color: var(--ink); font-size: 14px; }
.location-list a { color: var(--blue); }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.map-card { position: relative; min-height: 470px; overflow: hidden; background: #e9f1ea; border: 1px solid #d2ded4; border-radius: 30px; box-shadow: var(--shadow-md); }
.map-grid-lines { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px); background-size: 38px 38px; }
.road { position: absolute; background: #fff; border: 1px solid #d4dce4; box-shadow: 0 0 0 7px rgba(255,255,255,.45); border-radius: 999px; }
.road-one { width: 120%; height: 45px; left: -10%; top: 48%; transform: rotate(-8deg); }
.road-two { width: 45px; height: 120%; top: -10%; left: 61%; transform: rotate(10deg); }
.map-pin { position: absolute; left: 46%; top: 42%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; padding: 15px 18px; color: var(--white); background: var(--navy); border-radius: 14px; box-shadow: 0 15px 30px rgba(8,43,91,.25); }
.map-pin::after { content: ""; position: absolute; bottom: -10px; width: 20px; height: 20px; background: var(--navy); transform: rotate(45deg); }
.pin-dot { position: relative; z-index: 1; width: 13px; height: 13px; margin-bottom: 6px; background: var(--gold); border-radius: 50%; }
.map-pin strong, .map-pin small { position: relative; z-index: 1; }
.map-pin strong { font-size: 15px; }
.map-pin small { color: #c8daef; font-size: 10px; }
.map-landmark { position: absolute; padding: 8px 11px; color: #667463; background: rgba(255,255,255,.86); border: 1px solid #d5dfd2; border-radius: 10px; font-size: 11px; font-weight: 800; }
.landmark-one { left: 12%; bottom: 20%; }
.landmark-two { right: 8%; top: 23%; }
.map-caption { position: absolute; left: 20px; right: 20px; bottom: 18px; padding: 10px; color: #536255; background: rgba(255,255,255,.82); border-radius: 12px; text-align: center; font-size: 10px; }

.site-footer { padding: 58px 0 105px; color: #b8c8da; background: #04172f; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .55fr 1.1fr; gap: 60px; }
.footer-brand .brand-mark { width: 43px; height: 43px; background: rgba(255,255,255,.09); box-shadow: none; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: #849ab2; }
.site-footer p { margin: 18px 0 0; font-size: 12px; }
.footer-links { display: grid; align-content: start; gap: 11px; font-size: 12px; font-weight: 750; }
.footer-links a:hover { color: var(--white); }
.footer-note { display: flex; flex-direction: column; justify-content: space-between; }
.footer-note p { margin: 0; }
.footer-note small { margin-top: 20px; color: #738ba5; font-size: 10px; }

.mobile-cta { display: none; }
.sms-modal[hidden] { display: none; }
.sms-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2,16,34,.72); backdrop-filter: blur(6px); }
.modal-panel { position: relative; z-index: 1; width: min(100%, 540px); max-height: min(90vh, 760px); overflow: auto; padding: 38px; background: var(--white); border-radius: 26px; box-shadow: 0 35px 100px rgba(0,0,0,.32); }
.modal-close { position: absolute; right: 15px; top: 14px; width: 40px; height: 40px; display: grid; place-items: center; padding: 0; color: var(--muted); background: #f1f4f7; border: 0; border-radius: 50%; font-size: 25px; cursor: pointer; }
.modal-panel h2 { margin: 13px 0 0; font-size: 30px; line-height: 1.3; letter-spacing: -.045em; }
.modal-lead { margin: 12px 0 24px; color: var(--muted); font-size: 13px; }
#sms-form { display: grid; gap: 15px; }
#sms-form label { display: grid; gap: 7px; }
#sms-form label > span { color: var(--navy); font-size: 12px; font-weight: 850; }
#sms-form input, #sms-form select { width: 100%; height: 50px; padding: 0 14px; color: var(--ink); background: var(--white); border: 1px solid #cfd9e5; border-radius: 11px; }
#sms-form input::placeholder { color: #9aa6b4; }
.modal-call-link { color: var(--blue); text-align: center; font-size: 13px; font-weight: 850; }
.form-status { min-height: 20px; color: var(--teal); text-align: center; font-size: 12px; font-weight: 700; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .62s ease, transform .62s ease; transition-delay: var(--delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.noscript-bar { padding: 10px 18px; color: #fff; background: #7a2f25; text-align: center; font-size: 13px; }
.noscript-bar a { color: #fff1b7; font-weight: 900; text-decoration: underline; }

@media (max-width: 1050px) {
  :root { --header-h: 72px; }
  .primary-nav { gap: 17px; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(42px, 6vw, 61px); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card { min-height: 270px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(3), .proof-item:nth-child(4) { border-top: 1px solid var(--line); }
  .proof-item:nth-child(3) { border-left: 1px solid var(--line); }
  .evidence-grid { gap: 50px; }
  .director-panel { gap: 36px; padding: 48px; }
  .credentials { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 68px; }
  .container, .container.narrow { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 82px 0; }
  .notice-inner { justify-content: center; }
  .notice-inner span { display: none; }
  .site-header { top: 0; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(36px + var(--header-h) + 8px);
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > a:not(.nav-cta) { display: block; padding: 13px 14px; border-bottom: 1px solid #edf1f5; }
  .primary-nav .nav-cta { margin-top: 10px; text-align: center; border-radius: 13px; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-helper { justify-content: center; }
  .hero-trust { max-width: 600px; margin-inline: auto; text-align: left; }
  .hero-visual { max-width: 600px; margin: 5px auto 0; padding: 24px 18px 24px 18px; }
  .chip-one { left: -5px; }
  .chip-two { right: -5px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .check-grid { grid-template-columns: 1fr; }
  .check-result { grid-template-columns: 100px 1fr; }
  .check-result .btn { grid-column: 1 / -1; }
  .diagnosis-areas { grid-template-columns: 1fr; gap: 30px; padding: 35px; }
  .race-track { grid-template-columns: 1fr; gap: 18px; padding: 0; }
  .track-line { left: 24px; right: auto; top: 20px; bottom: 20px; width: 4px; height: auto; }
  .track-stage { display: grid; grid-template-columns: 50px 1fr; gap: 18px; text-align: left; }
  .track-dot { margin: 14px 0 0; }
  .track-card { min-height: auto; }
  .deliverables { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .tq-shell { grid-template-columns: 1fr; gap: 38px; }
  .tq-copy { text-align: center; }
  .tq-title-row, .tq-actions { justify-content: center; }
  .tq-copy > p:not(.tq-note) { margin-inline: auto; }
  .tq-feature-list { max-width: 680px; margin-inline: auto; margin-top: 28px; text-align: left; }
  .tq-visual { min-height: 460px; }
  .type-grid { grid-template-columns: 1fr; }
  .type-card h3 { min-height: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 200px 200px; }
  .gallery-grid .gallery-large { grid-column: 1 / 3; grid-row: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card p { min-height: auto; }
  .director-panel { grid-template-columns: 1fr; padding: 42px; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    display: grid;
    grid-template-columns: .78fr .72fr 1.25fr;
    min-height: 68px;
    padding: 9px max(10px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(8,43,91,.1);
    backdrop-filter: blur(15px);
  }
  .mobile-cta > * { display: flex; align-items: center; justify-content: center; min-height: 48px; border: 0; font-weight: 900; }
  .mobile-tq { color: var(--navy); background: #fff3cf; border-radius: 13px 0 0 13px; font-size: 12px; }
  .mobile-sms { color: var(--navy); background: #edf4fb; border-radius: 0; font-size: 12px; }
  .mobile-call { color: var(--white); background: var(--navy); border-radius: 0 13px 13px 0; font-size: 12px; }
}

@media (max-width: 560px) {
  .notice-bar { font-size: 12px; }
  .brand-mark { width: 43px; height: 43px; border-radius: 13px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: 39px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-tq-link { max-width: 100%; text-align: left; }
  .hero-tq-link small { display: none; }
  .tq-copy h2 { font-size: 36px; }
  .tq-title-row { justify-content: center; }
  .tq-feature-list li { padding: 13px; }
  .tq-actions { display: grid; }
  .tq-actions .btn { width: 100%; }
  .tq-phone-link { text-align: center; }
  .tq-visual { min-height: 390px; }
  .tq-test-card { width: min(100%, 340px); padding: 23px 19px; }
  .tq-gauge-ring { width: 150px; height: 150px; }
  .tq-gauge-ring strong { font-size: 45px; }
  .hero-trust { grid-template-columns: 1fr; gap: 13px; text-align: center; }
  .hero-trust div { padding: 12px; background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 12px; }
  .hero-visual { padding-inline: 0; }
  .diagnosis-card { padding: 29px 22px; border-radius: 25px; }
  .diagnosis-card h2 { font-size: 32px; }
  .floating-chip { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child, .proof-item:nth-child(3) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .proof-item:first-child { border-top: 0; }
  .section-heading h2, .evidence-copy h2, .director-copy h2, .location-info h2 { font-size: 36px; }
  .section-heading p { font-size: 15px; }
  .check-item { min-height: 82px; padding: 22px 20px; }
  .check-result { grid-template-columns: 1fr; gap: 14px; }
  .check-result .btn { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .diagnosis-areas { padding: 28px 22px; }
  .area-list { grid-template-columns: 1fr; }
  .deliverable-list { grid-template-columns: 1fr 1fr; }
  .report-card { padding: 24px 20px; }
  .report-student { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); }
  .gallery-grid .gallery-large { grid-column: auto; }
  .director-panel { padding: 30px 22px; border-radius: 24px; }
  .director-panel::before { top: -28px; right: -8px; font-size: 112px; }
  .director-year-card strong { font-size: 39px; }
  .credentials { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 38px; }
  .location-actions { display: grid; }
  .map-card { min-height: 390px; }
  .location-list > div { grid-template-columns: 68px 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-note { grid-column: auto; }
  .modal-panel { padding: 30px 20px 24px; border-radius: 22px; }
  .modal-panel h2 { font-size: 26px; }
}

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