@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+KR:wght@400;500;700;800;900&display=swap');

:root {
  --navy: #081a33;
  --navy-2: #0d2345;
  --navy-3: #123362;
  --blue: #2563eb;
  --blue-2: #4f8cff;
  --cyan: #0ea5b7;
  --sky: #eff6ff;
  --mint: #eafaf7;
  --gold: #f5b942;
  --gold-2: #ffd98a;
  --accent: #f6892b;
  --accent-2: #ffb066;
  --accent-soft: #fff3e8;
  --warm-bg: #fffaf3;
  --ink: #182434;
  --muted: #60728b;
  --line: #d9e2ef;
  --soft-line: rgba(217, 226, 239, 0.55);
  --bg: #f6f9fc;
  --card: #ffffff;
  --white: #ffffff;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow-sm: 0 10px 24px rgba(8, 26, 51, 0.06);
  --shadow-md: 0 18px 40px rgba(8, 26, 51, 0.10);
  --shadow-lg: 0 28px 80px rgba(8, 26, 51, 0.14);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --max: 1200px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans KR', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.07), transparent 26%),
    radial-gradient(circle at top right, rgba(14, 165, 183, 0.06), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.section.alt { background: var(--bg); }
.section.dark {
  background:
    radial-gradient(circle at 10% 20%, rgba(79, 140, 255, 0.18), transparent 30%),
    linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: var(--white);
}
.eyebrow, .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.eyebrow {
  background: rgba(37, 99, 235, 0.10);
  color: var(--blue);
}
.dark .eyebrow {
  background: rgba(255,255,255,0.12);
  color: #dbeafe;
}
.section-head { margin-bottom: 40px; }
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.section-head p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}
.dark .section-head p { color: rgba(255,255,255,0.78); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(14, 165, 183, 0.16), transparent 24%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
}
.hero h1 {
  margin: 16px 0 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: var(--navy);
}
.hero p.lead {
  margin: 20px 0 0;
  color: #41536b;
  font-size: clamp(16px, 2vw, 19px);
  max-width: 760px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero-tag {
  padding: 11px 15px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-2);
}
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.hero-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}
.hero-card h3 {
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}
.hero-card p { color: rgba(255,255,255,0.78); margin: 0; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}
.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.metric span { font-size: 13px; color: rgba(255,255,255,0.75); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card.soft {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.card.dark {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
}
.card.tint {
  background: linear-gradient(180deg, #f6faff 0%, #edf5ff 100%);
}
.card h3, .card h4 {
  margin: 0;
  letter-spacing: -0.03em;
}
.card h3 { font-size: 24px; }
.card h4 { font-size: 18px; }
.card:not(.dark) h3,
.card:not(.dark) h4 { color: var(--navy); }
.card.dark h3,
.card.dark h4 { color: #fff; }
.card p { color: var(--muted); margin: 12px 0 0; }
.card.dark p { color: rgba(255,255,255,0.82); }
.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 183, 0.12));
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 16px;
}
.card.dark .icon-wrap {
  background: rgba(255,255,255,0.10);
  color: #bfdbfe;
}
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kpi-item {
  padding: 28px 22px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.kpi-item:last-child { border-right: none; }
.kpi-item strong {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--accent-2);
}
.kpi-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}
.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
}
.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.10);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  margin-top: 4px;
}
.card.dark .check-list li,
.dark .check-list li { color: rgba(255,255,255,0.88); }
.card.dark .check-list li::before,
.dark .check-list li::before { background: rgba(255,255,255,0.12); color: #c4f6ff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.26);
}
.btn.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(8, 26, 51, 0.08);
  box-shadow: var(--shadow-sm);
}
.btn.gold {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 16px 30px rgba(246, 137, 43, 0.30);
}
.btn.warm {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9b4a 100%);
  box-shadow: 0 16px 30px rgba(246, 137, 43, 0.24);
}
.btn.outline {
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(8,26,51,0.14);
}
.hero-card .btn.outline,
.card.dark .btn.outline,
.section.dark .btn.outline,
.cta-band .btn.outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,0.30);
}
.stack { display: grid; gap: 16px; }
.info-list { display: grid; gap: 12px; margin-top: 18px; }
.info-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 14px;
}
.info-item strong { color: #fff; }
.info-item span { color: rgba(255,255,255,0.78); text-align: right; }
.timeline { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  font-size: 22px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.step h4 { font-size: 18px; margin: 2px 0 6px; }
.step p { margin: 0; color: var(--muted); }
.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.quote-card blockquote {
  margin: 0;
  padding-left: 18px;
  position: relative;
  font-size: 18px;
  line-height: 1.65;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.quote-card blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}
.quote-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.quote-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-btn span:first-child {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-panel-inner {
  padding: 0 24px 22px 24px;
  color: var(--muted);
  font-size: 15px;
}
.form-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field, .field-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-full { grid-column: 1 / -1; }
label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fbfdff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #7db0ff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
.field.error input,
.field.error select,
.field.error textarea,
.field-full.error input,
.field-full.error select,
.field-full.error textarea {
  border-color: rgba(220, 38, 38, 0.7);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}
.error-text {
  display: none;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
}
.field.error .error-text,
.field-full.error .error-text { display: block; }
.notice {
  padding: 15px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.7;
}
.notice.warn {
  background: #fff7e6;
  border: 1px solid #f3dfad;
  color: #6a4a00;
}
.notice.info {
  background: #eef7ff;
  border: 1px solid #cfe5ff;
  color: #184e8f;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}
.form-status.show { display: block; }
.form-status.success {
  background: #eaf8ef;
  border: 1px solid #b8e3c5;
  color: #166534;
}
.form-status.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(217, 226, 239, 0.8);
    background-color: rgba(251,179,0,0.70);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
	transform: translateZ(0); 
    -webkit-transform: translateZ(0); /* 사파리/크롬 대응 */
}
.site-header.scrolled {
  	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
	transform: translateZ(0); 
    -webkit-transform: translateZ(0); /* 사파리/크롬 대응 */
}
.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 900;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.brand small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.brand--logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  text-decoration: none;
}
.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: min(360px, 64vw);
  object-fit: contain;
}
.brand-fallback {
  display: none;
  flex-direction: column;
  font-weight: 900;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.brand-fallback small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (max-width: 1080px) {
  .brand-logo-img { height: 44px; }
}
@media (max-width: 520px) {
  .brand-logo-img { height: 36px; max-width: 220px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--sky);
  color: var(--blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(8,26,51,0.08);
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.hamburger span,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
  position: absolute;
}
.hamburger { position: relative; }
.hamburger::before { transform: translateY(-6px); }
.hamburger::after { transform: translateY(6px); }
.hamburger.is-open span { opacity: 0; }
.hamburger.is-open::before { transform: rotate(45deg); }
.hamburger.is-open::after { transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 16px auto 16px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(217, 226, 239, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 90;
}
.mobile-menu.show { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--navy);
}
.mobile-menu a.active,
.mobile-menu a:hover { background: var(--sky); color: var(--blue); }
.cta-band {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.cta-band p {
  margin: 14px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,0.85);
  font-size: 17px;
}
.cta-band .hero-actions {
  justify-content: center;
  margin-top: 26px;
}
.footer {
  background: #071427;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 32px;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
}
.footer-brand p { margin: 10px 0 0; font-size: 14px; }
.footer h5 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
}
.footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.footer a:hover { color: var(--gold-2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.badge {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--soft-line);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.card.dark .badge,
.section.dark .badge,
.cta-band .badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  box-shadow: none;
}
.persona {
  border-top: 4px solid transparent;
}
.persona.blue { border-color: #2563eb; }
.persona.cyan { border-color: #0ea5b7; }
.persona.gold { border-color: #f5b942; }
.persona.purple { border-color: #7c3aed; }
@media (max-width: 1080px) {
  .hero-grid,
  .form-shell,
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: inline-flex; }
  .hero { padding-top: 64px; }
  .section { padding: 76px 0; }
}
@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero h1 { font-size: 34px; }
  .section-head h2 { font-size: 30px; }
  .grid-3, .grid-4, .hero-metrics, .form-grid, .footer-grid, .kpi-strip { grid-template-columns: 1fr; }
  .kpi-strip { display: grid; }
  .kpi-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .kpi-item:last-child { border-bottom: none; }
  .hero-card, .form-card, .card { padding: 22px; }
  .step { grid-template-columns: 56px 1fr; gap: 14px; padding: 16px; }
  .step-num { width: 56px; height: 56px; border-radius: 16px; font-size: 20px; }
  .faq-btn { padding: 18px 18px; }
  .faq-panel-inner { padding: 0 18px 18px 18px; }
  .mobile-menu { inset: calc(var(--header-h) - 6px) 12px auto 12px; }
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.acsa-placeholder {
  min-height: 220px;
}

.nav-item {
  position: relative;
}
.nav-item.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-item.has-submenu > a::after {
  content: '▾';
  font-size: 11px;
  line-height: 1;
  transform: translateY(1px);
}
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 180px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(217, 226, 239, 0.88);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  gap: 4px;
}
.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu {
  display: flex;
}
.submenu a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.submenu a:hover,
.submenu a.active {
  background: var(--sky);
  color: var(--blue);
}
.mobile-sub-link {
  padding-left: 28px !important;
  color: var(--muted) !important;
}
.mini-board-shell {
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.mini-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--soft-line);
}
.mini-board-head h4 {
  margin: 0;
  font-size: 18px;
}
.mini-board-more {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}
.mini-board-body {
  padding: 18px 20px;
}
.mini-board-body ul,
.mini-board-body ol {
  margin: 0;
  padding-left: 18px;
}
.mini-board-body li {
  margin: 8px 0;
}
.mini-board-body table {
  width: 100%;
  border-collapse: collapse;
}
.mini-board-body td,
.mini-board-body th {
  padding: 10px 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: 14px;
}
.mini-board-placeholder {
  padding: 18px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.mini-board-placeholder code {
  font-size: 12px;
}
@media (max-width: 820px) {
  .submenu { display: none !important; }
}

/* v1.1.2 usability refinements */
.nav-links a {
  transition: background-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.nav-links a:hover,
.nav-links a.active,
.nav-item.has-submenu:hover > a,
.nav-item.has-submenu:focus-within > a {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}
.nav-item.has-submenu::after {
  content: '';
  position: absolute;
  left: 0;
  right: -18px;
  top: 100%;
  height: 18px;
}
.submenu {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  z-index: 150;
}
.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.submenu a {
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.submenu a:hover,
.submenu a.active {
  transform: translateX(2px);
}
.section.dark .step,
.cta-band .step {
  color: var(--ink);
}
.section.dark .step h4,
.cta-band .step h4 {
  color: var(--navy);
}
.section.dark .step p,
.cta-band .step p {
  color: var(--muted);
}
.hero-card .check-list {
  gap: 14px;
}
.hero-card .check-list li {
  color: rgba(255,255,255,0.90);
  font-size: 16.5px;
  line-height: 1.72;
}
.hero-card .check-list li::before {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #3b2800;
  box-shadow: 0 8px 18px rgba(245,185,66,.22);
}
.card.dark .check-list li,
.dark .card.dark .check-list li {
  color: rgba(255,255,255,0.90);
  font-size: 16px;
}
.card.dark .check-list li::before,
.dark .card.dark .check-list li::before {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #3b2800;
}
.about-kpi-bridge {
  position: relative;
  z-index: 5;
  padding: 30px 0 78px;
  margin-top: 0;
  background: var(--bg);
}
@media (max-width: 720px) {
  .about-kpi-bridge { padding: 22px 0 56px; }
}
.about-kpi-bridge .kpi-strip {
  position: relative;
  z-index: 2;
}
.office-card {
  padding: 30px;
}
.office-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.office-item {
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.office-item:first-child {
  border-top: none;
  padding-top: 0;
}
.office-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}
.office-label {
  display: inline-flex;
  margin-top: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}
.office-item p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.65;
}
.office-item .office-contact {
  color: var(--gold-2);
  font-weight: 800;
}
@media (max-width: 720px) {
  .hero-card .check-list li,
  .card.dark .check-list li,
  .dark .card.dark .check-list li {
    font-size: 15.5px;
  }
}

/* v1.2.0 — warm accent, photos, partner band */
.section-photo {
  margin: 0 auto 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1120px;
  position: relative;
}
.section-photo img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
  display: block;
}
.section-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,26,51,0) 55%, rgba(8,26,51,0.18) 100%);
  pointer-events: none;
}
.dark .section-photo {
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}
.eyebrow.warm {
  background: var(--accent-soft);
  color: #b85a07;
}
.kpi-item.accent strong {
  color: var(--accent-2);
}
.partner-band {
  background: linear-gradient(180deg, #fffaf3 0%, #fff 100%);
  border-top: 1px solid rgba(246, 137, 43, 0.12);
  padding: 62px 0 70px;
}
.partner-band .eyebrow {
  background: var(--accent-soft);
  color: #b85a07;
}
.partner-band-head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.partner-band-head h3 {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.03em;
  color: var(--navy);
}
.partner-band-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.partner-card {
  display: block;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-decoration: none;
  color: inherit;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(246, 137, 43, 0.40);
}
.partner-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #b85a07;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.partner-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.partner-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.partner-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .partner-card-grid { grid-template-columns: 1fr; }
  .partner-band { padding: 48px 0 54px; }
}
.footer-logo {
  height: 42px;
  width: auto;
  max-width: 280px;
  margin: 0 0 14px;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-net {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-address {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.global-network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.network-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
}
.network-card .nflag {
  font-size: 22px;
  line-height: 1;
}
.network-card h5 {
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 15px;
  letter-spacing: -0.02em;
}
.network-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .global-network-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .global-network-grid { grid-template-columns: 1fr; }
}
.profile-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  border: 1px solid rgba(246, 137, 43, 0.18);
}
.profile-card h4 {
  margin: 0;
  color: #8a4307;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.profile-card ul {
  margin: 0;
  padding-left: 18px;
  color: #6a3a08;
  font-size: 14px;
  line-height: 1.75;
}
.profile-card ul li { margin: 4px 0; }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 720px) {
  .profile-grid { grid-template-columns: 1fr; }
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
@media (max-width: 720px) {
  .flow-grid { grid-template-columns: 1fr; }
}
.flow-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
}
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffaa57);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.flow-item h5 {
  margin: 10px 0 6px;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: -0.02em;
}
.flow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.metric-pill {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.metric-pill strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 4px;
}
.metric-pill span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
}
@media (max-width: 720px) {
  .metric-row { grid-template-columns: 1fr; }
}
.target-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.target-list li {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .target-list { grid-template-columns: 1fr; }
}
.sports-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.sports-event-grid .card {
  text-align: center;
}
@media (max-width: 820px) {
  .sports-event-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .sports-event-grid { grid-template-columns: 1fr; }
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 720px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(246, 137, 43, 0.32), transparent 38%),
    linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
}


/* v1.2.2 — final launch copy emphasis */
.hero h1.hero-title {
  max-width: 900px;
}
.hero h1.hero-title span {
  display: inline-block;
}
.hero h1.hero-title strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 30px rgba(246,137,43,0.16);
}
.headline-inline-accent {
  color: var(--accent-2);
}
.hero p.lead strong {
  color: var(--navy);
  font-weight: 900;
}
.section.dark .hero p.lead strong,
.section.dark p strong {
  color: #fff;
}
.form-card .consent strong {
  color: var(--accent);
}

/* ==================================================
   Scholarship Case Page
   ================================================== */
.case-hero .hero-title strong {
  color: var(--accent);
}
.case-hero-card {
  background:
    radial-gradient(circle at 86% 12%, rgba(245, 185, 66, 0.20), transparent 30%),
    linear-gradient(145deg, #071b36 0%, #0d274f 56%, #123362 100%);
}
.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.centered p {
  margin-left: auto;
  margin-right: auto;
}
.case-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 24px;
}
.case-filter-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  color: var(--navy-2);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.case-filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-md);
}
.case-filter-btn.active {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  color: var(--white);
  border-color: transparent;
}
.case-count {
  text-align: right;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.case-count strong {
  color: var(--blue);
}
.scholarship-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.scholarship-case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.scholarship-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 185, 66, 0.46);
}
.scholarship-case-card.is-hidden {
  display: none;
}
.scholarship-case-card.is-highlight {
  border: 2px solid rgba(245, 185, 66, 0.72);
  background:
    radial-gradient(circle at 92% 0%, rgba(245, 185, 66, 0.20), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}
.case-num {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.case-card-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.case-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(37,99,235,.22);
}
.case-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.case-name-row h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.case-name-row span {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9a4a00;
  font-size: 12px;
  font-weight: 800;
}
.case-univ {
  margin: 4px 0 10px;
  color: #33526f;
  font-size: 15px;
  font-weight: 800;
}
.case-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}
.case-badge.badge-blue { background: rgba(37, 99, 235, 0.10); color: var(--blue); }
.case-badge.badge-green { background: rgba(22, 163, 74, 0.12); color: #047857; }
.case-badge.badge-amber { background: rgba(245, 185, 66, 0.18); color: #8a5a00; }
.case-badge.badge-coral { background: rgba(246, 137, 43, 0.14); color: #b45309; }
.case-badge.badge-purple { background: rgba(124, 58, 237, 0.12); color: #6d28d9; }
.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(239, 246, 255, 0.76);
  border: 1px solid rgba(217, 226, 239, 0.72);
}
.case-meta-grid div {
  min-width: 0;
}
.case-meta-grid dt {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.case-meta-grid dd {
  margin: 0;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}
.case-story {
  margin: 0;
  padding: 20px 0 0 18px;
  border-left: 4px solid var(--gold);
  color: #41536b;
  font-size: 15px;
  line-height: 1.9;
  flex: 1;
}
.case-result {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(22, 163, 74, 0.10);
  color: #047857;
}
.case-result span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}
.case-result strong {
  display: block;
  font-size: 14px;
  line-height: 1.65;
}
.case-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 20px;
  color: var(--muted);
  font-weight: 800;
  background: rgba(255,255,255,0.76);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
@media (max-width: 980px) {
  .scholarship-case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .case-filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .case-filter-btn { white-space: nowrap; }
  .case-count { text-align: left; }
  .scholarship-case-card { padding: 22px; }
  .case-card-head { grid-template-columns: 46px minmax(0, 1fr); gap: 12px; }
  .case-avatar { width: 46px; height: 46px; border-radius: 16px; }
  .case-meta-grid { grid-template-columns: 1fr; }
  .case-story { font-size: 14px; }
}


/* ==================================================
   Thank-you page / conversion landing
   ================================================== */
.thank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 24px;
  align-items: stretch;
}

.thank-card {
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}

.thank-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245,185,66,.18), transparent 68%);
  pointer-events: none;
}

.thank-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #3c2a00;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(245,185,66,.26);
}

.thank-card h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.6vw, 46px);
}

.thank-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.thank-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.thank-step {
  padding: 18px 20px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid rgba(13,35,69,.08);
}

.thank-step strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 6px;
}

.thank-step span {
  color: var(--muted);
  line-height: 1.75;
}

.thank-side {
  padding: 30px;
}

.thank-actions {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .thank-layout {
    grid-template-columns: 1fr;
  }
}
