/* ===========================================================================
   eID Romania — marketing site
   Ported from the Claude Design project "eID Site.html"
   (design tokens from styles.css + site styles from site.css, converted to
   reusable classes). Romanian-only, server-rendered Blade.
   =========================================================================== */

/* ===== design tokens ===== */
:root {
  --font-ui: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --accent: #1d4ed8;
  --accent-600: color-mix(in oklab, var(--accent) 88%, black);
  --accent-700: color-mix(in oklab, var(--accent) 74%, black);
  --accent-tint: color-mix(in oklab, var(--accent) 10%, white);
  --accent-tint-2: color-mix(in oklab, var(--accent) 16%, white);
  --accent-ring: color-mix(in oklab, var(--accent) 28%, white);

  --ro-blue: #0b3aa1;
  --ro-yellow: #f4c20d;
  --ro-red: #cf2b2b;

  --canvas: #eef1f6;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --surface-3: #eff3f9;
  --border: #e2e7f0;
  --border-strong: #d2d9e6;
  --ink: #0f1729;
  --ink-2: #3a445a;
  --ink-3: #6b7689;
  --ink-4: #9aa4b6;

  /* legacy aliases (used by inline styles inside ported legal/article content) */
  --fg: var(--ink);
  --fg-soft: var(--ink-2);
  --fg-mute: var(--ink-4);

  --ok: #15935a;
  --ok-tint: #e6f6ee;
  --warn: #b7791f;
  --warn-tint: #fbf2df;
  --err: #cf2b2b;
  --err-tint: #fbe9e9;
  --info: #1d4ed8;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(16,23,41,.06), 0 1px 3px rgba(16,23,41,.05);
  --shadow-md: 0 4px 14px rgba(16,23,41,.08), 0 2px 6px rgba(16,23,41,.05);
  --shadow-lg: 0 18px 50px rgba(16,23,41,.16), 0 8px 18px rgba(16,23,41,.10);
  --shadow-pop: 0 24px 64px rgba(16,23,41,.22);
}

/* ===== base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--surface); }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
::selection { background: var(--accent-ring); }
button { font-family: inherit; }
.mono { font-family: var(--font-mono); font-feature-settings: 'tnum' 1; letter-spacing: -.01em; }

@keyframes fade-up { from { transform: translateY(9px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: fade-up .6s cubic-bezier(.2,.7,.2,1) both; }
}

/* ===== layout ===== */
.site-container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ===== nav ===== */
.site-nav { position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border); }
.site-nav-inner { height: 66px; display: flex; align-items: center; gap: 28px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav-brand .brand-name { font-size: 16.5px; font-weight: 760; letter-spacing: -.015em; }
.nav-brand .brand-name small { font-weight: 500; color: var(--ink-3); font-size: inherit; }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: 14px; }
.site-nav a.nav-link { text-decoration: none; font-size: 14.5px; font-weight: 600; color: var(--ink-3); padding: 8px 2px; letter-spacing: -.01em; transition: color .15s; }
.site-nav a.nav-link:hover { color: var(--ink); }
.site-nav a.nav-link.active { color: var(--accent-700); }
.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; }

/* ===== buttons ===== */
.site-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 50px; padding: 0 24px;
  border-radius: 13px; font-size: 15.5px; font-weight: 680; letter-spacing: -.01em; cursor: pointer; border: none;
  font-family: inherit; text-decoration: none; transition: filter .15s, transform .07s; }
.site-btn:active { transform: translateY(1px); }
.site-btn.primary { background: var(--accent); color: #fff; box-shadow: 0 2px 8px color-mix(in oklab, var(--accent) 30%, transparent); }
.site-btn.primary:hover { filter: brightness(1.06); }
.site-btn.dark { background: var(--ink); color: #fff; }
.site-btn.outline { background: var(--surface); color: var(--ink); border: 1.5px solid var(--border-strong); }
.site-btn.soft { background: var(--accent-tint); color: var(--accent-700); }
.site-btn.sm { height: 42px; padding: 0 18px; font-size: 14px; border-radius: 11px; }
.site-btn.full { width: 100%; }

/* ===== store badges ===== */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badges.center { justify-content: center; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; border-radius: 13px;
  padding: 9px 18px 9px 14px; text-decoration: none; transition: filter .15s, transform .07s; border: none; cursor: pointer; font-family: inherit; }
.store-badge:hover { filter: brightness(1.18); }
.store-badge:active { transform: translateY(1px); }
.store-badge .sb-text { text-align: left; display: flex; flex-direction: column; gap: 2px; }
.store-badge .sb-top { font-size: 10.5px; opacity: .75; font-weight: 550; letter-spacing: .02em; line-height: 1; white-space: nowrap; }
.store-badge .sb-bottom { font-size: 15px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; white-space: nowrap; }

/* ===== sections & type ===== */
.hero-bg { background:
  radial-gradient(900px 480px at 80% -10%, var(--accent-tint) 0%, transparent 60%),
  radial-gradient(700px 420px at 8% 8%, color-mix(in oklab, var(--accent) 6%, white) 0%, transparent 55%),
  var(--surface); }
.site-section { padding: 88px 0; }
.site-section.tight { padding: 64px 0; }
.site-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); }
h1.site-h1 { font-size: clamp(38px, 5.4vw, 58px); line-height: 1.04; letter-spacing: -.035em; font-weight: 800; margin: 18px 0 0; color: var(--ink); text-wrap: balance; }
h2.site-h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; letter-spacing: -.03em; font-weight: 780; margin: 14px 0 0; color: var(--ink); text-wrap: balance; }
h3.site-h3 { font-size: 19px; letter-spacing: -.02em; font-weight: 720; margin: 0; color: var(--ink); }
.site-lede { font-size: 18.5px; line-height: 1.6; color: var(--ink-2); max-width: 620px; text-wrap: pretty; }

.section-head { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.section-head.center { align-items: center; text-align: center; }
.section-head .site-lede { margin: 16px 0 0; }

/* ===== cards & grids ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.site-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-sm); }
.site-card.pad { padding: 26px; }
a.card-link { text-decoration: none; color: inherit; display: block; transition: transform .18s, box-shadow .18s, border-color .18s; }
a.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

/* hero pill */
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-tint); color: var(--accent-700);
  border-radius: 99px; padding: 8px 16px; font-size: 13.5px; font-weight: 650; }

/* hero block */
.hero-inner { padding: 84px 28px 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-fine { margin-top: 14px; font-size: 13.5px; color: var(--ink-4); }
.hero-devices { margin-top: 60px; display: flex; align-items: flex-end; justify-content: center; width: 100%; position: relative; }
.hero-devices .dev-tablet { transform: translateX(38px) rotate(-2deg); z-index: 1; margin-bottom: 8px; }
.hero-devices .dev-laptop { z-index: 2; }
.hero-devices .dev-phone { transform: translateX(-38px) rotate(2deg); z-index: 3; margin-bottom: -6px; }
.hairline { height: 1px; background: var(--border); }

/* product trio cards */
.prod-card-head { display: flex; align-items: center; justify-content: space-between; }
.prod-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-tint); color: var(--accent-700); display: grid; place-items: center; }
.prod-tag { font-size: 12px; font-weight: 700; color: var(--ink-4); letter-spacing: .05em; text-transform: uppercase; }
.prod-desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 10px 0 0; }
.card-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-700); font-weight: 650; font-size: 14px; margin-top: 16px; white-space: nowrap; }

/* feature cards */
.feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-700); display: grid; place-items: center; }
.feature-desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin: 8px 0 0; }

/* ===== security / CTA band ===== */
.security-band { background: linear-gradient(160deg, #131a2b, #0e1320); color: #e7ecf6; border-radius: 28px; overflow: hidden; position: relative; }
.security-band.pad { padding: 56px 52px; }
.security-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8fb0f5; }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 44px; }
.sec-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); color: #9fc0ff; display: grid; place-items: center; }
.sec-title { font-size: 16.5px; font-weight: 720; color: #fff; margin-top: 14px; letter-spacing: -.01em; }
.sec-desc { font-size: 13.5px; color: rgba(231,236,246,.68); line-height: 1.6; margin: 7px 0 0; }

.cta-band { padding: 64px 48px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-band h2 { color: #fff; margin-top: 20px; }
.cta-band p { font-size: 17px; color: rgba(231,236,246,.75); margin: 14px 0 0; max-width: 520px; line-height: 1.6; }
.cta-band .store-badges { margin-top: 30px; }

/* ===== pricing teaser ===== */
.price-teaser { padding: 44px 48px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--accent-tint), var(--surface)); }
.price-teaser-left { flex: 1 1 320px; }
.price-teaser-left h2 { font-size: 30px; }
.price-teaser-left p { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; margin: 12px 0 0; max-width: 460px; }
.price-teaser-right { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.price-teaser-amount { font-size: 38px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.price-teaser-amount span { font-size: 16px; color: var(--ink-3); font-weight: 600; }
.price-teaser-save { font-size: 12.5px; font-weight: 650; color: var(--ok); margin-top: 2px; }

/* ===== pricing page ===== */
.billing-toggle { margin-top: 34px; display: inline-flex; align-items: center; background: var(--surface-3); border-radius: 13px; padding: 4px; }
.billing-toggle button { border: none; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 680; padding: 10px 20px; border-radius: 10px; letter-spacing: -.01em;
  background: transparent; color: var(--ink-4); transition: background .15s, color .15s, box-shadow .15s; }
.billing-toggle button.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.billing-toggle .bt-badge { background: var(--ok-tint); color: var(--ok); font-size: 11.5px; font-weight: 700; padding: 2px 8px; border-radius: 99px; }

.price-card { margin-top: 36px; width: 100%; max-width: 520px; text-align: left; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1.5px solid var(--accent-ring); border-radius: 20px; background: var(--surface); }
.price-card-head { padding: 28px 32px 24px; background: linear-gradient(120deg, var(--accent-tint), var(--surface)); }
.price-card-head .pc-row { display: flex; align-items: center; justify-content: space-between; }
.price-plan { font-size: 15px; font-weight: 750; color: var(--accent-700); letter-spacing: -.01em; }
.price-best { background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 99px; letter-spacing: .03em; white-space: nowrap; }
.price-amount-row { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.price-amount { font-size: 56px; font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.price-per { font-size: 18px; color: var(--ink-3); font-weight: 600; }
.price-note { font-size: 14px; font-weight: 650; margin-top: 8px; }
.price-note.save { color: var(--ok); }
.price-note.muted { color: var(--ink-4); }
.price-card-body { padding: 24px 32px 30px; }
.price-features { display: flex; flex-direction: column; gap: 13px; }
.price-sub { text-align: center; font-size: 12.5px; color: var(--ink-4); margin-top: 12px; }
.price-volume { margin-top: 26px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-3); }
.price-volume a { color: var(--accent-700); font-weight: 650; text-decoration: none; }

/* ===== pricing tiers (enterprise + consumer) ===== */
.pricing-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start; width: 100%; max-width: 940px; margin: 38px auto 0; text-align: left; }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.tier.featured { border: 1.5px solid var(--accent-ring); box-shadow: var(--shadow-lg); }
.tier-head { padding: 26px 30px 22px; }
.tier.featured .tier-head { background: linear-gradient(120deg, var(--accent-tint), var(--surface)); }
.tier-head .th-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tier-name { font-size: 15px; font-weight: 750; color: var(--accent-700); letter-spacing: -.01em; }
.tier.plain .tier-name { color: var(--ink-2); }
.tier-tag { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 99px; letter-spacing: .03em; white-space: nowrap; }
.tier-body { padding: 22px 30px 30px; }
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
details.faq { border: 1px solid var(--border); border-radius: 16px; background: var(--surface); padding: 0; overflow: hidden; }
details.faq summary { list-style: none; cursor: pointer; padding: 19px 22px; font-size: 16px; font-weight: 650; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; letter-spacing: -.01em; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .faq-chev { transition: transform .2s; color: var(--ink-4); flex: 0 0 auto; }
details.faq[open] summary .faq-chev { transform: rotate(180deg); }
details.faq .faq-body { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.65; color: var(--ink-2); max-width: 760px; }
details.faq .faq-body a { color: var(--accent-700); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }

/* ===== inputs / contact ===== */
.site-input { width: 100%; height: 50px; border-radius: 13px; border: 1.5px solid var(--border-strong); padding: 0 16px;
  font-size: 15px; font-family: var(--font-ui); outline: none; background: var(--surface); transition: border-color .15s; }
.site-input:focus { border-color: var(--accent); }
textarea.site-input { height: auto; min-height: 110px; padding: 14px 16px; resize: vertical; }
.contact-grid { display: flex; gap: 56px; flex-wrap: wrap; align-items: flex-start; }
.contact-left { flex: 1 1 340px; }
.contact-card { flex: 1 1 380px; padding: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-checks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.form-success { background: var(--ok-tint); color: var(--ok); border-radius: 13px; padding: 14px 16px; font-size: 14.5px; font-weight: 600; margin-bottom: 16px; }
.field-error { color: var(--err); font-size: 12.5px; margin-top: 4px; }

/* contact meta */
.contact-meta { display: flex; flex-direction: column; gap: 18px; }
.contact-meta-item { display: flex; gap: 14px; align-items: flex-start; }
.cm-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-700); display: grid; place-items: center; flex: 0 0 auto; }
.cm-lab { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-4); }
.cm-val { font-size: 15.5px; color: var(--ink); font-weight: 600; margin-top: 3px; }
.cm-val a { color: var(--accent-700); text-decoration: none; }
.callout-sdk { margin-top: 28px; padding: 22px; border-radius: 16px; background: var(--accent-tint); border: 1px solid var(--accent-ring); }
.callout-sdk strong { color: var(--ink); font-size: 15px; }
.callout-sdk p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin: 8px 0 0; }

/* checklist */
.check-li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.check-dot { width: 22px; height: 22px; border-radius: 99px; background: var(--ok-tint); color: var(--ok); display: grid; place-items: center; flex: 0 0 auto; margin-top: 1px; }
.checklist { display: flex; flex-direction: column; gap: 13px; margin-top: 24px; }

/* ===== product page ===== */
.product-split { display: flex; gap: 64px; align-items: center; flex-wrap: wrap; }
.product-split.flip { flex-direction: row-reverse; }
.product-split .ps-text { flex: 1 1 380px; min-width: 320px; }
.product-split .ps-media { flex: 1 1 380px; min-width: 320px; display: grid; place-items: center; }

.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare-table th { padding: 14px 20px; font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-4); border-bottom: 1px solid var(--border); }
.compare-table thead tr { background: var(--surface-2); }
.compare-table th:first-child { text-align: left; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-yes { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 99px; background: var(--ok-tint); color: var(--ok); }
.compare-no { color: var(--ink-4); font-size: 16px; }

/* ===== footer ===== */
.site-footer { border-top: 1px solid var(--border); background: var(--surface-2); }
.site-footer-top { padding: 56px 28px 40px; display: flex; gap: 60px; flex-wrap: wrap; }
.footer-brand { flex: 1 1 240px; min-width: 220px; }
.footer-brand .fb-row { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-name { font-size: 16px; font-weight: 760; letter-spacing: -.015em; color: var(--ink); }
.footer-brand .brand-name small { font-weight: 500; color: var(--ink-3); font-size: inherit; }
.footer-brand p { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; margin: 14px 0 0; max-width: 280px; }
.footer-col { flex: 0 1 170px; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-4); margin: 0 0 14px; }
.footer-col .fc-links { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--ink-3); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--ink); }
.site-footer-bottom { border-top: 1px solid var(--border); }
.site-footer-bottom .sfb-inner { padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer-bottom span { font-size: 13px; color: var(--ink-4); }
.site-footer-bottom .sfb-badges { display: inline-flex; align-items: center; gap: 7px; }

/* tricolor hairline */
.tricolor { height: 3px; background: linear-gradient(90deg, var(--ro-blue) 0 33.3%, var(--ro-yellow) 33.3% 66.6%, var(--ro-red) 66.6% 100%); }

/* device mockups shadow */
.mock-shadow { filter: drop-shadow(0 30px 50px rgba(16,23,41,.22)); }

/* ===== prose (legal / long-form) ===== */
.prose { max-width: 760px; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }
.prose h2 { font-size: 24px; font-weight: 760; color: var(--ink); letter-spacing: -.02em; margin: 42px 0 14px; }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin: 0 0 8px; }
.prose a { color: var(--accent-700); }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.callout { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; margin: 18px 0; font-size: 14.5px; line-height: 1.65; }
.callout-accent { background: var(--accent-tint); border-color: var(--accent-ring); }
.callout ul, .callout ol { margin: 10px 0 0; padding-left: 20px; }
.callout li { margin: 0 0 6px; }
.callout a { color: var(--accent-700); }

/* ===== enterprise: stat strip ===== */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.stat-item { background: var(--surface); padding: 24px 22px; }
.stat-num { font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.stat-num .stat-unit { font-size: 14px; font-weight: 600; color: var(--ink-3); }
.stat-lab { font-size: 13px; color: var(--ink-3); margin-top: 4px; line-height: 1.45; }

/* ===== enterprise: differentiation ("de ce") ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.why-card { display: flex; gap: 16px; align-items: flex-start; }
.why-card .feature-icon { flex: 0 0 auto; }
.why-card h3 { margin: 2px 0 0; }

/* ===== enterprise: SDK & API ===== */
.tech-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tech-pill { font-size: 12.5px; font-weight: 650; color: var(--ink-2); background: var(--surface-3); border: 1px solid var(--border); border-radius: 99px; padding: 6px 13px; }
.code-mock { background: #0e1320; border-radius: 16px; padding: 22px 24px; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.75; color: #cdd6e6; overflow-x: auto; box-shadow: var(--shadow-lg); width: 100%; }
.code-mock .ln { display: block; white-space: pre; }
.code-mock .c { color: #5a6785; }
.code-mock .k { color: #7aa2f7; }
.code-mock .s { color: #9ece6a; }
.code-mock .f { color: #e0af68; }
.code-mock .p { color: #bb9af7; }

/* ===== use-case chips ===== */
.usecase-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.usecase-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-2); background: var(--surface); border: 1px solid var(--border); border-radius: 99px; padding: 9px 16px; box-shadow: var(--shadow-sm); }
.usecase-chip .uc-ic { color: var(--accent-700); display: inline-flex; }

/* ===== secondary (consumer) strip ===== */
.consumer-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 26px 30px; border: 1px dashed var(--border-strong); border-radius: 18px; background: var(--surface-2); }
.consumer-strip .cs-text { flex: 1 1 320px; }
.consumer-strip .cs-text strong { color: var(--ink); font-size: 16px; font-weight: 700; }
.consumer-strip .cs-text p { margin: 6px 0 0; font-size: 14px; color: var(--ink-3); line-height: 1.55; }

@media (max-width: 760px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== brand mark ===== */
.brand-mark { position: relative; background: linear-gradient(160deg, var(--accent-600), var(--accent));
  display: grid; place-items: center; box-shadow: 0 2px 6px rgba(16,23,41,.18); flex: 0 0 auto; }
.bm-dots { position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); display: flex; gap: 1.5px; }
.bm-dots span { width: 3px; height: 3px; border-radius: 9px; }

/* ===== responsive ===== */
@media (max-width: 920px) {
  .feature-grid, .product-grid { grid-template-columns: 1fr; }
  .site-section { padding: 64px 0; }
  .hero-inner { padding-top: 56px; }
  .hero-devices { transform: scale(.82); margin-top: 36px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border); padding: 8px 28px 16px; margin-left: 0; }
  .nav-toggle { display: inline-flex; }
  .security-band.pad { padding: 40px 26px; }
  .cta-band { padding: 48px 26px; }
  .price-teaser { padding: 32px 26px; }
  .form-2col { grid-template-columns: 1fr; }
  .contact-grid { gap: 36px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 11px 12px; }
  .hero-devices .dev-tablet, .hero-devices .dev-phone { display: none; }
}
@media (max-width: 520px) {
  .site-container { padding: 0 18px; }
  .hero-devices { transform: scale(.62); }
}
