/* vereg.no — landing styles
   Built on the Vereg Style Guide (Teal / Cool Gray, Plus Jakarta Sans)
   Tokens mirror /assets/style-guide.html exactly. */

:root {
  /* Brand — Teal */
  --teal-50:  #e0f5f5;
  --teal-100: #b3e6e6;
  --teal-200: #80d4d4;
  --teal-300: #4dc2c2;
  --teal-400: #26b0b0;
  --teal-500: #008080;
  --teal-600: #006666;
  --teal-700: #004d4d;
  --teal-800: #003333;
  --teal-900: #001a1a;

  /* Neutral — Cool Gray */
  --gray-50:  #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Semantic */
  --success-subtle: #f0faf4; --success-border: #8fd9b0; --success-text: #145c38; --success-solid: #1a7a4a;
  --warning-subtle: #fffbeb; --warning-border: #fde68a; --warning-text: #92400e; --warning-solid: #b45309;
  --error-subtle:   #fef2f2; --error-border:   #fca5a5; --error-text:   #991b1b; --error-solid:   #c0392b;
  --info-subtle:    #eff6ff; --info-border:    #93c5fd; --info-text:    #1e40af; --info-solid:    #1d6fa8;

  /* Tokens */
  --bg-page:        var(--gray-50);
  --bg-surface:     #ffffff;
  --bg-subtle:      var(--gray-100);
  --border-default: var(--gray-300);
  --border-emphasis:var(--gray-400);
  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-muted:     var(--gray-600);
  --action-primary: var(--teal-500);
  --action-hover:   var(--teal-600);
  --action-subtle:  var(--teal-50);
  --action-text:    var(--teal-700);

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --container: 1200px;
  --section-y: 96px;
}

/* Tweak alternatives — kept conservative within the guide spirit */
body.density-compact { --section-y: 64px; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== Type utility classes from style guide ===== */
.t-display  { font-size: 32px; font-weight: 700; line-height: 1.2; }
.t-h1       { font-size: 24px; font-weight: 600; line-height: 1.3; }
.t-h2       { font-size: 20px; font-weight: 600; line-height: 1.35; }
.t-h3       { font-size: 16px; font-weight: 600; line-height: 1.4; }
.t-body     { font-size: 14px; font-weight: 400; line-height: 1.6; }
.t-body-sm  { font-size: 13px; font-weight: 400; line-height: 1.6; }
.t-label    { font-size: 12px; font-weight: 500; line-height: 1.4; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
.t-caption  { font-size: 11px; font-weight: 400; line-height: 1.5; color: var(--text-muted); }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--action-primary);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--border-default); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { display: flex; align-items: center; gap: 3px; cursor: pointer; }
.nav-logo img { height: 22px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 13px; color: var(--text-secondary);
  padding: 6px 12px; border-radius: 5px;
  transition: background .12s, color .12s;
  cursor: pointer; font-weight: 500;
}
.nav-link:hover { background: var(--bg-subtle); color: var(--text-primary); }
.nav-link.active { background: var(--action-subtle); color: var(--action-text); }
.nav-right { display: flex; gap: 8px; align-items: center; }

/* ===== BUTTONS — per style guide ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: none; border-radius: 6px;
  padding: 8px 18px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: background .12s, color .12s, border-color .12s, box-shadow .12s, transform .12s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--action-primary); color: #fff; }
.btn-primary:hover { background: var(--action-hover); }
.btn-ghost {
  background: transparent;
  color: var(--action-primary);
  border: 1px solid var(--action-primary);
}
.btn-ghost:hover { background: var(--action-subtle); }
.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}
.btn-secondary:hover { border-color: var(--border-emphasis); color: var(--text-primary); }
.btn-quiet {
  background: transparent;
  color: var(--text-secondary);
  padding: 6px 10px;
}
.btn-quiet:hover { color: var(--text-primary); background: var(--bg-subtle); }
.btn-login {
  color: var(--action-primary);
  background: transparent;
  border: 1px solid var(--action-primary);
  font-weight: 600;
}
.btn-login:hover {
  background: var(--action-subtle);
  color: var(--action-hover);
  border-color: var(--action-hover);
}
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-lg { padding: 11px 24px; font-size: 15px; }
.btn .arrow { transition: transform .15s; display: inline-block; }
.btn:hover .arrow { transform: translateX(2px); }

/* ===== HERO ===== */
.hero {
  padding-top: 64px;
  padding-bottom: var(--section-y);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--action-primary);
  box-shadow: 0 0 0 4px var(--action-subtle);
}
.hero-eyebrow .sep { color: var(--border-default); }

h1.hero-h1 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text-primary);
  text-wrap: balance;
}
h1.hero-h1 .accent { color: var(--action-primary); }
h1.hero-h1 .quiet  { color: var(--text-muted); }

.hero-sub {
  font-size: 16px; line-height: 1.6;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 12px;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-item .check { color: var(--action-primary); font-weight: 600; }

.hero-visual { position: relative; min-height: 480px; }

/* ===== TRUST STRIP ===== */
.trust {
  padding: 20px 0;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-surface);
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.trust-item .ico { color: var(--action-primary); font-size: 10px; }

/* ===== SECTION ===== */
section.section { padding: var(--section-y) 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-wrap: balance;
  color: var(--text-primary);
}
.section h2 .accent { color: var(--action-primary); }
.section-lede {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.6; text-wrap: pretty;
  max-width: 600px;
}

/* ===== STEPS ===== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.step {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--action-subtle);
  color: var(--action-text);
  border-radius: 6px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.step p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0 0 16px;
  line-height: 1.6;
}
.step .step-detail {
  margin-top: auto;
  padding: 8px 10px;
  background: var(--bg-subtle);
  border-radius: 6px;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== WHY (differentiators) ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color .15s;
}
.why-card:hover { border-color: var(--border-emphasis); }
.why-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action-primary);
  margin-bottom: 16px;
}
.why-tag .num { color: var(--text-muted); }
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.why-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.why-card.dark {
  background: var(--gray-900);
  color: #fff;
  border-color: var(--gray-900);
}
.why-card.dark h3 { color: #fff; }
.why-card.dark p { color: var(--gray-400); }
.why-card.dark .why-tag { color: var(--teal-300); }
.why-card.dark .why-tag .num { color: var(--gray-500); }

/* ===== BC EXTENSION SECTION ===== */
.bc-section {
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 0 24px;
  padding: 64px 0;
  overflow: hidden;
}
.bc-section .container { padding: 0 40px; }
.bc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.bc-section .eyebrow { color: var(--teal-300); }
.bc-section h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 36px);
  margin-bottom: 14px;
  font-weight: 700;
}
.bc-section p {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 440px;
}
.bc-section .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}
.bc-section .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.bc-mock {
  background: #16191e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.5);
}
.bc-mock-bar {
  height: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center;
  padding: 0 14px; gap: 6px;
}
.bc-mock-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.bc-mock-bar .title {
  margin-left: 14px;
  font-family: ui-monospace, monospace;
  font-size: 10.5px; color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}
.bc-mock-body { padding: 20px; }
.bc-row {
  display: grid; grid-template-columns: 100px 1fr;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}
.bc-row:last-of-type { border-bottom: none; }
.bc-row .k {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bc-row .v {
  color: rgba(255, 255, 255, 0.9);
  font-family: ui-monospace, monospace;
}
.bc-row .v.accent { color: var(--teal-300); }
.bc-actions {
  margin-top: 16px;
  display: flex; gap: 6px;
}
.bc-actions .bc-btn {
  flex: 1; height: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bc-actions .bc-btn.primary {
  background: var(--action-primary);
  color: #fff;
  border-color: var(--action-primary);
}

/* ===== PRICING TEASER ===== */
.pricing-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.price-tier {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-tier .tier-name {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.price-tier .tier-volume {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.price-tier .tier-amount {
  font-size: 28px; line-height: 1; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.price-tier .tier-unit {
  font-size: 12px; font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}
.price-tier.recommended {
  border-color: var(--action-primary);
  background: var(--bg-surface);
  box-shadow: 0 0 0 1px var(--action-primary);
}
.price-tier .rec-flag {
  display: inline-block;
  background: var(--action-subtle);
  color: var(--action-text);
  font-size: 10px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  margin-bottom: 8px;
  width: fit-content;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 96px 0;
}
.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.cta-section h2 .accent { color: var(--action-primary); }
.cta-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.cta-meta {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 18px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border-default);
  padding: 48px 0 24px;
  background: var(--bg-surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img { height: 22px; margin-bottom: 14px; }
.footer-tag {
  color: var(--text-secondary);
  font-size: 13px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-col a {
  color: var(--text-secondary);
  font-size: 13px;
  transition: color .12s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border-default);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted);
  font-size: 11px;
  flex-wrap: wrap; gap: 12px;
}
.footer-meta {
  display: flex; gap: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ===== PRISER PAGE ===== */
.priser-hero { padding: 64px 0 24px; }
.priser-hero h1 {
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.priser-hero h1 .accent { color: var(--action-primary); }
.priser-hero .lede {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.priser-table {
  margin: 48px 0;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
}
.priser-table-head {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-default);
}
.priser-table-head > div {
  padding: 14px 20px;
  border-right: 1px solid var(--border-default);
  font-size: 10px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.priser-table-head > div:last-child { border-right: none; }
.priser-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-200);
  transition: background .12s;
}
.priser-row:last-child { border-bottom: none; }
.priser-row:hover { background: var(--bg-subtle); }
.priser-row > div {
  padding: 20px;
  border-right: 1px solid var(--gray-200);
  display: flex; flex-direction: column; justify-content: center;
}
.priser-row > div:last-child { border-right: none; }
.priser-tier-name {
  font-size: 16px; font-weight: 600;
  color: var(--text-primary);
}
.priser-vol {
  color: var(--text-secondary);
  font-size: 13px;
  font-family: ui-monospace, monospace;
}
.priser-price {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.priser-price .unit {
  font-family: var(--font);
  font-size: 12px; font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}
.priser-row.featured { background: var(--action-subtle); }
.priser-row.featured:hover { background: #d6eded; }
.priser-row.featured .priser-price { color: var(--action-text); }
.priser-row.featured .priser-tier-name { color: var(--action-text); }

.priser-included {
  margin-top: 24px;
  padding: 18px 24px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--bg-subtle);
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.priser-included-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.priser-included-items {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
  min-width: 0;
}

.priser-fineprint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.bc-card {
  margin-top: 56px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 40px;
  background: var(--bg-surface);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.bc-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.bc-card .bc-card-eyebrow {
  color: var(--action-primary);
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bc-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.bc-card-side {
  background: var(--bg-subtle);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 20px;
}
.bc-card-side .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 12px;
}
.bc-card-side .row:last-child { border-bottom: none; }
.bc-card-side .row .k {
  color: var(--text-muted);
  font-weight: 500;
}
.bc-card-side .row .v {
  color: var(--text-primary);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.faq { margin-top: 64px; }
.faq h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.faq-item {
  border-top: 1px solid var(--border-default);
  padding: 18px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-default); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.faq-q .plus {
  color: var(--text-muted);
  transition: transform .2s;
  font-size: 18px;
  width: 18px; text-align: center;
}
.faq-item.open .plus { transform: rotate(45deg); color: var(--action-primary); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease, margin .25s ease;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 600px;
  margin-top: 10px;
}

.faq-section { margin-top: 56px; }
.faq-section:first-child { margin-top: 0; }
.faq-section h2.faq-section-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.faq-section .faq { margin-top: 0; }

.faq-more {
  border-top: 1px solid var(--border-default);
  margin-top: 0;
  padding-top: 20px;
  text-align: center;
}
.faq-more a {
  font-size: 14px;
  font-weight: 500;
  color: var(--action-text);
  cursor: pointer;
  text-decoration: none;
}
.faq-more a:hover { text-decoration: underline; }
.faq-more .arrow {
  display: inline-block;
  transition: transform .15s;
  margin-left: 4px;
}
.faq-more a:hover .arrow { transform: translateX(3px); }

/* ===== HELP BANNER (on priser page) ===== */
.help-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--bg-surface);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.help-banner:hover {
  background: var(--bg-subtle);
  border-color: var(--action-primary);
}
.help-banner-text { flex: 1; min-width: 0; }
.help-banner-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.help-banner-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.help-banner-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--action-text);
  white-space: nowrap;
}
.help-banner-cta .arrow {
  display: inline-block;
  transition: transform .15s;
  margin-left: 4px;
}
.help-banner:hover .help-banner-cta .arrow { transform: translateX(3px); }
@media (max-width: 640px) {
  .help-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== KONTAKT PAGE ===== */
.kontakt-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding: 64px 0 var(--section-y);
  align-items: start;
}
.kontakt-left h1 {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.kontakt-left h1 .accent { color: var(--action-primary); }
.kontakt-left .lede {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.kontakt-info {
  border-top: 1px solid var(--border-default);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.kontakt-info-row .label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.kontakt-info-row .value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}
.kontakt-info-row .value a { color: var(--action-primary); }
.kontakt-info-row .sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

.kontakt-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 32px;
}
.kontakt-form h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 5px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font);
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--action-primary);
  box-shadow: 0 0 0 3px var(--teal-50);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kontakt-form .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 24px;
}
.kontakt-form .fineprint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.form-error {
  font-size: 13px;
  color: #c0392b;
  margin-top: 10px;
  text-align: center;
}

.success-state {
  text-align: center; padding: 32px 0;
}
.success-state .check-big {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--success-subtle);
  color: var(--success-solid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  border: 1px solid var(--success-border);
}
.success-state h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}
.success-state p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* ===== DASHBOARD MOCK ===== */
.dash {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  box-shadow: 0 20px 50px -16px rgba(33, 37, 41, 0.15), 0 4px 12px -6px rgba(33, 37, 41, 0.06);
  overflow: hidden;
  width: 100%;
}
.dash-topbar {
  height: 44px;
  display: flex; align-items: center; gap: 24px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-surface);
}
.dash-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-primary); }
.dash-mark { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border: 1px solid var(--border-default); border-radius: 5px; font-size: 10px; font-weight: 700; color: var(--action-text); }
.dash-tabs { display: flex; gap: 18px; font-size: 12px; color: var(--text-secondary); flex: 1; }
.dash-tabs .active { color: var(--text-primary); font-weight: 600; }
.dash-avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--action-subtle); color: var(--action-text); font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.dash-bar-old {
  height: 34px;
  display: flex; align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-subtle);
  gap: 8px;
}
.dash-bar .traffic { display: flex; gap: 5px; }
.dash-bar .traffic .d {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-emphasis);
}
.dash-bar .url {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 5px;
  height: 22px;
  padding: 0 10px;
  display: flex; align-items: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 10px;
}
.dash-bar .url .lock { color: var(--success-solid); margin-right: 6px; font-size: 8px; }
.dash-bar .url .path { color: var(--text-primary); }
.dash-body-old {
  display: grid;
  grid-template-columns: 168px 1fr;
}
.dash-side {
  background: var(--bg-subtle);
  border-right: 1px solid var(--border-default);
  padding: 14px 10px;
  min-height: 360px;
}
.dash-side .brand {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 8px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border-default);
}
.dash-side .brand img { height: 16px; }
.dash-side .group-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 10px 8px 4px;
}
.dash-side .nav-item {
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text-secondary);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: background .12s;
}
.dash-side .nav-item:hover { background: var(--bg-surface); }
.dash-side .nav-item.active {
  background: var(--action-subtle);
  color: var(--action-text);
  font-weight: 500;
}
.dash-side .nav-item .count {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: var(--text-muted);
}
.dash-side .nav-item.active .count { color: var(--action-text); }

.dash-main { padding: 16px 18px; }
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.dash-new-btn { background: var(--action-primary); color: #fff; border: none; border-radius: 6px; padding: 6px 12px; font-size: 11.5px; font-weight: 600; cursor: default; }
.dash-search { display: flex; gap: 8px; margin-bottom: 14px; }
.dash-search-input { flex: 1; border: 1px solid var(--border-default); border-radius: 6px; padding: 7px 10px; font-size: 11.5px; color: var(--text-muted); background: var(--bg-surface); }
.dash-search-select { border: 1px solid var(--border-default); border-radius: 6px; padding: 7px 10px; font-size: 11.5px; color: var(--text-secondary); background: var(--bg-surface); white-space: nowrap; }
.dash-search-btn { border: 1px solid var(--border-default); border-radius: 6px; padding: 7px 14px; font-size: 11.5px; font-weight: 600; color: var(--text-primary); background: var(--bg-subtle); }
.dash-vehicle-list { border: 1px solid var(--border-default); border-radius: 8px; overflow: hidden; }
.dash-vehicle-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--gray-200); background: var(--bg-surface); }
.dash-vehicle-row:last-child { border-bottom: none; }
.dash-vehicle-vin { font-family: ui-monospace, monospace; font-size: 12px; font-weight: 700; color: var(--text-primary); }
.dash-vehicle-model { font-size: 11.5px; color: var(--text-secondary); margin-top: 3px; }
.dash-vehicle-model .brand { font-weight: 600; color: var(--text-primary); margin-right: 6px; }
.dash-title-old {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.dash-title .count {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dash-head-actions { display: flex; gap: 4px; }
.dash-pill {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .04em;
  padding: 4px 9px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
}
.dash-pill.active {
  background: var(--gray-900);
  color: #fff;
  border-color: var(--gray-900);
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.dash-table thead {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dash-table th {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-default);
}
.dash-table td {
  padding: 10px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-secondary);
}
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr { transition: background .12s; }
.dash-table tbody tr:hover { background: var(--bg-subtle); }
.dash-table .vin {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-primary);
}
.dash-table .ref {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-muted);
}
.badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}
.badge.ok    { background: var(--success-subtle); color: var(--success-text); border: 0.5px solid #1a7a4aaa; }
.badge.sent  { background: var(--action-subtle);  color: var(--action-text);  border: 0.5px solid #008080aa; }
.badge.wait  { background: var(--warning-subtle); color: var(--warning-text); border: 0.5px solid #b45309aa; }
.badge.draft { background: var(--bg-subtle); color: var(--text-muted); border: 0.5px solid var(--border-default); }
.badge.fail  { background: var(--error-subtle);   color: var(--error-text);   border: 0.5px solid #c0392baa; }

.dash-footer-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
  border-top: 1px solid var(--border-default);
  background: var(--bg-subtle);
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--text-muted);
}
.dash-footer-strip .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--success-solid);
}
.dash-footer-strip .live .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success-solid);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Floating decorations around hero visual */
.float-card {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  box-shadow: 0 10px 24px -8px rgba(33, 37, 41, 0.12);
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.float-card .ico {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--action-subtle);
  color: var(--action-primary);
  display: flex; align-items: center; justify-content: center;
}
.float-card .label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.float-card .value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
  margin-top: 1px;
}
.float-card.top-left { top: -52px; left: -28px; }
.float-card.bottom-right { bottom: -20px; right: -24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .bc-grid, .kontakt-grid, .bc-card { grid-template-columns: 1fr; }
  .hero-visual { order: 2; min-height: 420px; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-strip { grid-template-columns: 1fr 1fr; }
  .priser-table-head, .priser-row { grid-template-columns: 1fr 1fr; }
  .priser-table-head > div:nth-child(2), .priser-row > div:nth-child(2) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bc-section { margin: 0 16px; padding: 48px 0; }
  .bc-section .container { padding: 0 24px; }
  .float-card.top-left { left: 0; }
  .float-card.bottom-right { right: 0; }
}
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-right .btn-login span, .nav-right .btn-login { display: none; }
  .nav-burger { display: flex; }
  .pricing-strip { grid-template-columns: 1fr; }
  .priser-table-head, .priser-row { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 36px; height: 36px; padding: 0; border: none; background: transparent; cursor: pointer;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: transform .18s, opacity .18s; margin: 0 auto; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile-menu { display: flex; flex-direction: column; border-top: 1px solid var(--border-default); background: #fff; padding: 6px 16px 12px; }
.nav-mobile-link { padding: 12px 4px; font-size: 15px; font-weight: 500; color: var(--text-secondary); border-bottom: 1px solid var(--border-default); }
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link.active { color: var(--action-text); font-weight: 600; }
@media (min-width: 641px) { .nav-mobile-menu { display: none; } }

/* ===== REGULATORY BANNER (top of homepage) ===== */
.reg-banner {
  display: block;
  background: var(--gray-900);
  color: #fff;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid var(--gray-900);
}
.reg-banner:hover { background: #14181d; }
.reg-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 11px 24px;
}
.reg-banner-left {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.reg-pill {
  display: inline-flex; align-items: center;
  background: var(--teal-500);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.reg-banner-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reg-banner-cta {
  color: var(--teal-300);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.reg-banner:hover .reg-banner-cta { color: var(--teal-200); }
.reg-banner:hover .arrow { transform: translateX(2px); }
@media (max-width: 640px) {
  .reg-banner-inner { padding: 10px 16px; flex-wrap: wrap; }
  .reg-banner-cta { font-size: 12px; }
  .reg-banner-text { font-size: 12px; }
}

/* ===== eCoC ARTICLE PAGE ===== */
.ecoc-head {
  padding: 48px 0 24px;
}
.ecoc-crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.ecoc-crumbs a {
  color: var(--text-secondary);
  cursor: pointer;
  transition: color .12s;
}
.ecoc-crumbs a:hover { color: var(--action-primary); }
.ecoc-crumbs span:last-child {
  color: var(--text-primary);
  font-weight: 600;
}
h1.ecoc-h1 {
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-wrap: balance;
  color: var(--text-primary);
}
h1.ecoc-h1 .accent { color: var(--action-primary); }
.ecoc-lede {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.ecoc-meta-row {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  font-family: ui-monospace, 'SF Mono', monospace;
  letter-spacing: .02em;
  padding-bottom: 8px;
}
.ecoc-meta-row .sep { color: var(--border-default); }

.ecoc-section {
  padding: 32px 0;
}
.ecoc-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 680px;
  text-wrap: pretty;
}
.ecoc-section p strong {
  color: var(--text-primary);
  font-weight: 600;
}
h2.ecoc-h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--text-primary);
}

/* Key facts grid */
.ecoc-facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 12px 0 8px;
}
.ecoc-fact {
  background: var(--bg-surface);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.ecoc-fact-label {
  font-size: 10px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.ecoc-fact-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--action-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ecoc-fact-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: auto;
}
@media (max-width: 800px) {
  .ecoc-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ecoc-facts { grid-template-columns: 1fr; }
}

/* Callout box */
.ecoc-callout {
  background: var(--action-subtle);
  border-left: 3px solid var(--action-primary);
  border-radius: 4px;
  padding: 18px 22px;
  margin: 20px 0 8px;
}
.ecoc-callout.subtle {
  background: var(--bg-subtle);
  border-left-color: var(--text-secondary);
  font-size: 14px;
  color: var(--text-secondary);
}
.ecoc-callout.subtle strong { color: var(--text-primary); }
.ecoc-callout-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action-text);
  margin-bottom: 10px;
}
.ecoc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.ecoc-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}
.ecoc-list li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--action-primary);
  font-weight: 600;
}

/* Numbered flow */
.ecoc-flow {
  display: flex; flex-direction: column;
  margin: 18px 0;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
}
.ecoc-flow-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-default);
}
.ecoc-flow-step:last-child { border-bottom: none; }
.ecoc-flow-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--action-subtle);
  color: var(--action-text);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.ecoc-flow-body { flex: 1; min-width: 0; }
.ecoc-flow-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.ecoc-flow-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
  max-width: none;
}

/* Warning box */
.ecoc-warning {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--warning-subtle);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 6px;
}
.ecoc-warning-mark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--warning-solid);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.ecoc-warning h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--warning-text);
  margin: 2px 0 8px;
  letter-spacing: -0.005em;
}
.ecoc-warning p {
  font-size: 14px;
  color: var(--warning-text);
  line-height: 1.6;
  margin: 0 0 10px;
  max-width: none;
}
.ecoc-warning strong { color: var(--warning-text); font-weight: 700; }

/* Product bridge card */
.ecoc-product-card {
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.ecoc-product-card .eyebrow { color: var(--teal-300); }
.ecoc-product-card h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: #fff;
}
.ecoc-product-card p {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: none;
}
.ecoc-product-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ecoc-product-card .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.ecoc-product-card .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.ecoc-product-side {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 16px 18px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.ecoc-product-side .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}
.ecoc-product-side .row:last-child { border-bottom: none; }
.ecoc-product-side .row .k {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
.ecoc-product-side .row .v {
  color: rgba(255, 255, 255, 0.9);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}
.ecoc-product-side .row .v.accent-v { color: var(--teal-300); font-weight: 600; }
@media (max-width: 800px) {
  .ecoc-product-card { grid-template-columns: 1fr; padding: 24px; }
}

/* Sources */
.ecoc-sources {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 12px;
}
.ecoc-source {
  background: var(--bg-surface);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
}
.ecoc-source-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action-primary);
}
.ecoc-source-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.ecoc-source-text a {
  color: var(--action-primary);
  font-weight: 500;
}
.ecoc-source-text a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .ecoc-source { grid-template-columns: 1fr; gap: 6px; }
}
