/* ── VARIABLES & RESET ── */
:root {
  --bg: #f5f7fa;
  --bg2: #ffffff;
  --bg3: #eef1f5;
  --white: #1a1e26;
  --gray: #5a6372;
  --border: rgba(0,0,0,0.09);
  --accent: #e85c2c;
  --accent-dim: rgba(232,92,44,0.10);
  --accent-glow: rgba(232,92,44,0.22);
  --teal: #1aaa98;
  --teal-dim: rgba(26,170,152,0.10);
  --erp-core: #1A1D2E;
  --erp-accent: #4F6EF7;
  --erp-light: #EEF1FE;
  --out-core: #0E6E55;
  --out-accent: #18C99A;
  --out-light: #E6FAF5;
  --shadow-sm: 0 2px 8px rgba(26,29,46,0.06);
  --shadow-md: 0 4px 24px rgba(26,29,46,0.10);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Noto Sans KR', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 5vw; height: 68px;
  background: rgba(245,247,250,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; background: var(--accent); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 500;
  color: #fff; letter-spacing: -0.02em;
}
.logo-text { font-size: 0.95rem; font-weight: 500; color: var(--white); letter-spacing: 0.06em; }
.logo-text span { color: var(--accent); }
.nav-center { display: flex; gap: 0.2rem; list-style: none; }
.nav-center a {
  display: block; padding: 0.45rem 1.1rem; font-size: 0.83rem; font-weight: 500;
  color: var(--gray); text-decoration: none; border-radius: 6px; transition: all 0.2s; letter-spacing: 0.02em;
}
.nav-center a:hover { color: var(--white); background: rgba(0,0,0,0.05); }
.nav-right { display: flex; gap: 0.8rem; align-items: center; }
.nav-phone { font-size: 0.8rem; color: var(--gray); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.nav-phone::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
.nav-btn {
  background: var(--accent); color: #fff; padding: 0.45rem 1.2rem;
  border-radius: 6px; font-size: 0.82rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; border: none; cursor: pointer;
}
.nav-btn:hover { background: #d44d1f; transform: translateY(-1px); box-shadow: 0 4px 16px var(--accent-glow); }

/* ── HERO ── */
#hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 68px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black 30%, transparent 100%);
}
.hero-bg-glow { position: absolute; right: 5%; top: 20%; width: 600px; height: 500px; background: radial-gradient(ellipse, rgba(232,92,44,0.06) 0%, transparent 70%); }
.hero-bg-glow2 { position: absolute; right: 15%; bottom: 10%; width: 400px; height: 300px; background: radial-gradient(ellipse, rgba(26,170,152,0.05) 0%, transparent 70%); }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 5vw; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid rgba(232,92,44,0.3);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.7rem; letter-spacing: 0.14em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 1.8rem; width: fit-content;
}
.hero-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-h1 { font-size: clamp(2.4rem, 4.2vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1.6rem; }
.hero-h1 .outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); opacity: 0.3; }
.hero-h1 .highlight { color: var(--accent); }
.hero-sub { font-size: 1rem; line-height: 1.9; color: var(--gray); max-width: 440px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  background: var(--accent); color: #fff; padding: 0.8rem 1.8rem;
  border-radius: 8px; font-size: 0.9rem; font-weight: 700; text-decoration: none;
  letter-spacing: 0.03em; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px; border: none; cursor: pointer;
}
.btn-primary:hover { background: #d44d1f; transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-secondary {
  background: transparent; color: var(--gray); padding: 0.8rem 1.8rem;
  border-radius: 8px; font-size: 0.9rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--border); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.hero-kpi { display: flex; gap: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.kpi-num { font-size: 1.7rem; font-weight: 500; color: var(--white); line-height: 1; margin-bottom: 0.25rem; }
.kpi-num b { color: var(--accent); font-weight: 500; }
.kpi-label { font-size: 0.75rem; color: var(--gray); }
.hero-right { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.hero-dashboard {
  width: 100%; max-width: 500px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.dash-topbar { display: flex; align-items: center; gap: 10px; padding: 1rem 1.4rem; border-bottom: 1px solid var(--border); background: var(--bg3); }
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width:10px; height:10px; border-radius:50%; }
.d1{background:#ff5f57;} .d2{background:#febc2e;} .d3{background:#28c840;}
.dash-tab { font-size: 0.7rem; color: var(--gray); background: rgba(0,0,0,0.06); padding: 0.3rem 0.9rem; border-radius: 4px; margin-left: auto; }
.dash-body { padding: 1.4rem; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.dash-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; }
.dash-card-label { font-size: 0.7rem; color: var(--gray); margin-bottom: 0.4rem; }
.dash-card-val { font-size: 1.3rem; font-weight: 500; color: var(--white); line-height: 1; }
.dash-card-val.up { color: var(--teal); }
.dash-card-val.accent { color: var(--accent); }
.dash-card-sub { font-size: 0.65rem; color: var(--gray); margin-top: 0.3rem; }
.dash-chart-area { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; margin-bottom: 0.8rem; }
.dash-chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.dash-chart-title { font-size: 0.75rem; font-weight: 600; }
.dash-chart-badge { font-size: 0.65rem; color: var(--teal); background: var(--teal-dim); padding: 0.2rem 0.6rem; border-radius: 4px; }
.mini-bars { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.mbar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(0,0,0,0.07); position: relative; overflow: hidden; }
.mbar::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; background: var(--accent); border-radius: 3px 3px 0 0; animation: bar-fill 1.2s ease-out forwards; }
.mbar:nth-child(1)::after { height: 45%; animation-delay: 0.1s; }
.mbar:nth-child(2)::after { height: 62%; animation-delay: 0.15s; }
.mbar:nth-child(3)::after { height: 38%; animation-delay: 0.2s; }
.mbar:nth-child(4)::after { height: 71%; animation-delay: 0.25s; }
.mbar:nth-child(5)::after { height: 55%; animation-delay: 0.3s; }
.mbar:nth-child(6)::after { height: 80%; animation-delay: 0.35s; }
.mbar:nth-child(7)::after { height: 66%; animation-delay: 0.4s; }
.mbar:nth-child(8)::after { height: 90%; animation-delay: 0.45s; }
.dash-list { display: flex; flex-direction: column; gap: 0.5rem; }
.dash-list-item { display: flex; justify-content: space-between; align-items: center; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 0.65rem 0.9rem; }
.dli-label { font-size: 0.75rem; color: var(--gray); }
.dli-val { font-size: 0.75rem; color: var(--white); }
.dli-badge { font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 4px; }
.badge-green { background: rgba(44,212,191,0.15); color: var(--teal); }
.badge-orange { background: var(--accent-dim); color: var(--accent); }

/* ── TICKER ── */
.ticker { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); overflow: hidden; padding: 0.75rem 0; }
.ticker-inner { display: flex; gap: 4rem; animation: ticker-move 28s linear infinite; width: max-content; }
.ticker-item { font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(0,0,0,0.3); text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 1.2rem; }
.ticker-item::after { content:'·'; color: var(--accent); font-size: 1rem; }

/* ── SECTIONS ── */
section { padding: 7rem 5vw; }
.s-tag { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; }
.s-tag::before { content:''; width: 28px; height: 1px; background: var(--accent); }
.s-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.12; letter-spacing: -0.04em; margin-bottom: 1rem; }
.s-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.85; max-width: 560px; }

/* ── SOLUTIONS ── */
#solutions { background: var(--bg2); }
.sol-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.sol-card { background: var(--bg2); padding: 2.2rem 2rem; transition: background 0.25s; position: relative; cursor: pointer; }
.sol-card:hover { background: var(--bg3); }
.sol-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.4rem; }
.sol-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-dim); border: 1px solid rgba(232,92,44,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.25s; }
.sol-card:hover .sol-icon-wrap { background: var(--accent); }
.sol-idx { font-size: 0.65rem; color: rgba(0,0,0,0.2); }
.sol-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.sol-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.8; }
.sol-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 1.2rem; font-size: 0.7rem; color: var(--accent); opacity: 0; transform: translateY(4px); transition: all 0.25s; }
.sol-card:hover .sol-more { opacity: 1; transform: translateY(0); }

/* ── DIAGRAM (ERP × 외주관리 연동) ── */
.header { text-align: center; margin-bottom: 52px; animation: fadeUp 0.6s ease both; }
.header-badge {
  display: inline-block; font-size: 11px; letter-spacing: 0.18em;
  color: var(--erp-accent); background: var(--erp-light);
  border: 1px solid rgba(79,110,247,0.25); padding: 4px 14px;
  border-radius: 20px; margin-bottom: 16px; text-transform: uppercase;
}
.header h1 { font-size: clamp(22px, 4vw, 34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.25; margin-bottom: 10px; }
.header h1 span { color: var(--erp-accent); }
.header p { font-size: 15px; color: var(--gray); font-weight: 300; }
.diagram { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 80px 1fr; align-items: start; }
.system-panel { background: var(--bg2); border-radius: 20px; border: 1.5px solid var(--border); box-shadow: var(--shadow-md); overflow: hidden; animation: fadeUp 0.7s ease both; }
.system-panel.erp { animation-delay: 0.1s; }
.system-panel.out { animation-delay: 0.2s; }
.panel-header { padding: 22px 24px 18px; border-bottom: 1.5px solid var(--border); }
.panel-header.erp-h { background: linear-gradient(135deg, var(--erp-core) 0%, #2d3360 100%); }
.panel-header.out-h { background: linear-gradient(135deg, var(--out-core) 0%, #1a9e78 100%); }
.panel-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; color: #fff; margin-bottom: 4px; }
.panel-title { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.panel-title .accent { opacity: 0.7; font-weight: 400; font-size: 14px; margin-left: 6px; }
.module-list { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.module { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid transparent; background: var(--bg3); cursor: default; transition: all 0.22s ease; }
.erp .module:hover { border-color: rgba(79,110,247,0.4); background: var(--erp-light); box-shadow: 0 2px 12px rgba(79,110,247,0.12); }
.out .module:hover { border-color: rgba(24,201,154,0.4); background: var(--out-light); box-shadow: 0 2px 12px rgba(24,201,154,0.12); }
.module-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.erp .module-icon { background: var(--erp-light); }
.out .module-icon { background: var(--out-light); }
.module-info { flex: 1; min-width: 0; }
.module-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.module-desc { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.module-tag { font-size: 9.5px; padding: 3px 8px; border-radius: 6px; font-weight: 500; flex-shrink: 0; }
.erp .module-tag { background: var(--erp-light); color: var(--erp-accent); }
.out .module-tag { background: var(--out-light); color: var(--out-core); }
.bridge-col { display: flex; flex-direction: column; align-items: center; align-self:center; padding-top: 24px; animation: fadeUp 0.7s 0.3s ease both; }
.bridge-node { width: 52px; height: 52px; border-radius: 50%; background: var(--bg2); border: 2px solid var(--border); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 2px 0; transition: transform 0.2s; }
.bridge-node:hover { transform: scale(1.1); }
.bridge-line { width: 2px; flex: 1; min-height: 28px; background: linear-gradient(to bottom, var(--erp-accent), var(--out-accent)); opacity: 0.35; position: relative; }
.bridge-line::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--erp-accent), var(--out-accent));
  animation: flowDown 2s linear infinite; opacity: 0.7;
}
.flow-row { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 80px 1fr; margin: 8px 0 0; animation: fadeUp 0.7s 0.4s ease both; }
.flow-arrows { display: flex; flex-direction: column; gap: 10px; padding: 0 4px; grid-column: 2; justify-content: center; align-items: center; }
.arrow-line { height: 2px; width: 100%; border-radius: 2px; position: relative; overflow: visible; }
.arrow-line.to-right { background: linear-gradient(to right, var(--erp-accent), var(--out-accent)); }
.arrow-line.to-left { background: linear-gradient(to left, var(--erp-accent), var(--out-accent)); }
.arrow-line::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; }
.arrow-line.to-right::after { background: var(--out-accent); animation: slideRight 1.8s linear infinite; }
.arrow-line.to-left::after { background: var(--erp-accent); animation: slideLeft 1.8s linear infinite; }

/* ── EFFECTS (Before/After) ── */
.effects-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.before-after { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.ba-tabs { display: flex; border-bottom: 1px solid var(--border); }
.ba-tab { flex: 1; padding: 0.9rem; font-size: 0.82rem; font-weight: 600; text-align: center; cursor: pointer; color: var(--gray); transition: all 0.2s; border: none; background: var(--bg3); }
.ba-tab.active { color: #fff; background: var(--accent); }
.ba-tab[onclick*="after"].active { background: var(--teal); }
.ba-content { padding: 1.5rem; display: none; }
.ba-content.active { display: block; }
.ba-item { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; line-height: 1.7; color: var(--gray); }
.ba-item:last-child { border-bottom: none; }
.ba-bullet { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; }
.before .ba-bullet { background: rgba(255,100,100,0.15); color: #ff6464; }
.after .ba-bullet { background: rgba(44,212,191,0.15); color: var(--teal); }
.effects-right { padding-top: 1rem; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2.5rem; }
.metric-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 1.3rem 1.2rem; transition: border-color 0.2s; }
.metric-card:hover { border-color: rgba(232,92,44,0.3); }
.metric-val { font-size: 1.6rem; font-weight: 500; color: var(--accent); line-height: 1; margin-bottom: 0.3rem; }
.metric-val.teal { color: var(--teal); }
.metric-label { font-size: 0.78rem; color: var(--gray); }

/* ── CLIENTS ── */
#clients { background: var(--bg2); text-align: center; }
#clients .s-tag { justify-content: center; }
.clients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; max-width: 820px; margin: 0 auto; }
.client-cell { background: var(--bg2); padding: 1.4rem 0.8rem; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600; color: rgba(0,0,0,0.4); transition: all 0.2s; cursor: default; text-align: center; }
.client-cell:hover { background: var(--bg3); color: var(--white); }

/* ── WHY ── */
#why { background: linear-gradient(135deg, #eef1f5 0%, #ffffff 100%); border-top: 1px solid var(--border); text-align: center; }
#why .s-tag { justify-content: center; }
.why-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.9; max-width: 560px; margin: 0 auto 3.5rem; text-align: center; }
.why-stats { display: flex; justify-content: center; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; max-width: 700px; margin: 0 auto 4rem; background: var(--bg3); }
.why-stat { flex: 1; padding: 1.6rem 1rem; border-right: 1px solid var(--border); text-align: center; transition: background 0.2s; }
.why-stat:last-child { border-right: none; }
.why-stat:hover { background: var(--bg2); }
.why-stat-num { font-size: 1.7rem; font-weight: 500; color: var(--accent); line-height: 1; margin-bottom: 0.3rem; }
.why-stat-label { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.03em; }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1000px; margin: 0 auto 1.4rem; }
.why-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 2rem 1.8rem; text-align: left; position: relative; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; cursor: default; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.why-card:hover { border-color: rgba(232,92,44,0.3); box-shadow: 0 8px 32px rgba(232,92,44,0.08); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-num { font-size: 0.65rem; color: rgba(0,0,0,0.18); letter-spacing: 0.15em; position: absolute; top: 1.4rem; right: 1.6rem; }
.why-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-dim); border: 1px solid rgba(232,92,44,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; transition: background 0.25s; }
.why-card:hover .why-card-icon { background: var(--accent); }
.why-card-tag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.why-card h4 { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.7rem; color: var(--white); }
.why-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.8; }

/* ── PRICING ── */
#pricing { background: var(--bg2); border-top: 1px solid var(--border); text-align: center; }
#pricing .s-tag { justify-content: center; }
.pricing-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.85; max-width: 520px; margin: 0 auto 3rem; }
.pricing-total { display: flex; align-items: center; justify-content: space-between; background: var(--bg3); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 10px; padding: 1.2rem 1.8rem; margin: 0 auto 1.6rem; max-width: 780px; }
.pricing-total-label { letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.pricing-total-label::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--accent); box-shadow:0 0 8px var(--accent-glow); animation: pulse 2s ease-in-out infinite; }
.pricing-total-amount { font-size: 1.5rem; font-weight: 500; color: var(--accent); }
.pricing-total-amount span { font-size: 0.75rem; color: var(--gray); margin-left: 4px; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; max-width: 780px; margin: 0 auto; }
.pricing-card { background: var(--bg2); padding: 2.2rem 2rem; position: relative; transition: background 0.2s; }
.pricing-card:hover { background: var(--bg3); }
.pricing-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.6rem; }
.pricing-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-dim); border: 1px solid rgba(232,92,44,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.pricing-card:nth-child(2) .pricing-icon { background: var(--teal-dim); border-color: rgba(26,170,152,0.25); }
.pricing-module-tag { font-size: 0.85rem; letter-spacing: 0.12em; color: rgba(0,0,0,0.25); }
.pricing-card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.pricing-card-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.6rem; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.6rem; }
.pricing-price-label { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.4rem; }
.pricing-price { display: flex; justify-content: center; align-items: flex-end; gap: 4px; }
.pricing-price-num { font-size: 1.9rem; font-weight: 500; color: var(--accent); line-height: 1; }
.pricing-card:nth-child(2) .pricing-price-num { color: var(--teal); }
.pricing-price-unit { font-size: 0.8rem; color: var(--gray); margin-bottom: 3px; }
.pricing-price-period { font-size: 0.7rem; color: rgba(0,0,0,0.3); margin-top: 0.4rem; letter-spacing: 0.05em; }

/* ── PRO vs LITE COMPARE TABLE ── */
.compare-wrap { max-width: 780px; margin: 0 auto 3rem; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.compare-table thead tr { background: var(--bg3); }
.compare-table th { padding: 1rem 1.4rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table th:first-child { text-align: left; width: 36%; }
.compare-table th.col-pro { color: var(--accent); }
.compare-table th.col-lite { color: var(--teal); }
.compare-table td { padding: 0.9rem 1.4rem; font-size: 0.83rem; text-align: center; border-bottom: 1px solid var(--border); color: var(--gray); background: var(--bg2); transition: background 0.2s; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg3); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--white); }
.compare-badge-pro { display: inline-flex; align-items: center; gap: 5px; background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(232,92,44,0.25); border-radius: 6px; padding: 0.25rem 0.75rem; font-size: 0.78rem; font-weight: 600; }
.compare-badge-lite { display: inline-flex; align-items: center; gap: 5px; background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(26,170,152,0.25); border-radius: 6px; padding: 0.25rem 0.75rem; font-size: 0.78rem; font-weight: 600; }
.compare-badge-same { display: inline-flex; align-items: center; gap: 5px; background: var(--bg3); color: var(--gray); border: 1px solid var(--border); border-radius: 6px; padding: 0.25rem 0.75rem; font-size: 0.78rem; font-weight: 500; }

/* ── CTA ── */
#cta { background: var(--accent); padding: 5.5rem 5vw; position: relative; overflow: hidden; }
.cta-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none; }
.cc1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cc2 { width: 300px; height: 300px; bottom: -150px; right: 200px; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; color: #fff; margin-bottom: 0.8rem; }
.cta-sub { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-contact { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.8rem; }
.cta-contact strong { color: #fff; font-size: 1.1rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; min-width: 200px; }
.btn-white { background: #fff; color: var(--accent); padding: 0.85rem 1.6rem; border-radius: 8px; font-size: 0.88rem; font-weight: 700; text-decoration: none; text-align: center; transition: all 0.2s; border: none; cursor: pointer; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.85); padding: 0.85rem 1.6rem; border-radius: 8px; font-size: 0.88rem; font-weight: 600; text-decoration: none; text-align: center; border: 1.5px solid rgba(255,255,255,0.4); transition: all 0.2s; cursor: pointer; }
.btn-outline-white:hover { border-color: #fff; color: #fff; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 5vw 0; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.85; max-width: 240px; }
.footer-contact { margin-top: 1.2rem; font-size: 0.75rem; color: var(--gray); line-height: 2; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.82rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; }
.footer-copy { font-size: 0.75rem; color: rgba(0,0,0,0.35); }
.footer-copy span { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.75rem; color: rgba(0,0,0,0.3); text-decoration: none; }
.footer-links a:hover { color: var(--gray); }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
@keyframes bar-fill { from { height: 0; } }
@keyframes ticker-move { to { transform: translateX(-50%); } }
@keyframes fill-in { from { width: 0 !important; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes flowDown { 0% { clip-path: inset(0 0 100% 0); } 100% { clip-path: inset(0 0 0% 0); } }
@keyframes slideRight { 0%{left:0} 100%{left:calc(100% - 6px)} }
@keyframes slideLeft { 0%{right:0} 100%{right:calc(100% - 6px)} }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  #hero, .effects-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 5vw 4rem; }
  .nav-center { display: none; }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: row; }
}
@media (max-width: 860px) {
  .why-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .diagram { grid-template-columns: 1fr; }
  .bridge-col { flex-direction: row; justify-content: center; padding: 4px 0; }
  .bridge-node { width: 38px; height: 38px; font-size: 15px; margin: 0 1px; }
  .bridge-line { width: 20px; min-height: 2px; height: 2px; flex: unset; background: linear-gradient(to right, var(--erp-accent), var(--out-accent)); }
  .bridge-line::after { display: none; }
  .flow-row { display: none; }
  .module-desc { white-space: normal; }
}
@media (max-width: 600px) {
  .sol-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .hero-kpi { gap: 1.5rem; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .why-cards { grid-template-columns: 1fr; }
  .why-stats { flex-wrap: wrap; }
  .why-stat { min-width: 50%; border-bottom: 1px solid var(--border); }
}