:root {
  --bg: #ffffff;
  --surface: #f7f8fa;
  --text: #14161a;
  --muted: #5d6673;
  --line: #e6e9ee;
  --accent: #111827;
  --accent-soft: #eef2f7;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
  --icon-bg: #eef2f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f5f8ff 0%, #ffffff 38%) no-repeat;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 233, 238, 0.8);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 122px;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo span {
  color: #6b7280;
}

.logo img {
  display: block;
  height: 110px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--accent-soft);
  color: var(--text);
  outline: none;
}

.nav-list a[href="nis2.html"] {
  background: #eefaf5;
  border: 1px solid #cfeedd;
  color: #166534;
  font-weight: 800;
}

.nav-list a[href="nis2.html"]:hover,
.nav-list a[href="nis2.html"]:focus-visible {
  background: #e4f8ee;
  border-color: #b9e7cd;
  color: #14532d;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.page-hero {
  padding-bottom: 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  max-width: 26ch;
}

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn::after {
  content: "→";
  font-size: 0.9em;
  line-height: 1;
  opacity: 0.85;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  outline: none;
}

.btn-solid {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-whatsapp {
  border-color: #1faa59;
}

.btn-whatsapp::before {
  content: "◔";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 0.62rem;
  line-height: 1;
}

.btn-whatsapp.btn-ghost {
  color: #0f6d37;
  background: #f4fff9;
  border-color: #b8ebcd;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.1rem;
  max-width: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-card h2::before {
  content: "◇";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--icon-bg);
  color: #1f2937;
  font-size: 0.95rem;
}

.hero-card ul {
  margin: 0.8rem 0 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.hero-card li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-card li + li {
  margin-top: 0.5rem;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #0f172a;
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.75), rgba(247, 248, 250, 0.95));
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.split p {
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem;
  padding-top: 2.35rem;
  position: relative;
}

.stat::before {
  content: "▣";
  position: absolute;
  left: 0.95rem;
  top: 0.75rem;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #eef3fb;
  color: #334155;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
}

.stat:nth-child(2)::before {
  content: "◍";
  background: #eefaf5;
}

.stat:nth-child(3)::before {
  content: "⌁";
  background: #f5f3ff;
}

.stat:nth-child(4)::before {
  content: "⧉";
  background: #fff5ec;
}

.stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.96rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.93rem;
}

.card-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  padding-top: 2.55rem;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.03);
  position: relative;
}

.card h3 {
  font-size: 1.05rem;
}

.card::before {
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #eef2f7;
  color: #1f2937;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card:nth-child(1)::before { content: "RA"; }
.card:nth-child(2)::before { content: "HD"; background: #eefaf5; }
.card:nth-child(3)::before { content: "CRM"; background: #f5f3ff; font-size: 0.62rem; }
.card:nth-child(4)::before { content: "RT"; background: #fff5ec; }

.card p {
  margin: 0.55rem 0 0.75rem;
  color: var(--muted);
}

.card a {
  font-weight: 700;
  color: #1f2937;
}

.service-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  padding-top: 2.45rem;
  background: #fff;
  position: relative;
}

.service-grid article::before {
  position: absolute;
  left: 1rem;
  top: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #eef2f7;
  color: #334155;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.service-grid article:nth-child(1)::before { content: "◌"; }
.service-grid article:nth-child(2)::before { content: "⌘"; background: #eefaf5; }
.service-grid article:nth-child(3)::before { content: "↗"; background: #fff5ec; }
.service-grid article:nth-child(4)::before { content: "⟷"; background: #f5f3ff; }
.service-grid article:nth-child(5)::before { content: "↺"; background: #eef3fb; }
.service-grid article:nth-child(6)::before { content: "✦"; background: #fef3f2; }
}

.service-grid p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.prose-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.prose-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  padding-top: 2.45rem;
  position: relative;
}

.prose-card h3 {
  font-size: 1rem;
}

.prose-card::before {
  content: "[]";
  position: absolute;
  left: 1rem;
  top: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef2f7;
  color: #334155;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.68rem;
}

.prose-card:nth-child(2)::before { content: "⚙"; background: #eefaf5; }
.prose-card:nth-child(3)::before { content: "SC"; background: #fff5ec; font-size: 0.64rem; }
.prose-card:nth-child(4)::before { content: "IR"; background: #fef3f2; font-size: 0.64rem; }
.prose-card:nth-child(5)::before { content: "DOC"; background: #f5f3ff; font-size: 0.56rem; }
.prose-card:nth-child(6)::before { content: "%"; background: #eef3fb; }

.check-list {
  margin: 0.7rem 0 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
}

.check-list li + li {
  margin-top: 0.35rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #1f2937;
  font-weight: 700;
  font-size: 0.82rem;
}

.nis2-flow {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.nis2-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.03);
  position: relative;
  overflow: hidden;
}

.nis2-step::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 242, 247, 0.95), rgba(238, 242, 247, 0.15));
}

.nis2-step-no {
  margin: 0 0 0.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6b7280;
  font-size: 0.78rem;
}

.nis2-step h3 {
  font-size: 1.03rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nis2-step h3::before {
  content: "◈";
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #eef2f7;
  color: #334155;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex: 0 0 auto;
}

.nis2-step:nth-child(2) h3::before {
  content: "▤";
  background: #eefaf5;
}

.nis2-step:nth-child(3) h3::before {
  content: "∞";
  background: #fff5ec;
}

.nis2-step p {
  margin: 0.55rem 0 0.65rem;
  color: var(--muted);
}

.nis2-step ul {
  margin: 0;
  padding-left: 1rem;
  color: #394150;
}

.nis2-step li + li {
  margin-top: 0.35rem;
}

.nis2-note {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nis2-note p {
  margin: 0;
  color: var(--muted);
  max-width: 74ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.expert-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.expert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.03);
  position: relative;
}

.expert-card::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(180deg, #eef2f7, #f8fafc);
  border: 1px solid #edf0f4;
}

.expert-photo {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.expert-card h3 {
  font-size: 1.05rem;
}

.expert-card p {
  color: var(--muted);
  margin: 0.45rem 0 0.75rem;
}

.expert-role {
  font-weight: 700;
  color: #374151 !important;
  margin-top: 0.35rem !important;
}

.compact-list {
  margin-top: 0.1rem;
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
}

.expert-focus {
  margin-top: 0.1rem !important;
  color: #374151 !important;
  font-weight: 600;
}

.muted-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.clients-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.clients-copy p {
  color: var(--muted);
  margin-top: 0;
}

.client-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.client-tags li {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-weight: 600;
}

.clients-summary {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.clients-summary span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: #4b5563;
  font-weight: 600;
  font-size: 0.9rem;
}

.client-directory-wrap {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
  padding: 1rem;
}

.client-note {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.client-tabs {
  margin-top: 1rem;
}

.client-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.client-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: #4b5563;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.client-tab:hover,
.client-tab:focus-visible {
  background: #f5f7fb;
  border-color: #d5dce7;
  outline: none;
}

.client-tab.is-active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.client-panels {
  display: grid;
  gap: 0.9rem;
}

.client-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
  padding: 1rem;
}

.client-group-title {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.client-group-title::before {
  content: "◍";
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #eef2f7;
  color: #334155;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.client-directory {
  margin: 0;
  padding-left: 1rem;
  columns: 2;
  column-gap: 1.4rem;
}

.client-directory li {
  break-inside: avoid;
  margin: 0 0 0.45rem;
  color: #2d3440;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact {
  padding-bottom: 4.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-grid p {
  color: var(--muted);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
  position: relative;
}

.contact-form::before {
  content: "@";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #eef2f7;
  color: #334155;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.contact-whatsapp-card {
  gap: 0.8rem;
  align-content: start;
}

.contact-whatsapp-card::before {
  content: "WA";
  background: #e9fbf0;
  color: #15803d;
}

.contact-whatsapp-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-whatsapp-text {
  margin: 0;
  color: var(--muted);
}

.contact-whatsapp-number {
  margin: 0;
  font-weight: 700;
}

.contact-whatsapp-number a {
  color: #166534;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #dbe4f2;
  border-color: #c9d5e6;
}

.contact-form button {
  margin-top: 0.25rem;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-row p,
.footer-row a {
  color: var(--muted);
  margin: 0;
}

.footer-meta {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 1rem;
  display: grid;
  gap: 0.35rem;
}

.footer-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-meta strong {
  color: #374151;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .clients-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prose-grid,
  .expert-grid {
    grid-template-columns: 1fr;
  }

  .nis2-flow {
    grid-template-columns: 1fr;
  }

  .nis2-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .client-directory {
    columns: 1;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0;
  }

  .logo img {
    height: 82px;
  }

  .nav-list {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .card-grid,
  .service-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-row {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    padding-top: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
