/* ==========================================================================
   Notificación Legal — Sistema de diseño (web comercial)
   Fase 1. Estático, sin build. Portable a cualquier hosting.
   Paleta: autoridad (navy/azul) + resultado (teal), neutrales legibles.
   ========================================================================== */

:root {
  /* Color */
  --nl-navy: #0a2540;
  --nl-navy-2: #0d2f52;
  --nl-blue: #1b5fc1;
  --nl-blue-600: #164ea6;
  --nl-teal: #0ca678;
  --nl-teal-600: #0b8f68;
  --nl-ink: #101828;
  --nl-slate: #475467;
  --nl-muted: #667085;
  --nl-line: #e4e7ec;
  --nl-bg: #ffffff;
  --nl-soft: #f5f8fc;
  --nl-soft-2: #eef3fa;
  --nl-warn: #b54708;

  /* Tipografía */
  --nl-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter,
    Helvetica, Arial, "Apple Color Emoji", sans-serif;

  /* Medidas */
  --nl-maxw: 1160px;
  --nl-radius: 12px;
  --nl-radius-sm: 8px;
  --nl-shadow: 0 1px 2px rgba(16, 24, 40, 0.06),
    0 12px 32px rgba(16, 24, 40, 0.08);
  --nl-shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--nl-font);
  color: var(--nl-ink);
  background: var(--nl-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--nl-navy); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--nl-slate); }
a { color: var(--nl-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { color: var(--nl-slate); }

.container {
  width: 100%;
  max-width: var(--nl-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nl-blue);
  margin-bottom: .75rem;
}

.lead { font-size: 1.15rem; color: var(--nl-slate); max-width: 62ch; }

.section { padding: 72px 0; }
.section--soft { background: var(--nl-soft); }
.section--navy { background: var(--nl-navy); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #c7d5e8; }

.section-head { max-width: 46rem; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* -------------------------------- Botones -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 22px;
  border-radius: var(--nl-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--nl-blue); color: #fff; box-shadow: var(--nl-shadow-sm); }
.btn--primary:hover { background: var(--nl-blue-600); color: #fff; }
.btn--accent { background: var(--nl-teal); color: #fff; }
.btn--accent:hover { background: var(--nl-teal-600); color: #fff; }
.btn--ghost { background: transparent; color: var(--nl-navy); border-color: var(--nl-line); }
.btn--ghost:hover { background: var(--nl-soft); color: var(--nl-navy); }
.btn--light { background: #fff; color: var(--nl-navy); }
.btn--light:hover { background: #eef3fa; color: var(--nl-navy); }
.btn--lg { padding: 15px 28px; font-size: 1.05rem; }

/* -------------------------------- Header --------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--nl-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; color: var(--nl-navy); letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--nl-navy), var(--nl-blue));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .95rem;
}
.brand__name { font-size: 1.06rem; }
.brand__name b { color: var(--nl-blue); }
.brand__logo { height: 46px; width: auto; display: block; }
@media (max-width: 640px) { .brand__logo { height: 38px; } }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--nl-slate); font-weight: 500; padding: 8px 12px; border-radius: 6px; font-size: .96rem; }
.nav__links a:hover { color: var(--nl-navy); background: var(--nl-soft); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--nl-navy); margin: 4px 0; border-radius: 2px; }

/* -------------------------------- Hero ----------------------------------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(27, 95, 193, 0.10), transparent 60%),
    linear-gradient(180deg, #fff, var(--nl-soft));
  padding: 80px 0 64px;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: .5rem; }
.hero .lead { margin-bottom: 1.75rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.25rem; }
.hero__note { font-size: .9rem; color: var(--nl-muted); }
.hero__card {
  background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius);
  box-shadow: var(--nl-shadow); padding: 22px;
}
.hero__card h3 { font-size: 1rem; color: var(--nl-navy); margin-bottom: 14px; }
.stagerow { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--nl-line); }
.stagerow:last-child { border-bottom: 0; }
.stagedot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.stagerow b { color: var(--nl-navy); }
.stagerow span { color: var(--nl-muted); font-size: .9rem; }

/* --------------------------- Grillas / cards ----------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius);
  padding: 24px; transition: box-shadow .15s ease, transform .12s ease, border-color .15s ease;
}
.card:hover { box-shadow: var(--nl-shadow); transform: translateY(-2px); border-color: #d6deea; }
.card h3 { margin-bottom: .4rem; }
.card p { margin-bottom: 0; font-size: .97rem; }
.card__icon {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 14px;
  background: var(--nl-soft-2); color: var(--nl-blue);
  display: grid; place-items: center; font-size: 1.25rem;
}
.card--link { display: block; }
.card--link:hover { text-decoration: none; }
.card--link .more { color: var(--nl-blue); font-weight: 600; font-size: .92rem; margin-top: 12px; display: inline-block; }

/* Lista con checks */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--nl-slate); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--nl-teal);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
}

/* Chips de industrias */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid var(--nl-line); background: #fff; color: var(--nl-navy); font-weight: 600; font-size: .92rem; padding: 8px 14px; border-radius: 999px; }

/* Bloque problema/solución */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { border-radius: var(--nl-radius); padding: 28px; }
.panel--problem { background: #fff; border: 1px solid var(--nl-line); }
.panel--solution { background: var(--nl-navy); color: #fff; }
.panel--solution h3 { color: #fff; }
.panel--solution .checks li { color: #d7e2f2; }

/* CTA final */
.cta {
  background: linear-gradient(135deg, var(--nl-navy), var(--nl-blue-600));
  border-radius: 18px; padding: 48px; text-align: center; color: #fff;
}
.cta h2 { color: #fff; }
.cta p { color: #cddaef; max-width: 54ch; margin: 0 auto 1.5rem; }
.cta__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Breadcrumb */
.crumbs { font-size: .88rem; color: var(--nl-muted); padding: 18px 0 0; }
.crumbs a { color: var(--nl-muted); }
.crumbs a:hover { color: var(--nl-blue); }

/* Page hero (interior) */
.page-hero { background: linear-gradient(180deg, var(--nl-soft), #fff); padding: 40px 0 8px; }
.page-hero h1 { margin-bottom: .4rem; }

/* -------------------------------- Footer --------------------------------- */
.site-footer { background: var(--nl-navy); color: #b9c7dc; padding: 56px 0 28px; }
.site-footer a { color: #cdd9ea; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer__brand .brand { color: #fff; }
.footer__brand p { color: #93a6c2; font-size: .95rem; margin-top: 12px; max-width: 34ch; }
.footer__logo { display: inline-block; background: #fff; padding: 10px 14px; border-radius: 10px; line-height: 0; }
.footer__logo:hover { text-decoration: none; }
.footer__logo img { height: 42px; width: auto; display: block; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: .95rem; color: #c3d1e4; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #8ba0bd; }
.footer__disclaimer { max-width: 70ch; }

/* -------------------------------- Formulario ----------------------------- */
.form-card {
  background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius);
  box-shadow: var(--nl-shadow); padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--nl-navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--nl-line); border-radius: var(--nl-radius-sm);
  font: inherit; font-size: .98rem; color: var(--nl-ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--nl-blue); box-shadow: 0 0 0 3px rgba(27,95,193,.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--check { display: flex; align-items: flex-start; gap: 10px; }
.field--check input { width: auto; margin-top: 4px; }
.field--check label { font-weight: 400; color: var(--nl-slate); font-size: .9rem; margin: 0; }
.form-note { font-size: .85rem; color: var(--nl-muted); margin-top: 8px; }
.form-status { display: none; padding: 14px 16px; border-radius: var(--nl-radius-sm); margin-bottom: 16px; font-size: .95rem; }
.form-status--ok { display: block; background: #e7f7f0; color: #0b6b4f; border: 1px solid #b7e6d3; }
.form-status--error { display: block; background: #fdecec; color: #b42318; border: 1px solid #f5c2c0; }
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Utilidades */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.badge-soft { display:inline-block; background: var(--nl-soft-2); color: var(--nl-blue); font-weight:600; font-size:.8rem; padding:4px 10px; border-radius:999px; }
.visually-hidden { position:absolute!important; width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0); white-space:nowrap; }
.skip-link { position:absolute; left:-999px; top:0; background:#fff; padding:10px 16px; border-radius:8px; z-index:100; }
.skip-link:focus { left:12px; top:12px; }

/* --------------------- Componentes: cómo funciona ------------------------ */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(5, 1fr); }
.step { background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius); padding: 22px; }
.step__n { width: 34px; height: 34px; border-radius: 50%; background: var(--nl-blue); color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 12px; }
.step h3 { font-size: 1rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; margin: 0; }

/* Mockups conceptuales (dashboard / aging) */
.mock { background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius); box-shadow: var(--nl-shadow); padding: 20px; }
.mock__head { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #e4e7ec; }
.mock__title { margin-left: auto; font-size: .74rem; color: var(--nl-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.bars { display: flex; align-items: flex-end; gap: 16px; height: 160px; }
.bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #2f7be0, #1b5fc1); position: relative; min-height: 6px; }
.bar.b1 { background: linear-gradient(180deg, #16b981, #0ca678); }
.bar.b4 { background: linear-gradient(180deg, #d98a3a, #b54708); }
.bar span { position: absolute; bottom: -24px; left: 0; right: 0; text-align: center; font-size: .72rem; color: var(--nl-muted); }
.mock__cap { margin-top: 34px; font-size: .8rem; color: var(--nl-muted); }
.mockrow { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--nl-soft-2); font-size: .92rem; }
.mockrow:last-child { border-bottom: 0; }
.mockrow .dotc { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.mockrow b { color: var(--nl-navy); }
.mockrow .pill { margin-left: auto; font-size: .74rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--nl-soft-2); color: var(--nl-blue); }

/* Stat tiles */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius); padding: 24px; text-align: center; }
.stat b { display: block; font-size: 1.5rem; color: var(--nl-navy); margin-bottom: 4px; }
.stat span { color: var(--nl-muted); font-size: .9rem; }

/* FAQ (sin JS, con <details>) */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--nl-line); border-radius: var(--nl-radius-sm); margin-bottom: 12px; background: #fff; }
.faq__item summary { cursor: pointer; padding: 16px 18px; font-weight: 600; color: var(--nl-navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.35rem; color: var(--nl-blue); font-weight: 400; line-height: 1; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item .faq__a { padding: 0 18px 16px; color: var(--nl-slate); font-size: .96rem; }

/* Trust row */
.trust { display: flex; align-items: center; justify-content: center; gap: 14px 28px; flex-wrap: wrap; color: var(--nl-muted); font-size: .92rem; }
.trust b { color: var(--nl-navy); }
.trust .sep { width: 1px; height: 18px; background: var(--nl-line); }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
}

/* ------------------------------ Responsive ------------------------------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .site-header.open .nav__links {
    display: flex; position: absolute; left: 0; right: 0; top: 68px; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--nl-line); padding: 12px; gap: 2px;
  }
  .site-header.open .nav__links a { padding: 12px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .grid--4, .grid--3, .grid--2, .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta { padding: 32px 22px; }
  .panel { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* deploy trigger */
/* redeploy */
/* redeploy2 */

/* ----------------------------- Iconos SVG ------------------------------ */
.i { display:block; width:22px; height:22px; background: currentColor;
     -webkit-mask: var(--i) center/contain no-repeat; mask: var(--i) center/contain no-repeat; }
.i-grid { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E"); }
.i-sliders { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='21' x2='4' y2='14'/%3E%3Cline x1='4' y1='10' x2='4' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12' y2='3'/%3E%3Cline x1='20' y1='21' x2='20' y2='16'/%3E%3Cline x1='20' y1='12' x2='20' y2='3'/%3E%3Cline x1='1' y1='14' x2='7' y2='14'/%3E%3Cline x1='9' y1='8' x2='15' y2='8'/%3E%3Cline x1='17' y1='16' x2='23' y2='16'/%3E%3C/svg%3E"); }
.i-mail { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); }
.i-monitor { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E"); }
.i-phone { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.i-chart { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='20' x2='12' y2='10'/%3E%3Cline x1='18' y1='20' x2='18' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='16'/%3E%3C/svg%3E"); }
.i-target { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E"); }
.i-repeat { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='17 1 21 5 17 9'/%3E%3Cpath d='M3 11V9a4 4 0 0 1 4-4h14'/%3E%3Cpolyline points='7 23 3 19 7 15'/%3E%3Cpath d='M21 13v2a4 4 0 0 1-4 4H3'/%3E%3C/svg%3E"); }
.i-briefcase { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E"); }
.i-shield { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }
.i-clock { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E"); }
.i-trend { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 18 13.5 8.5 8.5 13.5 1 6'/%3E%3Cpolyline points='17 18 23 18 23 12'/%3E%3C/svg%3E"); }
.i-check { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); }
.i-pie { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.21 15.89A10 10 0 1 1 8 2.83'/%3E%3Cpath d='M22 12A10 10 0 0 0 12 2v10z'/%3E%3C/svg%3E"); }
.i-layers { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'/%3E%3Cpolyline points='2 17 12 22 22 17'/%3E%3Cpolyline points='2 12 12 17 22 12'/%3E%3C/svg%3E"); }
.i-wifi { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14.08 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Cline x1='12' y1='20' x2='12.01' y2='20'/%3E%3C/svg%3E"); }
.i-bank { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 2 8 22 8'/%3E%3Cline x1='4' y1='10' x2='4' y2='18'/%3E%3Cline x1='9' y1='10' x2='9' y2='18'/%3E%3Cline x1='15' y1='10' x2='15' y2='18'/%3E%3Cline x1='20' y1='10' x2='20' y2='18'/%3E%3Cline x1='2' y1='21' x2='22' y2='21'/%3E%3C/svg%3E"); }
.i-users { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.i-tool { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E"); }
.i-card { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E"); }
.i-pause { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='4' width='4' height='16'/%3E%3Crect x='14' y='4' width='4' height='16'/%3E%3C/svg%3E"); }
.i-message { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E"); }
.footer__dev img { height:16px; width:auto; display:inline-block; vertical-align:-3px; margin-right:6px; }
