/* ─── Naruvon Homepage — Design System ─────────────────────────────── */

/* Pretendard CDN */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

/* ─── Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --navy-950:  #04091a;
  --navy-900:  #08163a;
  --navy-800:  #0d2f6f;
  --navy-700:  #143f8c;
  --blue-600:  #174ca8;
  --blue-500:  #185dce;
  --blue-400:  #2471e8;
  --sky-500:   #2cb7ff;
  --sky-300:   #80d4ff;
  --sky-100:   #d0edff;
  --sky-50:    #eaf6ff;

  /* Ink */
  --ink-900:   #060d1a;
  --ink-700:   #1e2d42;
  --ink-500:   #42536b;
  --ink-400:   #607a95;
  --ink-300:   #7f96b0;
  --ink-100:   #c8d8e8;

  /* Surface */
  --surface-0: #ffffff;
  --surface-1: #f5f9ff;
  --surface-2: #eef4fd;
  --line:      rgba(20, 63, 140, 0.10);
  --line-dark: rgba(20, 63, 140, 0.18);

  /* Gradients */
  --grad-hero:   linear-gradient(145deg, #04091a 0%, #0d2f6f 38%, #185dce 72%, #2cb7ff 100%);
  --grad-brand:  linear-gradient(135deg, #0d2f6f 0%, #174ca8 55%, #2cb7ff 100%);
  --grad-card:   linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);

  /* Shadows */
  --shadow-hero: 0 40px 90px rgba(4, 9, 26, 0.22);
  --shadow-xl:   0 24px 60px rgba(8, 22, 58, 0.13);
  --shadow-lg:   0 12px 36px rgba(8, 22, 58, 0.09);
  --shadow-md:   0  6px 18px rgba(8, 22, 58, 0.07);

  /* Radii */
  --r-2xl: 32px;
  --r-xl:  24px;
  --r-lg:  18px;
  --r-md:  12px;
  --r-sm:  8px;
  --r-pill: 999px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--announce-h, 0px) + 88px);
}

body {
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo",
               "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--surface-1);
  min-width: 320px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Scroll Progress Bar ────────────────────────────────────────────── */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-500), var(--sky-300));
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-bar { transition: none; }
}

/* ─── Skip Link ──────────────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 10px 20px;
  background: var(--blue-500);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transition: top 0.15s;
}

.skip-link:focus {
  top: 16px;
}

/* ─── Layout Helpers ─────────────────────────────────────────────────── */
.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.container--narrow {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── Typography ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(44, 183, 255, 0.12);
  border: 1px solid rgba(44, 183, 255, 0.28);
  color: var(--blue-500);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

/* ─── Scroll Animations ─────────────────────────────────────────────── */
/* Only hide elements when JS is active — content always visible without JS */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

body.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  body.js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: var(--announce-h, 0px);
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled:not(.on-hero) {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--line-dark), var(--shadow-md);
}

/* Hero 위에 있을 때 (스크롤 전): 투명 배경 */
.nav.on-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Hero 내부 스크롤 중: 뒤 콘텐츠가 nav에 비치지 않도록 어두운 반투명 배경 */
.nav.scrolled.on-hero {
  background: rgba(4, 9, 26, 0.55);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(24, 93, 206, 0.35);
  flex-shrink: 0;
}

.nav__logo-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.nav__logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 3px;
}

.nav__logo-name .von {
  color: var(--sky-300);
}

/* 스크롤 후 (밝은 배경)에서 Von 색상 유지 */
.nav:not(.on-hero) .nav__logo-name .von {
  color: var(--blue-500);
}

.nav__logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-300);
  text-transform: uppercase;
  line-height: 1;
}

.nav.on-hero .nav__logo-name { color: #fff; }
.nav.on-hero .nav__logo-sub  { color: rgba(255,255,255,0.56); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-500);
  transition: color 0.18s, background 0.18s;
}

.nav__link:hover {
  color: var(--blue-500);
  background: var(--sky-50);
}

.nav.on-hero .nav__link {
  color: rgba(255, 255, 255, 0.78);
}

.nav.on-hero .nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.nav__link--active {
  color: var(--blue-500);
  background: var(--sky-50);
}

.nav.on-hero .nav__link--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: var(--blue-500);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(24, 93, 206, 0.30);
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(24, 93, 206, 0.38);
}

.nav.on-hero .nav__cta {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-800);
  box-shadow: 0 4px 14px rgba(4, 9, 26, 0.18);
}

.nav.on-hero .nav__cta:hover {
  background: #fff;
}

.nav__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  padding: 8px;
  border-radius: var(--r-sm);
  color: var(--ink-500);
  transition: color 0.18s, background 0.18s;
}
.nav.on-hero .nav__hamburger { color: #fff; }
.nav__hamburger:hover { background: rgba(255,255,255,0.1); }
.nav__hamburger svg { display: block; }

/* Mobile Nav Drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 9, 26, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav__drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 100%);
  height: 100%;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
}

.nav__drawer.open .nav__drawer-panel {
  transform: translateX(0);
}

.nav__drawer-close {
  align-self: flex-end;
  padding: 8px;
  border-radius: var(--r-sm);
  color: var(--ink-500);
  margin-bottom: 8px;
}

.nav__drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-700);
  border: 1px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.nav__drawer-link:hover {
  background: var(--sky-50);
  color: var(--blue-500);
  border-color: var(--line);
}

.nav__drawer-cta {
  margin-top: 8px;
  padding: 16px;
  border-radius: var(--r-lg);
  background: var(--blue-500);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 120px 0 80px;
}

/* Ambient orbs */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
    rgba(44, 183, 255, 0.18) 0%,
    rgba(24, 93, 206, 0.10) 45%,
    transparent 75%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 48vw;
  height: 48vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(20, 63, 140, 0.22) 0%,
    transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 52px;
}

.hero__copy { max-width: 620px; }

/* Hero brand identity bar */
.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.hero__brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(24,93,206,0.40);
}

.hero__brand-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.hero__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.hero__brand-tag {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-300);
  line-height: 1;
}

.hero__headline {
  margin-top: 20px;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 840;
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: #fff;
  text-wrap: balance;
}

.hero__headline em {
  font-style: normal;
  color: var(--sky-300);
}

.hero__sub {
  margin-top: 24px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 52px;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s, background 0.18s, color 0.18s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: #fff;
  color: var(--navy-800);
  box-shadow: 0 8px 24px rgba(4, 9, 26, 0.18);
}
.btn--primary:hover { box-shadow: 0 12px 32px rgba(4, 9, 26, 0.24); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn--blue {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 8px 24px rgba(24, 93, 206, 0.32);
}
.btn--blue:hover {
  background: var(--blue-400);
  box-shadow: 0 12px 32px rgba(24, 93, 206, 0.40);
}

.btn--outline-blue {
  background: transparent;
  border: 1.5px solid var(--blue-500);
  color: var(--blue-500);
}
.btn--outline-blue:hover { background: var(--sky-50); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero__trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 8px rgba(44, 183, 255, 0.7);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s, background 0.2s;
  animation: bounce-hint 2s ease-in-out infinite;
}

.hero__scroll-hint:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint { animation: none; }
}

/* ── Hero Visual: Decision Room ──────────────────────────────────────── */
.hero__visual {
  position: relative;
}

.decision-room {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 9, 26, 0.55);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-hero);
  padding: 20px;
}

.decision-room__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 18px;
}

.dr-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dr-dot--red    { background: #ff6b6b; }
.dr-dot--yellow { background: #ffd166; }
.dr-dot--green  { background: #4ade80; }

.dr-title {
  margin-left: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.dr-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(44, 183, 255, 0.18);
  border: 1px solid rgba(44, 183, 255, 0.30);
  color: var(--sky-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dr-dataset {
  padding: 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 14px;
}

.dr-dataset__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  margin-bottom: 6px;
}

.dr-dataset__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.dr-dataset__meta {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.54);
}

.dr-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.dr-ai-card {
  padding: 14px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s;
}

.dr-ai-card--selected {
  border-color: rgba(44, 183, 255, 0.50);
  background: rgba(44, 183, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(44, 183, 255, 0.20);
}

.dr-ai-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.badge--gpt    { background: rgba(16, 163, 127, 0.20); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.25); }
.badge--claude { background: rgba(207, 104, 63, 0.20); color: #fb923c; border: 1px solid rgba(251, 146, 60, 0.25); }
.badge--gemini { background: rgba(66, 133, 244, 0.20); color: #93c5fd; border: 1px solid rgba(147, 197, 253, 0.25); }

.dr-ai-card__summary {
  font-size: 0.80rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
}

.dr-ai-card__focus {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.45;
}

.dr-ai-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sky-500);
  margin-top: 10px;
}

.dr-ai-card__check svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

.dr-result {
  padding: 16px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg,
    rgba(24, 93, 206, 0.22),
    rgba(44, 183, 255, 0.14));
  border: 1px solid rgba(44, 183, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dr-result__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sky-300);
  margin-bottom: 4px;
}

.dr-result__text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.38;
}

.dr-result__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
}

.dr-result__tag {
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--surface-0);
  border-bottom: 1px solid var(--line-dark);
  padding: 20px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-500);
  border-right: 1px solid var(--line-dark);
}

.trust-item:last-child { border-right: none; }

.trust-item__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--sky-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION SHELLS
   ═══════════════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}

.section--gray { background: var(--surface-1); }
.section--white { background: var(--surface-0); }
.section--dark {
  background: var(--navy-900);
  color: #fff;
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__head--left {
  text-align: left;
  margin-left: 0;
}

.section__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

.section--dark .section__label { color: var(--sky-300); }

.section__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 780;
  line-height: 1.10;
  letter-spacing: -0.05em;
  color: var(--ink-900);
  text-wrap: balance;
}

.section--dark .section__title { color: #fff; }

.section__desc {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-500);
}

.section--dark .section__desc { color: rgba(255, 255, 255, 0.68); }

/* ═══════════════════════════════════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════════════════════════════════ */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.uc-card {
  position: relative;
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s, border-color 0.22s;
  overflow: hidden;
  cursor: default;
}

.uc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(24, 93, 206, 0.04),
    rgba(44, 183, 255, 0.02));
  opacity: 0;
  transition: opacity 0.22s;
}

.uc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(44, 183, 255, 0.40);
}

.uc-card:hover::before { opacity: 1; }

.uc-card__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 16px;
}

.uc-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-lg);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(24, 93, 206, 0.28);
}

.uc-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uc-card__title {
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.uc-card__desc {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--ink-500);
  margin-bottom: 24px;
}

.uc-card__product {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--blue-600);
  font-size: 0.80rem;
  font-weight: 700;
}

.uc-card__product-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ═══════════════════════════════════════════════════════════════════════
   WHY COREAID
   ═══════════════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--grad-card);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.why-card--accent {
  background: var(--grad-brand);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(13, 47, 111, 0.28);
  color: #fff;
}

.why-card__badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--sky-50);
  color: var(--blue-600);
  border: 1px solid var(--sky-100);
  margin-bottom: 22px;
}

.why-card--accent .why-card__badge {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.why-card__title {
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.why-card--accent .why-card__title { color: #fff; }

.why-card__desc {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--ink-500);
}

.why-card--accent .why-card__desc { color: rgba(255, 255, 255, 0.78); }

/* Why card — new subcomponents */
.why-card__icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(44,183,255,0.18);
  border: 1px solid rgba(44,183,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-400);
}

.why-card__icon--blue {
  background: rgba(24,93,206,0.12);
  border-color: rgba(24,93,206,0.22);
  color: var(--blue-400);
}

.why-card__icon--teal {
  background: rgba(20,184,166,0.12);
  border-color: rgba(20,184,166,0.22);
  color: #14b8a6;
}

.why-card--accent .why-card__icon {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

.why-card__metric {
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink-300);
  background: var(--surface-2);
  border: 1px solid var(--line-dark);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.why-card--accent .why-card__metric {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
}

.why-card__points {
  margin-top: 16px;
  display: grid;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.why-card--accent .why-card__points { border-color: rgba(255,255,255,0.12); }

.why-card__points li {
  font-size: 0.82rem;
  color: var(--ink-500);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.why-card__points li::before {
  content: "·";
  position: absolute;
  left: 4px;
  font-weight: 900;
  color: var(--sky-400);
}

.why-card--accent .why-card__points li { color: rgba(255,255,255,0.65); }
.why-card--accent .why-card__points li::before { color: var(--sky-300); }

/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.how-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(33.333% - 1px);
  right: calc(33.333% - 1px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(44, 183, 255, 0.6),
    rgba(24, 93, 206, 0.4));
  z-index: 0;
}

.how-step {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  text-align: center;
}

.how-step:first-child { padding-left: 0; }
.how-step:last-child  { padding-right: 0; }

.how-step__num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface-0);
  border: 2px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-500);
  letter-spacing: -0.04em;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.how-step:hover .how-step__num {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}

.how-step__title {
  font-size: 1.1rem;
  font-weight: 720;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.how-step__desc {
  font-size: 0.90rem;
  line-height: 1.68;
  color: var(--ink-500);
}

/* How It Works — visual flow panels */
.how-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
}

.how-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-200);
  flex-shrink: 0;
}

.how-panel {
  border-radius: var(--r-lg);
  background: var(--surface-0);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.how-panel__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--line-dark);
}

.how-panel__dots {
  display: flex;
  gap: 4px;
}

.how-panel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-dark);
}

.how-panel__dots span:nth-child(1) { background: #ef4444; }
.how-panel__dots span:nth-child(2) { background: #f59e0b; }
.how-panel__dots span:nth-child(3) { background: #22c55e; }

.how-panel__title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-400);
}

.how-panel__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Upload panel */
.how-upload-row { display: flex; flex-direction: column; gap: 6px; }

.how-upload-file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  font-size: 0.78rem;
  color: var(--ink-600);
}

.how-upload-file svg { stroke: var(--blue-400); flex-shrink: 0; }

.how-upload-badge {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(34,197,94,0.12);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.22);
}

.how-upload-badge--csv {
  background: rgba(249,115,22,0.12);
  color: #c2410c;
  border-color: rgba(249,115,22,0.22);
}

.how-upload-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.how-upload-progress__bar {
  flex: 1;
  height: 5px;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.how-upload-progress__fill {
  height: 100%;
  width: var(--bar-w, 0%);
  background: linear-gradient(90deg, var(--blue-500), var(--sky-400));
  border-radius: var(--r-pill);
}

.how-upload-progress__label {
  font-size: 0.70rem;
  font-weight: 700;
  color: #15803d;
  white-space: nowrap;
}

/* AI results panel */
.how-ai-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-dark);
  font-size: 0.76rem;
  background: var(--surface-1);
  flex-wrap: wrap;
}

.how-ai-row--selected {
  border-color: rgba(24,93,206,0.35);
  background: rgba(24,93,206,0.05);
}

.how-ai-label {
  font-size: 0.70rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.how-ai-row--gpt    .how-ai-label { background: rgba(74,222,128,0.15); color: #15803d; }
.how-ai-row--claude .how-ai-label { background: rgba(249,115,22,0.15); color: #c2410c; }
.how-ai-row--gemini .how-ai-label { background: rgba(99,102,241,0.15); color: #4338ca; }

.how-ai-summary { color: var(--ink-600); flex: 1; line-height: 1.45; }

.how-ai-selected-chip {
  font-size: 0.66rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  background: var(--blue-500);
  color: #fff;
  white-space: nowrap;
}

/* Report panel */
.how-report { display: flex; flex-direction: column; gap: 10px; }

.how-report__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.how-report__badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: rgba(249,115,22,0.15);
  color: #c2410c;
}

.how-report__date {
  font-size: 0.68rem;
  color: var(--ink-300);
}

.how-report__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-900);
}

.how-report__bars { display: flex; flex-direction: column; gap: 6px; }

.how-report__bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.70rem;
  color: var(--ink-500);
}

.how-report__bar-item span:first-child { width: 24px; }
.how-report__bar-item span:last-child  { width: 28px; text-align: right; font-weight: 700; }

.how-report__bar-track {
  flex: 1;
  height: 6px;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.how-report__bar-fill {
  height: 100%;
  width: var(--bar-w, 0%);
  background: var(--blue-500);
  border-radius: var(--r-pill);
}

.how-report__bar-fill--warn { background: #f59e0b; }

.how-report__download {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-500);
  cursor: pointer;
}

@media (max-width: 960px) {
  .how-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .how-flow-arrow { transform: rotate(90deg); }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.product-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-card--featured {
  background: var(--navy-800);
  border-color: transparent;
  box-shadow: 0 20px 56px rgba(13, 47, 111, 0.30);
}

.product-card__tag {
  padding: 20px 24px 0;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-tag--core {
  background: rgba(44, 183, 255, 0.18);
  border: 1px solid rgba(44, 183, 255, 0.30);
  color: var(--sky-300);
}

.product-tag--expand {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--blue-600);
}

.product-card__body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-size: 1.6rem;
  font-weight: 820;
  letter-spacing: -0.05em;
  color: var(--ink-900);
  margin-bottom: 10px;
  margin-top: 10px;
}

.product-card--featured .product-card__name { color: #fff; }

.product-card__desc {
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--ink-500);
  margin-bottom: 22px;
}

.product-card--featured .product-card__desc { color: rgba(255, 255, 255, 0.72); }

.product-features {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-700);
}

.product-card--featured .product-feature { color: rgba(255, 255, 255, 0.88); }

.product-feature__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(44, 183, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-feature__check svg {
  width: 10px;
  height: 10px;
  stroke: var(--sky-500);
  stroke-width: 2.5;
  fill: none;
}

.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: var(--r-lg);
  font-size: 0.90rem;
  font-weight: 700;
  transition: all 0.18s;
}

.product-card__cta--primary {
  background: var(--sky-500);
  color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(44, 183, 255, 0.30);
}
.product-card__cta--primary:hover {
  background: #44c6ff;
  transform: translateY(-1px);
}

.product-card__cta--default {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--blue-600);
}
.product-card__cta--default:hover {
  background: var(--sky-100);
}

.product-card__cta--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.80);
}

.product-card__cta--ghost:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Product card header (icon + tag row) */
.product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.product-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__icon--core {
  background: var(--navy-900);
  box-shadow: 0 4px 14px rgba(24,93,206,0.35);
}

.product-card__icon--core img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product-card__icon--desktop {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #fff;
}

.product-card__icon--server {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: #fff;
}

/* Tagline */
.product-card__tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 8px;
  margin-top: -6px;
}

.product-card--featured .product-card__tagline { color: var(--sky-400); }

/* Spec chips */
.product-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.prod-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--surface-2);
  border: 1px solid var(--line-dark);
  color: var(--ink-500);
}

.product-card--featured .prod-chip {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.70);
}

/* Price preview */
.product-card__price-preview {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--r-lg);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  margin-bottom: 20px;
  margin-top: auto;
}

.product-card--featured .product-card__price-preview {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.price-preview__label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-300);
  white-space: nowrap;
}

.product-card--featured .price-preview__label { color: rgba(255,255,255,0.50); }

.price-preview__value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}

.price-preview__value em {
  font-style: normal;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--ink-300);
}

.product-card--featured .price-preview__value { color: #fff; }
.product-card--featured .price-preview__value em { color: rgba(255,255,255,0.50); }

/* Multi-CTA row */
.product-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card__actions .product-card__cta {
  flex: 1;
  min-width: 110px;
}
.product-card__cta--full {
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card--recommended {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(24, 93, 206, 0.12), var(--shadow-xl);
  transform: translateY(-8px);
}

.pricing-card--recommended:hover {
  transform: translateY(-12px);
}

.pricing-recommended-badge {
  background: var(--blue-500);
  color: #fff;
  text-align: center;
  padding: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* 추천 뱃지가 없는 카드: 뱃지 높이만큼 상단 여백 추가 → 카드 높이 정렬 */
.pricing-card:not(.pricing-card--recommended) .pricing-card__body {
  padding-top: calc(28px + 30px);
}

.pricing-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-plan {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 8px;
}

.pricing-card--recommended .pricing-plan { color: var(--blue-500); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-price__amount {
  font-size: 1.8rem;
  font-weight: 820;
  letter-spacing: -0.06em;
  color: var(--ink-900);
  line-height: 1;
}

.pricing-price__amount--text {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.pricing-price__unit {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-300);
}

.pricing-price__free {
  font-size: 1.8rem;
  font-weight: 820;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--ink-300);
  margin-bottom: 22px;
  line-height: 1.5;
}

.pricing-divider {
  height: 1px;
  background: var(--line-dark);
  margin-bottom: 18px;
}

.pricing-features {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
  align-content: start;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--ink-700);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-500);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--r-lg);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.18s;
}

.pricing-cta--free {
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  color: var(--ink-700);
}
.pricing-cta--free:hover { background: var(--surface-2); }

.pricing-cta--main {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 6px 16px rgba(24, 93, 206, 0.28);
}
.pricing-cta--main:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
}
.pricing-cta--disabled,
.pricing-cta--disabled:hover {
  background: var(--surface-2);
  color: var(--text-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 0.55;
  border: 1.5px solid var(--line);
  font-size: 0.9rem;
}
.pricing-cta--disabled::after {
  content: ' (준비 중)';
  font-size: 0.75rem;
  opacity: 0.7;
}

.pricing-cta--contact {
  background: var(--surface-1);
  border: 1.5px solid var(--line-dark);
  color: var(--ink-500);
}
.pricing-cta--contact {
  background: var(--blue-500);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: var(--r-lg);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-cta--contact:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Enterprise card */
.pricing-enterprise {
  margin-top: 24px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-enterprise__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: linear-gradient(135deg, var(--surface-0) 0%, var(--surface-1) 100%);
  box-shadow: var(--shadow-md);
}

.pricing-enterprise__price {
  font-size: 1.2rem;
  font-weight: 750;
  color: var(--ink-900);
  margin: 4px 0 8px;
}

.pricing-enterprise__desc {
  font-size: 0.88rem;
  color: var(--ink-400);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-enterprise__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Pricing note */
.pricing-note {
  text-align: center;
  margin-top: 28px;
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--ink-400);
  background: var(--surface-1);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pricing-note a {
  color: var(--blue-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Product page navigation (prev / title / next) */
.product-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.product-nav__center {
  flex: 1;
  text-align: center;
}

.product-nav__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 4px;
}

.product-nav__title {
  font-size: 1.6rem;
  font-weight: 820;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.product-nav__desc {
  font-size: 0.85rem;
  color: var(--ink-400);
  line-height: 1.5;
}

.product-nav__placeholder {
  flex-shrink: 0;
  visibility: hidden;
  width: 110px; /* product-nav__link 평균 너비 */
}

.product-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  text-decoration: none;
  color: var(--ink-600);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.18s ease;
}

.product-nav__link:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
  background: rgba(24, 93, 206, 0.06);
}

.product-nav__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

@media (max-width: 640px) {
  .product-nav { flex-direction: column; gap: 12px; }
  .product-nav__center { order: -1; }
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-pill);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  margin-top: 28px;
}

.billing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-400);
  cursor: pointer;
  transition: all 0.2s;
}

.billing-btn--active {
  background: var(--surface-0);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

.billing-save {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: rgba(52,211,153,0.15);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid rgba(52,211,153,0.28);
}

/* Feature comparison table */
.compare-table-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.compare-table__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-900);
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--surface-0);
}

.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table thead th {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--ink-500);
  text-align: center;
  background: var(--surface-1);
  border-bottom: 1px solid var(--line-dark);
  white-space: nowrap;
}

.compare-table thead th:first-child {
  text-align: left;
  color: var(--ink-300);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table thead th.compare-table__highlight {
  background: rgba(24,93,206,0.06);
  color: var(--blue-600);
  border-top: 3px solid var(--blue-500);
}

.compare-table td {
  padding: 11px 20px;
  text-align: center;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line-dark);
  vertical-align: middle;
  background: var(--surface-0);
}

.compare-table td:first-child {
  text-align: left;
  color: var(--ink-600);
  font-weight: 500;
}

.compare-table td.compare-table__highlight {
  background: rgba(24,93,206,0.04);
}

.compare-table tbody tr:hover td {
  background: var(--surface-1);
}

.compare-table tbody tr:hover td.compare-table__highlight {
  background: rgba(24,93,206,0.08);
}

/* Enterprise 열 숨김 — coming soon */
.compare-table th:nth-child(6),
.compare-table td:nth-child(6),
.col-enterprise { display: none; }

.compare-group-row td {
  padding: 10px 20px 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300) !important;
  background: var(--surface-1) !important;
  text-align: left !important;
}

.compare-table__feature-col { min-width: 220px; }

.ct-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  color: #059669;
  font-size: 0.80rem;
  font-weight: 900;
}

.ct-no {
  color: var(--ink-200);
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .compare-table-wrap { border-radius: var(--r-lg); }
  .compare-table { min-width: 560px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ROI
   ═══════════════════════════════════════════════════════════════════════ */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.roi-card {
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.22s, border-color 0.22s;
}

.roi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.roi-card__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-300);
  margin-bottom: 14px;
}

.roi-card__metric {
  font-size: 3rem;
  font-weight: 840;
  letter-spacing: -0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.roi-card__metric span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sky-300);
}

.roi-card__desc {
  font-size: 0.90rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.64);
}

/* ROI calc breakdown */
.roi-card__calc {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.roi-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.80rem;
}

.roi-calc-row span { color: rgba(255,255,255,0.50); }
.roi-calc-row strong { color: rgba(255,255,255,0.80); font-weight: 700; }

.roi-calc-row--result {
  padding-top: 7px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.roi-calc-row--result span { color: rgba(255,255,255,0.70); font-weight: 600; }
.roi-calc-row--result strong { color: var(--sky-300); font-size: 0.90rem; }

/* ROI compare bar */
.roi-compare {
  margin-top: 56px;
  padding: 32px 40px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.roi-compare__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 24px;
}

.roi-compare__bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.roi-compare__bar-item { display: flex; flex-direction: column; gap: 6px; }

.roi-compare__bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

.roi-compare__bar-label span { color: rgba(255,255,255,0.60); font-weight: 600; }

.roi-compare__bar-value { font-weight: 800; font-size: 0.86rem; }
.roi-compare__bar-value--bad  { color: #f87171; }
.roi-compare__bar-value--good { color: var(--sky-300); }

.roi-compare__bar-track {
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.roi-compare__bar-fill {
  height: 100%;
  width: var(--bar-w, 0%);
  border-radius: var(--r-pill);
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}

.roi-compare__bar-fill--bad  { background: linear-gradient(90deg, #ef4444, #f87171); }
.roi-compare__bar-fill--good { background: linear-gradient(90deg, var(--blue-500), var(--sky-400)); }

.roi-compare__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.roi-compare__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.80rem;
  font-weight: 800;
}

.roi-compare__pill--time { background: rgba(44,183,255,0.12); color: var(--sky-300); border: 1px solid rgba(44,183,255,0.22); }
.roi-compare__pill--cost { background: rgba(52,211,153,0.12); color: #34d399;      border: 1px solid rgba(52,211,153,0.22); }
.roi-compare__pill--roi  { background: rgba(251,191,36,0.12); color: #fbbf24;      border: 1px solid rgba(251,191,36,0.22); }

.roi-compare__note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.28);
}

/* ═══════════════════════════════════════════════════════════════════════
   PARTNER
   ═══════════════════════════════════════════════════════════════════════ */

.partner-section {
  padding-top: 0;
}

.partner-section__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 100px;
}

.section__head--wide {
  margin-bottom: 56px;
}

.partner-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .partner-roi-grid { grid-template-columns: 1fr; }
  .partner-section__divider { margin-bottom: 60px; }
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.partner-copy {}

/* Partner tiers grid */
.partner-tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .partner-tiers-grid { grid-template-columns: 1fr; }
}

.partner-tier {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.partner-tier:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.partner-tier--gold {
  border-color: rgba(250, 189, 0, 0.28);
  background: rgba(250, 189, 0, 0.05);
}

.partner-tier--gold:hover {
  border-color: rgba(250, 189, 0, 0.45);
  background: rgba(250, 189, 0, 0.09);
}

.partner-tier--platinum {
  border-color: rgba(148, 108, 255, 0.30);
  background: rgba(148, 108, 255, 0.06);
}

.partner-tier--platinum:hover {
  border-color: rgba(148, 108, 255, 0.50);
  background: rgba(148, 108, 255, 0.10);
}

.partner-tier__head {
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.partner-tier__grade {
  font-size: 1.0rem;
  font-weight: 820;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.partner-tier__grade--gold {
  color: #fabd00;
}

.partner-tier__grade--platinum {
  background: linear-gradient(90deg, #c084fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-tier__level {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.partner-tier__cond {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
}

.partner-tier__body {
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-tier__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.partner-tier__item svg { flex-shrink: 0; }

.partner-tier__discount {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 0.80rem;
  font-weight: 720;
  align-self: flex-start;
}

.partner-tier__discount--none {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.38);
}

.partner-tier__discount--silver {
  background: rgba(56, 189, 248, 0.14);
  color: var(--sky-300);
}

.partner-tier__discount--gold {
  background: rgba(250, 189, 0, 0.14);
  color: #fabd00;
}

.partner-tier__discount--platinum {
  background: rgba(192, 132, 252, 0.14);
  color: #c084fc;
}

.partner-tiers-cta {
  margin-top: 28px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
  padding: 100px 0;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 160%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 50%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(44, 183, 255, 0.14) 0%,
    transparent 70%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.section__head--contact {
  margin-bottom: 16px;
}

.section__label--light {
  color: rgba(255, 255, 255, 0.70);
}

.final-cta__title {
  font-size: clamp(2.0rem, 4vw, 3.2rem);
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}

.final-cta__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  max-width: 52ch;
  margin: 0 auto 40px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.cta-card {
  padding: 22px 24px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  text-align: left;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.cta-card__for {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-300);
  margin-bottom: 8px;
}

.cta-card__title {
  font-size: 1.0rem;
  font-weight: 720;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.38;
}

.cta-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.cta-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-300);
  margin-bottom: 16px;
}

.cta-card__arrow {
  display: block;
  margin-top: 18px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.18s, transform 0.18s;
}

.cta-card:hover .cta-card__arrow {
  color: var(--sky-300);
  transform: translateX(4px);
}

/* Contact form */
.contact-form-wrap {
  margin-top: 64px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.contact-form-head {
  padding: 28px 36px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.contact-form-head__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.contact-form-head__sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.50);
}

.contact-form {
  padding: 28px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}

.contact-form__input {
  padding: 11px 14px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.90rem;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s;
  outline: none;
  width: 100%;
}

.contact-form__input::placeholder { color: rgba(255,255,255,0.28); }

.contact-form__input:focus {
  border-color: rgba(44,183,255,0.55);
  background: rgba(255,255,255,0.10);
}

.contact-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.contact-form__select option { background: #0d1e44; color: #fff; }

.contact-form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  background: var(--blue-500);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 24px rgba(24,93,206,0.35);
  align-self: flex-start;
}

.contact-form__submit:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(24,93,206,0.45);
}

.contact-form__note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.32);
  margin-top: -6px;
}

.contact-form__note svg { stroke: rgba(255,255,255,0.28); flex-shrink: 0; }

/* Error state */
.contact-form__input--error {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.06) !important;
}

.contact-form__error {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  color: #ff8080;
  min-height: 1em;
}

/* Server error */
.contact-form__server-error {
  font-size: 0.82rem;
  color: #ff8080;
  padding: 10px 14px;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}

/* Loading state */
.contact-form__submit--loading .cf-submit__label { opacity: 0.5; }
.contact-form__submit--loading .cf-submit__arrow { opacity: 0; }

.cf-submit__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.contact-form__submit--loading .cf-submit__spinner { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
}
/* hidden 속성이 CSS display:flex에 덮어쓰이지 않도록 명시 */
.contact-success[hidden] { display: none; }

.contact-success__icon {
  width: 64px;
  height: 64px;
}

.contact-success__icon svg {
  width: 100%;
  height: 100%;
}

.contact-success__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.contact-success__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.contact-success__sub a {
  color: var(--sky-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 20px 24px; }
  .contact-form-head { padding: 20px 20px 16px; }
  .contact-form__submit { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-950);
  padding: 64px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__brand {}

.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer__brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer__brand-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.footer__brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

.footer__brand-von {
  color: var(--sky-300);
}

.footer__brand-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.44);
  max-width: 30ch;
}
.footer__brand-name-meaning {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-style: normal;
}
.footer__brand-desc em {
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}
.footer__brand-vision {
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.32);
  font-style: italic;
  letter-spacing: 0.01em;
}

.footer__contact {
  margin-top: 16px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
  color: #fff;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  transition: color 0.18s;
}

.footer__contact-link:hover { color: var(--sky-300); }

.footer__contact-link svg { stroke: currentColor; }

.footer__col-title {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.60);
  transition: color 0.18s;
}

.footer__link:hover { color: #fff; }

.footer__legal {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__biz {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.18s;
}

.footer__legal-link:hover { color: rgba(255, 255, 255, 0.65); }

@media (max-width: 640px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__legal-links { flex-wrap: wrap; }
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.34);
}

.footer__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__tag {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-grid > *:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer { display: block; }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__copy { max-width: none; margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { display: none; }

  .use-case-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-grid::before { display: none; }
  .how-step { padding: 0; text-align: left; display: flex; align-items: flex-start; gap: 20px; }
  .how-step__num { margin: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid > *:last-child { max-width: none; grid-column: auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--recommended { transform: none; }
  .roi-grid { grid-template-columns: 1fr; }
  .partner-layout { grid-template-columns: 1fr; gap: 36px; }
  .cta-cards { grid-template-columns: 1fr; }
  .trust-strip__inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line-dark); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 64px; }
  .hero__headline { font-size: 2.6rem; }
  .section__title { font-size: 1.8rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--recommended { transform: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .final-cta__title { font-size: 1.9rem; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  /* Partner */
  .partner-tiers-grid { grid-template-columns: 1fr; }
  .partner-tier__head { padding: 16px 18px 12px; }
  .partner-tier__body { padding: 12px 18px 16px; }
  /* How visual panels */
  .how-visual { grid-template-columns: 1fr; gap: 12px; }
  .how-flow-arrow { display: none; }

  /* Nav: 드로어에 CTA가 있으므로 상단 버튼 숨김 */
  .nav__cta { display: none; }
  /* 로고 이미지 축소 */
  .nav__logo-img { width: 40px; height: 40px; }
  /* Announce bar 텍스트 오버플로 방지 */
  .announce-bar__text { overflow: hidden; max-width: calc(100vw - 96px); }
}

/* ── 360px 소형 모바일 ──────────────────────────────────────────────── */
@media (max-width: 400px) {
  /* Nav 더 컴팩트하게 */
  .nav__inner { height: 64px; gap: 12px; }
  .nav__logo { gap: 8px; }
  .nav__logo-img { width: 34px; height: 34px; }
  .nav__logo-name { font-size: 1.05rem; }
  .nav__logo-sub { display: none; }

  /* Hero 헤드라인 */
  .hero { padding: 88px 0 56px; }
  .hero__headline { font-size: 2.1rem; }

  /* Section 타이틀 */
  .section__title { font-size: 1.6rem; }
  .final-cta__title { font-size: 1.65rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.problem-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.problem-side {
  display: grid;
  gap: 12px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s, transform 0.2s;
}

.problem-item:hover {
  border-color: rgba(239, 68, 68, 0.30);
  transform: translateX(-3px);
}

.problem-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(239, 68, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: #ef4444;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-item__text {
  font-size: 0.90rem;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.5;
}

.problem-item__sub {
  margin-top: 3px;
  font-size: 0.80rem;
  color: var(--ink-300);
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s, transform 0.2s;
}

.solution-item:hover {
  border-color: rgba(44, 183, 255, 0.40);
  transform: translateX(3px);
}

.solution-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(44, 183, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-item__text {
  font-size: 0.90rem;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.5;
}

.solution-item__sub {
  margin-top: 3px;
  font-size: 0.80rem;
  color: var(--blue-500);
  font-weight: 600;
}

.problem-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.problem-divider__line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent, var(--line-dark) 20%, var(--line-dark) 80%, transparent);
}

.problem-divider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(24, 93, 206, 0.28);
  flex-shrink: 0;
}

.problem-divider__arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-col-head {
  margin-bottom: 16px;
}

.problem-col-label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  display: inline-block;
}

.problem-col-label--before {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.problem-col-label--after {
  background: rgba(44, 183, 255, 0.10);
  color: var(--blue-500);
  border: 1px solid rgba(44, 183, 255, 0.22);
}

@media (max-width: 960px) {
  .problem-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .problem-divider {
    flex-direction: row;
  }
  .problem-divider__line {
    width: auto;
    height: 1px;
    flex: 1;
  }
  .problem-item:hover { transform: none; }
  .solution-item:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURE SHOWCASE
   ═══════════════════════════════════════════════════════════════════════ */
.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.showcase-layout--reverse {
  direction: rtl;
}

.showcase-layout--reverse > * {
  direction: ltr;
}

.showcase-copy { }

.showcase-copy .section__label {
  text-align: left;
}

.showcase-copy .section__title {
  text-align: left;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 16px;
}

.showcase-copy .section__desc {
  text-align: left;
  margin-bottom: 28px;
}

.showcase-points {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.showcase-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.showcase-point__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.showcase-point__check svg {
  width: 11px;
  height: 11px;
  stroke: var(--blue-500);
  stroke-width: 2.5;
  fill: none;
}

.showcase-point__text {
  font-size: 0.93rem;
  color: var(--ink-700);
  line-height: 1.6;
}

.showcase-point__text strong {
  color: var(--ink-900);
  font-weight: 700;
}

.showcase-layout--mb {
  margin-bottom: 80px;
}

.showcase-visual {
  position: relative;
}

/* Mock UI Panels */
.mock-panel {
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.mock-panel__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--line-dark);
}

.mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mock-dot--r { background: #ff7b72; }
.mock-dot--y { background: #ffd866; }
.mock-dot--g { background: #4ade80; }

.mock-panel__title {
  margin-left: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-300);
}

.mock-panel__body { padding: 20px; }

/* Competition UI mockup */
.competition-grid {
  display: grid;
  gap: 10px;
}

.comp-row {
  display: grid;
  grid-template-columns: 100px 1fr 70px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-dark);
  background: var(--surface-1);
}

.comp-row--winner {
  background: linear-gradient(135deg, rgba(24,93,206,0.06), rgba(44,183,255,0.04));
  border-color: rgba(44, 183, 255, 0.35);
}

.comp-row__ai {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-700);
}

.comp-score-label {
  font-size: 0.78rem;
  color: var(--ink-300);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.comp-winner-wrap {
  margin-top: 14px;
}

.comp-row__ai-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.comp-row__ai-dot--gpt    { background: #10a37f; }
.comp-row__ai-dot--claude { background: #cf683f; }
.comp-row__ai-dot--gemini { background: #4285f4; }

.comp-row__bar-wrap {
  position: relative;
  height: 6px;
  background: var(--line-dark);
  border-radius: 999px;
  overflow: hidden;
}

.comp-row__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-w, 0%);
  border-radius: 999px;
  background: var(--grad-brand);
  transition: width 1s var(--ease-out);
}

.comp-row--winner .comp-row__bar-fill {
  background: linear-gradient(90deg, var(--blue-500), var(--sky-500));
}

.comp-row__score {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink-500);
  text-align: right;
}

.comp-row--winner .comp-row__score {
  color: var(--blue-500);
}

.comp-winner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.comp-winner-tag svg {
  width: 14px; height: 14px;
  stroke: var(--blue-500);
  stroke-width: 2.5;
  fill: none;
}

/* Channel connect mockup */
.channel-list { display: grid; gap: 8px; }

.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-dark);
  background: var(--surface-1);
}

.channel-item--active {
  background: linear-gradient(135deg, rgba(24,93,206,0.05), rgba(44,183,255,0.04));
  border-color: rgba(44, 183, 255, 0.30);
}

.channel-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 17px; height: 17px;
  stroke: var(--blue-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-name {
  flex: 1;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
}

.channel-status {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
}

.channel-status--on {
  background: rgba(74, 222, 128, 0.12);
  color: #16a34a;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.channel-status--idle {
  background: var(--surface-2);
  color: var(--ink-300);
  border: 1px solid var(--line-dark);
}

.channel-add-hint {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  font-size: 0.80rem;
  color: var(--blue-600);
  font-weight: 600;
}

/* ── Report mock (Showcase 3) ──────────────────────────────────────── */
.report-header {
  margin-bottom: 16px;
}

.report-header__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.report-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
}

.report-badge--ai {
  background: rgba(207, 104, 63, 0.10);
  color: #cf683f;
  border: 1px solid rgba(207, 104, 63, 0.20);
}

.report-badge--date {
  background: var(--surface-2);
  color: var(--ink-300);
  border: 1px solid var(--line-dark);
}

.report-title {
  font-size: 0.92rem;
  font-weight: 720;
  color: var(--ink-900);
  line-height: 1.4;
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.report-kpi {
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  text-align: center;
}

.report-kpi__val {
  display: block;
  font-size: 1.1rem;
  font-weight: 820;
  color: var(--ink-900);
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 3px;
}

.report-kpi__val--warn { color: #ef4444; }

.report-kpi__label {
  font-size: 0.70rem;
  color: var(--ink-300);
  font-weight: 600;
}

.report-summary {
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(56,189,248,0.06);
  border-left: 3px solid var(--sky-300);
  margin-bottom: 14px;
}

.report-summary__text {
  font-size: 0.82rem;
  color: var(--ink-600);
  line-height: 1.55;
  font-style: italic;
}

.report-actions {
  display: flex;
  gap: 8px;
}

.report-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-size: 0.80rem;
  font-weight: 700;
  border: 1px solid var(--line-dark);
  background: var(--surface-1);
  color: var(--ink-600);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.report-btn:hover {
  background: var(--surface-2);
  border-color: var(--ink-200);
}

.report-btn--primary {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}

.report-btn--primary:hover {
  background: var(--blue-600, #1d4ed8);
  border-color: var(--blue-600, #1d4ed8);
}

@media (max-width: 960px) {
  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-layout--reverse { direction: ltr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   COMPETITIVE COMPARISON
   ═══════════════════════════════════════════════════════════════════════ */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
}

.compare-table-wrap--mt {
  margin-top: 60px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-0);
  min-width: 600px;
}

/* Dark-header variant for the competitive comparison table */
.compare-table-wrap--dark .compare-table thead th {
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.78);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table-wrap--dark .compare-table thead th:first-child {
  text-align: left;
  border-radius: var(--r-lg) 0 0 0;
}
.compare-table-wrap--dark .compare-table thead th:last-child {
  border-radius: 0 var(--r-lg) 0 0;
}

.compare-table-wrap--dark .compare-table thead .th-naruvon {
  color: var(--sky-300);
  font-size: 0.90rem;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child { border-bottom: none; }

.compare-table tbody tr:hover {
  background: var(--surface-1);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--ink-700);
  vertical-align: middle;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink-900);
}

.compare-table .td-naruvon {
  background: rgba(24, 93, 206, 0.04);
}

.cmp-yes {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.85rem;
}

.cmp-yes svg {
  width: 16px; height: 16px;
  stroke: #16a34a;
  stroke-width: 2.5;
  fill: none;
}

.cmp-no {
  color: var(--ink-100);
  font-weight: 600;
  font-size: 0.85rem;
}

.cmp-partial {
  color: #d97706;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   ADOPTION PATHS
   ═══════════════════════════════════════════════════════════════════════ */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.path-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.path-card__head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.path-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.path-tag--1 {
  background: rgba(44, 183, 255, 0.12);
  border: 1px solid rgba(44, 183, 255, 0.25);
  color: var(--blue-500);
}

.path-tag--2 {
  background: rgba(74, 222, 128, 0.10);
  border: 1px solid rgba(74, 222, 128, 0.22);
  color: #16a34a;
}

.path-tag--3 {
  background: rgba(207, 104, 63, 0.10);
  border: 1px solid rgba(251, 146, 60, 0.22);
  color: #ea580c;
}

.path-card__title {
  font-size: 1.08rem;
  font-weight: 720;
  color: var(--ink-900);
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.path-card__target {
  font-size: 0.82rem;
  color: var(--ink-300);
  margin-top: 4px;
}

.path-steps {
  padding: 18px 24px 24px;
  display: grid;
  gap: 0;
}

.path-step {
  display: flex;
  gap: 14px;
  position: relative;
}

.path-step:not(:last-child) .path-step__line {
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: -4px;
  width: 1px;
  background: var(--line-dark);
}

.path-step__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky-50);
  border: 1.5px solid var(--sky-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--blue-500);
  position: relative;
  z-index: 1;
}

.path-step__dot--active {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}

.path-step__body {
  padding-bottom: 18px;
}

.path-step__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 3px;
}

.path-step__desc {
  font-size: 0.80rem;
  color: var(--ink-300);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .paths-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.security-card {
  padding: 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--grad-card);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}

.security-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.security-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.security-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue-500);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-card__title {
  font-size: 1.05rem;
  font-weight: 720;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.security-card__desc {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.68;
}

.security-deploy {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--r-xl);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.security-deploy__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-300);
  margin-bottom: 10px;
}

.security-deploy__title {
  font-size: 1.12rem;
  font-weight: 720;
  color: #fff;
  margin-bottom: 6px;
}

.security-deploy__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}

.deploy-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.deploy-option {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .security-grid { grid-template-columns: 1fr; }
  .security-deploy { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   LOGO BAND (marquee)
   ═══════════════════════════════════════════════════════════════════════ */
.logo-band {
  padding: 20px 0;
  background: var(--surface-0);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.logo-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.logo-band__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-200);
}

.logo-band__track {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-band__list {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: logo-scroll 32s linear infinite;
}

.logo-band:hover .logo-band__list {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-dark);
  background: var(--surface-1);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-400);
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.logo-chip:hover {
  border-color: var(--blue-300);
  color: var(--blue-500);
}

@media (prefers-reduced-motion: reduce) {
  .logo-band__list { animation: none; }
}


/* ═══════════════════════════════════════════════════════════════════════
   STATS BANNER
   ═══════════════════════════════════════════════════════════════════════ */
.stats-banner {
  padding: 60px 0;
  background: var(--surface-0);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--line-dark);
}

.stat-item:last-child { border-right: none; }

.stat-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50, #eff6ff);
  margin: 0 auto 14px;
  color: var(--blue-500);
}

.stat-item__num {
  font-size: 1.8rem;
  font-weight: 840;
  letter-spacing: 0.02em;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 8px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item__num span {
  font-size: 1.4rem;
  color: var(--blue-500);
}

.stat-item__label {
  font-size: 0.82rem;
  color: var(--ink-500);
  font-weight: 600;
  line-height: 1.5;
  min-height: 40px;
}

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .stat-item:nth-child(5) { border-right: none; border-top: 1px solid var(--line-dark); }
  .stat-item { padding: 20px 16px; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  /* 5번째 항목: 2열 전체 너비로 중앙 정렬 */
  .stat-item:nth-child(5) { grid-column: 1 / -1; border-right: none; }
  .stat-item { padding: 16px 12px; }
  .stat-item__num { font-size: 2rem; }
  .stat-item__icon { width: 36px; height: 36px; margin-bottom: 10px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BANNER
   ═══════════════════════════════════════════════════════════════════════ */
.announce-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: linear-gradient(90deg, var(--navy-800) 0%, var(--blue-500) 50%, var(--sky-500) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 48px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.announce-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announce-bar__text { color: rgba(255,255,255,0.92); }

.announce-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.announce-bar__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.70);
  line-height: 0;
  transition: color 0.15s, background 0.15s;
}
.announce-bar__close:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.announce-bar.hidden { display: none; }

@media (max-width: 640px) {
  .announce-bar {
    padding: 8px 44px;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .announce-bar__badge { display: none; }
  .announce-bar__link  { display: none; }
  .announce-bar__text  { font-size: 0.78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; flex-shrink: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════
   INTEGRATION ECOSYSTEM
   ═══════════════════════════════════════════════════════════════════════ */
.ecosystem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.ecosystem-group {
  padding: 28px 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
}

.ecosystem-group__title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ecosystem-group__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}

.ecosystem-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-dark);
  background: var(--surface-1);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-700);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}

.eco-badge:hover {
  border-color: rgba(44, 183, 255, 0.40);
  background: var(--sky-50);
  color: var(--blue-600);
}

.eco-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-500);
  opacity: 0.6;
}

.eco-badge--primary {
  background: linear-gradient(135deg, rgba(24,93,206,0.06), rgba(44,183,255,0.04));
  border-color: rgba(44,183,255,0.30);
  color: var(--navy-800);
}

.eco-flow {
  margin-top: 32px;
  padding: 22px 28px;
  border-radius: var(--r-xl);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
}

.eco-flow-step {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.eco-flow-node {
  padding: 10px 18px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.eco-flow-node--highlight {
  background: linear-gradient(135deg, rgba(24,93,206,0.50), rgba(44,183,255,0.30));
  border-color: rgba(44, 183, 255, 0.50);
  color: #fff;
  white-space: normal;
  text-align: center;
}

.eco-flow-node__sub {
  display: block;
  font-size: 0.72rem;
  opacity: 0.78;
  font-weight: 600;
  margin-top: 3px;
}

.eco-flow-arrow {
  padding: 0 10px;
  color: rgba(255,255,255,0.30);
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .ecosystem-intro { grid-template-columns: 1fr; gap: 20px; }
  .eco-flow { flex-direction: column; align-items: stretch; gap: 8px; }
  .eco-flow-step { flex-direction: column; gap: 8px; }
  .eco-flow-arrow { text-align: center; transform: rotate(90deg); }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT ROADMAP
   ═══════════════════════════════════════════════════════════════════════ */

/* Layout */
.roadmap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.roadmap-copy {
  position: sticky;
  top: 100px;
}

/* Left-aligned section text helpers */
.section__label--left,
.section__title--left,
.section__desc--left {
  text-align: left;
}

.section__title--left {
  margin-bottom: 16px;
}

/* Legend badges */
.roadmap-copy__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.roadmap-badge--done {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}

.roadmap-badge--active {
  background: rgba(56, 189, 248, 0.12);
  color: var(--sky-300);
}

.roadmap-badge--soon {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 960px) {
  .roadmap-layout { grid-template-columns: 1fr; gap: 40px; }
  .roadmap-copy { position: static; }
}

.roadmap-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--sky-500) 100%);
}

.roadmap-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.22s;
}

.roadmap-dot svg {
  width: 20px; height: 20px;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-dot--done {
  background: var(--blue-500);
  border-color: var(--blue-500);
  box-shadow: 0 6px 18px rgba(24,93,206,0.28);
}
.roadmap-dot--done svg { stroke: #fff; }

.roadmap-dot--active {
  background: var(--sky-50);
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(44,183,255,0.14);
}
.roadmap-dot--active svg { stroke: var(--blue-500); }

.roadmap-dot--upcoming {
  background: var(--surface-1);
  border-color: var(--line-dark);
}
.roadmap-dot--upcoming svg { stroke: var(--ink-100); }

.roadmap-body {
  padding-top: 8px;
}

.roadmap-week {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 6px;
}

.roadmap-item--active .roadmap-week { color: var(--blue-500); }

.roadmap-title {
  font-size: 1.12rem;
  font-weight: 720;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.roadmap-tag {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--blue-600);
}

.roadmap-tag--done {
  background: rgba(74,222,128,0.10);
  border-color: rgba(74,222,128,0.22);
  color: #15803d;
}

.roadmap-tag--active {
  background: rgba(44,183,255,0.10);
  border-color: rgba(44,183,255,0.25);
  color: var(--blue-500);
}

.roadmap-tag--soon {
  background: rgba(251,191,36,0.10);
  border-color: rgba(251,191,36,0.22);
  color: #b45309;
}

.roadmap-desc {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.65;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  font-weight: 700;
}

.roadmap-status--done {
  background: rgba(74,222,128,0.12);
  color: #15803d;
}

.roadmap-status--active {
  background: rgba(44,183,255,0.12);
  color: var(--blue-500);
  animation: pulse-badge 2s ease-in-out infinite;
}

.roadmap-status--soon {
  background: rgba(251,191,36,0.10);
  color: #b45309;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.70; }
}

.roadmap-status svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
/* FAQ category tabs */
.faq-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

@media (max-width: 640px) {
  .faq-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .faq-tabs::-webkit-scrollbar { display: none; }
  .faq-tab { flex-shrink: 0; }
}

.faq-tab {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-dark);
  background: transparent;
  color: var(--ink-400);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
}

.faq-tab:hover {
  border-color: var(--blue-300);
  color: var(--blue-500);
  background: var(--sky-50);
}

.faq-tab--active {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}

.faq-tab--active:hover {
  background: var(--blue-600, #1d4ed8);
  border-color: var(--blue-600, #1d4ed8);
  color: #fff;
}

/* Hidden FAQ items (filtered out) */
.faq-item--hidden {
  display: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.faq-item {
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.faq-item:hover {
  border-color: rgba(44, 183, 255, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-item.open {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(24,93,206,0.08), var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.45;
  transition: color 0.18s;
}

.faq-item.open .faq-question { color: var(--blue-500); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, transform 0.22s var(--ease-out);
}

.faq-item.open .faq-icon {
  background: var(--blue-500);
  border-color: var(--blue-500);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px; height: 14px;
  stroke: var(--ink-300);
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.18s;
}

.faq-item.open .faq-icon svg { stroke: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out), padding 0.22s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer__inner {
  padding: 0 22px 20px;
  font-size: 0.90rem;
  color: var(--ink-500);
  line-height: 1.72;
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}

.faq-answer__inner strong {
  color: var(--ink-700);
  font-weight: 700;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 52px;
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  flex-wrap: wrap;
}

.faq-cta__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-700);
}

/* ═══════════════════════════════════════════════════════════════════════
   INDUSTRY VERTICALS
   ═══════════════════════════════════════════════════════════════════════ */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vertical-card {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 32px;
  display: grid;
  gap: 20px;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s, border-color 0.22s;
}

.vertical-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(44, 183, 255, 0.30);
}

.vertical-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.vertical-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vertical-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vertical-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vertical-card__meta {}

.vertical-card__industry {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.vertical-card__title {
  font-size: 1.15rem;
  font-weight: 720;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.vertical-card__challenge {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.12);
}

.vertical-card__challenge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 6px;
}

.vertical-card__challenge-text {
  font-size: 0.86rem;
  color: var(--ink-500);
  line-height: 1.6;
}

.vertical-solutions {
  display: grid;
  gap: 8px;
}

.vertical-solution {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-700);
  line-height: 1.55;
}

.vertical-solution::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  flex-shrink: 0;
  margin-top: 6px;
}

.vertical-products {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.vertical-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 10px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: rgba(24, 93, 206, 0.05);
  border: 1px solid rgba(24, 93, 206, 0.12);
}

.vertical-outcome__num {
  font-size: 1.0rem;
  font-weight: 820;
  color: var(--blue-500);
  white-space: nowrap;
}

.vertical-outcome__label {
  font-size: 0.78rem;
  color: var(--ink-400);
  font-weight: 600;
  line-height: 1.4;
}

.vertical-product-tag {
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .verticals-grid { grid-template-columns: 1fr; }
}

/* Vertical card color variants */
.vertical-card--blue  .vertical-card__accent { background: linear-gradient(90deg, #185dce, #2cb7ff); }
.vertical-card--green .vertical-card__accent { background: linear-gradient(90deg, #16a34a, #4ade80); }
.vertical-card--orange .vertical-card__accent { background: linear-gradient(90deg, #ea580c, #fb923c); }
.vertical-card--purple .vertical-card__accent { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.vertical-card--blue  .vertical-icon { background: rgba(24, 93, 206, 0.10); }
.vertical-card--green .vertical-icon { background: rgba(22, 163, 74, 0.10); }
.vertical-card--orange .vertical-icon { background: rgba(234, 88, 12, 0.10); }
.vertical-card--purple .vertical-icon { background: rgba(124, 58, 237, 0.10); }

.vertical-card--blue  .vertical-icon svg { stroke: var(--blue-500); }
.vertical-card--green .vertical-icon svg { stroke: #16a34a; }
.vertical-card--orange .vertical-icon svg { stroke: #ea580c; }
.vertical-card--purple .vertical-icon svg { stroke: #7c3aed; }

.vertical-card--blue  .vertical-card__industry { color: var(--blue-500); }
.vertical-card--green .vertical-card__industry { color: #16a34a; }
.vertical-card--orange .vertical-card__industry { color: #ea580c; }
.vertical-card--purple .vertical-card__industry { color: #7c3aed; }

/* ─── Use Cases bottom CTA row ──────────────────────────────────────── */
.uc-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 24px 32px;
  border-radius: var(--r-xl);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
}

.uc-cta-row__text {
  font-size: 0.90rem;
  color: var(--ink-400);
  font-weight: 600;
}

.uc-cta-row__sep {
  font-size: 0.80rem;
  color: var(--ink-200);
}

.uc-cta-row__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: var(--blue-500);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.15s;
}

.uc-cta-row__link:hover { background: var(--blue-600, #1d4ed8); }

.uc-cta-row__link--ghost {
  background: transparent;
  color: var(--ink-600);
  border: 1.5px solid var(--line-dark);
}

.uc-cta-row__link--ghost:hover {
  background: var(--surface-2);
  border-color: var(--ink-200);
}

@media (max-width: 640px) {
  .uc-cta-row { flex-direction: column; text-align: center; }
  .uc-cta-row__sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   2ez SERVER DEEP DIVE
   ═══════════════════════════════════════════════════════════════════════ */
.server-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.time-compare {
  display: grid;
  gap: 16px;
}

.time-bar-item {
  display: grid;
  gap: 8px;
}

.time-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-700);
}

.time-bar-label span:last-child {
  font-size: 0.80rem;
  font-weight: 800;
}

.time-bar-track {
  position: relative;
  height: 10px;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.time-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-w, 0%);
  border-radius: var(--r-pill);
  transition: width 1.2s var(--ease-out);
}

.time-bar-fill--before {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.time-bar-fill--after {
  background: linear-gradient(90deg, var(--blue-500), var(--sky-500));
}

.time-saving-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(74, 222, 128, 0.10);
  border: 1px solid rgba(74, 222, 128, 0.22);
  color: #15803d;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 8px;
}

.time-saving-badge svg {
  width: 16px;
  height: 16px;
  stroke: #15803d;
  stroke-width: 2.5;
  fill: none;
}

/* Server Steps Mockup */
.server-steps {
  display: grid;
  gap: 10px;
}

.server-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  transition: border-color 0.18s, background 0.18s;
}

.server-step:hover {
  border-color: rgba(44,183,255,0.35);
  background: var(--sky-50);
}

.server-step__num {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  flex-shrink: 0;
}

.server-step__title {
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 4px;
  line-height: 1.35;
}

.server-step__desc {
  font-size: 0.80rem;
  color: var(--ink-500);
  line-height: 1.55;
}

.server-step__time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(44,183,255,0.10);
  border: 1px solid rgba(44,183,255,0.20);
  color: var(--blue-500);
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .server-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-dark);
  background: var(--surface-0);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card--featured {
  background: var(--navy-800);
  border-color: transparent;
  box-shadow: 0 20px 56px rgba(13,47,111,0.28);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
  stroke: none;
}

.testimonial-card--featured .testimonial-stars svg { fill: var(--sky-300); }

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--ink-700);
  flex: 1;
  font-style: italic;
}

.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.86); }

.testimonial-highlight {
  font-style: normal;
  font-weight: 700;
  color: var(--blue-500);
}

.testimonial-card--featured .testimonial-highlight { color: var(--sky-300); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.testimonial-card--featured .testimonial-author { border-color: rgba(255,255,255,0.10); }

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
}

.testimonial-card--featured .testimonial-name { color: #fff; }

.testimonial-role {
  font-size: 0.78rem;
  color: var(--ink-300);
  line-height: 1.3;
}

.testimonial-card--featured .testimonial-role { color: rgba(255,255,255,0.52); }

@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STICKY BOTTOM CTA BAR
   ═══════════════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  border-radius: var(--r-pill);
  background: rgba(8, 22, 58, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(4,9,26,0.30), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  opacity: 0;
  white-space: nowrap;
}

.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.sticky-cta__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.sticky-cta__text strong { color: #fff; font-weight: 800; }

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--blue-500);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 0.18s, transform 0.18s;
}

.sticky-cta__btn:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
}

.sticky-cta__btn svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
}

.sticky-cta__dismiss {
  padding: 8px;
  color: rgba(255,255,255,0.40);
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  line-height: 0;
  flex-shrink: 0;
}

.sticky-cta__dismiss:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-0);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), box-shadow 0.18s, color 0.18s;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  box-shadow: var(--shadow-xl);
  color: var(--blue-500);
  border-color: rgba(44,183,255,0.30);
}

.back-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .sticky-cta { width: calc(100% - 32px); justify-content: space-between; }
  .sticky-cta__text { display: none; }
  .back-top { bottom: 90px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   STICKY CTA – INNER STRUCTURE (new subcomponents)
   ═══════════════════════════════════════════════════════════════════════ */
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.sticky-cta__msg {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  flex: 1;
}

.sticky-cta__msg svg { flex-shrink: 0; stroke: rgba(255,255,255,0.55); }

.sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta__btn--ghost {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
}

.sticky-cta__btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

@media (max-width: 768px) {
  .sticky-cta__msg { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════
   2EZ SERVER DEEP DIVE – saving pills & sys tags
   ═══════════════════════════════════════════════════════════════════════ */
.saving-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 700;
}

.saving-pill--time {
  background: rgba(44,183,255,0.12);
  color: var(--sky-400);
  border: 1px solid rgba(44,183,255,0.25);
}

.saving-pill--cost {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.25);
}

.server-sys-tags {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark);
}

.server-sys-tags__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 14px;
}

.server-sys-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.server-sys-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-500);
  transition: border-color 0.15s, color 0.15s;
}

.server-sys-tag:hover {
  border-color: rgba(44,183,255,0.35);
  color: var(--sky-400);
}


/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS – badge color variants
   ═══════════════════════════════════════════════════════════════════════ */
/* Testimonial BEM subcomponents (matches HTML markup) */
.testimonial-card__stars {
  display: flex;
  gap: 3px;
}

.testimonial-card__stars svg {
  fill: #fbbf24;
}

.testimonial-card--featured .testimonial-card__stars svg { fill: var(--sky-300); }

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--ink-700);
  flex: 1;
  font-style: italic;
}

.testimonial-card--featured .testimonial-card__quote { color: rgba(255,255,255,0.86); }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.testimonial-card--featured .testimonial-card__author { border-color: rgba(255,255,255,0.10); }

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__avatar--b { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.testimonial-card__avatar--c { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }

.testimonial-card__info { flex: 1; }

.testimonial-card__name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-900);
  font-style: normal;
  line-height: 1.3;
}

.testimonial-card--featured .testimonial-card__name { color: #fff; }

.testimonial-card__role {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-300);
  line-height: 1.3;
  margin-top: 2px;
}

.testimonial-card--featured .testimonial-card__role { color: rgba(255,255,255,0.52); }

.testimonial-card__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(24,93,206,0.12);
  color: var(--blue-400);
  border: 1px solid rgba(24,93,206,0.25);
  white-space: nowrap;
}

.testimonial-card--featured .testimonial-card__badge {
  background: rgba(44,183,255,0.15);
  color: var(--sky-300);
  border-color: rgba(44,183,255,0.3);
}

.testimonial-card__badge--green {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  border-color: rgba(52,211,153,0.25);
}

.testimonial-card__badge--purple {
  background: rgba(167,139,250,0.12);
  color: #a78bfa;
  border-color: rgba(167,139,250,0.25);
}

.testimonial-card__badge--blue {
  background: rgba(56,189,248,0.12);
  color: var(--sky-300);
  border-color: rgba(56,189,248,0.25);
}

.testimonial-card__badge--silver {
  background: rgba(148,163,184,0.12);
  color: #94a3b8;
  border-color: rgba(148,163,184,0.25);
}

/* Avatar colors d, e */
.testimonial-card__avatar--d { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.testimonial-card__avatar--e { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }

/* Compact variant (2-column row) */
.testimonial-card--compact {
  padding: 24px 28px;
}

.testimonial-card--compact .testimonial-card__quote {
  font-size: 0.88rem;
}

/* 2-column testimonials row */
.testimonials-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .testimonials-row { grid-template-columns: 1fr; }
}

/* Trust metrics row under testimonials */
.testi-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  padding: 28px 36px;
  border-radius: var(--r-xl);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  flex-wrap: wrap;
}

.testi-trust__item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 8px 16px;
}

.testi-trust__sep {
  width: 1px;
  height: 40px;
  background: var(--line-dark);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .testi-trust { gap: 0; padding: 20px 16px; }
  .testi-trust__sep { display: none; }
  .testi-trust__item {
    border-bottom: 1px solid var(--line-dark);
    min-width: 50%;
    padding: 12px 8px;
  }
  .testi-trust__item:nth-last-child(-n+2) { border-bottom: none; }
}

.testi-trust__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 840;
  letter-spacing: -0.05em;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 4px;
}

.testi-trust__num small {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-500);
}

.testi-trust__label {
  font-size: 0.78rem;
  color: var(--ink-400);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════════════
   2EZ SERVER DEEP DIVE – supplemental BEM subcomponents
   ═══════════════════════════════════════════════════════════════════════ */
.time-compare__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.time-bar-item__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-700);
}

.time-bar-item__method { font-weight: 700; }

.time-bar-item__value {
  font-size: 0.80rem;
  font-weight: 800;
}

.time-bar-item__value--before { color: #ef4444; }
.time-bar-item__value--after  { color: var(--blue-500); }

.time-compare__saving {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.time-compare__note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--ink-300);
  line-height: 1.5;
}

.time-compare__note svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--ink-300);
}

.server-steps__cta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════════════
   DEMO CTA SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.demo-cta-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, #0d2452 55%, #0a3070 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.demo-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(44,183,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(24,93,206,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.demo-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.demo-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-300);
  margin-bottom: 18px;
}

.demo-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.demo-live-dot--sm {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.10); }
}

.demo-cta__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 840;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.demo-cta__desc {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
  max-width: 46ch;
  margin-bottom: 32px;
}

.demo-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn--ghost-light {
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
  font-weight: 700;
  transition: all 0.18s;
}

.btn--ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

.demo-cta__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.demo-cta__trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.50);
}

.demo-cta__trust svg { stroke: rgba(255,255,255,0.35); }

/* Demo screen mockup */
.demo-screen {
  border-radius: var(--r-xl);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 32px 80px rgba(4,9,26,0.50), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}

.demo-screen__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.demo-screen__dots {
  display: flex;
  gap: 5px;
}

.demo-screen__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.demo-screen__dots span:nth-child(1) { background: #ef4444; }
.demo-screen__dots span:nth-child(2) { background: #f59e0b; }
.demo-screen__dots span:nth-child(3) { background: #22c55e; }

.demo-screen__url {
  flex: 1;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.demo-screen__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.70rem;
  font-weight: 600;
  color: #22c55e;
}

.demo-screen__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-query {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.demo-query__icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.demo-query__icon img { display: block; }

.demo-query__text {
  flex: 1;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

.demo-query__badge {
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(44,183,255,0.15);
  color: var(--sky-300);
  border: 1px solid rgba(44,183,255,0.25);
  white-space: nowrap;
}

.demo-ai-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-ai-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.demo-ai-card--selected {
  background: rgba(24,93,206,0.18);
  border-color: rgba(44,183,255,0.35);
}

.demo-ai-card__name {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  min-width: 52px;
  text-align: center;
}

.demo-ai-name--gpt    { background: rgba(74,222,128,0.15); color: #4ade80; }
.demo-ai-name--claude { background: rgba(251,146,60,0.15); color: #fb923c; }
.demo-ai-name--gemini { background: rgba(167,139,250,0.15); color: #a78bfa; }

.demo-ai-card__bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.demo-ai-card__bar div {
  height: 100%;
  width: var(--bar-w, 0%);
  background: rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
}

.demo-ai-card--selected .demo-ai-card__bar div {
  background: var(--sky-400);
}

.demo-ai-card__score {
  font-size: 0.80rem;
  font-weight: 800;
  color: rgba(255,255,255,0.50);
  min-width: 24px;
  text-align: right;
}

.demo-ai-card--selected .demo-ai-card__score { color: var(--sky-300); }

.demo-result {
  padding: 12px 14px;
  border-radius: var(--r-lg);
  background: rgba(44,183,255,0.07);
  border: 1px solid rgba(44,183,255,0.18);
}

.demo-result__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.70rem;
  font-weight: 800;
  color: var(--sky-300);
  margin-bottom: 7px;
}

.demo-result__label svg { stroke: var(--sky-300); }

.demo-result__text {
  font-size: 0.78rem;
  line-height: 1.60;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 960px) {
  .demo-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   COMPLIANCE BADGES (Security section)
   ═══════════════════════════════════════════════════════════════════════ */
.compliance-row {
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
  padding-top: 40px;
}

.compliance-row__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 20px;
}

.compliance-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: var(--surface-1);
  border: 1px solid var(--line-dark);
  transition: border-color 0.18s, background 0.18s;
}

.compliance-badge:hover {
  border-color: rgba(44,183,255,0.28);
  background: var(--sky-50);
}

.compliance-badge__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(24,93,206,0.08);
  border: 1px solid rgba(24,93,206,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
}

.compliance-badge__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
}

.compliance-badge__sub {
  font-size: 0.74rem;
  color: var(--ink-400);
  margin-top: 2px;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .compliance-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .compliance-badges { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(680px, calc(100% - 32px));
  z-index: 9000;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(4, 9, 26, 0.45);
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
}

.cookie-banner__copy { flex: 1; }

.cookie-banner__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cookie-banner__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.cookie-banner__desc a {
  color: var(--sky-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s;
}

.cookie-banner__btn--reject {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.cookie-banner__btn--accept {
  background: var(--blue-500);
  border: 1.5px solid transparent;
  color: #fff;
}

.cookie-banner__btn--accept:hover { background: var(--blue-600); }

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
  }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}


/* ─── Contact Email Guide (prelaunch) ──────────────────────────────── */

.contact-email-guide {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.contact-email-guide__icon {
  margin-bottom: 16px;
  color: var(--sky-300);
}

.contact-email-guide__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.contact-email-guide__sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-email-guide__links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.contact-email-guide__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 32px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.18s, transform 0.18s var(--ease-out);
}

.contact-email-guide__link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-email-guide__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-email-guide__addr {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sky-300);
}

@media (max-width: 600px) {
  .contact-email-guide { padding: 32px 20px; }
  .contact-email-guide__links { flex-direction: column; gap: 12px; }
  .contact-email-guide__link { padding: 16px 20px; }
}


/* ─── Countdown Timer (prelaunch) ──────────────────────────────────── */

.countdown {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  padding: 14px 12px 10px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.countdown__num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.countdown__label {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.countdown__sep {
  align-self: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  padding-bottom: 14px;
}

.countdown--launched {
  padding: 16px 28px;
  border-radius: var(--r-pill);
  background: rgba(44, 183, 255, 0.12);
  border: 1px solid rgba(44, 183, 255, 0.24);
  color: var(--sky-300);
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 600px) {
  .countdown { gap: 8px; justify-content: center; }
  .countdown__unit { min-width: 56px; padding: 10px 8px 8px; }
  .countdown__num { font-size: 1.5rem; }
  .countdown__sep { font-size: 1.2rem; }
}
