:root {
  --ink: #111827;
  --muted: #64748b;
  --line: #dbe3ef;
  --soft: #f6f8fb;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --mint: #0f9f6e;
  --coral: #ef4444;
  --shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: #fff; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { width: 18px; height: 18px; fill: currentColor; display: block; }
img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 16px; border: 1px solid var(--brand);
  border-radius: 8px; background: var(--brand); color: #fff; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn.outline, .btn.ghost { background: #fff; color: var(--brand); border-color: var(--line); }
.btn.outline:hover, .btn.ghost:hover { border-color: var(--brand); background: #eff6ff; }
.btn.small { min-height: 36px; padding: 0 12px; font-size: 14px; }
.button-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.icon-btn { width: 38px; height: 38px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer; }
.icon-btn:hover { border-color: var(--brand); color: var(--brand); }

.brand-mark { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; min-width: 0; }
.brand-logo { height: 34px; width: auto; display: block; flex: 0 0 auto; }
.brand-mark span { overflow-wrap: anywhere; }
.eyebrow { margin: 0 0 6px; color: var(--brand); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.muted { color: var(--muted); }

.toast { position: sticky; top: 14px; z-index: 20; border-radius: 8px; padding: 12px 14px; margin: 0 22px 14px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); transition: opacity .25s ease, transform .25s ease; }
.toast.success { color: #065f46; background: #ecfdf5; border-color: #bbf7d0; }
.toast.danger { color: #991b1b; background: #fef2f2; border-color: #fecaca; }
.toast.is-hiding { opacity: 0; transform: translateY(-6px); pointer-events: none; }

.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 70;
}
.cookie-consent[hidden],
.engagement-modal[hidden] {
  display: none;
}
.cookie-consent__card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
}
.cookie-consent__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}
.cookie-consent__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.engagement-modal {
  position: fixed;
  inset: 0;
  z-index: 68;
  display: grid;
  place-items: center;
  padding: 22px;
}
.engagement-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .58);
}
.engagement-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(15, 23, 42, .22);
}
.engagement-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 22px;
  line-height: 1;
}
.engagement-modal__dialog h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}
.engagement-modal__lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}
.engagement-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr);
  gap: 18px;
}
.engagement-modal__form,
.engagement-modal__contact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}
.engagement-modal__form {
  display: grid;
  gap: 14px;
}
.engagement-modal__contact {
  display: grid;
  gap: 12px;
  align-content: start;
}
.engagement-modal__contact strong {
  display: block;
  font-size: 18px;
}
.engagement-modal__contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-share-panel {
  margin-bottom: 18px;
}
.social-share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-share-btn {
  gap: 8px;
}
.social-share-btn span[data-icon] {
  display: inline-grid;
  place-items: center;
}
.social-share-btn.is-copied {
  border-color: #86efac;
  background: #ecfdf5;
  color: #166534;
}
.social-content > *:first-child {
  margin-top: 0;
}
.social-content > *:last-child {
  margin-bottom: 0;
}
.social-embed {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
}
.social-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}
.social-embed--video iframe {
  aspect-ratio: 16 / 9;
  min-height: 320px;
}
.social-embed--facebook iframe,
.social-embed--linkedin iframe {
  min-height: 540px;
}
.social-embed--tweet,
.social-embed--instagram,
.social-embed--tiktok {
  padding: 16px;
}
.social-embed blockquote {
  margin: 0 auto !important;
}

.public-shell { min-height: 100vh; min-width: 0; overflow-x: clip; }
.public-header { max-width: 1180px; margin: 0 auto; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; position: relative; }
.public-header--sticky { position: sticky; top: 0; z-index: 25; background: rgba(255, 255, 255, .98); border-bottom: 1px solid rgba(219, 227, 239, .9); }
.public-nav-toggle { display: none; }
.public-nav { display: flex; align-items: center; gap: 18px; color: #334155; font-weight: 700; flex-wrap: wrap; min-width: 0; }
.public-nav a:not(.btn) { color: #334155; }
.public-nav a:not(.btn):hover { color: var(--brand); }

.hero { max-width: 1180px; margin: 0 auto; padding: 48px 22px 28px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 32px; align-items: center; }
.hero-upgraded { min-height: calc(100vh - 82px); }
.hero h1 { font-size: clamp(42px, 8vw, 74px); line-height: .94; margin: 0 0 14px; max-width: 760px; }
.hero h2 { font-size: clamp(22px, 3vw, 34px); margin: 0 0 18px; color: #334155; }
.hero p { max-width: 690px; color: #475569; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-proof-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; max-width: 680px; }
.hero-proof-list li { position: relative; padding-left: 18px; color: #334155; font-weight: 600; line-height: 1.6; }
.hero-proof-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--mint)); }
.hero-stat-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.hero-stat-strip article,
.metric-band article,
.value-card,
.module-grid article,
.faq-card,
.screen-card,
.panel,
.hero-console__table div,
.hero-kpi,
.hero-flow-card,
.hero-chart-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 8px 24px rgba(15, 23, 42, .04); }
.hero-stat-strip article { padding: 14px; }
.hero-stat-strip strong { display: block; font-size: 26px; margin-bottom: 4px; }
.hero-stat-strip span { display: block; color: var(--muted); font-size: 14px; line-height: 1.5; }
.hero-copy, .hero-showcase, .section, .panel, .blog-layout > *, .contact-grid > *, .split > * { min-width: 0; }
.hero-console { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: #fff; box-shadow: var(--shadow); }
.hero-console__bar { display: flex; gap: 7px; margin-bottom: 18px; }
.hero-console__bar span { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.hero-console__top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.hero-kpi { padding: 12px; }
.hero-kpi small, .hero-console__table span, .hero-flow-card p, .hero-chart-card p { display: block; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hero-kpi strong { display: block; font-size: 24px; margin: 8px 0 6px; }
.hero-kpi em { color: #475569; font-size: 13px; font-style: normal; }
.hero-console__body { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.hero-flow-card, .hero-chart-card { padding: 14px; background: #f8fafc; }
.hero-flow { display: grid; grid-template-columns: 1fr 24px 1fr; gap: 8px; align-items: center; margin-top: 14px; }
.hero-flow--secondary { margin-top: 10px; }
.hero-flow span { min-height: 42px; display: grid; place-items: center; border-radius: 8px; background: #fff; border: 1px solid var(--line); font-weight: 700; color: #334155; }
.hero-flow i { height: 2px; background: linear-gradient(90deg, var(--brand), var(--mint)); border-radius: 999px; }
.hero-chart { height: 188px; margin-top: 14px; display: flex; align-items: end; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.hero-chart span { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--brand), var(--mint)); }
.hero-chart-legend { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; color: var(--muted); font-size: 12px; }
.hero-console__table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-console__table div { padding: 12px; }
.hero-console__table strong { display: block; margin-top: 8px; font-size: 22px; }

.section { max-width: 1180px; margin: 0 auto; padding: 64px 22px; }
.section-compact { padding-top: 34px; padding-bottom: 34px; }
.section-lazy { content-visibility: auto; contain-intrinsic-size: 720px; }
.section-band { max-width: none; background: #f8fafc; border-top: 1px solid #eef2f7; border-bottom: 1px solid #eef2f7; }
.section-brand-row { padding-top: 16px; padding-bottom: 16px; }
.brand-row, .metric-band { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.brand-row { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-row span { display: inline-flex; min-height: 40px; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #334155; font-weight: 700; }
.section-metrics { padding-top: 28px; padding-bottom: 28px; }
.metric-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric-band article { padding: 18px; }
.metric-band span { color: var(--brand); }
.metric-band strong { display: block; margin: 14px 0 8px; font-size: 18px; }
.metric-band p, .section-copy { color: var(--muted); line-height: 1.65; }
.section-heading { max-width: 720px; margin-bottom: 26px; }
.section h2, .cta h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.06; margin: 0; }
.value-grid, .module-grid, .faq-grid, .screens-grid, .blog-grid { display: grid; gap: 16px; }
.value-grid, .module-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
.screens-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
.value-card, .module-grid article, .faq-card, .screen-card, .blog-card, .panel { padding: 20px; }
.value-card strong, .module-grid h3, .faq-card strong, .screen-card strong, .blog-card h2, .blog-card h3 { display: block; margin: 0 0 10px; }
.value-card p, .module-grid p, .faq-card p, .screen-card span, .blog-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.module-grid article span { color: var(--brand); }
.module-grid article h3 { margin: 14px 0 8px; }

.screen-screen { height: 176px; border-radius: 8px; border: 1px solid var(--line); background: #f8fafc; margin-bottom: 16px; padding: 14px; display: grid; gap: 10px; }
.screen-dashboard { grid-template-columns: repeat(2, 1fr); align-content: start; }
.screen-dashboard span:nth-child(1), .screen-dashboard span:nth-child(2) { min-height: 56px; border-radius: 8px; background: linear-gradient(135deg, #dbeafe, #eff6ff); border: 1px solid #cfe0ff; }
.screen-dashboard span:nth-child(3) { min-height: 82px; border-radius: 8px; background: repeating-linear-gradient(90deg, #dbeafe 0 32px, #dcfce7 32px 64px, #ffedd5 64px 96px); border: 1px solid #d6e2f0; grid-column: 1 / -1; }
.screen-dashboard span:nth-child(4) { min-height: 28px; border-radius: 8px; background: #fff; border: 1px solid var(--line); grid-column: 1 / -1; }
.screen-catalog span:nth-child(1) { min-height: 34px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.screen-catalog span:nth-child(2) { min-height: 24px; border-radius: 8px; background: linear-gradient(90deg, #eff6ff, #e0f2fe, #ecfdf5); border: 1px solid #d8e5f2; }
.screen-catalog span:nth-child(3) { min-height: 82px; border-radius: 8px; background: repeating-linear-gradient(0deg, #f8fafc 0 18px, #e2e8f0 18px 20px); border: 1px solid var(--line); }
.screen-ops span:nth-child(1), .screen-ops span:nth-child(2), .screen-ops span:nth-child(3) { min-height: 34px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.screen-ops span:nth-child(4) { min-height: 48px; border-radius: 8px; background: linear-gradient(135deg, #dbeafe 0 35%, #f8fafc 35% 65%, #dcfce7 65%); border: 1px solid #d6e2f0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.benefit-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.benefit-list li { border: 1px solid var(--line); padding: 14px 16px; background: #fff; border-radius: 8px; }
.benefit-list strong { display: block; margin-bottom: 6px; }
.benefit-list span { color: var(--muted); line-height: 1.6; }

.address-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg, #ffffff 0, #fbfdff 100%); box-shadow: 0 10px 28px rgba(15, 23, 42, .05); }
.address-card strong { display: block; margin-bottom: 10px; font-size: 22px; }
.address-card p { margin: 0; color: var(--muted); line-height: 1.8; }
.address-card__links { display: grid; gap: 10px; align-content: start; }
.address-card__links a { display: inline-flex; min-height: 42px; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--brand); font-weight: 700; }

.cta { margin: 20px auto 70px; max-width: 1136px; border-radius: 8px; padding: 38px 28px; display: flex; justify-content: space-between; gap: 18px; align-items: center; background: #111827; color: #fff; }
.cta-note { margin-top: 12px; max-width: 640px; color: rgba(255,255,255,.78); }

.public-footer { border-top: 1px solid var(--line); padding: 24px 22px; display: flex; justify-content: space-between; max-width: 1180px; margin: 0 auto; color: var(--muted); }
.public-footer--sitewide {
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  background: #0f172a;
  color: #cbd5e1;
  border-top: 0;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 22px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  align-items: start;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}
.footer-column--brand { padding-right: 8px; }
.footer-column--newsletter { gap: 12px; }
.public-footer--sitewide strong { display: block; margin-bottom: 4px; color: #fff; font-size: 15px; letter-spacing: .01em; }
.public-footer--sitewide p { margin: 0; line-height: 1.75; }
.public-footer--sitewide a { display: block; color: #d4dced; margin: 0; overflow-wrap: anywhere; }
.public-footer--sitewide a:hover { color: #fff; }
.footer-mini-map-card {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
}
.footer-mini-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #e2e8f0;
}
.footer-mini-map-head a { color: #fdba74; }
.footer-mini-map {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 10;
  background: #0b1222;
}
.footer-mini-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer-newsletter {
  display: grid;
  gap: 10px;
}
.footer-newsletter .btn {
  width: 100%;
  min-height: 36px;
}
.footer-newsletter input {
  min-height: 42px;
  background: rgba(15, 23, 42, .35);
  border-color: rgba(148, 163, 184, .24);
  color: #f8fafc;
}
.footer-newsletter input::placeholder {
  color: #94a3b8;
}
.public-form-note {
  margin: 10px 0 0;
  color: #94a3b8;
  line-height: 1.7;
  font-size: 13px;
}
.public-form-note a {
  color: #fdba74;
  font-weight: 700;
}
.footer-credit {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 18px 22px 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-credit__copy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.footer-credit p { color: #94a3b8; }
.footer-credit a { display: inline; margin-bottom: 0; color: #cbd5e1; }
.footer-runtime {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 12px;
  text-align: right;
}
.footer-runtime strong {
  display: inline;
  margin: 0 4px 0 0;
  font-size: inherit;
  color: #e2e8f0;
}
.footer-runtime time {
  color: #f8fafc;
  font-variant-numeric: tabular-nums;
}
.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 50px;
  padding: 0 16px 0 8px;
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.footer-whatsapp:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(37, 211, 102, .42);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 211, 102, .2);
}
.footer-whatsapp__icon,
.floating-whatsapp__icon {
  display: grid;
  place-items: center;
  color: #fff;
}
.footer-whatsapp__icon img,
.floating-whatsapp__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-whatsapp__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}
.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  width: 64px;
  height: 64px;
  min-height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 20px 42px rgba(37, 211, 102, .32);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.floating-whatsapp:hover {
  color: #fff;
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 26px 48px rgba(37, 211, 102, .38);
}
.floating-whatsapp__icon {
  width: 30px;
  height: 30px;
}

.contact-page { padding-top: 34px; }
.contact-title { font-size: clamp(34px, 5vw, 56px); line-height: 1.02; margin: 0; }
.contact-grid, .two-column { display: grid; gap: 20px; }
.contact-grid { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: start; }
.two-column { grid-template-columns: 1.2fr .8fr; }
.contact-info-stack { display: grid; gap: 20px; }
.contact-facts { display: grid; gap: 14px; }
.contact-facts article { border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: #f8fafc; }
.contact-facts strong { display: block; margin-bottom: 6px; font-size: 13px; text-transform: uppercase; color: var(--muted); }
.contact-facts span { font-size: 16px; font-weight: 700; color: #0f172a; word-break: break-word; }
.contact-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 16 / 11;
  min-height: 280px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map-note { margin: 12px 0 0; line-height: 1.6; }

.blog-filter-row { margin-bottom: 22px; }
.blog-filter-row--links { margin-top: -8px; }
.blog-card { display: grid; gap: 12px; height: 100%; }
.blog-card__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); background: #eef2f7; }
.blog-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; color: var(--muted); font-size: 14px; }
.blog-card__meta a { color: var(--brand); font-weight: 800; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.blog-sidebar { display: grid; gap: 18px; position: sticky; top: 94px; }
.blog-widget { padding: 18px; }
.widget-link-list, .widget-post-list { display: grid; gap: 12px; }
.widget-link-list a { color: #334155; font-weight: 700; }
.widget-post-list article { border-top: 1px solid var(--line); padding-top: 12px; }
.widget-post-list article:first-child { border-top: 0; padding-top: 0; }
.widget-post-list strong { display: block; margin-bottom: 4px; line-height: 1.45; }
.widget-post-list span { color: var(--muted); font-size: 14px; }
.blog-article h1, .public-page-article h1 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 58px); line-height: 1.04; }
.blog-article__meta { margin: 0 0 20px; color: var(--muted); font-weight: 700; }
.blog-article__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); margin-bottom: 18px; background: #eef2f7; }
.blog-article__excerpt, .public-page-article__excerpt { margin: 0 0 20px; color: #334155; font-size: 18px; line-height: 1.75; }
.blog-article__content, .public-page-article__content { padding: 28px; line-height: 1.8; }
.blog-article__content h2, .blog-article__content h3, .public-page-article__content h2, .public-page-article__content h3 { margin-top: 28px; margin-bottom: 12px; }
.blog-article__content p, .public-page-article__content p { margin: 0 0 16px; color: #334155; }
.blog-article__content ul, .blog-article__content ol, .public-page-article__content ul, .public-page-article__content ol { padding-left: 20px; margin: 0 0 18px; color: #334155; }
.blog-article__content a, .public-page-article__content a { color: var(--brand); }
.sitemap-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: start;
}
.sitemap-hero__copy {
  margin-bottom: 0;
}
.sitemap-stat-strip { margin-top: 0; }
.sitemap-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sitemap-summary-card {
  display: grid;
  gap: 12px;
  align-content: start;
}
.sitemap-summary-card h2 {
  margin: 0;
  font-size: 22px;
}
.sitemap-summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.sitemap-card {
  display: grid;
  gap: 12px;
}
.sitemap-links {
  display: grid;
  gap: 10px;
}
.sitemap-link {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}
.sitemap-link:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
}
.sitemap-link__title {
  font-weight: 800;
  color: #0f172a;
}
.sitemap-link__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.sitemap-link__meta em {
  font-style: normal;
}
.sitemap-xml-panel {
  margin-top: 18px;
}
.sitemap-xml-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.sitemap-xml-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}
.sitemap-xml-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}
.sitemap-xml-meta span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.comment-list { display: grid; gap: 14px; }
.comment-card { border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: #f8fafc; }
.comment-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.comment-card__meta span { color: var(--muted); font-size: 14px; }
.comment-card p { margin: 0; color: #334155; line-height: 1.75; }
.comment-card a { display: inline-flex; margin-top: 10px; color: var(--brand); font-weight: 700; }

.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.filters input { max-width: 340px; }
.filters select { max-width: 220px; }
.panel { min-width: 0; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.panel-head h2 { margin: 0; font-size: 22px; }
.panel-head a { color: var(--brand); font-weight: 800; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-span { grid-column: 1 / -1; }
label span { display: block; margin-bottom: 6px; font-weight: 800; color: #334155; font-size: 14px; }
input, select, textarea {
  width: 100%; min-height: 42px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(37, 99, 235, .12); }
.badge { display: inline-flex; min-height: 26px; align-items: center; border-radius: 8px; padding: 0 9px; background: #eef2ff; color: #3730a3; font-weight: 800; font-size: 12px; }
.pagination { display: flex; justify-content: flex-end; align-items: center; gap: 12px; margin-top: 16px; }
.pagination a { border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font-weight: 800; color: var(--brand); }
.pagination .disabled { opacity: .45; pointer-events: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-showcase, .hero-console { max-width: 760px; }
  .hero-console__top, .hero-console__table, .metric-band, .screens-grid, .value-grid, .module-grid, .faq-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .address-card, .contact-grid, .two-column, .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .sitemap-hero, .sitemap-summary-grid, .sitemap-xml-meta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .footer-credit { flex-direction: column; }
  .footer-runtime { justify-content: flex-start; text-align: left; }
}

@media (max-width: 820px) {
  .public-header { align-items: center; flex-wrap: wrap; }
  .public-nav-toggle { display: inline-grid; margin-left: auto; }
  .public-nav { display: none; width: 100%; gap: 8px; font-size: 15px; }
  .public-header.is-open .public-nav { display: grid; }
  .public-nav a { min-height: 42px; display: flex; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
  .public-nav .btn { width: 100%; }
  .hero-stat-strip, .hero-console__top, .hero-console__body, .hero-console__table, .metric-band, .screens-grid, .value-grid, .module-grid, .faq-grid, .split, .form-grid, .blog-grid, .sitemap-grid { grid-template-columns: 1fr; }
  .panel-head { align-items: flex-start; flex-direction: column; }
  .filters input, .filters select, .filters button { max-width: none; width: 100%; }
  .cta { align-items: flex-start; flex-direction: column; }
  .cookie-consent__card,
  .engagement-modal__grid { grid-template-columns: 1fr; }
  .cookie-consent__actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .hero { padding-top: 30px; }
  .hero-chart { height: 150px; gap: 10px; }
  .section { padding: 46px 18px; }
  .public-footer { flex-direction: column; gap: 6px; }
  .public-footer--sitewide { padding: 0; }
  .footer-grid { grid-template-columns: 1fr; padding: 28px 18px 24px; gap: 22px; }
  .footer-credit { padding: 16px 18px 28px; }
  .footer-credit__copy { display: grid; gap: 6px; }
  .footer-runtime { gap: 8px; }
  .floating-whatsapp { left: 12px; right: auto; bottom: 12px; width: 58px; height: 58px; min-height: 58px; }
  .blog-article__content, .public-page-article__content { padding: 18px; }
  .panel { padding: 16px; }
  .button-row { width: 100%; }
  .button-row .btn { flex: 1; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; }
  .cookie-consent__card,
  .engagement-modal__dialog { padding: 16px; }
  .engagement-modal { padding: 16px; }
  .social-share-list { display: grid; grid-template-columns: 1fr 1fr; }
  .social-embed--video iframe,
  .social-embed--facebook iframe,
  .social-embed--linkedin iframe { min-height: 240px; }
}
