:root {
  --bg: #0a0e1a;
  --bg-2: #0f1524;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f4f8;
  --muted: #9aa3b8;
  --accent: #7c5cff;
  --accent-2: #22d3ee;
  --accent-3: #f59e0b;
  --success: #10b981;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Pretendard Variable", "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Aurora background */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg-aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}
.bg-aurora span:nth-child(1) {
  width: 520px; height: 520px;
  top: -140px; left: -120px;
  background: radial-gradient(circle, #7c5cff 0%, transparent 70%);
}
.bg-aurora span:nth-child(2) {
  width: 460px; height: 460px;
  top: 20%; right: -160px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
  animation-delay: -6s;
}
.bg-aurora span:nth-child(3) {
  width: 600px; height: 600px;
  bottom: -200px; left: 30%;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  animation-delay: -12s;
  opacity: 0.35;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

/* Header */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 20px;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(15, 21, 36, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 24px; height: 24px;
  border-radius: 8px;
  background: conic-gradient(from 180deg, #7c5cff, #22d3ee, #f59e0b, #7c5cff);
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.45);
}
.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}
.nav a { transition: color 0.2s; }
.nav a:hover { color: var(--text); }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.button-sm { min-height: 40px; padding: 0 18px; font-size: 0.9rem; }
.button-primary {
  background: linear-gradient(135deg, #7c5cff 0%, #5b3eff 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(124, 92, 255, 0.5); }
.button-ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.button-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 24px 60px;
  text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--muted);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  font-weight: 800;
}
.gradient-text {
  background: linear-gradient(135deg, #7c5cff, #22d3ee 50%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-kpis > div {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(20px);
}
.hero-kpis strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff, #9aa3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-kpis span { color: var(--muted); font-size: 0.88rem; }

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
}
.section-heading { max-width: 720px; margin-bottom: 40px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  background: rgba(124, 92, 255, 0.14);
  color: #b3a3ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 800;
}
.section-heading p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* Demo */
.demo {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.08), rgba(34, 211, 238, 0.04));
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 32px;
  backdrop-filter: blur(20px);
}
.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.demo-tab {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.demo-tab:hover { color: var(--text); background: var(--surface-2); }
.demo-tab.active {
  background: linear-gradient(135deg, #7c5cff, #5b3eff);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(124, 92, 255, 0.4);
}
.demo-stage {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

/* Phone mock */
.phone {
  width: 320px;
  height: 640px;
  margin: 0 auto;
  background: #0b1020;
  border: 10px solid #1a1f2e;
  border-radius: 44px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #12172a 0%, #0a0e1a 100%);
  overflow: hidden;
}
.screen {
  position: absolute;
  inset: 0;
  padding: 48px 20px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
  overflow-y: auto;
}
.screen.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.screen-header {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.screen-body { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.chip-row { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  transition: all 0.15s;
}
.chip:hover { background: var(--surface-2); color: var(--text); }
.chip.active {
  background: rgba(124, 92, 255, 0.2);
  border-color: #7c5cff;
  color: #fff;
}
.slider-wrap { display: flex; align-items: center; gap: 10px; }
.slider-wrap input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--surface-2);
  border-radius: 999px;
  outline: none;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  background: #7c5cff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.2);
  cursor: pointer;
}
.slider-wrap > span { font-size: 0.88rem; font-weight: 700; min-width: 68px; text-align: right; }
.screen-cta {
  margin-top: auto;
  padding: 14px;
  background: linear-gradient(135deg, #7c5cff, #5b3eff);
  border-radius: 14px;
  color: white;
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.4);
  transition: transform 0.15s;
}
.screen-cta:hover { transform: translateY(-2px); }
.screen-cta.success { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4); }

.applicant {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  animation: slideIn 0.4s both;
}
.applicant:nth-child(2) { animation-delay: 0.1s; }
.applicant:nth-child(3) { animation-delay: 0.2s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #22d3ee);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.92rem;
}
.avatar.alt  { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.avatar.alt2 { background: linear-gradient(135deg, #10b981, #22d3ee); }
.applicant strong { display: block; font-size: 0.86rem; }
.applicant span { font-size: 0.74rem; color: var(--muted); }
.accept {
  padding: 8px 14px;
  background: var(--success);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.contract {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contract-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
}
.contract-row span { color: var(--muted); }
.contract-row strong.green { color: var(--success); }
.signature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}
.sig-line {
  flex: 1;
  height: 24px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  border-radius: 4px;
  opacity: 0.6;
}
.sig-animated {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  animation: sigSweep 2s linear infinite;
}
@keyframes sigSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gps-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.gps-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
  display: grid; place-items: center;
  position: relative;
}
.gps-ring::before, .gps-ring::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--accent-2);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s infinite;
}
.gps-ring::after { animation-delay: 1s; }
@keyframes ripple {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
.gps-dot {
  width: 14px; height: 14px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-2);
}
.gps-card strong { display: block; font-size: 0.88rem; }
.gps-card span { font-size: 0.76rem; color: var(--muted); }

.timeline-mini {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.tl-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.tl-item em { font-style: normal; color: var(--text); font-weight: 600; font-size: 0.8rem; }
.tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.tl-item.done { color: var(--text); }
.tl-item.done .tl-dot { background: var(--success); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
.tl-item.highlight .tl-dot { background: var(--accent-3); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25); }
.tl-item.highlight em { color: var(--accent-3); font-weight: 800; }

/* Demo aside */
.demo-aside { position: relative; min-height: 340px; }
.aside-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.aside-step.active, .aside-step[data-for="1"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.aside-step:not(.active) { opacity: 0; pointer-events: none; }
.aside-step.active { opacity: 1 !important; pointer-events: auto !important; }
.aside-eyebrow {
  color: var(--accent-2);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 10px;
}
.aside-step h3 {
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 800;
}
.aside-step > p { color: var(--muted); margin: 0 0 20px; }
.aside-step ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aside-step li {
  position: relative;
  padding: 12px 14px 12px 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.94rem;
}
.aside-step li::before {
  content: "✓";
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #7c5cff, #22d3ee);
  border-radius: 50%;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid; place-items: center;
}

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-col {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare-col.bad { opacity: 0.85; }
.compare-col.good {
  background: linear-gradient(160deg, rgba(124, 92, 255, 0.14), rgba(16, 185, 129, 0.08));
  border-color: rgba(124, 92, 255, 0.3);
  box-shadow: 0 20px 60px rgba(124, 92, 255, 0.15);
}
.compare-head { margin-bottom: 20px; }
.tag-bad, .tag-good {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.tag-bad { background: rgba(239, 68, 68, 0.14); color: #fca5a5; }
.tag-good { background: rgba(16, 185, 129, 0.18); color: #6ee7b7; }
.compare-col h3 { font-size: 1.3rem; margin: 0; line-height: 1.3; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.compare-col li {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.5;
  word-break: keep-all;
}
.compare-col li > span {
  flex: 0 0 22px;
  margin-top: 2px;
}
.compare-col.good li { color: var(--text); }
.compare-col li span {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.76rem;
}
.compare-col.bad li span { background: rgba(239, 68, 68, 0.18); color: #fca5a5; }
.compare-col.good li span { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }
.compare-col li strong { color: var(--text); }

/* Demo extras */
.guarantee, .info-box, .refund-box {
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
}
.guarantee {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.guarantee strong { color: #6ee7b7; font-size: 0.86rem; }
.guarantee span { color: var(--muted); }
.info-box {
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.3);
}
.info-box strong { color: #b3a3ff; font-size: 0.86rem; }
.info-box span { color: var(--muted); }
.refund-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.refund-box strong { color: #fcd34d; font-size: 0.86rem; }
.refund-box span { color: var(--muted); }
.refund-box b { color: #fcd34d; }

.applicant.matched {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
}
.applicant.cancelled { opacity: 0.55; }
.applicant.small { padding: 8px 10px; }
.applicant.small strong { font-size: 0.8rem; }
.applicant.small span { font-size: 0.7rem; }
.badge-match, .badge-cancel {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-match { background: var(--success); color: white; }
.badge-cancel { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.avatar.mute { background: #3a3f52; color: var(--muted); }

.waitlist {
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.waitlist-title {
  margin: 0 0 4px;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auto-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
}
.arrow-anim {
  font-size: 1.4rem;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

.screen-cta.danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.aside-step h3 em {
  font-style: normal;
  background: linear-gradient(135deg, #7c5cff, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aside-step p b { color: var(--text); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(34, 211, 238, 0.2));
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.2rem; margin: 0 0 8px; font-weight: 700; }
.feature-card p { color: var(--muted); margin: 0; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
}
.audience-card.alt { background: linear-gradient(160deg, rgba(124, 92, 255, 0.12), rgba(34, 211, 238, 0.06)); }
.audience-tag {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 700;
}
.audience-card.alt .audience-tag { background: rgba(34, 211, 238, 0.15); color: #67e8f9; }
.audience-card h3 { font-size: 1.2rem; margin: 0 0 16px; line-height: 1.4; }
.audience-card ul { padding-left: 20px; margin: 0; color: var(--muted); }
.audience-card li { margin-bottom: 6px; }

/* Contact */
.contact-section { padding-bottom: 80px; }
.contact-card {
  padding: 56px 40px;
  background: linear-gradient(160deg, rgba(124, 92, 255, 0.14), rgba(34, 211, 238, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  text-align: center;
}
.contact-card h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.contact-card > p { color: var(--muted); margin: 0 0 28px; }
.contact-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Scroll reveal */
.section { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.section.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .demo-stage { grid-template-columns: 1fr; gap: 28px; }
  .demo-aside { min-height: auto; }
  .aside-step { position: relative; }
  .aside-step:not(.active) { display: none; }
  .card-grid, .audience-grid, .hero-kpis, .compare { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}
@media (max-width: 620px) {
  .hero { padding: 60px 20px 40px; }
  .hero-kpis { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .audience-grid, .compare { grid-template-columns: 1fr; }
  .demo { padding: 20px; }
  .contact-card { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .header-inner { padding: 10px 14px; }
  .button-sm { display: none; }
}
