/* ─── Design Tokens ─────────────────────────────── */
:root {
  /* Colors */
  --bg: #f0f4f9;
  --surface: #ffffff;
  --surface-2: #e8f0fe;
  --surface-3: #f5f8ff;
  --ink: #0d2d5e;
  --ink-2: #1a3a6b;
  --ink-3: #2d4a7a;
  --muted: #6b7f99;
  --muted-2: #8fa0b8;
  --line: #d5e3f4;
  --primary: #1a6cf5;
  --primary-dark: #1257cc;
  --primary-light: #4d9eff;
  --primary-ultra: #e8f0fe;
  --accent: #0b1f3a;
  --success: #16a985;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(13,45,94,.08);
  --shadow-sm: 0 4px 16px rgba(13,45,94,.08);
  --shadow-md: 0 8px 32px rgba(13,45,94,.10);
  --shadow-lg: 0 20px 60px rgba(13,45,94,.14);
  --shadow-xl: 0 32px 80px rgba(13,45,94,.18);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Layout */
  --container: 1200px;
  --section-y: 100px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ─── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Noto Sans KR', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
textarea { resize: vertical; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; }
p { margin: 0; }

/* ─── Utilities ───────────────────────────────────── */
.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.section { padding: var(--section-y) 0; position: relative; }
.bg-muted { background: var(--surface-2); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 12px;
  transform: translateY(-140%); padding: 10px 14px;
  background: var(--ink); color: #fff; border-radius: 10px; z-index: 999;
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.section-head.split {
  max-width: 100%; text-align: left;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.section-head.split h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: .95rem;
  transition: gap .2s var(--ease);
}
.text-link:hover { gap: 10px; }

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-full); font-weight: 700;
  font-size: .95rem; transition: all .2s var(--ease); white-space: nowrap;
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 24px rgba(26,108,245,.28);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 12px 32px rgba(26,108,245,.38); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.btn-outline {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-ultra); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--surface-2); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-launch {
  background: #fff; color: var(--ink); font-size: 1.05rem; font-weight: 800;
  padding: 16px 36px; border-radius: var(--r-full); width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,.16);
}
.btn-launch:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.2); }

/* ─── Reveal Animation ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Top Banner ──────────────────────────────────── */
.top-banner {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff; padding: 10px 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .85rem; font-weight: 500; position: relative;
}
.banner-link {
  background: rgba(255,255,255,.2); color: #fff;
  padding: 3px 10px; border-radius: var(--r-full); font-weight: 700; font-size: .8rem;
  transition: background .2s;
}
.banner-link:hover { background: rgba(255,255,255,.35); }
.banner-close {
  position: absolute; right: 16px; color: rgba(255,255,255,.7);
  font-size: 1rem; padding: 4px; line-height: 1;
}
.banner-close:hover { color: #fff; }

/* ─── Header & Nav ────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240,244,249,.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(213,227,244,.7);
}
.nav {
  min-height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 170px; height: auto; }
.nav-divider { width: 1px; height: 20px; background: var(--line); margin: 0 4px; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  padding: 9px 13px; border-radius: var(--r-full);
  color: var(--ink-2); font-weight: 700; font-size: .9rem;
  transition: background .15s, color .15s, transform .15s;
}
.nav-menu a:hover, .nav-menu a:focus-visible, .nav-menu a[aria-current="page"] {
  background: #fff; color: var(--primary); transform: translateY(-1px);
}
.nav-cta {
  background: var(--ink) !important; color: #fff !important;
  box-shadow: 0 6px 20px rgba(13,45,94,.2);
  padding: 9px 18px !important; margin-left: 6px;
}
.nav-cta:hover { background: #071932 !important; transform: translateY(-1px) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; width: 42px; height: 42px;
  background: #fff; border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm); align-items: center;
  justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ────────────────────────────────────────── */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #071930 0%, #0d2d5e 50%, #0f3575 100%);
  padding: 80px 0 60px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .5; animation: orbFloat 8s ease-in-out infinite;
}
.orb-a { width: 500px; height: 500px; background: #1a6cf5; top: -100px; right: -100px; animation-delay: 0s; }
.orb-b { width: 320px; height: 320px; background: #4d9eff; bottom: -60px; left: 10%; animation-delay: -3s; opacity: .3; }
.orb-c { width: 200px; height: 200px; background: #1a3a8e; top: 40%; left: 40%; animation-delay: -6s; opacity: .2; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px,20px) scale(.96); }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 600;
  padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 22px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.6; transform:scale(.8)} }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; color: #fff;
  letter-spacing: -.03em; margin-bottom: 20px; line-height: 1.15;
}
.hero-copy h1 em { font-style: normal; color: var(--primary-light); }
.hero-desc { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
  padding: 20px 28px; width: fit-content;
}
.proof-item { padding: 0 24px; text-align: center; }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { padding-right: 0; }
.proof-item strong { display: block; font-size: 1.5rem; font-weight: 900; color: #fff; }
.proof-item span { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 500; }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* Hero Visual */
.hero-visual { position: relative; height: 480px; }
.vis-main-card {
  background: #fff; border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow-xl); position: absolute; top: 20px; left: 20px; right: 80px;
}
.vis-card-header { display: flex; gap: 8px; margin-bottom: 20px; }
.vis-badge {
  font-size: .72rem; font-weight: 700; padding: 4px 10px;
  border-radius: var(--r-full);
}
.vis-badge.verified { background: #d1fae5; color: #065f46; }
.vis-badge.type { background: var(--primary-ultra); color: var(--primary); }
.vis-card-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #fff;
  margin-bottom: 14px;
}
.ai-icon { background: linear-gradient(135deg, #1a6cf5, #4d9eff); }
.vis-main-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.vis-main-card p { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.vis-card-meta { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; }
.price-main { font-size: 1.3rem; font-weight: 900; color: var(--ink); display: block; }
.price-preview { font-size: .75rem; color: var(--muted); }
.vis-rating { text-align: right; }
.vis-rating span:first-child { font-size: .9rem; color: #f59e0b; display: block; }
.rating-count { font-size: .75rem; color: var(--muted); }
.vis-buy-btn {
  width: 100%; padding: 12px; background: var(--primary); color: #fff;
  border-radius: var(--r-md); font-weight: 800; font-size: .95rem;
  transition: background .2s;
}
.float-card {
  position: absolute; background: #fff; border-radius: var(--r-md);
  padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-size: .82rem; animation: floatY 4s ease-in-out infinite;
}
.float-card strong { display: block; font-weight: 700; color: var(--ink); font-size: .84rem; }
.float-card span { color: var(--muted); font-size: .75rem; }
.float-icon { font-size: 1.3rem; }
.float-qna { bottom: 100px; right: 0; animation-delay: 0s; }
.float-update { top: 20px; right: -20px; animation-delay: -1.5s; }
.float-seller { bottom: 20px; left: 0; animation-delay: -3s; }
.float-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #1a6cf5, #4d9eff);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .9rem; flex-shrink: 0;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── Trust Strip ─────────────────────────────────── */
.trust-strip { padding: 48px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-scroller { overflow: hidden; }
.strip-track { display: flex; gap: 0; }
.strip-item {
  flex: 1; padding: 20px 32px; border-right: 1px solid var(--line);
  min-width: 200px;
}
.strip-item:last-child { border-right: none; }
.strip-num { font-size: .7rem; font-weight: 800; color: var(--primary); letter-spacing: .1em; display: block; margin-bottom: 6px; }
.strip-item strong { display: block; font-size: .95rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.strip-item p { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ─── Market Cards ────────────────────────────────── */
.market-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.market-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px 28px;
  border: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation-delay: var(--delay, 0s);
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.market-icon { font-size: 2rem; margin-bottom: 18px; }
.market-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.market-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.market-features { display: flex; flex-direction: column; gap: 6px; }
.market-features li { font-size: .8rem; color: var(--ink-3); font-weight: 600; padding-left: 16px; position: relative; }
.market-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; font-size: .75rem; }

/* ─── Product Cards ───────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.product-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card.hidden { display: none; }
.product-cover {
  height: 140px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cover-ai { background: linear-gradient(135deg, #071930 0%, #1a6cf5 100%); }
.cover-ai2 { background: linear-gradient(135deg, #0f3575 0%, #4d9eff 100%); }
.cover-career { background: linear-gradient(135deg, #1e3a5f 0%, #0ea5e9 100%); }
.cover-career2 { background: linear-gradient(135deg, #1e3360 0%, #6366f1 100%); }
.cover-template { background: linear-gradient(135deg, #0d2d5e 0%, #16a985 100%); }
.cover-business { background: linear-gradient(135deg, #1c2e4a 0%, #f59e0b 100%); }
.cover-label {
  font-size: 1.4rem; font-weight: 900; color: rgba(255,255,255,.9);
  letter-spacing: .05em; position: relative; z-index: 1;
}
.cover-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.15), transparent 60%);
}
.product-body { padding: 22px; }
.product-tags { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.tag {
  font-size: .72rem; font-weight: 700; padding: 3px 9px;
  background: var(--surface-2); color: var(--primary);
  border-radius: var(--r-full);
}
.product-body h3 { font-size: .97rem; font-weight: 800; margin-bottom: 8px; line-height: 1.4; }
.product-body p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.product-seller {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.seller-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ink), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .72rem;
}
.product-seller span { font-size: .78rem; color: var(--muted); }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-size: 1.05rem; font-weight: 900; color: var(--ink); }
.product-status {
  font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: var(--r-full);
}
.product-status.verified { background: #d1fae5; color: #065f46; }
.product-status.preview { background: #dbeafe; color: #1d4ed8; }
.product-status.update { background: #fef3c7; color: #92400e; }
.product-status.new { background: #ede9fe; color: #4c1d95; }
.product-status.hot { background: #fee2e2; color: #991b1b; }
.product-status.package { background: var(--surface-2); color: var(--primary); }
.catalog-cta { text-align: center; }
.catalog-cta p { color: var(--muted); margin-bottom: 16px; }

/* ─── Filter Buttons ──────────────────────────────── */
.filter-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border-radius: var(--r-full); font-weight: 700; font-size: .85rem;
  color: var(--muted); background: #fff; border: 1px solid var(--line);
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ─── Trust Section ───────────────────────────────── */
.trust-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.trust-copy h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.trust-copy p { color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.trust-stats { display: flex; gap: 28px; margin-bottom: 28px; }
.tstat { text-align: center; }
.tstat strong { display: block; font-size: 1.25rem; font-weight: 900; color: var(--ink); }
.tstat span { font-size: .78rem; color: var(--muted); font-weight: 500; }
.trust-steps { display: flex; flex-direction: column; gap: 0; }
.tstep {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--line); align-items: flex-start;
}
.tstep:last-child { border-bottom: none; }
.tstep-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-ultra); color: var(--primary);
  font-weight: 900; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.tstep-content strong { display: block; font-size: .97rem; font-weight: 800; margin-bottom: 4px; }
.tstep-content p { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ─── Q&A Section ─────────────────────────────────── */
.qna-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.qna-copy h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.qna-copy p { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.qna-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.qna-benefit { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 600; }
.qna-benefit span { font-size: 1.2rem; }
.qna-demo { display: flex; flex-direction: column; gap: 14px; }
.qcard {
  background: #fff; border-radius: var(--r-lg); padding: 22px;
  border: 1px solid var(--line);
}
.qcard-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px; gap: 8px;
}
.qstatus {
  font-size: .72rem; font-weight: 700; padding: 3px 10px;
  border-radius: var(--r-full);
}
.qstatus.done { background: #d1fae5; color: #065f46; }
.qstatus.pending { background: #fef3c7; color: #92400e; }
.qcard time { font-size: .78rem; color: var(--muted); }
.qcard h4 { font-size: .92rem; font-weight: 700; margin-bottom: 10px; }
.qcard-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.qanswer { background: var(--surface-3); border-radius: var(--r-sm); padding: 12px 14px; margin-top: 8px; }
.qanswer strong { font-size: .75rem; color: var(--primary); font-weight: 700; display: block; margin-bottom: 4px; }
.qanswer p { font-size: .83rem; color: var(--ink); }
.qmini-form { display: flex; gap: 8px; }
.qmini-form input {
  flex: 1; padding: 11px 16px; border: 1px solid var(--line);
  border-radius: var(--r-md); background: #fff; font-size: .88rem;
  transition: border-color .2s;
}
.qmini-form input:focus { outline: none; border-color: var(--primary); }
.form-message { font-size: .8rem; color: var(--success); margin-top: 6px; min-height: 1em; }

/* ─── Blog ────────────────────────────────────────── */
.community-topics { display: flex; gap: 8px; flex-wrap: wrap; margin: 4px 0 28px; }
.community-topics .filter-btn { cursor: default; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.community-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.community-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.community-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.community-topic-tag {
  font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-full);
  background: var(--primary-ultra); color: var(--primary-dark);
}
.community-badge { font-size: .7rem; font-weight: 800; padding: 3px 9px; border-radius: 6px; }
.community-badge.hot { background: rgba(239,68,68,.12); color: var(--danger); }
.community-badge.new { background: rgba(22,169,133,.14); color: var(--success); }
.community-card h3 { font-size: .98rem; font-weight: 800; line-height: 1.5; }
.community-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.community-card-meta {
  display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--muted-2);
  margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line);
}
.community-card-meta span { display: flex; align-items: center; gap: 4px; }
.community-cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.community-write { background: var(--surface-3); border: 1px dashed var(--line); border-radius: var(--r-md); padding: 20px 22px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.community-write input { flex: 1; min-width: 200px; padding: 12px 16px; border-radius: var(--r-full); border: 1px solid var(--line); font: inherit; }
.community-write input:focus { outline: none; border-color: var(--primary); }
@media (max-width: 900px) {
  .community-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-write { flex-direction: column; align-items: stretch; }
}

.blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; }
.blog-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card a { display: flex; flex-direction: column; height: 100%; }
.blog-card-img {
  height: 160px; display: flex; align-items: flex-start; padding: 18px;
  position: relative;
}
.blog-img-a { background: linear-gradient(135deg, #0d2d5e, #1a6cf5); }
.blog-img-b { background: linear-gradient(135deg, #071930, #4d9eff); }
.blog-img-c { background: linear-gradient(135deg, #1e3a5f, #16a985); }
.featured-blog .blog-card-img { height: 200px; }
.blog-tag {
  font-size: .72rem; font-weight: 700; padding: 4px 10px;
  border-radius: var(--r-full); backdrop-filter: blur(8px);
}
.tag-seller { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.tag-ai { background: rgba(77,158,255,.25); color: #e0f0ff; border: 1px solid rgba(77,158,255,.4); }
.tag-policy { background: rgba(22,169,133,.2); color: #a7f3d0; border: 1px solid rgba(22,169,133,.4); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-body h3 { font-size: .97rem; font-weight: 800; line-height: 1.45; }
.blog-card-body p { font-size: .83rem; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--muted-2); }
.blog-meta time::after { content: '·'; margin-left: 8px; }

/* ─── Seller Section ──────────────────────────────── */
.seller-section { background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%); }
.seller-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.seller-copy h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.seller-copy p { color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.seller-benefits { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.seller-benefits li { display: flex; align-items: flex-start; gap: 14px; }
.benefit-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.seller-benefits strong { display: block; font-size: .95rem; font-weight: 800; margin-bottom: 3px; }
.seller-benefits p { font-size: .83rem; color: var(--muted); }
.seller-dashboard {
  background: #fff; border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.dash-header strong { font-size: 1rem; font-weight: 800; }
.dash-period { font-size: .78rem; color: var(--muted); background: var(--surface-2); padding: 4px 10px; border-radius: var(--r-full); }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.dash-metric {
  background: var(--surface-3); border-radius: var(--r-md); padding: 14px 12px;
  text-align: center; border: 1px solid var(--line);
}
.metric-label { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.metric-value { display: block; font-size: 1.1rem; font-weight: 900; color: var(--ink); margin-bottom: 3px; }
.metric-change { font-size: .72rem; font-weight: 700; }
.metric-change.up { color: var(--success); }
.metric-change.down { color: #059669; }
.dash-chart { margin-bottom: 20px; }
.chart-label { font-size: .78rem; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bar-row span { font-size: .78rem; color: var(--muted); width: 72px; flex-shrink: 0; }
.bar-track { flex: 1; height: 8px; background: var(--line); border-radius: 99px; overflow: hidden; }
.bar-fill {
  height: 100%; width: var(--w); border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  font-size: 0; transition: width 1s var(--ease);
}
.dash-review { background: var(--surface-3); border-radius: var(--r-md); padding: 16px; }
.review-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 8px; }
.dash-review p { font-size: .84rem; color: var(--ink); line-height: 1.6; margin-bottom: 8px; }
.review-author { font-size: .75rem; color: var(--muted); }

/* ─── Pricing ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card {
  background: #fff; border-radius: var(--r-xl); padding: 36px 30px;
  border: 2px solid var(--line); position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-featured {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(26,108,245,.1);
  transform: scale(1.02);
}
.pricing-featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge-top {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: .75rem; font-weight: 800;
  padding: 4px 14px; border-radius: var(--r-full);
}
.pricing-header { margin-bottom: 24px; }
.plan-badge {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); background: var(--primary-ultra);
  padding: 3px 9px; border-radius: var(--r-full); margin-bottom: 10px;
}
.pricing-header h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; }
.plan-price { font-size: 2rem; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.plan-unit { font-size: .9rem; font-weight: 600; color: var(--muted); margin-left: 4px; }
.pricing-header p { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; }
.plan-features li span { color: var(--success); font-weight: 900; }
.pricing-card .btn { width: 100%; }

/* ─── How It Works ────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.how-card {
  background: #fff; border-radius: var(--r-xl); padding: 36px;
  border: 1px solid var(--line);
}
.how-role {
  display: inline-flex; align-items: center; padding: 6px 16px;
  border-radius: var(--r-full); font-weight: 800; font-size: .85rem;
  margin-bottom: 24px;
}
.how-role.buyer { background: var(--primary-ultra); color: var(--primary); }
.how-role.seller { background: #fef3c7; color: #92400e; }
.how-steps { display: flex; flex-direction: column; gap: 16px; counter-reset: none; }
.how-steps li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .9rem; line-height: 1.5;
}
.how-steps li span {
  flex-shrink: 0; font-size: .72rem; font-weight: 800; color: var(--primary);
  background: var(--primary-ultra); padding: 3px 8px; border-radius: var(--r-full);
  letter-spacing: .03em;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.faq-head h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.faq-head p { color: var(--muted); line-height: 1.7; }
.accordion { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: .97rem; font-weight: 700; color: var(--ink);
  text-align: left; gap: 16px; transition: color .2s;
}
.accordion-btn:hover { color: var(--primary); }
.accordion-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--surface-2);
  flex-shrink: 0; position: relative; transition: background .2s, transform .3s;
}
.accordion-icon::before, .accordion-icon::after {
  content: ''; position: absolute; background: var(--ink);
  border-radius: 2px; transition: opacity .3s, transform .3s;
}
.accordion-icon::before { width: 10px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion-icon::after { width: 2px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion-btn[aria-expanded="true"] .accordion-icon { background: var(--primary-ultra); transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-panel.open { max-height: 400px; }
.accordion-panel p { padding-bottom: 20px; font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ─── Launch / CTA ────────────────────────────────── */
.launch-section {
  background: linear-gradient(160deg, #071930 0%, #0d2d5e 55%, #113a7a 100%);
  overflow: hidden; position: relative;
}
.launch-bg { position: absolute; inset: 0; pointer-events: none; }
.launch-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.launch-orb-a { width: 600px; height: 600px; background: #1a6cf5; top: -200px; right: -100px; opacity: .35; }
.launch-orb-b { width: 400px; height: 400px; background: #4d9eff; bottom: -150px; left: -50px; opacity: .2; }
.launch-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.launch-copy .eyebrow.light { color: rgba(255,255,255,.6); }
.launch-copy h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.launch-copy p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.launch-perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; }
.perk span { font-size: 1.3rem; }
.launch-form {
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-xl); padding: 36px;
}
.form-group { margin-bottom: 14px; }
.launch-form input, .launch-form select {
  width: 100%; padding: 14px 18px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1);
  color: #fff; font-size: .95rem; transition: border-color .2s, background .2s;
}
.launch-form input::placeholder { color: rgba(255,255,255,.45); }
.launch-form select option { background: #0d2d5e; color: #fff; }
.launch-form input:focus, .launch-form select:focus {
  outline: none; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15);
}
.form-note { font-size: .75rem; color: rgba(255,255,255,.4); text-align: center; margin-top: 12px; }
.launch-form .form-message { color: #4ade80; font-size: .85rem; min-height: 1.2em; text-align: center; }

/* ─── Footer ──────────────────────────────────────── */
.site-footer { background: #071930; color: rgba(255,255,255,.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo img { width: 170px; margin-bottom: 14px; }
.footer-brand-col p { font-size: .85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-email { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-email:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 800; margin-bottom: 6px; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-note { font-style: italic; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .trust-layout, .qna-layout, .seller-layout, .launch-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .featured-blog { grid-column: 1/-1; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strip-track { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .strip-item { min-width: 180px; }
}

@media (max-width: 768px) {
  :root { --section-y: 60px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: fixed; inset: 0; top: 72px;
    flex-direction: column; background: rgba(7,25,48,.97); backdrop-filter: blur(20px);
    padding: 32px 24px; gap: 8px; z-index: 99; align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 18px; font-size: 1.1rem; width: 100%; border-radius: var(--r-md); }
  .nav-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .nav-cta { background: var(--primary) !important; margin-top: 8px; text-align: center; }
  .nav-divider { display: none; }

  .top-banner { font-size: .75rem; padding: 8px 40px 8px 12px; text-align: center; flex-wrap: wrap; gap: 6px; }
  .banner-close { right: 8px; }

  .hero-copy h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }

  .market-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .how-grid { grid-template-columns: 1fr; }
  .trust-stats { flex-wrap: wrap; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .launch-inner { grid-template-columns: 1fr; gap: 40px; }
  .qmini-form { flex-direction: column; }
  .qna-layout { grid-template-columns: 1fr; gap: 40px; }
  .seller-layout { grid-template-columns: 1fr; gap: 40px; }
  .trust-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Page Hero (sub-pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #071930 0%, #0d2d5e 100%);
  color: #fff; padding: 80px 0 60px;
}
.page-hero .eyebrow { color: rgba(255,255,255,.6); }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.page-hero-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-xl); padding: 28px;
}
.page-hero-card strong { display: block; color: rgba(255,255,255,.9); font-weight: 800; margin-bottom: 12px; }
.page-hero-card ul { display: flex; flex-direction: column; gap: 8px; }
.page-hero-card li { font-size: .85rem; color: rgba(255,255,255,.65); padding-left: 14px; position: relative; }
.page-hero-card li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; }

/* Board / QnA page styles */
.qna-tools { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.board-search { flex: 1; max-width: 360px; }
.board-search-input {
  width: 100%; padding: 10px 16px; border: 1px solid var(--line);
  border-radius: var(--r-full); background: #fff; font-size: .88rem;
}
.board-search-input:focus { outline: none; border-color: var(--primary); }
.board-filter {
  padding: 7px 16px; border-radius: var(--r-full); font-weight: 700; font-size: .82rem;
  color: var(--muted); background: #fff; border: 1px solid var(--line);
  transition: all .2s;
}
.board-filter:hover { border-color: var(--primary); color: var(--primary); }
.board-filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.qna-page-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.ask-panel h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.ask-panel p { font-size: .85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }
.qna-form { display: flex; flex-direction: column; gap: 14px; }
.qna-form label span { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.qna-form input, .qna-form select, .qna-form textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: var(--r-md); background: #fff; font-size: .88rem; color: var(--ink);
  transition: border-color .2s;
}
.qna-form input:focus, .qna-form select:focus, .qna-form textarea:focus { outline: none; border-color: var(--primary); }
.board-list { display: flex; flex-direction: column; gap: 16px; }
.board-card {
  background: #fff; border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--line);
}
.board-card.hidden { display: none; }
.board-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: .78rem; color: var(--muted); }
.board-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.question-text { font-size: .83rem; color: var(--muted); margin-bottom: 12px; }
.status { font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); }
.status.answered, .status.done { background: #d1fae5; color: #065f46; }
.status.pending { background: #fef3c7; color: #92400e; }
.answer-box { border-radius: var(--r-sm); padding: 12px 14px; margin-top: 10px; }
.answer-box.muted-answer { background: var(--surface-3); border: 1px solid var(--line); }
.answer-box strong { display: block; font-size: .75rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.answer-box p { font-size: .83rem; color: var(--ink); line-height: 1.6; }

/* Blog page styles */
.blog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--r-full);
  background: #fff; font-size: .85rem; width: 220px;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.article-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); transition: transform .25s, box-shadow .25s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card.hidden { display: none; }
.article-cover {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; color: rgba(255,255,255,.8); letter-spacing: .05em;
}
.cover-deep { background: linear-gradient(135deg, #071930, #1a6cf5); }
.article-body { padding: 24px; }
.article-body h2 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; line-height: 1.4; }
.article-body p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.article-points { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.article-points li { font-size: .82rem; color: var(--ink-3); padding-left: 16px; position: relative; }
.article-points li::before { content: '·'; position: absolute; left: 5px; color: var(--primary); font-weight: 900; }
.featured-post {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-xl); padding: 28px;
}
.featured-post h2 { color: #fff; margin-bottom: 10px; }
.featured-post p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; }

/* ── v5 Brand Marketing functional additions ───────────────── */
.audience-grid .market-card .btn { margin-top: 16px; }
.consent-field { display:flex; gap:8px; align-items:flex-start; margin:10px 0 12px; font-size:13px; line-height:1.55; color:#5f6b84; }
.consent-field input { margin-top:3px; flex-shrink:0; }
.check { display:flex; gap:8px; align-items:flex-start; line-height:1.5; font-size:14px; color:#4B5775; }
.check input { margin-top:4px; }
.trust-summary-note { font-size:13px; color:#64748b; margin-top:10px; }
