/* ============================================================
   Hostika-bg.com — shared styles
   ============================================================ */

:root {
  /* Editorial linen palette — warm cream body, true-white cards, deep ink for premium contrast */
  --bg:        #f5f1ea;  /* warm linen, the workhorse */
  --bg-alt:    #ebe5d6;  /* deeper linen for alternating sections */
  --bg-cream:  #dfd5bf;  /* deepest cream for contrast blocks */
  --bg-card:   #ffffff;  /* pure white cards pop crisply on linen */
  --bg-ink:    #0a0d14;  /* deep ink — hero, footer, premium dark sections */
  --bg-ink-2:  #11151f;
  --bg-dark:   #0a0d14;  /* alias kept for older rules */
  --bg-dark-2: #11151f;
  --text:      #0a0d14;
  --text-2:    #3a4250;
  --text-mute: #6b7280;
  --line:      #dfd7c4;  /* warm beige hairline */
  --line-2:    #c7bf9f;
  --line-dark: rgba(255,255,255,0.10);
  --brand:     #2563eb;
  --brand-2:   #1e3a8a;
  --brand-soft:#e8eefe;
  --accent:    #b45309;  /* rich amber — editorial counterpoint to ink + linen */
  --accent-soft:#fbe9d2;
  --success:   #047857;
  --warn:      #b45309;
  --danger:    #dc2626;
  --radius:    12px;
  --radius-lg: 18px;
  --maxw:      1180px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.04);
  --shadow-md: 0 10px 30px -12px rgba(15,23,42,.18), 0 4px 8px -4px rgba(15,23,42,.08);
  --shadow-lg: 0 25px 50px -20px rgba(37,99,235,.35);
  --t: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; }
@supports (font-variation-settings: normal) {
  body { font-family: 'InterVariable', 'Inter', system-ui, sans-serif; }
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; transition: color .15s var(--t); }
a:hover { color: var(--brand-2); }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
h1, h2, h3, h4 { color: var(--text); letter-spacing: -0.025em; font-weight: 700; margin: 0; }
h1 { font-size: clamp(1.7rem, 5.4vw, 4rem); line-height: 1.08; letter-spacing: -0.035em; font-weight: 800; overflow-wrap: break-word; word-wrap: break-word; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.15; letter-spacing: -0.03em; overflow-wrap: break-word; }
h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
/* Inter Variable supports optical sizing — use display cut at large sizes for editorial polish */
@supports (font-variation-settings: normal) {
  h1 { font-variation-settings: 'opsz' 36; }
  h2 { font-variation-settings: 'opsz' 28; }
}
p  { color: var(--text-2); margin: 0; }
hr { border-top-color: var(--line); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 241, 234, 0.88);  /* matches --bg linen, semi-translucent */
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; color: var(--text); letter-spacing: -0.01em;
}
.brand-logo .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, #60a5fa 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: .9rem;
  box-shadow: 0 4px 12px -2px rgba(37,99,235,.45);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn):not(.lang-toggle) {
  color: var(--text-2); font-size: .94rem; font-weight: 500;
}
.nav-links a:not(.btn):not(.lang-toggle):hover { color: var(--text); }
.nav-links a.is-active { color: var(--text); }
.nav-links a.is-active::after {
  content: ""; display: block; height: 2px; background: var(--brand); border-radius: 2px;
  margin-top: 4px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  border: 1px solid var(--line); padding: 7px 11px; border-radius: 8px;
  font-size: .8rem; font-weight: 600; color: var(--text-2); letter-spacing: .04em;
  transition: all .15s var(--t);
}
.lang-toggle:hover { color: var(--text); border-color: var(--text-mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px;
  font-weight: 600; font-size: .94rem; border: 1px solid transparent;
  cursor: pointer; transition: all .18s var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(15,23,42,.05), 0 8px 24px -8px rgba(37,99,235,.55); }
.btn-primary:hover { background: var(--brand-2); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(37,99,235,.65); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--text); color: var(--text); }
.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: #1f2937; color: #fff; }
.btn-ghost-dark { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.14); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: .88rem; }
.btn-lg { padding: 14px 22px; font-size: 1rem; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-light { background: var(--bg-alt); }
.section-cream { background: var(--bg-cream); }
.section-dark  { background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p  { color: rgba(255,255,255,0.75); }
.section-dark .eyebrow { color: #93c5fd; }
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head--center { text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(180, 83, 9, 0.22) 0%, transparent 55%),
    radial-gradient(900px 500px at 5% 10%, rgba(37, 99, 235, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-ink) 0%, var(--bg-ink-2) 100%);
  padding: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0 72px; text-align: center; }
@media (max-width: 600px) { .hero-inner { padding: 56px 0 52px; } }
.hero .eyebrow { color: #93c5fd; background: rgba(147,197,253,.10); border: 1px solid rgba(147,197,253,.22); padding: 6px 12px; border-radius: 999px; }
.hero h1 { color: #fff; margin: 0 auto 18px; max-width: 880px; }
.hero h1 .accent {
  background: linear-gradient(90deg, #f59e0b, #fb923c 50%, #f59e0b);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;  /* editorial serif punch on the call-out */
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: normal;
}
.hero p { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 620px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sub-hero (other pages) */
.page-hero { padding: 80px 0 56px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 760px; margin-bottom: 18px; }
.page-hero p  { font-size: 1.1rem; max-width: 620px; }
.page-hero .crumb { font-size: .85rem; color: var(--text-mute); margin-bottom: 18px; }
.page-hero .crumb a { color: var(--text-mute); }

/* Trust strip */
.stats {
  position: relative; z-index: 1;
  margin-top: 60px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid; gap: 24px 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat { text-align: center; min-width: 0; }
.stat-value { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,0.55); margin-top: 4px; line-height: 1.35; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Service cards (homepage) ---------- */
.grid-services {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all .2s var(--t);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.service-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 130%);
}
.badge-featured {
  position: absolute; top: -10px; right: 18px;
  background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  padding: 5px 10px; border-radius: 999px; text-transform: uppercase;
}
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { margin: 0 0 8px; }
.service-card .desc { color: var(--text-2); font-size: .95rem; flex: 1; margin: 0 0 18px; }
.price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.price-main { font-size: 1.45rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.price-note { font-size: .85rem; color: var(--text-mute); }

/* ---------- Feature cards ---------- */
.grid-features {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, #60a5fa 100%);
  color: #fff; margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { margin: 0 0 6px; font-size: 1.05rem; }
.feature p  { font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
details.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  margin-bottom: 12px;
  transition: border-color .15s var(--t);
}
details.faq[open] { border-color: var(--brand); }
details.faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: ""; width: 10px; height: 10px;
  border-right: 2px solid var(--text-mute); border-bottom: 2px solid var(--text-mute);
  transform: rotate(45deg); transition: transform .2s var(--t); flex: none;
}
details.faq[open] summary::after { transform: rotate(-135deg); border-color: var(--brand); }
details.faq .answer { padding: 0 22px 20px; color: var(--text-2); font-size: .96rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, #1e40af 100%);
  border-radius: 22px; padding: 56px;
  color: #fff; text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 20% 0%, rgba(255,255,255,.15), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin: 0 0 10px; position: relative; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin: 0 0 24px; position: relative; }
.cta-banner .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-banner .btn-primary { background: #fff; color: var(--brand); box-shadow: none; }
.cta-banner .btn-primary:hover { background: #f1f5f9; color: var(--brand-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 64px 0 28px; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  margin-bottom: 44px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h5 { color: #fff; font-size: .9rem; margin: 0 0 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: .94rem; margin: 14px 0 0; max-width: 320px; }
.footer-about .brand-logo { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Services page (editorial layout)
   ============================================================ */
.svc-row {
  display: grid; gap: 56px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-of-type { border-bottom: 0; }
.svc-row.reverse .svc-text { order: 2; }
.svc-row .svc-num {
  display: inline-block; font-size: .8rem; color: var(--text-mute);
  font-weight: 600; letter-spacing: .14em; margin-bottom: 12px;
}
.svc-row .svc-num em { font-style: normal; color: var(--brand); }
.svc-row h2 { margin-bottom: 14px; }
.svc-row p.lede { color: var(--text); font-size: 1.05rem; margin-bottom: 18px; }
.svc-row .price-line {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; margin-bottom: 22px;
}
.svc-row .price-line strong { font-size: 1.05rem; color: var(--text); }
.svc-row .price-line span { color: var(--text-mute); font-size: .9rem; }
.svc-row .incl-list { list-style: none; padding: 0; margin: 0 0 24px; }
.svc-row .incl-list li {
  position: relative; padding: 4px 0 4px 28px; color: var(--text-2); font-size: .96rem;
}
.svc-row .incl-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.svc-visual {
  position: relative;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
}
.svc-visual.dark { background: linear-gradient(135deg, #0b1220 0%, #1e293b 100%); }
.svc-visual .label {
  position: absolute; top: 16px; left: 16px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mute);
}
.svc-visual.dark .label { color: rgba(255,255,255,0.6); }

/* Mockup elements inside svc-visual */
.mock-browser {
  position: absolute; inset: 14% 10% 14% 10%;
  background: #fff; border-radius: 10px;
  box-shadow: 0 24px 50px -20px rgba(15,23,42,.35);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mock-bar {
  height: 26px; background: #f1f5f9; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 5px; padding: 0 10px;
}
.mock-bar span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.mock-bar .url {
  flex: 1; margin-left: 10px; height: 14px; background: #e2e8f0;
  border-radius: 3px;
}
.mock-content { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.mock-content .ln { height: 7px; background: #e2e8f0; border-radius: 3px; }
.mock-content .ln.short { width: 60%; }
.mock-content .ln.medium { width: 80%; }
.mock-content .ln.tall { height: 32px; background: linear-gradient(90deg, var(--brand) 0%, #60a5fa 100%); width: 40%; margin-top: 6px; border-radius: 4px; }

.mock-terminal {
  position: absolute; inset: 18% 12% 18% 12%;
  background: #0f172a; border-radius: 10px;
  box-shadow: 0 24px 50px -20px rgba(15,23,42,.5);
  padding: 22px; font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: .78rem; line-height: 1.7;
  color: #94a3b8;
  overflow: hidden;
}
.mock-terminal .prompt { color: #34d399; }
.mock-terminal .ok { color: #34d399; }
.mock-terminal .yellow { color: #fbbf24; }

@media (max-width: 820px) {
  .svc-row { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .svc-row.reverse .svc-text { order: 0; }
}

/* Process timeline (services page) */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process::before {
  content: ""; position: absolute; top: 22px; left: 0; right: 0; height: 2px;
  background: var(--line); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: left; }
.process-step .dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--brand); margin-bottom: 16px;
  box-shadow: 0 0 0 6px var(--bg-alt);
}
.process-step h4 { margin: 0 0 6px; font-size: 1.02rem; }
.process-step p { font-size: .92rem; }
@media (max-width: 760px) {
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
}

/* Comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-card); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
.compare th { background: var(--bg-alt); font-weight: 600; color: var(--text); }
.compare td:first-child { color: var(--text); font-weight: 500; }
.compare tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--accent); font-weight: 700; }
.compare .no  { color: var(--text-mute); }
.compare .col-featured { background: var(--brand-soft); color: var(--brand); }

/* Quote block */
.quote {
  max-width: 760px; margin: 0 auto;
  font-size: 1.3rem; line-height: 1.5; color: var(--text);
  text-align: center; font-weight: 500; letter-spacing: -0.01em;
}
.quote::before {
  content: "\201C"; display: block; font-family: Georgia, serif;
  font-size: 4rem; line-height: 1; color: var(--brand);
  margin-bottom: 4px;
}
.quote .attr { margin-top: 18px; font-size: .9rem; font-weight: 600; color: var(--text-2); letter-spacing: 0; }
.quote .attr small { display: block; font-weight: 400; color: var(--text-mute); margin-top: 2px; }

/* ============================================================
   Builder page (interactive configurator)
   ============================================================ */
.builder-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .builder-layout { grid-template-columns: 1fr; } }

.builder-step { margin-bottom: 40px; }
.builder-step .step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.builder-step .step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 700; font-size: .85rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.builder-step h3 { font-size: 1.2rem; }
.builder-step .step-help { color: var(--text-mute); font-size: .92rem; margin: 0 0 18px 40px; }

.option-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-left: 40px;
}
.opt {
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid var(--line); background: var(--bg-card); border-radius: var(--radius);
  padding: 16px; cursor: pointer; transition: all .15s var(--t);
  position: relative;
  user-select: none;
}
.opt:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.opt.is-selected {
  border-color: var(--brand); background: var(--brand-soft);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}
.opt.is-selected::after {
  content: "\2713"; position: absolute; top: 8px; right: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt-icon { width: 28px; height: 28px; color: var(--brand); }
.opt .title { font-weight: 600; color: var(--text); font-size: .96rem; }
.opt .sub { font-size: .82rem; color: var(--text-mute); }
.opt .price { font-size: .82rem; color: var(--brand); font-weight: 600; margin-top: 4px; }

.slider-wrap { margin-left: 40px; }
.slider-row { display: flex; align-items: center; gap: 14px; }
.slider-row input[type=range] {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; background: var(--line); border-radius: 999px; outline: none;
}
.slider-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand); cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,.4);
}
.slider-row input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand); cursor: pointer;
}
.slider-row .val {
  min-width: 60px; text-align: center; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); padding: 6px 10px; border-radius: 8px;
}

/* Summary sidebar */
.summary {
  position: sticky; top: 90px;
  background: var(--bg-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-lg);
}
.summary h4 { color: #fff; margin-bottom: 4px; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.summary .summary-sub { color: rgba(255,255,255,0.55); font-size: .85rem; margin-bottom: 24px; }
.summary ul.summary-lines { list-style: none; padding: 0; margin: 0 0 24px; }
.summary ul.summary-lines li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--line-dark);
  font-size: .92rem; color: rgba(255,255,255,0.85);
}
.summary ul.summary-lines li span:last-child { color: #fff; font-weight: 600; }
.summary ul.summary-lines li.empty { color: rgba(255,255,255,0.4); font-style: italic; justify-content: center; }
.summary .total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
}
.summary .total-label { color: rgba(255,255,255,0.7); font-size: .9rem; }
.summary .total-value { font-size: 2rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.summary .total-value small { font-size: .85rem; color: rgba(255,255,255,0.55); font-weight: 400; margin-left: 4px; }
.summary .btn-primary { width: 100%; justify-content: center; }
.summary .or-line {
  text-align: center; font-size: .82rem; color: rgba(255,255,255,0.5);
  margin: 14px 0;
}
.summary .btn-ghost-dark { width: 100%; justify-content: center; }

/* ============================================================
   Demo page (wireframe + calendar)
   ============================================================ */
.demo-section { background: var(--bg-alt); padding: 96px 0; }
.demo-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 980px) { .demo-layout { grid-template-columns: 1fr; } }

.wireframe-frame {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.wireframe-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid var(--line); background: #fafbfc;
}
.wf-counter { font-size: .85rem; color: var(--text-mute); font-weight: 500; }
.wf-counter strong { color: var(--text); }
.wf-controls { display: flex; gap: 6px; }
.wf-btn {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: all .15s var(--t);
}
.wf-btn:hover:not(:disabled) { border-color: var(--brand); color: var(--brand); }
.wf-btn:disabled { opacity: .35; cursor: not-allowed; }
.wf-stage { background: #f1f5f9; padding: 28px; min-height: 480px; position: relative; }
.wf-screen { display: none; }
.wf-screen.is-active { display: block; animation: fadeIn .35s var(--t); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Generic mockup elements for wireframes */
.wm {
  background: #fff; border-radius: 8px; padding: 18px;
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
  margin-bottom: 12px;
}
.wm-bar { height: 36px; background: linear-gradient(90deg, #0b1220 0%, #1e293b 100%); border-radius: 6px; display: flex; align-items: center; padding: 0 14px; color: #fff; font-size: .8rem; font-weight: 600; }
.wm-bar.light { background: #fff; border: 1px solid var(--line); color: var(--text); }
.wm-row { display: flex; gap: 10px; }
.wm-col { flex: 1; }
.wm-heading { height: 24px; background: var(--text); border-radius: 4px; width: 70%; margin-bottom: 10px; }
.wm-heading.brand { background: var(--brand); }
.wm-line { height: 10px; background: #e2e8f0; border-radius: 3px; margin-bottom: 8px; }
.wm-line.w70 { width: 70%; } .wm-line.w50 { width: 50%; } .wm-line.w90 { width: 90%; }
.wm-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.wm-card {
  background: #f8fafc; border: 1px solid var(--line); border-radius: 8px;
  padding: 14px; aspect-ratio: 4 / 5;
}
.wm-cta {
  display: inline-block; padding: 8px 14px; background: var(--brand); color: #fff;
  font-size: .82rem; font-weight: 600; border-radius: 6px;
}
.wm-tile {
  aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--brand) 0%, #60a5fa 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: .9rem;
}

.wf-caption {
  margin-top: 16px; padding: 16px 0; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px;
}
.wf-caption h4 { font-size: .98rem; margin: 0 0 4px; }
.wf-caption p { font-size: .88rem; }

.demo-sidebar h2 { margin-bottom: 12px; }
.demo-sidebar p.lede { font-size: 1.02rem; margin-bottom: 24px; }
.demo-fact-list { list-style: none; padding: 0; margin: 0 0 32px; }
.demo-fact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; color: var(--text-2); font-size: .95rem;
}
.demo-fact-list li svg { color: var(--brand); flex: none; margin-top: 3px; }

.calendly-embed {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-card); padding: 0;
  min-height: 620px; overflow: hidden;
}
.calendly-embed iframe { width: 100%; min-height: 620px; border: 0; }
.calendly-fallback {
  padding: 36px; text-align: center;
}
.calendly-fallback h3 { margin-bottom: 8px; }
.calendly-fallback p { margin-bottom: 24px; }
.calendly-fallback code {
  display: inline-block; padding: 4px 8px; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 4px; font-size: .82rem;
  color: var(--text); font-family: 'SF Mono', Consolas, Monaco, monospace;
}

/* ============================================================
   Hosting tier cards (3-up pricing)
   ============================================================ */
.tiers {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--t);
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier.is-popular {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--brand-soft) 200%);
  transform: translateY(-6px);
}
.tier.is-popular:hover { transform: translateY(-9px); }
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 999px; text-transform: uppercase;
  box-shadow: 0 6px 14px -4px rgba(37,99,235,.5);
}
.tier-name {
  font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px;
}
.tier.is-popular .tier-name { color: var(--brand); }
.tier-tagline { color: var(--text-2); font-size: .94rem; margin-bottom: 24px; min-height: 42px; }
.tier-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.tier-price { font-size: 2.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.tier-period { color: var(--text-mute); font-size: .95rem; }
.tier-billed { font-size: .8rem; color: var(--text-mute); margin-bottom: 24px; }
.tier-cta { margin-bottom: 22px; }
.tier-cta .btn { width: 100%; justify-content: center; }
.tier-features { list-style: none; padding: 0; margin: 0; flex: 1; }
.tier-features li {
  position: relative; padding: 8px 0 8px 26px;
  font-size: .94rem; color: var(--text-2); border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.tier-features li:first-child { border-top: 0; }
.tier-features li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px; border-radius: 50%;
  background-color: var(--brand-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.tier-features li.headline {
  padding-left: 0; font-weight: 600; color: var(--text); font-size: .88rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute);
  padding-top: 16px; padding-bottom: 6px;
}
.tier-features li.headline::before { display: none; }
.tier-features li.highlight { color: var(--text); font-weight: 600; }
.tier-features li.highlight::before {
  background-color: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
}

/* Tier-option cards (builder Step 4) — bigger than regular .opt */
.tier-options { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 720px) { .tier-options { grid-template-columns: 1fr !important; } }

.opt.tier-opt {
  padding: 22px 20px;
  text-align: left;
}
.opt.tier-opt .tier-opt-name {
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 8px;
}
.opt.tier-opt.is-popular-opt .tier-opt-name { color: var(--brand); }
.opt.tier-opt .tier-opt-price {
  font-size: 1.7rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px;
}
.opt.tier-opt .tier-opt-price span {
  font-size: .82rem; font-weight: 400; color: var(--text-mute);
  margin-left: 2px;
}
.opt.tier-opt .tier-opt-tagline {
  font-size: .85rem; color: var(--text-2); line-height: 1.45;
  margin-top: 6px;
}
.opt.tier-opt.is-popular-opt {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--brand-soft) 200%);
}
.opt.tier-opt .tier-opt-badge {
  position: absolute; top: -10px; right: 14px;
  background: var(--brand); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}

/* ============================================================
   Free add-ons strip
   ============================================================ */
.free-addons {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.free-addon {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all .15s var(--t);
}
.free-addon:hover { border-color: var(--brand); transform: translateY(-2px); }
.free-addon .free-icon {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.free-addon .free-icon svg { width: 20px; height: 20px; }
.free-addon .body { min-width: 0; }
.free-addon h4 { font-size: .98rem; margin: 0 0 4px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.free-addon h4 .free-tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  background: var(--accent-soft); color: var(--accent);
  padding: 2px 6px; border-radius: 4px; text-transform: uppercase;
  flex: none;
}
.free-addon p { font-size: .85rem; color: var(--text-mute); margin: 0; line-height: 1.45; }

/* Section eyebrow variant — for "included free" */
.eyebrow.is-accent { color: var(--accent); }

/* ============================================================
   Compact secondary services row
   ============================================================ */
.svc-secondary {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.svc-mini {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .15s var(--t);
}
.svc-mini:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.svc-mini .mini-icon {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-mini .mini-icon svg { width: 22px; height: 22px; }
.svc-mini h3 { font-size: 1.05rem; margin: 0 0 4px; }
.svc-mini p { font-size: .92rem; margin: 0 0 10px; }
.svc-mini .mini-price { font-size: .88rem; color: var(--brand); font-weight: 700; }

/* ============================================================
   Trust strip — industries we host across
   ============================================================ */
.trust-strip {
  padding: 56px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 26px;
}
.industry-row {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  justify-content: center; align-items: center;
}
.industry-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--text);
  letter-spacing: -0.005em;
  transition: all .15s var(--t);
}
.industry-pill:hover { border-color: var(--text); transform: translateY(-1px); }
.industry-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}
.industry-pill .dot.amber  { background: var(--accent); }
.industry-pill .dot.green  { background: var(--success); }
.industry-pill .dot.purple { background: #7c3aed; }

/* ============================================================
   Enterprise / Custom callout
   ============================================================ */
.enterprise-callout {
  position: relative;
  background: var(--bg-ink);
  color: #fff;
  border-radius: 20px;
  padding: 56px 56px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  overflow: hidden;
  margin-top: 48px;
}
.enterprise-callout::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 250px at 110% 0%, rgba(180, 83, 9, 0.30), transparent 60%),
    radial-gradient(400px 200px at -10% 100%, rgba(37, 99, 235, 0.30), transparent 60%);
  pointer-events: none;
}
.enterprise-callout > * { position: relative; z-index: 1; }
.enterprise-callout .ec-eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fbbf24; margin-bottom: 14px;
}
.enterprise-callout h2 { color: #fff; margin-bottom: 12px; }
.enterprise-callout p { color: rgba(255,255,255,0.75); font-size: 1.02rem; }
.enterprise-callout .ec-cta {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.enterprise-callout .ec-cta .btn { width: 100%; justify-content: center; }
.enterprise-callout .ec-cta .meta {
  font-size: .82rem; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.enterprise-callout .ec-cta .meta strong { color: rgba(255,255,255,0.85); font-weight: 600; }
@media (max-width: 880px) {
  .enterprise-callout { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ============================================================
   Infrastructure — scale stats + datacenter bento cards
   ============================================================ */
.scale-row-light {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.scale-row-light .s-item {
  padding: 28px 24px; text-align: left;
  border-right: 1px solid var(--line);
}
.scale-row-light .s-item:last-child { border-right: 0; }
.scale-row-light .s-v {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1;
}
.scale-row-light .s-v small {
  font-size: .82rem; color: var(--text-mute);
  font-weight: 500; margin-left: 3px;
}
.scale-row-light .s-l {
  font-size: .78rem; color: var(--text-mute); margin-top: 10px;
  letter-spacing: .04em; text-transform: uppercase;
}
@media (max-width: 880px) {
  .scale-row-light { grid-template-columns: 1fr 1fr; }
  .scale-row-light .s-item:nth-child(odd)  { border-right: 1px solid var(--line); }
  .scale-row-light .s-item:nth-child(even) { border-right: 0; }
  .scale-row-light .s-item:nth-child(1), .scale-row-light .s-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Datacenter strip — Sofia featured wide, secondaries as compact cards on one row */
.dc-strip {
  display: grid; gap: 16px;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1100px) {
  .dc-strip { grid-template-columns: repeat(3, 1fr); }
  .dc-strip .dc-primary { grid-column: span 3; }
}
@media (max-width: 640px) {
  .dc-strip { grid-template-columns: 1fr 1fr; }
  .dc-strip .dc-primary { grid-column: span 2; }
}

.dc-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all .15s var(--t);
  min-height: 156px;
}
.dc-card:hover { border-color: var(--text-2); transform: translateY(-2px); }

.dc-card .dc-city {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.015em; line-height: 1.1;
  display: flex; align-items: center; gap: 8px;
}
.dc-card .dc-city .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success); flex: none;
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.18);
}
.dc-card .dc-country {
  font-size: .82rem; color: var(--text-mute);
  letter-spacing: .02em;
}
.dc-card .dc-role-line {
  font-size: .78rem; color: var(--text-2); margin-top: auto; line-height: 1.4;
}
.dc-card .dc-role-line strong { color: var(--text); font-weight: 600; }

/* Featured primary card — Sofia */
.dc-card.dc-primary {
  background: var(--bg-ink); color: #fff;
  border-color: var(--bg-ink);
  padding: 28px;
  gap: 14px;
}
.dc-card.dc-primary:hover { border-color: var(--accent); }
.dc-card.dc-primary .dc-city { color: #fff; font-size: 1.6rem; }
.dc-card.dc-primary .dc-city .live-dot {
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.20);
}
.dc-card.dc-primary .dc-country { color: rgba(255,255,255,0.55); }
.dc-card.dc-primary .dc-summary {
  font-size: .92rem; color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin-top: 4px;
}
.dc-card.dc-primary .dc-meta-row {
  display: flex; gap: 28px; margin-top: auto;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.10);
}
.dc-card.dc-primary .dc-meta-row .m-label {
  font-size: .66rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: .12em;
}
.dc-card.dc-primary .dc-meta-row .m-value {
  font-size: 1rem; font-weight: 700; color: #fff;
  letter-spacing: -0.01em; margin-top: 3px;
}
.dc-card.dc-primary .primary-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .14em;
  padding: 4px 9px; border-radius: 999px; text-transform: uppercase;
}

/* Compliance ribbon — single horizontal row, no description text */
.compliance-ribbon {
  margin-top: 56px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: auto repeat(6, 1fr);
  align-items: center; gap: 24px;
}
@media (max-width: 980px) {
  .compliance-ribbon { grid-template-columns: 1fr 1fr 1fr; padding: 20px; gap: 18px; }
  .compliance-ribbon .ribbon-label { grid-column: span 3; }
}
.compliance-ribbon .ribbon-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mute);
}
.compliance-ribbon .ribbon-item {
  font-size: .88rem; font-weight: 600; color: var(--text);
  letter-spacing: -0.005em;
  text-align: center;
  position: relative;
}
.compliance-ribbon .ribbon-item small {
  display: block; font-size: .66rem; color: var(--text-mute);
  font-weight: 500; letter-spacing: .02em; margin-top: 2px;
}

/* Compliance badges row */
.compliance {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.compliance-item {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.compliance-item .seal {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--bg-ink); color: #fbbf24;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .68rem; letter-spacing: .04em;
  flex: none; text-align: center; line-height: 1;
}
.compliance-item h5 { font-size: .92rem; margin: 0 0 2px; color: var(--text); }
.compliance-item p  { font-size: .82rem; color: var(--text-mute); margin: 0; line-height: 1.45; }
.compliance-note {
  text-align: center; margin-top: 18px;
  font-size: .8rem; color: var(--text-mute); font-style: italic;
}

/* ============================================================
   Logo-feel marquee (kept simple, no actual logos) for premium feel
   ============================================================ */
.scale-band {
  background: var(--bg-ink); color: #fff;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scale-band .scale-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
}
.scale-band .s-item { text-align: center; }
.scale-band .s-v {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 800;
  color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.scale-band .s-v small { font-size: .9rem; color: rgba(255,255,255,0.55); font-weight: 400; margin-left: 2px; }
.scale-band .s-l { font-size: .78rem; color: rgba(255,255,255,0.55); margin-top: 8px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Responsive nav ---------- */
@media (max-width: 880px) {
  .nav-links a:not(.btn):not(.lang-toggle) { display: none; }
  section { padding: 72px 0; }
  .cta-banner { padding: 40px 24px; }
  .tier.is-popular { transform: none; }
  .tier.is-popular:hover { transform: translateY(-3px); }
}
