:root {
  --accent1: #04befe;
  --accent2: #4481eb;
  --accent3: #7f53ac;
  --bg: #ffffff;
  --bg-soft: #eef7ff;
  --bg-card: #ffffff;
  --bg-elevated: #f8fafc;
  --border: rgba(15, 23, 42, 0.08);
  --text: #212529;
  --text-muted: #6c757d;
  --text-dark: #0f172a;
  --footer-bg: #212529;
  --gradient: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
  --shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Noto Sans Thai", "Inter", system-ui, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-soft); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}
.section-lead-fullwidth {
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(68, 129, 235, 0.28);
}
.legal-page .btn.primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(68, 129, 235, 0.28);
}
.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-line {
  background: #06c755;
  color: #fff;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(68, 129, 235, 0.2);
  color: var(--accent2);
  font-size: 0.82rem;
  font-weight: 500;
}
.parent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: -0.5rem 0 1rem;
}
.parent-badge a {
  color: var(--accent2);
  font-weight: 600;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 38px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: 1.5rem; }
.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--accent2); }
.legal-page .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.legal-page .nav-links::-webkit-scrollbar { display: none; }
.legal-page .nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.legal-page .nav-links a:hover { color: var(--accent2); }
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background: radial-gradient(80% 120% at 50% 0%, var(--bg-soft) 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}
.hero-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.stat-card strong {
  display: block;
  font-size: 1.35rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card span { font-size: 0.82rem; color: var(--text-muted); }
.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.legal-page .hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(68, 129, 235, 0.16);
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 255, 0.92));
  box-shadow: var(--shadow);
  padding: clamp(1.75rem, 5vw, 3.5rem);
}
.legal-page .hero-card::after {
  content: "";
  position: absolute;
  top: -84px;
  right: -84px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127, 83, 172, 0.18), rgba(4, 190, 254, 0.14));
  pointer-events: none;
}
.legal-page .hero-card > * {
  position: relative;
  z-index: 1;
}
.legal-page .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 850px;
  margin: 0;
}
.legal-page .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-visual h3 { margin: 0 0 1rem; font-size: 1rem; color: var(--text-dark); }
.agent-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  margin-bottom: 0.65rem;
}
.agent-pill:last-child { margin-bottom: 0; }
.agent-pill .name { font-weight: 600; font-size: 0.95rem; }
.agent-pill .price { color: var(--accent2); font-weight: 700; font-size: 0.9rem; }
.agent-pill .tag { font-size: 0.75rem; color: var(--text-muted); }

/* Cards */
.legal-page .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(4,190,254,0.15), rgba(68,129,235,0.15));
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; color: var(--text-dark); }
.card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.legal-page .card li,
.legal-page .content-box li {
  color: var(--text-muted);
}
.legal-page .card ul,
.legal-page .content-box ul,
.legal-page .content-box ol {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
}
.card.featured {
  border-color: rgba(68, 129, 235, 0.35);
  background: linear-gradient(180deg, rgba(238,247,255,0.9), var(--bg-card));
}
.legal-page .content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.legal-page .content-box + .content-box { margin-top: 1.125rem; }
.legal-page .content-box h2 { margin-top: 0; }
.legal-page .notice {
  margin-top: 1rem;
  padding: 1rem 1.125rem;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-sm);
  background: #fffbeb;
  color: #92400e;
}
.legal-page .muted { color: var(--text-muted); }
.legal-page .check-list li::marker { color: #059669; }
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  margin-bottom: 0.75rem;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
}
.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.compare-table th {
  background: var(--bg-soft);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .highlight { color: var(--accent2); font-weight: 700; }
.compare-table .best { color: #059669; font-weight: 600; }
.compare-hint {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid rgba(68, 129, 235, 0.12);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.compare-hint strong { color: var(--accent2); font-weight: 600; }

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: -1.25rem 0 2rem;
}
.audience-tag {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid rgba(68, 129, 235, 0.18);
  color: var(--accent2);
  font-size: 0.82rem;
  font-weight: 600;
}
.usecases-grid { margin-bottom: 1.5rem; }
.chat-highlight {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(238,247,255,0.95), var(--bg-card));
  border: 1px solid rgba(68, 129, 235, 0.22);
  box-shadow: var(--shadow);
}
.chat-highlight__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(4,190,254,0.15), rgba(68,129,235,0.15));
}
.chat-highlight h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.chat-highlight p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.chat-highlight p:last-child { margin-bottom: 0; }
.chat-highlight strong { color: var(--text-dark); }
.chat-highlight__note {
  font-size: 0.85rem !important;
  color: var(--accent2) !important;
  font-weight: 500;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.local-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.local-ai-card.featured {
  border-color: rgba(68, 129, 235, 0.35);
  background: linear-gradient(180deg, rgba(238,247,255,0.9), var(--bg-card));
}
.local-ai-note {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid rgba(68, 129, 235, 0.15);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.local-ai-note p { margin: 0 0 0.5rem; }
.local-ai-note p:last-child { margin-bottom: 0; }
.local-ai-note strong { color: var(--text-dark); }
.model-notice {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: #fffbeb;
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.model-notice p { margin: 0 0 0.5rem; }
.model-notice p:last-child { margin-bottom: 0; }
.model-notice strong { color: var(--text-dark); }
.model-notice a { color: var(--accent2); font-weight: 600; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card h3 { margin: 0 0 0.35rem; font-size: 1.25rem; color: var(--text-dark); }
.product-card .subtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; }
.product-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}
.product-card li { margin-bottom: 0.35rem; }
.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
}
.product-price small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  -webkit-text-fill-color: var(--text-muted);
}
.product-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Quiz */
.quiz-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 720px;
  box-shadow: var(--shadow);
}
.quiz-progress {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  transition: width 0.3s;
}
.quiz-question { font-size: 1.15rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-dark); }
.quiz-options { display: grid; gap: 0.65rem; }
.quiz-option {
  text-align: left;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-option:hover,
.quiz-option.selected {
  border-color: rgba(68, 129, 235, 0.45);
  background: var(--bg-soft);
}
.quiz-result {
  display: none;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(238, 247, 255, 0.8);
  border: 1px solid rgba(68, 129, 235, 0.2);
}
.quiz-result.show { display: block; }
.quiz-result h4 { margin: 0 0 0.5rem; color: var(--accent2); }
.quiz-nav { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

/* Pricing */
.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.calc-panel, .price-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.field-note {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.field-inline {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
}
.field-inline > *:first-child {
  flex: 1;
}
.btn-compact {
  white-space: nowrap;
  padding-inline: 1rem;
}
.field select,
.field input[type="number"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}
.addon-list { display: grid; gap: 0.5rem; }
.addon-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  cursor: pointer;
}
.addon-item input { accent-color: var(--accent2); }
.addon-item.is-disabled {
  color: var(--text-muted);
  background: color-mix(in srgb, var(--bg-elevated) 82%, white);
  border-color: color-mix(in srgb, var(--border) 70%, white);
  cursor: not-allowed;
  opacity: 0.65;
}
.price-total {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.5rem 0;
}
.price-note { font-size: 0.82rem; color: var(--text-muted); }
#quote-send-status {
  margin-top: 0.75rem;
  min-height: 1.2em;
}
#quote-send-status[data-tone="pending"] { color: #2563eb; }
#quote-send-status[data-tone="success"] { color: #047857; }
#quote-send-status[data-tone="error"] { color: #b91c1c; }
.price-breakdown {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.price-breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border);
}

/* Quote modal */
body.quote-modal-open {
  overflow: hidden;
}
.quote-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 140;
}
.quote-modal.is-open {
  display: block;
}
.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(4px);
}
.quote-modal__dialog {
  position: relative;
  width: min(1100px, calc(100% - 1.5rem));
  max-height: min(88vh, 920px);
  margin: 4.5rem auto 1.5rem;
  background: #fff;
  border-radius: 24px;
  overflow: auto;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}
.quote-modal__close {
  position: sticky;
  top: 1rem;
  z-index: 2;
  margin: 1rem 1rem 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.quote-modal__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 1.05fr);
  gap: 1.25rem;
  padding: 0 1.25rem 1.25rem;
  align-items: start;
}
.quote-modal__layout > * {
  min-width: 0;
}
.quote-modal__panel,
.quote-preview {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--bg-card);
  min-width: 0;
}
.quote-modal__panel {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.quote-modal__panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.quote-modal__lead,
.quote-form__hint,
.quote-preview__empty p,
.quote-disclaimer,
.quote-subtotal-note,
.quote-document__header p {
  color: var(--text-muted);
}
.quote-form textarea,
.quote-form input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}
.quote-form textarea {
  min-height: 108px;
  resize: vertical;
}
.quote-form__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}
.quote-form__hint {
  margin: 0;
  font-size: 0.82rem;
}
.quote-preview {
  background: #f8fafc;
}
.quote-preview__content {
  min-width: 0;
}
.quote-preview__empty[hidden],
.quote-preview__content[hidden],
.quote-preview__actions[hidden] {
  display: none !important;
}
.quote-preview__empty {
  display: grid;
  place-items: center;
  min-height: 100%;
  text-align: center;
  padding: 2rem 1rem;
}
.quote-preview__empty strong {
  color: var(--text-dark);
  font-size: 1.05rem;
}
.quote-preview__empty p {
  max-width: 34rem;
  margin: 0.75rem 0 0;
}
.quote-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.quote-document {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.quote-document__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.quote-document__header > div {
  min-width: 0;
}
.quote-document__header h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1.55rem;
  color: var(--text-dark);
  overflow-wrap: anywhere;
}
.quote-document__header p {
  margin: 0;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}
.quote-meta {
  min-width: 220px;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.quote-meta div + div {
  margin-top: 0.35rem;
}
.quote-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
  min-width: 0;
}
.quote-card h4 {
  margin: 0 0 0.8rem;
  color: var(--text-dark);
}
.quote-lines,
.quote-bullets {
  margin: 0;
  padding-left: 1rem;
}
.quote-lines {
  list-style: none;
  padding-left: 0;
}
.quote-lines li,
.quote-total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
}
.quote-lines li:last-child {
  border-bottom: 0;
}
.quote-lines span,
.quote-lines strong,
.quote-bullets li,
.quote-card p {
  color: var(--text-muted);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.quote-card div,
.quote-meta div,
.quote-subtotal-note,
.quote-disclaimer {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.quote-bullets li + li {
  margin-top: 0.45rem;
}
.quote-total-row {
  margin-top: 0.4rem;
  padding-top: 0.85rem;
  border-bottom: 0;
  border-top: 1px solid var(--border);
  color: var(--text-dark);
}
.quote-total-row strong {
  font-size: 1.15rem;
}
.quote-subtotal-note {
  font-size: 0.84rem;
}
.quote-disclaimer {
  margin: 0;
  font-size: 0.84rem;
}

/* Map modal */
body.map-modal-open {
  overflow: hidden;
}
.map-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 150;
}
.map-modal.is-open {
  display: block;
}
.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}
.map-modal__dialog {
  position: relative;
  width: min(1200px, calc(100% - 1.5rem));
  max-height: min(90vh, 980px);
  margin: 2.5rem auto;
  background: #fff;
  border-radius: 24px;
  overflow: auto;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  padding: 1.25rem;
}
.map-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-dark);
}
.map-modal__header {
  padding-right: 3.5rem;
}
.map-modal__header h3 {
  margin: 0.25rem 0 0.45rem;
  color: var(--text-dark);
  font-size: 1.55rem;
}
.map-modal__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.map-modal__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem;
  margin-top: 1rem;
}
.map-modal__toolbar input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}
.map-modal__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}
.map-sidebar {
  display: grid;
  gap: 0.9rem;
}
.map-sidebar__card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: var(--bg-card);
}
.map-sidebar__card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-dark);
}
.map-sidebar__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}
.map-sidebar__card p + p {
  margin-top: 0.5rem;
}
.map-search-results {
  display: grid;
  gap: 0.6rem;
}
.map-search-results__empty {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.map-result-item {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  cursor: pointer;
  color: var(--text);
}
.map-result-item strong,
.map-result-item span {
  display: block;
}
.map-result-item strong {
  font-size: 0.9rem;
  color: var(--text-dark);
}
.map-result-item span {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.map-canvas-wrap {
  min-width: 0;
}
.map-canvas {
  width: 100%;
  min-height: 560px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-modal__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 0.75rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  margin: 0 auto 0.6rem;
}
.step h4 { margin: 0 0 0.25rem; font-size: 0.82rem; color: var(--text-dark); }
.step p { margin: 0; font-size: 0.72rem; color: var(--text-muted); }

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; max-width: 760px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  background: none;
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-a {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* Placeholder */
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.placeholder-card {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.placeholder-card .icon { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.5; }

/* Demo videos */
.demo-section {
  padding: 4rem 0;
}
.demo-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.demo-heading-row .section-lead {
  margin-bottom: 0;
}
.demo-all-link {
  flex: 0 0 auto;
  margin-bottom: 0.15rem;
}
.demo-slider-shell {
  position: relative;
  display: flex;
  align-items: center;
}
.demo-track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0.25rem;
  padding: 0.25rem 0.25rem 1rem;
  scrollbar-width: thin;
}
.demo-track::-webkit-scrollbar {
  height: 8px;
}
.demo-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(68, 129, 235, 0.35);
}
.demo-card {
  flex: 0 0 min(78vw, 640px);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.demo-section .demo-card {
  flex-basis: min(62vw, 512px);
}
.demo-card--youtubvideo {
  flex-basis: min(70vw, 560px);
}
.demo-library-grid .demo-card--youtubvideo {
  flex-basis: initial;
}
.demo-section .demo-card--youtubvideo {
  flex-basis: min(62vw, 512px);
}
.demo-card--youtubshort {
  flex-basis: min(56vw, 300px);
}
.demo-section .demo-card--youtubshort {
  flex-basis: min(45vw, 240px);
}
.demo-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.demo-card--youtubshort .demo-media {
  aspect-ratio: 9 / 16;
}
.demo-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}
.demo-meta {
  padding: 1rem 1.1rem 1.15rem;
}
.demo-section .demo-meta {
  padding: 0.85rem 0.95rem 1rem;
  text-align: left;
}
.demo-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.1rem 0.5rem;
  color: var(--accent2);
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.demo-section .demo-meta span {
  margin-inline: 0;
}
.demo-meta h3 {
  margin: 0.55rem 0 0;
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.32;
}
.demo-section .demo-meta h3 {
  display: -webkit-box;
  min-height: calc(0.96rem * 1.32);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  cursor: help;
}
.demo-meta p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.demo-section .demo-meta p {
  display: -webkit-box;
  min-height: calc(0.76rem * 1.35 * 2);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  cursor: help;
}
.demo-tooltip {
  position: fixed;
  z-index: 220;
  width: min(420px, calc(100vw - 2rem));
  max-height: min(320px, calc(100vh - 2rem));
  overflow: auto;
  padding: 0.8rem 0.95rem;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-dark);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
  white-space: pre-line;
  overflow-wrap: anywhere;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.demo-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.demo-arrow {
  position: absolute;
  top: calc(50% - 1.5rem);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}
.demo-arrow--prev {
  left: -0.75rem;
}
.demo-arrow--next {
  right: -0.75rem;
}
.demo-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.demo-library-grid .demo-meta,
.demo-portrait-grid .demo-meta {
  padding: 1.15rem 1.25rem 1.3rem;
}
.demo-page .demo-meta {
  padding: 1.15rem 1.25rem 1.3rem;
}
.demo-library-grid .demo-meta h3,
.demo-portrait-grid .demo-meta h3 {
  margin-top: 0;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.38;
  color: var(--text-dark);
}
.demo-page .demo-meta h3 {
  margin-top: 0;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.38;
  color: var(--text-dark);
}
.demo-library-grid .demo-meta p,
.demo-portrait-grid .demo-meta p {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.demo-page .demo-meta p {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.demo-code {
  color: rgba(15, 23, 42, 0.16) !important;
  font-size: 0.78em;
  font-weight: 400;
}
.demo-library-grid .demo-card,
.demo-portrait-grid .demo-card {
  flex: initial;
  width: 100%;
}
.demo-library-grid .demo-media {
  aspect-ratio: 16 / 9;
}
.demo-portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.demo-tablet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.legal-page #contact-channels .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-card h3 { margin: 0 0 1rem; color: var(--text-dark); }
.legal-page .contact-main {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem !important;
}
.legal-page .contact-main a {
  color: var(--accent2);
  text-decoration: none;
}
.legal-page .contact-main a:hover { text-decoration: underline; }
.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.contact-item strong { color: var(--text-dark); display: block; }
.contact-item a { color: var(--accent2); }
.contact-subline {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.line-oa-card,
.contact-line-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 1.1rem;
  align-items: center;
}
.contact-line-feature {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.contact-line-feature h2,
.line-oa-card h3 {
  margin: 0 0 0.7rem;
  color: var(--text-dark);
}
.contact-line-feature p,
.line-oa-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}
.line-oa-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.line-oa-actions strong {
  color: var(--text-dark);
}
.line-qr-link {
  justify-self: end;
  display: block;
  width: 150px;
  padding: 0.55rem;
  border: 1px solid rgba(6, 199, 85, 0.22);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 199, 85, 0.12);
}
.line-qr {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 12px;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.area-tag {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(68, 129, 235, 0.1);
  border: 1px solid rgba(68, 129, 235, 0.2);
  font-size: 0.78rem;
  color: var(--accent2);
}
.legal-page .form-box input,
.legal-page .form-box textarea,
.legal-page .form-box select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}
.legal-page .form-box label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.9rem 0 0.4rem;
}
.legal-page .form-box textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 6rem;
  background: var(--footer-bg);
  color: #adb5bd;
  font-size: 0.85rem;
}
.legal-page .site-footer a { text-decoration: none; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-inner a { color: var(--accent1); }
.footer-brand img { margin-bottom: 0.75rem; }
.legal-page .footer-brand > div:last-child {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}
.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.mobile-cta .btn { flex: 1; padding: 0.75rem; font-size: 0.85rem; }

@media (max-width: 960px) {
  .hero-grid, .pricing-layout, .contact-grid, .grid-3, .product-grid, .local-ai-grid, .placeholder-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .legal-page .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .nav-desktop, .header-cta-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 5.5rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .quote-modal__layout {
    grid-template-columns: 1fr;
  }
  .quote-modal__dialog {
    width: min(100% - 1rem, 760px);
    margin-top: 4rem;
  }
  .map-modal__toolbar,
  .map-modal__body {
    grid-template-columns: 1fr;
  }
  .map-canvas {
    min-height: 420px;
  }
  .demo-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .demo-card,
  .demo-card--youtubvideo {
    flex-basis: min(86vw, 620px);
  }
  .demo-card--youtubshort {
    flex-basis: min(58vw, 320px);
  }
  .demo-section .demo-card,
  .demo-section .demo-card--youtubvideo {
    flex-basis: min(78vw, 560px);
  }
  .demo-section .demo-card--youtubshort {
    flex-basis: min(52vw, 280px);
  }
  .demo-library-grid,
  .demo-portrait-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .demo-library-grid .demo-meta p,
  .demo-portrait-grid .demo-meta p {
    font-size: 0.86rem;
    line-height: 1.72;
  }
  .demo-page .demo-meta p {
    font-size: 0.86rem;
    line-height: 1.72;
  }
  .line-oa-card,
  .contact-line-feature {
    grid-template-columns: 1fr;
  }
  .line-qr-link {
    justify-self: start;
  }
}
@media (max-width: 560px) {
  .section { padding: 3.5rem 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { width: 100%; }
  .chat-highlight { flex-direction: column; gap: 0.75rem; }
  .field-inline {
    flex-direction: column;
  }
  .quote-modal__dialog {
    width: calc(100% - 0.75rem);
    margin: 2.5rem auto 0.75rem;
    border-radius: 18px;
  }
  .quote-modal__layout {
    padding: 0 0.75rem 0.75rem;
  }
  .quote-modal__panel,
  .quote-preview {
    padding: 1rem;
  }
  .quote-document__header,
  .quote-lines li,
  .quote-total-row,
  .quote-preview__actions {
    grid-template-columns: 1fr;
  }
  .quote-document__header,
  .quote-lines li,
  .quote-total-row {
    display: grid;
  }
  .map-modal__dialog {
    width: calc(100% - 0.75rem);
    margin: 1rem auto;
    border-radius: 18px;
    padding: 1rem;
  }
  .map-canvas {
    min-height: 340px;
  }
  .demo-track {
    gap: 0.75rem;
    padding-inline: 0;
  }
  .demo-card,
  .demo-card--youtubvideo,
  .demo-card--youtubshort {
    flex-basis: 86vw;
  }
  .demo-section {
    padding: 3rem 0;
  }
  .demo-section .demo-card,
  .demo-section .demo-card--youtubvideo {
    flex-basis: 78vw;
  }
  .demo-section .demo-card--youtubshort {
    flex-basis: 70vw;
  }
  .demo-arrow {
    display: none;
  }
  .demo-library-grid,
  .demo-portrait-grid {
    grid-template-columns: 1fr;
  }
  .demo-library-grid .demo-meta,
  .demo-portrait-grid .demo-meta {
    padding: 1rem 1.05rem 1.15rem;
  }
  .demo-page .demo-meta {
    padding: 1rem 1.05rem 1.15rem;
  }
  .demo-library-grid .demo-meta h3,
  .demo-portrait-grid .demo-meta h3 {
    font-size: 1rem;
  }
  .demo-page .demo-meta h3 {
    font-size: 1rem;
  }
  .demo-library-grid .demo-meta p,
  .demo-portrait-grid .demo-meta p {
    font-size: 0.84rem;
    line-height: 1.68;
  }
  .demo-page .demo-meta p {
    font-size: 0.84rem;
    line-height: 1.68;
  }
}

/* Inline brand icons (Telegram / Discord) inside chat-highlight */
.chat-app-icon {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.22em;
  margin-right: 0.3em;
  display: inline-block;
  flex-shrink: 0;
}


.tool-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.telegram { color: #26a5e4; }
.discord { color: #5865f2; }
.openclaw { color: #ff6a00; }
.vscode { color: #007acc; }
.hermes { color: #4f46e5; }
.localai { color: #06b6d4; }
