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

:root {
  --navy-900: #060e1f;
  --navy-800: #0a1628;
  --navy-700: #0f1f38;
  --navy-600: #152a4a;
  --teal-500: #0d9488;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --gold-500: #d4a853;
  --gold-400: #e8c472;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --page-max: 390px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy-900);
  color: var(--slate-200);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== PAGE SHELL ===== */
.page-shell {
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--navy-900);
  min-height: 100vh;
  position: relative;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 32px 16px 28px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .25;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,14,31,.4) 0%, rgba(6,14,31,.96) 100%);
}
.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(13,148,136,.1);
  border: 1px solid rgba(13,148,136,.2);
  color: var(--teal-300);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal-400);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

.hero-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid rgba(13,148,136,.2);
  box-shadow: 0 10px 36px rgba(0,0,0,.5), 0 0 50px rgba(13,148,136,.06);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-title {
  font-size: 21px; font-weight: 800; color: #fff;
  line-height: 1.45; margin-bottom: 12px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--teal-400), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 13px; color: var(--slate-400);
  line-height: 1.8; margin-bottom: 24px;
}

.btn-band {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal-500), #0f766e);
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 13px 0; border-radius: 12px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(13,148,136,.28);
  width: 100%;
  animation: btn-pulse 2.4s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 18px rgba(13,148,136,.28); }
  50% { transform: scale(1.04); box-shadow: 0 6px 28px rgba(13,148,136,.45); }
}
.btn-band:active { transform: scale(.97); animation: none; }
.btn-band img { height: 18px; }

.hero-stat-bar {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 20px; font-weight: 800; color: var(--teal-300);
}
.hero-stat .label {
  font-size: 10px; color: var(--slate-500); margin-top: 1px;
}

/* ===== SECTION COMMON ===== */
.sec-pad { padding: 40px 16px; }
.divider {
  height: 1px; margin: 0 16px;
  background: linear-gradient(90deg, transparent, rgba(13,148,136,.12), transparent);
}
.section-label {
  font-size: 10px; font-weight: 700;
  color: var(--teal-400);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 6px;
}
.section-title {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 8px; line-height: 1.45;
}
.section-desc {
  font-size: 12px; color: var(--slate-400);
  margin-bottom: 24px; line-height: 1.7;
}

/* ===== FEATURES ===== */
.feature-card {
  background: linear-gradient(165deg, rgba(15,31,56,.6), rgba(10,22,40,.8));
  border: 1px solid rgba(13,148,136,.08);
  border-radius: 14px;
  padding: 20px 16px;
  margin-bottom: 10px;
}
.feature-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.feature-icon.teal { background: rgba(13,148,136,.12); color: var(--teal-300); }
.feature-icon.gold { background: rgba(212,168,83,.12); color: var(--gold-400); }
.feature-icon.blue { background: rgba(96,165,250,.12); color: #93bbfd; }
.feature-card h3 {
  font-size: 14px; font-weight: 700; color: #fff;
}
.feature-card p {
  font-size: 12px; color: var(--slate-400); line-height: 1.7;
}

/* ===== ANALYSIS ===== */
.analysis-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.analysis-img img { width: 100%; display: block; }

.check-list { list-style: none; margin-top: 14px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--slate-300);
  margin-bottom: 8px; line-height: 1.6;
}
.check-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,148,136,.1);
  color: var(--teal-400);
  border-radius: 5px;
  font-size: 9px;
  margin-top: 2px;
}

/* ===== BRIEFING ===== */
.briefing-card {
  background: linear-gradient(165deg, rgba(15,31,56,.5), rgba(10,22,40,.7));
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 8px;
}
.briefing-tag {
  display: inline-block;
  background: rgba(13,148,136,.08);
  color: var(--teal-400);
  font-size: 10px; font-weight: 600;
  padding: 2px 7px; border-radius: 4px;
  margin-bottom: 8px;
}
.briefing-card h4 {
  font-size: 13px; font-weight: 600; color: #fff;
  margin-bottom: 5px; line-height: 1.5;
}
.briefing-card p {
  font-size: 11px; color: var(--slate-500); line-height: 1.7;
}
.briefing-meta {
  display: flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-size: 10px; color: var(--slate-500);
}

/* ===== TESTIMONIALS SLIDER ===== */
.slider-wrap {
  overflow: hidden;
  margin: 0 -16px;
  padding: 0 16px;
}
.slider-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.slider-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: linear-gradient(165deg, rgba(15,31,56,.4), rgba(10,22,40,.6));
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 18px 16px;
  position: relative;
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 10px; right: 14px;
  font-size: 36px; color: rgba(13,148,136,.08);
  font-family: Georgia, serif; line-height: 1;
}
.t-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.t-avatar {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--teal-300);
  flex-shrink: 0;
}
.t-meta .t-name { font-size: 12px; font-weight: 600; color: #fff; }
.t-meta .t-role { font-size: 10px; color: var(--slate-500); }
.t-badge {
  display: inline-block;
  background: rgba(212,168,83,.08);
  color: var(--gold-400);
  font-size: 10px; font-weight: 600;
  padding: 2px 7px; border-radius: 4px;
  margin-bottom: 6px;
}
.testimonial-card blockquote {
  font-size: 12px; color: var(--slate-300);
  line-height: 1.8; font-style: normal;
}
.t-date { font-size: 10px; color: var(--slate-500); margin-top: 8px; }
.slider-dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 16px;
}
.slider-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background .3s, width .3s;
}
.slider-dots span.active {
  width: 18px; border-radius: 3px;
  background: var(--teal-400);
}

/* ===== CTA BOX ===== */
.cta-section { padding: 20px 16px 40px; }
.cta-box {
  background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(212,168,83,.05));
  border: 1px solid rgba(13,148,136,.15);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -40%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(circle at 30% 50%, rgba(13,148,136,.05), transparent 50%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 6px; position: relative; line-height: 1.4;
}
.cta-box > p {
  font-size: 12px; color: var(--slate-400);
  margin-bottom: 20px; position: relative;
}
.cta-box .btn-band { position: relative; }
.cta-limit {
  display: block;
  font-size: 11px; color: var(--gold-400);
  margin-top: 12px; position: relative;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 28px 16px 20px;
}
.footer-company-title {
  font-size: 13px; font-weight: 700; color: var(--slate-300);
  margin-bottom: 14px;
}
.footer-info-block {
  font-size: 11px; color: var(--slate-500);
  line-height: 2;
  margin-bottom: 20px;
}
.footer-info-block strong {
  color: var(--slate-400);
}
.footer-disclaimers {
  font-size: 10px; color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-disclaimers p { margin-bottom: 8px; }
.footer-legal-links {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.04);
  margin-bottom: 16px;
}
.footer-legal-links a {
  font-size: 11px; color: var(--slate-400);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--teal-400); }
.footer-legal-links span {
  font-size: 10px; color: var(--slate-500);
}
.footer-copy {
  text-align: center;
  font-size: 10px; color: var(--slate-500);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  pointer-events: none;
}
.floating-cta-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 10px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(6,14,31,.96) 40%);
  pointer-events: auto;
}
.floating-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal-500), #0f766e);
  color: #fff; text-decoration: none;
  padding: 12px 0; border-radius: 12px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(13,148,136,.3);
  width: 100%;
  animation: btn-pulse 2.4s ease-in-out infinite;
}
.floating-cta a:active { transform: scale(.97); animation: none; }
.floating-cta img { height: 16px; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,14,31,.88);
  backdrop-filter: blur(8px);
  align-items: flex-end; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px 16px 0 0;
  max-width: var(--page-max); width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: 24px 20px 36px;
}
.modal-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.12);
  margin: 0 auto 16px;
}
.modal-box h2 {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 14px;
}
.modal-box h4 {
  font-size: 13px; font-weight: 600; color: var(--teal-300);
  margin: 14px 0 5px;
}
.modal-box p, .modal-box li {
  font-size: 11px; color: var(--slate-400);
  line-height: 1.8;
}
.modal-box ul { padding-left: 16px; margin-bottom: 8px; }
.modal-close {
  float: right;
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--slate-400);
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.1); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 2px; }

/* ===== CONVERSION OPTIMIZED V2 ===== */
:root { --page-max: 430px; }
.hero-v2 { padding: 26px 18px 26px; text-align: left; }
.hero-v2 .hero-bg img { opacity: .32; }
.hero-v2 .hero-bg::after { background: linear-gradient(180deg, rgba(6,14,31,.68) 0%, rgba(6,14,31,.94) 54%, rgba(6,14,31,1) 100%); }
.hero-badge-v2 { font-size: 12px; padding: 7px 12px; margin-bottom: 18px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.hero-title-v2 { font-size: 30px; line-height: 1.28; letter-spacing: -1.1px; margin-bottom: 14px; }
.hero-desc-v2 { font-size: 16px; line-height: 1.75; color: var(--slate-200); margin-bottom: 16px; font-weight: 500; }
.hero-proof-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.proof-chip { display: inline-flex; align-items: center; gap: 5px; padding: 7px 9px; border-radius: 999px; background: rgba(255,255,255,.07); color: var(--slate-200); font-size: 12px; font-weight: 700; border: 1px solid rgba(255,255,255,.08); }
.proof-chip i { color: var(--teal-300); }
.btn-main, .section-btn { min-height: 56px; font-size: 18px; font-weight: 800; border-radius: 15px; box-shadow: 0 8px 30px rgba(13,148,136,.38); }
.btn-main img, .section-btn img { height: 22px; }
.micro-copy { text-align: center; color: var(--gold-400); font-size: 12px; margin-top: 10px; font-weight: 700; }
.hero-visual-card { display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 14px; padding: 14px; border-radius: 18px; background: linear-gradient(135deg, rgba(15,31,56,.86), rgba(13,148,136,.12)); border: 1px solid rgba(94,234,212,.16); box-shadow: 0 10px 34px rgba(0,0,0,.25); }
.hero-photo-v2 { width: 86px; height: 86px; margin: 0; border-width: 3px; }
.mentor-name { color: #fff; font-size: 16px; font-weight: 800; line-height: 1.35; }
.mentor-sub { color: var(--slate-300); font-size: 13px; margin-top: 4px; line-height: 1.5; }
.hero-stat-bar-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; padding-top: 0; border: 0; }
.hero-stat-bar-v2 .hero-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 12px 5px; }
.hero-stat .num { font-size: 21px; }
.hero-stat .label { font-size: 11px; color: var(--slate-300); }
.sec-pad { padding: 46px 18px; }
.section-label { font-size: 12px; margin-bottom: 8px; }
.section-title-big, .section-title { font-size: 24px; line-height: 1.35; letter-spacing: -.5px; }
.section-desc-big, .section-desc { font-size: 15px; line-height: 1.75; color: var(--slate-300); }
.quick-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px; }
.benefit-item { display: flex; align-items: center; gap: 8px; min-height: 54px; padding: 12px; border-radius: 14px; background: rgba(13,148,136,.09); border: 1px solid rgba(94,234,212,.12); font-size: 14px; font-weight: 800; color: #fff; }
.benefit-item i { color: var(--teal-300); font-size: 17px; }
.feature-card-v2 { padding: 22px 18px; border-radius: 18px; margin-bottom: 12px; }
.accent-card { border-color: rgba(232,196,114,.24); background: linear-gradient(165deg, rgba(212,168,83,.10), rgba(10,22,40,.86)); }
.feature-card h3 { font-size: 17px; line-height: 1.38; }
.feature-card p { font-size: 15px; line-height: 1.75; color: var(--slate-300); }
.feature-icon { width: 46px; height: 46px; font-size: 18px; }
.mid-cta-card { margin-top: 18px; padding: 16px; border-radius: 18px; background: linear-gradient(135deg, rgba(13,148,136,.18), rgba(212,168,83,.10)); border: 1px solid rgba(94,234,212,.16); display: grid; gap: 12px; }
.mid-cta-card strong { color: #fff; font-size: 17px; line-height: 1.35; }
.mid-cta-card p { color: var(--slate-300); font-size: 13px; margin-top: 3px; }
.mini-cta { display: flex; align-items:center; justify-content:center; min-height: 48px; border-radius: 13px; background: var(--teal-500); color:#fff; font-size:16px; font-weight:800; text-decoration:none; cursor:pointer; }
.analysis-img-v2 { border-radius: 18px; margin: 18px 0; }
.step-list { display: grid; gap: 10px; margin: 18px 0 20px; }
.step-card { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 16px; border-radius: 16px; background: rgba(15,31,56,.72); border: 1px solid rgba(255,255,255,.07); }
.step-card span { display:flex; align-items:center; justify-content:center; width: 42px; height: 42px; border-radius: 12px; background: rgba(13,148,136,.16); color: var(--teal-300); font-weight: 900; font-size: 15px; }
.step-card h3 { color:#fff; font-size: 17px; line-height: 1.35; margin-bottom: 3px; }
.step-card p { color: var(--slate-300); font-size: 14px; line-height: 1.6; }
.section-btn { margin-top: 8px; }
.cta-section-v2 { padding: 24px 18px 44px; }
.cta-box-v2 { padding: 34px 20px; border-radius: 22px; }
.cta-kicker { display:inline-block; margin-bottom: 10px; padding: 5px 10px; border-radius: 999px; background: rgba(232,196,114,.14); color: var(--gold-400); font-size: 12px; font-weight: 900; }
.cta-box h2 { font-size: 25px; line-height: 1.34; letter-spacing: -.6px; }
.cta-box > p { font-size: 15px; line-height: 1.7; color: var(--slate-300); }
.cta-limit { font-size: 13px; line-height: 1.5; }
.briefing-card { padding: 18px; border-radius: 16px; margin-bottom: 12px; }
.briefing-tag { font-size: 12px; padding: 4px 8px; }
.briefing-card h4 { font-size: 16px; }
.briefing-card p { font-size: 14px; color: var(--slate-400); }
.briefing-meta { font-size: 12px; }
.floating-cta-inner { max-width: var(--page-max); padding: 10px 18px 16px; }
.floating-cta a { min-height: 54px; font-size: 17px; font-weight: 900; border-radius: 15px; }
.floating-cta img { height: 21px; }
.footer-info-block, .footer-disclaimers, .footer-legal-links a { font-size: 12px; }
@media (min-width: 431px) { .page-shell { box-shadow: 0 0 60px rgba(0,0,0,.35); } }


/* ===== MOBILE WHITE THEME V3 - Korea focused visual refresh ===== */
:root {
  --page-max: 480px;
  --paper: #ffffff;
  --paper-soft: #f8fafc;
  --paper-card: #ffffff;
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --line-soft: #e2e8f0;
  --kr-red: #ef4444;
  --kr-blue: #2563eb;
  --kr-green: #0f766e;
  --kr-gold: #b7791f;
  --shadow-soft: 0 10px 28px rgba(15,23,42,.08);
  --shadow-card: 0 8px 22px rgba(15,23,42,.07);
}

html { background: #eef2f7; }
body {
  background: #eef2f7;
  color: var(--ink-800);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.page-shell {
  background: var(--paper);
  color: var(--ink-800);
  width: 100%;
  max-width: var(--page-max);
  box-shadow: 0 0 34px rgba(15,23,42,.08);
}

/* clear dark gradients and convert all reading text to black */
.hero,
.sec-pad,
.cta-section,
.site-footer { background: var(--paper); }
.hero-v2 {
  text-align: left;
  padding: 18px 16px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.10), transparent 34%),
    radial-gradient(circle at 0% 10%, rgba(239,68,68,.09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-bg { display: none; }
.hero-inner { position: relative; }

.hero-badge,
.hero-badge-v2 {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--kr-blue);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  padding: 8px 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(37,99,235,.08);
}
.hero-badge .dot { background: var(--kr-red); animation: none; }

.hero-grid { gap: 14px; }
.hero-title,
.hero-title-v2 {
  color: var(--ink-900);
  font-size: clamp(31px, 8.6vw, 38px);
  line-height: 1.16;
  letter-spacing: -1.35px;
  margin-bottom: 13px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #111827 0%, #dc2626 45%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc,
.hero-desc-v2 {
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-proof-row { gap: 7px; margin-bottom: 16px; }
.proof-chip {
  background: #ffffff;
  color: var(--ink-800);
  border: 1px solid var(--line-soft);
  box-shadow: 0 4px 13px rgba(15,23,42,.06);
  font-size: 13px;
  padding: 8px 10px;
  font-weight: 900;
}
.proof-chip i { color: #16a34a; }

.btn-band,
.btn-main,
.section-btn,
.floating-cta a {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 44%, #2563eb 100%);
  color: #fff !important;
  min-height: 58px;
  font-size: 18px;
  font-weight: 950;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(220,38,38,.22), 0 4px 12px rgba(37,99,235,.18);
  animation: none;
  will-change: auto;
  transform: translateZ(0);
  letter-spacing: -.2px;
}
.btn-band:active,
.floating-cta a:active { transform: scale(.985); }
.micro-copy {
  color: var(--kr-red);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 900;
  margin-top: 10px;
}

.hero-visual-card {
  grid-template-columns: 88px 1fr;
  gap: 13px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-left: 5px solid var(--kr-blue);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.hero-photo,
.hero-photo-v2 {
  width: 88px;
  height: 88px;
  border: 3px solid #dbeafe;
  box-shadow: 0 8px 18px rgba(15,23,42,.10);
}
.mentor-name { color: var(--ink-900); font-size: 17px; font-weight: 950; }
.mentor-sub { color: var(--ink-600); font-size: 14px; font-weight: 700; }

.divider {
  height: 8px;
  margin: 0;
  background: #f1f5f9;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.sec-pad { padding: 34px 16px; }
.section-label {
  display: inline-flex;
  color: var(--kr-red);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  letter-spacing: .8px;
  margin-bottom: 10px;
}
.section-title,
.section-title-big {
  color: var(--ink-900);
  font-size: clamp(25px, 6.8vw, 31px);
  line-height: 1.28;
  letter-spacing: -.8px;
  margin-bottom: 10px;
  font-weight: 950;
}
.section-desc,
.section-desc-big {
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 650;
  margin-bottom: 18px;
}
.analysis-img,
.analysis-img-v2 {
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  background: #fff;
  margin: 16px 0 18px;
}
.analysis-img img { width: 100%; height: auto; display: block; }

.quick-benefits {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.benefit-item {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #dbeafe;
  color: var(--ink-900);
  box-shadow: var(--shadow-card);
  min-height: 62px;
  font-size: 15px;
  line-height: 1.35;
  border-radius: 17px;
}
.benefit-item i { color: var(--kr-blue); font-size: 18px; }

.feature-card,
.feature-card-v2,
.briefing-card,
.step-card {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}
.feature-card-v2,
.briefing-card { border-radius: 20px; }
.feature-card h3,
.step-card h3,
.briefing-card h4 { color: var(--ink-900); font-weight: 950; }
.feature-card h3 { font-size: 18px; }
.feature-card p,
.step-card p,
.briefing-card p,
.briefing-meta { color: var(--ink-600); }
.feature-card p { font-size: 16px; line-height: 1.75; font-weight: 550; }
.feature-icon.teal { background: #ecfeff; color: #0891b2; }
.feature-icon.gold { background: #fffbeb; color: var(--kr-gold); }
.feature-icon.blue { background: #eff6ff; color: var(--kr-blue); }
.accent-card {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  border-color: #fed7aa;
}
.step-card {
  grid-template-columns: 50px 1fr;
  border-radius: 18px;
  padding: 17px 15px;
}
.step-card span {
  background: linear-gradient(135deg, #ef4444, #2563eb);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}
.step-card h3 { font-size: 18px; }
.step-card p { font-size: 15px; font-weight: 550; }

.cta-section-v2 {
  padding: 28px 16px 38px;
  background: #f8fafc;
}
.cta-box,
.cta-box-v2 {
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.12), transparent 40%),
    radial-gradient(circle at 0% 0%, rgba(239,68,68,.10), transparent 36%),
    #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: 30px 18px;
}
.cta-box::before { display: none; }
.cta-kicker {
  background: #fff1f2;
  color: var(--kr-red);
  border: 1px solid #fecdd3;
  font-size: 13px;
}
.cta-box h2 {
  color: var(--ink-900);
  font-size: clamp(26px, 7vw, 32px);
  font-weight: 950;
}
.cta-box > p { color: var(--ink-700); font-size: 16px; font-weight: 700; }
.cta-limit { color: var(--kr-red); font-weight: 900; font-size: 14px; }

.briefing-tag {
  background: #eff6ff;
  color: var(--kr-blue);
  border: 1px solid #bfdbfe;
  font-weight: 950;
}
.briefing-card h4 { font-size: 17px; line-height: 1.45; }
.briefing-card p { font-size: 15px; line-height: 1.68; }

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #f8fafc;
  color: var(--ink-600);
}
.footer-company-title { color: var(--ink-900); font-size: 14px; }
.footer-info-block,
.footer-disclaimers,
.footer-copy,
.footer-legal-links span { color: var(--ink-600); }
.footer-info-block strong { color: var(--ink-900); }
.footer-disclaimers { border-top: 1px solid var(--line-soft); }
.footer-legal-links { border-top: 1px solid var(--line-soft); }
.footer-legal-links a { color: var(--ink-800); font-weight: 800; }
.footer-legal-links a:hover { color: var(--kr-blue); }

.floating-cta-inner {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.98) 35%);
  padding: 10px 14px 14px;
}
.modal-overlay { background: rgba(15,23,42,.38); backdrop-filter: blur(6px); }
.modal-box {
  background: #ffffff;
  color: var(--ink-800);
  border: 1px solid var(--line-soft);
}
.modal-box h2 { color: var(--ink-900); }
.modal-box h4 { color: var(--kr-blue); }
.modal-box p,
.modal-box li { color: var(--ink-700); font-size: 12px; }
.modal-close { background: #f1f5f9; border-color: var(--line-soft); color: var(--ink-700); }
.modal-handle { background: #cbd5e1; }

@media (max-width: 360px) {
  .hero-v2 { padding-left: 14px; padding-right: 14px; }
  .hero-title, .hero-title-v2 { font-size: 29px; }
  .btn-band, .btn-main, .section-btn, .floating-cta a { font-size: 16px; }
  .quick-benefits { grid-template-columns: 1fr; }
}

@media (min-width: 481px) {
  .page-shell { border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb; }
}
