/* ============================================================
   ENTAI HOMEPAGE — 완전 화이트 테마
   모든 배경 흰색 기반 · 다크 섹션 없음
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* 배경 */
  --w:    #FFFFFF;
  --g50:  #F8FAFC;
  --g100: #F1F5F9;
  --g200: #E2E8F0;
  --b50:  #EFF6FF;
  --b100: #DBEAFE;

  /* 브랜드 */
  --brand:  #0099DD;
  --brand2: #1A6FE8;
  --cyan:   #29C9F0;
  --gold:   #F59E0B;

  /* 텍스트 */
  --t1: #0F172A;
  --t2: #334155;
  --t3: #64748B;
  --t4: #94A3B8;

  /* 테두리 */
  --bd:  #E2E8F0;
  --bd2: #CBD5E1;

  /* 그림자 */
  --s1: 0 1px 4px rgba(15,23,42,.06);
  --s2: 0 4px 16px rgba(15,23,42,.08);
  --s3: 0 8px 32px rgba(15,23,42,.10);
  --s4: 0 16px 48px rgba(15,23,42,.12);
  --sb: 0 4px 20px rgba(0,153,221,.20);
  --sb2:0 8px 36px rgba(0,153,221,.28);

  /* 그라디언트 */
  --gb: linear-gradient(135deg,#0099DD,#1A6FE8);
  --gc: linear-gradient(135deg,#0099DD,#29C9F0);
  --gg: linear-gradient(135deg,#F59E0B,#EF8C01);

  --r1:8px; --r2:12px; --r3:16px; --r4:24px;
  --ease: all .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR','Inter',-apple-system,sans-serif;
  background: #FFFFFF;
  color: var(--t1);
  line-height: 1.65;
  overflow-x: hidden;
}
#bg-canvas { display: none !important; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── 그라디언트 텍스트 ── */
.gradient-text {
  background: var(--gc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   로고
   ============================================================ */
.logo-img-wrap { display: flex; align-items: center; }
.logo-img {
  height: 38px; width: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
  transition: var(--ease);
}
.logo-img-wrap:hover .logo-img { opacity: .75; }

.hero-logo-wrap { margin-bottom: 22px; }
.hero-logo-img  { height: 64px; width: auto; mix-blend-mode: multiply; filter: contrast(1.1); }

.footer-logo-link { display: inline-flex; align-items: center; margin-bottom: 12px; }
.footer-logo-img  { height: 36px; width: auto; mix-blend-mode: multiply; filter: contrast(1.05); transition: var(--ease); }
.footer-logo-link:hover .footer-logo-img { opacity: .7; }

/* EVOFAST 로고 — 투명 배경 유지, 흰색 박스 없음 */
.evofast-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

/* ============================================================
   카드
   ============================================================ */
.card, .glass-card {
  background: var(--w);
  border: 1px solid var(--bd);
  border-radius: var(--r3);
  box-shadow: var(--s1);
  transition: var(--ease);
}
.card:hover, .glass-card:hover {
  box-shadow: var(--s3);
  border-color: rgba(0,153,221,.25);
  transform: translateY(-3px);
}

/* ============================================================
   버튼
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--gb); color: #fff;
  border: none; border-radius: 50px;
  font-size: .93rem; font-weight: 600; cursor: pointer;
  transition: var(--ease); box-shadow: var(--sb);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sb2); }
.btn-primary svg   { width: 17px; height: 17px; }
.btn-full          { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center;
  padding: 13px 28px; background: var(--w); color: var(--brand);
  border: 2px solid var(--brand); border-radius: 50px;
  font-size: .93rem; font-weight: 600; cursor: pointer; transition: var(--ease);
}
.btn-secondary:hover { background: var(--b50); border-color: var(--brand2); color: var(--brand2); }

.btn-nav {
  padding: 8px 20px; background: var(--gb); color: #fff;
  border-radius: 50px; font-size: .85rem; font-weight: 600;
  transition: var(--ease); box-shadow: var(--sb);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--sb2); }

/* ============================================================
   네비게이션
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bd); box-shadow: var(--s1);
}
#navbar.scrolled { box-shadow: var(--s2); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 68px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 13px; color: var(--t2);
  font-size: .875rem; font-weight: 500;
  border-radius: var(--r1); transition: var(--ease);
}
.nav-links a:not(.btn-nav):hover { color: var(--brand); background: var(--b50); }
.nav-links .btn-nav { color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--t1); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; padding: 10px 0 18px; border-top: 1px solid var(--bd); background: #fff; }
.mobile-menu a { padding: 11px 24px; color: var(--t2); font-size: .93rem; transition: var(--ease); }
.mobile-menu a:hover { color: var(--brand); background: var(--b50); }
.mobile-menu.open { display: flex; }

/* ============================================================
   섹션 공통
   ============================================================ */
.section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* 섹션별 배경 — 흰색과 연한 청회색 교차 */
#hero            { background: #FFFFFF; }
#about           { background: #F4F8FF; border-top: 1px solid var(--bd); }
#services        { background: #FFFFFF; border-top: 1px solid var(--bd); }
#market          { background: #F4F8FF; border-top: 1px solid var(--bd); }
#evofast         { background: #FFFFFF; border-top: 1px solid var(--bd); }
#approach        { background: #F4F8FF; border-top: 1px solid var(--bd); }
#differentiation { background: #FFFFFF; border-top: 1px solid var(--bd); }
#value           { background: #F4F8FF; border-top: 1px solid var(--bd); }
#team            { background: #FFFFFF; border-top: 1px solid var(--bd); }
#contact         { background: #F4F8FF; border-top: 1px solid var(--bd); }

/* 섹션 레이블 */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand); background: rgba(0,153,221,.07);
  border: 1px solid rgba(0,153,221,.2);
  border-radius: 50px; padding: 5px 14px; margin-bottom: 16px;
}

/* 섹션 타이틀 */
.section-title {
  font-size: clamp(1.7rem,3.8vw,2.6rem);
  font-weight: 800; line-height: 1.22;
  letter-spacing: -.03em; color: var(--t1); margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem; color: var(--t2); max-width: 580px; line-height: 1.82; margin-bottom: 48px;
}

/* 섹션 상단 브랜드 스트라이프 */
.section-inner::before {
  content: ''; display: block;
  width: 44px; height: 4px;
  background: var(--gb);
  border-radius: 2px; margin-bottom: 26px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; gap: 60px;
  padding: 110px max(24px, calc((100vw - 1200px) / 2)) 80px;
}
#hero .section-inner::before { display: none; }

.hero-content { flex: 1; max-width: 600px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); padding: 7px 16px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.22);
  border-radius: 50px; margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 6px rgba(245,158,11,.6); animation: bdot 2s infinite;
}
@keyframes bdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-title {
  font-size: clamp(2rem,5.2vw,3.6rem);
  font-weight: 900; line-height: 1.14;
  letter-spacing: -.04em; color: var(--t1); margin-bottom: 20px;
}
.hero-subtitle { font-size: 1.05rem; color: var(--t2); line-height: 1.82; margin-bottom: 36px; }
.hero-subtitle strong { color: var(--brand); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 20px 24px; background: var(--w);
  border: 1px solid var(--bd); border-radius: var(--r3); box-shadow: var(--s2);
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-size: 1.1rem; font-weight: 800;
  background: var(--gc); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .7rem; color: var(--t4); font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: var(--bd); }

.hero-visual {
  flex: 1; max-width: 480px; position: relative;
  display: flex; align-items: center; justify-content: center; min-height: 380px;
}
.orb { position: absolute; border-radius: 50%; filter: blur(48px); pointer-events: none; }
.orb-1 { width: 260px; height: 260px; background: radial-gradient(circle,rgba(0,153,221,.12) 0%,transparent 70%); top:-30px; right:-30px; animation: fl1 6s ease-in-out infinite; }
.orb-2 { width: 180px; height: 180px; background: radial-gradient(circle,rgba(26,111,232,.1) 0%,transparent 70%); bottom:-20px; left:0; animation: fl2 8s ease-in-out infinite; }
.orb-3 { width: 130px; height: 130px; background: radial-gradient(circle,rgba(245,158,11,.12) 0%,transparent 70%); top:50%; left:50%; transform:translate(-50%,-50%); animation: fl3 5s ease-in-out infinite; }
@keyframes fl1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes fl2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(13px)} }
@keyframes fl3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.08)} }

.hero-card {
  position: relative; width: 100%; max-width: 400px;
  background: var(--w); border: 1px solid var(--bd);
  border-radius: var(--r3); overflow: hidden; box-shadow: var(--s4);
}
.card-header {
  display: flex; align-items: center; gap: 7px; padding: 12px 18px;
  background: var(--g100); border-bottom: 1px solid var(--bd);
  font-size: .75rem; color: var(--t3);
}
.card-dot { width: 9px; height: 9px; border-radius: 50%; }
.card-dot.green  { background: #22C55E; }
.card-dot.yellow { background: #F59E0B; }
.card-dot.red    { background: #EF4444; }
.card-header span { margin-left: 4px; font-size: .76rem; color: var(--t2); font-weight: 500; }
.card-body { padding: 18px; }

.agent-line {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px;
  background: var(--g50); border: 1px solid var(--bd);
  border-radius: 9px; margin-bottom: 7px; font-size: .8rem;
}
.agent-icon  { font-size: .95rem; flex-shrink: 0; }
.agent-text  { flex: 1; color: var(--t2); }
.agent-status { font-size: .67rem; font-weight: 600; padding: 2px 8px; border-radius: 50px; flex-shrink: 0; }
.agent-status.active    { background: rgba(34,197,94,.1);  color: #16A34A; border: 1px solid rgba(34,197,94,.25); animation: blink 1.5s infinite; }
.agent-status.done      { background: rgba(0,153,221,.1);  color: var(--brand); border: 1px solid rgba(0,153,221,.2); }
.agent-status.pending-s { background: var(--g100); color: var(--t4); border: 1px solid var(--bd); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.6} }

.progress-bar-wrap { height: 4px; background: var(--g100); border-radius: 2px; margin: 14px 0 9px; overflow: hidden; }
.progress-bar-fill { height: 100%; width: 35%; background: var(--gb); border-radius: 2px; animation: prog 3s ease-in-out infinite; }
@keyframes prog { 0%{width:8%} 50%{width:58%} 100%{width:8%} }
.card-footer-text { font-size: .7rem; color: var(--t4); text-align: center; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 22px; }
.about-card { padding: 34px 28px; position: relative; overflow: hidden; }
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg,var(--brand),var(--cyan),var(--gold));
  opacity: 0; transition: var(--ease);
}
.about-card:hover::before { opacity: 1; }
.about-icon { width: 50px; height: 50px; margin-bottom: 20px; }
.about-icon svg { width: 100%; height: 100%; }
.about-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--t1); }
.about-card p  { font-size: .88rem; color: var(--t2); line-height: 1.75; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-flow {
  display: flex; align-items: stretch; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--bd); border-radius: var(--r3); overflow: hidden; box-shadow: var(--s1);
}
.flow-step {
  flex: 1; padding: 26px 20px; text-align: center;
  background: var(--w); border-right: 1px solid var(--bd); transition: var(--ease);
}
.flow-step:last-child { border-right: none; }
.flow-step:hover      { background: var(--b50); }
.flow-num  { font-size: .65rem; font-weight: 700; letter-spacing: .15em; color: var(--brand); margin-bottom: 7px; text-transform: uppercase; }
.flow-step h4 { font-size: .92rem; font-weight: 700; color: var(--t1); margin-bottom: 7px; }
.flow-step p  { font-size: .78rem; color: var(--t3); line-height: 1.55; }
.flow-arrow   { font-size: 1.1rem; color: var(--brand); padding: 0 2px; flex-shrink: 0; display: flex; align-items: center; opacity: .4; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 18px; }
.service-item  { padding: 24px 22px; display: flex; flex-direction: column; gap: 9px; }
.service-icon-wrap { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.service-icon-wrap svg { width: 19px; height: 19px; }
.service-icon-wrap.blue   { background: #EFF6FF; color: var(--brand);  border: 1px solid #DBEAFE; }
.service-icon-wrap.purple { background: #EEF2FF; color: var(--brand2); border: 1px solid #C7D2FE; }
.service-icon-wrap.cyan   { background: #ECFEFF; color: #0891B2;       border: 1px solid #A5F3FC; }
.service-icon-wrap.green  { background: #F0FDF4; color: #16A34A;       border: 1px solid #BBF7D0; }
.service-icon-wrap.orange { background: #FFFBEB; color: var(--gold);   border: 1px solid #FDE68A; }
.service-icon-wrap.pink   { background: #FFF1F2; color: #DC2626;       border: 1px solid #FECDD3; }
.service-item h4 { font-size: .92rem; font-weight: 700; color: var(--t1); }
.service-item p  { font-size: .83rem; color: var(--t2); line-height: 1.65; }

/* ============================================================
   MARKET
   ============================================================ */
.market-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.market-problem, .market-solution { padding: 26px 26px; }
.market-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 50px; margin-bottom: 16px;
}
.market-tag.problem  { background: #FFF1F2; color: #DC2626; border: 1px solid #FECDD3; }
.market-tag.solution { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.market-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.market-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--t2); line-height: 1.55; }
.list-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.list-icon.red   { background: #FFF1F2; color: #DC2626; }
.list-icon.green { background: #F0FDF4; color: #16A34A; }
.market-arrow-wrap { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.market-arrow svg  { width: 44px; height: 22px; }
.market-arrow-wrap span { font-size: .68rem; font-weight: 700; letter-spacing: .07em; color: var(--brand); white-space: nowrap; }

/* ============================================================
   EVOFAST (흰색 배경 — 라이트 스타일)
   ============================================================ */

/* 브랜드 헤더 — 로고 크게, 가로 배치 */
.evofast-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FBFF 100%);
  border: 1px solid var(--b100);
  border-radius: var(--r4);
  box-shadow: var(--s2);
}
.evofast-brand-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.evofast-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 24px;
  border-left: 2px solid rgba(0,153,221,.2);
}
.evofast-tagline {
  font-size: .95rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .02em;
}
.evofast-by {
  font-size: .76rem;
  color: var(--t4);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.evofast-desc {
  font-size: .93rem;
  color: var(--t2);
  line-height: 1.88;
  max-width: 480px;
}

.process-steps { display: flex; align-items: center; gap: 0; margin-bottom: 48px; }
.process-step {
  flex: 1; padding: 26px 22px;
  background: var(--w); border: 1px solid var(--bd);
  border-radius: var(--r3); position: relative; overflow: hidden; transition: var(--ease);
}
.process-step::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gb); transform: scaleX(0); transition: var(--ease); transform-origin: left;
}
.process-step:hover::after { transform: scaleX(1); }
.process-step:hover { background: var(--b50); border-color: rgba(0,153,221,.3); box-shadow: var(--sb); }

.step-num-wrap {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gb); display: flex; align-items: center; justify-content: center;
  margin-bottom: 13px; box-shadow: var(--sb);
}
.step-num        { font-size: .88rem; font-weight: 800; color: #fff; }
.step-content h4 { font-size: .93rem; font-weight: 700; margin-bottom: 7px; color: var(--t1); }
.step-content p  { font-size: .78rem; color: var(--t3); line-height: 1.6; }

.process-connector { display: flex; align-items: center; padding: 0 12px; flex-shrink: 0; }
.connector-line    { display: none; }
.process-connector svg { width: 18px; height: 18px; color: var(--brand); opacity: .4; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 18px; margin-bottom: 32px; }
.feature-card {
  padding: 28px 24px; position: relative; overflow: hidden;
  background: var(--w); border: 1px solid var(--bd);
  border-radius: var(--r3); transition: var(--ease);
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(0,153,221,.06) 0%, transparent 55%);
  opacity: 0; transition: var(--ease);
}
.feature-card:hover { box-shadow: var(--s3); border-color: rgba(0,153,221,.25); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }
.feature-num { position: absolute; top: 16px; right: 20px; font-size: 2.8rem; font-weight: 900; opacity: .05; color: var(--brand); font-family: 'Inter',sans-serif; line-height: 1; }
.feature-icon-wrap { width: 44px; height: 44px; margin-bottom: 16px; }
.feature-icon-wrap svg { width: 100%; height: 100%; }
.feature-card h4 { font-size: .94rem; font-weight: 700; margin-bottom: 9px; line-height: 1.4; color: var(--t1); }
.feature-card p  { font-size: .83rem; color: var(--t2); line-height: 1.7; }

.mcp-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 28px 32px;
  background: var(--b50); border: 1px solid var(--b100); border-radius: var(--r3); box-shadow: var(--s1);
}
.mcp-badge { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .1em; padding: 3px 9px; background: var(--gb); border-radius: 4px; margin-bottom: 9px; color: #fff; }
.mcp-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 7px; color: var(--t1); }
.mcp-content p  { font-size: .85rem; color: var(--t2); line-height: 1.7; max-width: 440px; }
.mcp-visual     { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.mcp-node       { display: flex; align-items: center; justify-content: center; border-radius: var(--r2); font-size: .7rem; font-weight: 600; white-space: nowrap; border: 1px solid var(--bd2); }
.center-node    { width: 80px; height: 80px; background: var(--gb); color: #fff; font-size: .76rem; border-radius: 50%; box-shadow: var(--sb); animation: fl1 4s ease-in-out infinite; border: none; }
.mcp-connections { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.small-node      { padding: 6px 12px; background: var(--w); color: var(--t2); transition: var(--ease); }
.small-node:hover { border-color: var(--brand); color: var(--brand); }

/* ============================================================
   APPROACH
   ============================================================ */
.phase-timeline { display: flex; flex-direction: column; gap: 0; }
.phase-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; }
.phase-marker { display: flex; flex-direction: column; align-items: center; padding-top: 5px; }
.phase-circle { padding: 7px 12px; text-align: center; background: var(--gb); color: #fff; border-radius: 50px; font-size: .75rem; font-weight: 700; flex-shrink: 0; box-shadow: var(--sb); }
.phase-line   { flex: 1; width: 2px; min-height: 36px; background: linear-gradient(180deg,var(--brand),transparent); margin-top: 7px; }
.phase-body   { padding: 24px 26px; margin-bottom: 20px; }
.phase-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; color: var(--t1); }
.phase-body p  { font-size: .87rem; color: var(--t2); margin-bottom: 13px; line-height: 1.7; }
.phase-body ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.phase-body li { font-size: .83rem; color: var(--t3); padding-left: 14px; position: relative; }
.phase-body li::before { content: '›'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* ============================================================
   DIFFERENTIATION
   ============================================================ */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px; }
.diff-card { padding: 30px 24px; position: relative; overflow: hidden; }
.diff-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg,var(--brand),var(--cyan),var(--gold));
  transform: scaleX(0); transition: var(--ease); transform-origin: left;
}
.diff-card:hover::after { transform: scaleX(1); }
.diff-num {
  font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 13px;
  background: var(--gc); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  opacity: .55; font-family: 'Inter',sans-serif;
}
.diff-icon { width: 40px; height: 40px; margin-bottom: 13px; }
.diff-icon svg { width: 100%; height: 100%; }
.diff-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 9px; line-height: 1.4; color: var(--t1); }
.diff-card p  { font-size: .86rem; color: var(--t2); line-height: 1.7; margin-bottom: 16px; }
.diff-detail  { display: flex; flex-direction: column; gap: 5px; }
.diff-detail span { font-size: .74rem; color: var(--t3); padding: 3px 9px; background: var(--g100); border: 1px solid var(--bd); border-radius: 4px; }

/* ============================================================
   VALUE
   ============================================================ */
.value-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; }
.value-card  { padding: 38px 34px; }
.value-card.accent {
  background: linear-gradient(135deg,#EFF6FF,#DBEAFE);
  border-color: rgba(0,153,221,.22); box-shadow: var(--sb);
}
.value-card.accent:hover { box-shadow: var(--sb2); }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.value-card h3  { font-size: 1.25rem; font-weight: 800; margin-bottom: 7px; color: var(--t1); }
.value-card > p { font-size: .83rem; color: var(--brand); font-weight: 600; margin-bottom: 13px; }
.value-desc     { font-size: .86rem; color: var(--t2); line-height: 1.82; }

/* ============================================================
   TEAM
   ============================================================ */
.team-structure { display: grid; grid-template-columns: 190px 1fr; gap: 32px; align-items: start; margin-bottom: 24px; }
.team-center { padding: 26px 16px; text-align: center; position: relative; }
.team-center::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gb); border-radius: var(--r3) var(--r3) 0 0; }
.team-center-icon { font-size: 2.2rem; margin-bottom: 9px; display: block; }
.team-center h4   { font-size: .9rem; font-weight: 700; margin-bottom: 5px; color: var(--t1); }
.team-center p    { font-size: .74rem; color: var(--t3); }
.team-roles { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.team-role  { padding: 20px 18px; }
.team-role.highlight { background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-color: rgba(0,153,221,.2); }
.role-icon  { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.team-role h5 { font-size: .86rem; font-weight: 700; margin-bottom: 5px; color: var(--t1); }
.team-role p  { font-size: .77rem; color: var(--t3); line-height: 1.5; }
.team-desc    { padding: 20px 26px; }
.team-desc p  { font-size: .88rem; color: var(--t2); line-height: 1.82; }

/* ============================================================
   CONTACT (흰색/연청회색 배경 — 라이트)
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.contact-text .section-title { color: var(--t1); }
.contact-text > p { font-size: .93rem; color: var(--t2); line-height: 1.82; margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 11px; font-size: .88rem; color: var(--t2); }
.contact-item svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; }
.contact-item a   { color: var(--brand); font-weight: 600; transition: var(--ease); }
.contact-item a:hover { color: var(--brand2); }

.contact-form { padding: 34px; box-shadow: var(--s3); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--t2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--g50); border: 1px solid var(--bd);
  border-radius: 9px; padding: 10px 13px;
  color: var(--t1); font-size: .88rem; font-family: inherit;
  transition: var(--ease); outline: none; resize: vertical; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(0,153,221,.1); }
.form-group select option { background: #fff; color: var(--t1); }
.form-group ::placeholder  { color: var(--t4); }

/* 필수 항목 표시 */
.req { color: var(--brand); font-weight: 700; margin-left: 2px; }

/* 폼 전송 결과 메시지 */
.form-result {
  display: none;
  padding: 12px 16px;
  border-radius: var(--r1);
  font-size: .87rem;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 12px;
}
.form-result.success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
}
.form-result.error {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
  color: #B91C1C;
}
.form-result a { color: inherit; }

/* 허니팟 (봇 방지 — 화면 밖 배치) */
.hp-wrap { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   FOOTER (흰색 계열)
   ============================================================ */
footer {
  background: #F8FAFC;
  border-top: 1px solid var(--bd);
  padding: 52px 24px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 260px 1fr; gap: 52px; margin-bottom: 40px; }
.footer-brand p   { font-size: .86rem; color: var(--t3); line-height: 1.7; }
.footer-sub       { margin-top: 5px !important; font-size: .74rem !important; color: var(--t4) !important; }
.footer-links     { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-col       { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5    { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); margin-bottom: 2px; }
.footer-col a     { font-size: .84rem; color: var(--t4); transition: var(--ease); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--bd); flex-wrap: wrap; gap: 13px;
}
.footer-bottom p { font-size: .76rem; color: var(--t4); }
.footer-badges   { display: flex; gap: 7px; }
.badge {
  font-size: .67rem; font-weight: 600; padding: 3px 9px;
  background: var(--b50); border: 1px solid var(--b100); border-radius: 4px; color: var(--brand);
}

/* ============================================================
   스크롤 리빌
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 1024px) {
  .market-grid { grid-template-columns: 1fr; max-width: 560px; }
  .market-arrow-wrap { transform: rotate(90deg); padding: 7px 0; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-top   { grid-template-columns: 1fr; }
  .team-structure { grid-template-columns: 1fr; }
  .evofast-brand-header { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .evofast-desc { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { flex-direction: column; text-align: center; padding-top: 90px; min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero-ctas  { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual{ max-width: 100%; min-height: auto; }
  .section    { padding: 68px 20px; }
  .process-steps { flex-direction: column; }
  .process-connector svg { transform: rotate(90deg); }
  .process-connector { padding: 7px 0; }
  .services-flow { flex-direction: column; }
  .flow-step { border-right: none; border-bottom: 1px solid var(--bd); }
  .flow-step:last-child { border-bottom: none; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .phase-item { grid-template-columns: 68px 1fr; gap: 14px; }
  .phase-circle { font-size: .7rem; padding: 6px 10px; }
  .team-roles { grid-template-columns: 1fr; }
  .mcp-banner { flex-direction: column; }
  .mcp-visual { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .evofast-brand-left { flex-direction: column; align-items: flex-start; gap: 16px; }
  .evofast-brand-meta { padding-left: 0; border-left: none; border-top: 1px solid rgba(0,153,221,.2); padding-top: 12px; }
  .evofast-logo-img { height: 52px; }
}
@media (max-width: 480px) {
  .about-grid, .services-grid, .diff-grid, .features-grid, .value-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-stats   { flex-direction: column; gap: 10px; }
  .stat-divider { display: none; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--g100); }
::-webkit-scrollbar-thumb { background: rgba(0,153,221,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,153,221,.5); }
::selection { background: rgba(0,153,221,.15); }
