:root {
  --navy: #0e1526;
  --navy-2: #161f36;
  --paper: #edeae2;
  --paper-2: #e3dfd3;
  --white: #fbfaf7;
  --ink: #1b2130;
  --muted: #5a6071;
  --line: #c9c3b2;
  --mint: #4fe3c1;
  --mint-dim: #2baf95;
  --coral: #ff6b4a;
  --red: #e5484d;
  --shadow: 0 24px 60px -28px rgba(14, 21, 38, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, rgba(79, 227, 193, 0.1), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, #efece5 100%);
  color: var(--ink);
  font-family: "Assistant", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body.admin-body {
  background: linear-gradient(180deg, #eeebe2 0%, #e7e2d7 100%);
}

h1,
h2,
h3,
h4,
.display {
  margin: 0;
  font-family: "Rubik", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.skip-link {
  position: absolute;
  top: -48px;
  right: 20px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 20px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

@media (max-width: 640px) {
  .wrap {
    width: min(1180px, calc(100% - 28px));
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.mint {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--navy);
}

.btn.mint:hover,
.btn.mint:focus-visible {
  background: var(--mint-dim);
  border-color: var(--mint-dim);
}

.btn.outline {
  background: transparent;
  color: var(--navy);
}

.btn.light-outline {
  background: transparent;
  border-color: rgba(251, 250, 247, 0.4);
  color: var(--white);
}

.btn.light-outline:hover,
.btn.light-outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(201, 195, 178, 0.85);
  background: rgba(237, 234, 226, 0.88);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.logo-image {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a,
.nav-links summary,
.nav-products-trigger {
  position: relative;
  padding: 8px 0;
  color: var(--navy);
}

.nav-links a::after,
.nav-links summary::after,
.nav-products-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links summary:hover::after,
.nav-links summary:focus-visible::after,
.nav-item[open] > summary::after,
.nav-products:hover > .nav-products-trigger::after,
.nav-products:focus-within > .nav-products-trigger::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-products {
  padding-bottom: 24px;
  margin-bottom: -24px;
}

.nav-item summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.nav-products-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 700;
}

.nav-products-trigger::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.nav-item summary::-webkit-details-marker {
  display: none;
}

.nav-item summary::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.nav-item[open] > summary::before {
  transform: rotate(225deg) translateY(-1px);
}

.nav-products:hover > .nav-products-trigger::before,
.nav-products:focus-within > .nav-products-trigger::before {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  width: min(640px, 72vw);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--paper) 0%, #efece5 100%);
  box-shadow: var(--shadow);
}

.nav-products .nav-dropdown {
  display: none;
}

.nav-products:hover .nav-dropdown,
.nav-products:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown-head {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.nav-dropdown-head strong {
  color: var(--navy);
  font-size: 15px;
}

.nav-dropdown-head span {
  color: var(--muted);
  font-size: 13px;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nav-mega-dropdown {
  width: min(760px, 86vw);
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nav-mega-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(251, 250, 247, 0.6);
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-mega-item[open],
.nav-mega-item:hover,
.nav-mega-item:focus-within {
  border-color: rgba(14, 21, 38, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -28px rgba(14, 21, 38, 0.45);
}

.nav-mega-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  list-style: none;
  cursor: pointer;
}

.nav-mega-summary::-webkit-details-marker {
  display: none;
}

.nav-mega-summary-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.nav-mega-copy {
  display: grid;
  gap: 4px;
}

.nav-mega-copy strong {
  color: var(--navy);
  font-size: 16px;
}

.nav-mega-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.nav-mega-arrow {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-mega-item[open] .nav-mega-arrow {
  transform: rotate(-45deg);
}

.nav-mega-panel {
  display: none;
  padding: 0 18px 18px;
  border-top: 1px solid rgba(201, 195, 178, 0.65);
}

.nav-mega-item[open] .nav-mega-panel,
.nav-mega-item:hover .nav-mega-panel,
.nav-mega-item:focus-within .nav-mega-panel {
  display: block;
}

.nav-mega-actions {
  padding-top: 14px;
}

.nav-mega-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.nav-mega-link::after {
  content: "←";
  font-size: 14px;
}

.nav-mega-subgrid {
  display: grid;
  gap: 10px;
  padding-top: 12px;
}

.nav-mega-subitem {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 195, 178, 0.78);
  border-radius: 16px;
  background: rgba(237, 234, 226, 0.48);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.nav-mega-subitem strong {
  color: var(--navy);
  font-size: 14px;
}

.nav-mega-subitem span,
.nav-mega-empty {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.nav-mega-subitem:hover,
.nav-mega-subitem:focus-visible {
  border-color: rgba(14, 21, 38, 0.18);
  background: rgba(251, 250, 247, 0.92);
}

.nav-dropdown-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(237, 234, 226, 0.52);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.nav-dropdown-card strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 15px;
}

.nav-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.nav-dropdown-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.nav-dropdown-card:hover,
.nav-dropdown-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(14, 21, 38, 0.18);
}

.nav-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-mini {
  font-size: 13px;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 58px;
}

.site-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 120px;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(14, 21, 38, 0.12);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.8);
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(14, 21, 38, 0.08);
  cursor: pointer;
  list-style: none;
}

.site-search-toggle::-webkit-details-marker {
  display: none;
}

.site-search-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.site-search-icon::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -7px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(38deg);
}

.site-search-label {
  font-weight: 700;
  font-size: 15px;
}

.site-search-form {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  align-items: center;
  gap: 8px;
  width: min(460px, 38vw);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--paper) 0%, #efece5 100%);
  box-shadow: var(--shadow);
  z-index: 20;
}

.site-search-form input,
.search-page-form input {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
}

.site-search[open] .site-search-form {
  display: flex;
}

.site-search-submit {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-weight: 700;
}

.search-page-shell {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.96) 0%, rgba(237, 234, 226, 0.92) 100%);
  box-shadow: var(--shadow);
}

.search-page-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-page-summary {
  color: var(--muted);
  font-weight: 600;
}

.search-results-grid {
  display: grid;
  gap: 16px;
}

.search-result-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.88);
}

.search-result-card h2 {
  margin: 0;
  font-size: 26px;
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-result-link {
  color: var(--mint-deep);
  font-weight: 700;
}

.search-empty {
  padding: 28px;
  border: 1px dashed rgba(14, 21, 38, 0.18);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.65);
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 40px auto auto -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(79, 227, 193, 0.08);
  filter: blur(12px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(43, 175, 149, 0.28);
  border-radius: 999px;
  background: rgba(43, 175, 149, 0.09);
  color: var(--mint-dim);
  font-size: 13px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.8vw, 66px);
  line-height: 1.05;
  color: var(--navy);
}

.hero h1 .accent {
  color: var(--coral);
}

.hero .lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: #4a5064;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-note {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.7);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.network-container {
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--coral);
  z-index: 10;
  box-shadow: 0 0 0 35px rgba(255, 107, 74, 0.18);
}

.spoke-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(79, 227, 193, 0.2));
}

.spoke-lines line {
  stroke: rgba(43, 175, 149, 0.68);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: spoke-flow 2.8s linear infinite, spoke-breathe 2.2s ease-in-out infinite;
}

.node-wrapper {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.node {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(14, 21, 38, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  animation: node-pulse 3.2s ease-in-out infinite;
}

.node-wrapper:hover .node {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 8px rgba(14, 21, 38, 0.08);
  animation-play-state: paused;
}

.node:focus-visible {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 8px rgba(14, 21, 38, 0.08);
  outline: none;
  animation-play-state: paused;
}

.label {
  position: absolute;
  left: var(--label-x);
  top: var(--label-y);
  transform: var(--label-transform);
  color: var(--navy);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  text-align: var(--label-align);
  direction: rtl;
}

@keyframes spoke-flow {
  from {
    stroke-dashoffset: 0;
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }

  to {
    stroke-dashoffset: -88;
    opacity: 0.62;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(14, 21, 38, 0.12);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 10px rgba(14, 21, 38, 0.06);
  }
}

@keyframes spoke-breathe {
  0%,
  100% {
    stroke: rgba(43, 175, 149, 0.62);
    filter: brightness(1);
  }

  50% {
    stroke: rgba(178, 33, 44, 0.98);
    filter: brightness(1.28);
  }
}

.strip {
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
  color: rgba(251, 250, 247, 0.8);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 54px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  animation: strip-scroll 26s linear infinite;
}

.strip-track span::before {
  content: "—";
  margin-left: 10px;
  color: var(--mint);
}

@keyframes strip-scroll {
  to {
    transform: translateX(50%);
  }
}

.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
}

.section-head h2 {
  max-width: 15ch;
  font-size: clamp(30px, 3.7vw, 42px);
  color: var(--navy);
}

.section-head p {
  max-width: 460px;
  color: var(--muted);
}

.services-grid,
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.sector-card {
  height: 100%;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 20px 40px -32px rgba(14, 21, 38, 0.45);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  transition: transform 0.22s ease;
}

.service-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.service-card h3,
.sector-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
}

.service-card p,
.sector-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15.5px;
}

.tag-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(43, 175, 149, 0.25);
  border-radius: 999px;
  background: rgba(43, 175, 149, 0.09);
  color: var(--mint-dim);
  font-size: 12px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.dark-band {
  background: linear-gradient(180deg, var(--navy) 0%, #131b2d 100%);
  color: var(--white);
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.dark-grid h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 38px);
}

.dark-grid p {
  max-width: 500px;
  color: rgba(251, 250, 247, 0.72);
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.stat {
  padding-right: 18px;
  border-right: 2px solid var(--mint);
}

.stat-value {
  color: var(--mint);
  font-size: 36px;
  font-weight: 800;
}

.stat-label {
  color: rgba(251, 250, 247, 0.7);
  font-size: 14px;
}

.rings-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  padding: 22px;
}

.ring {
  fill: none;
  stroke: rgba(79, 227, 193, 0.22);
}

.ring.active {
  stroke: var(--mint);
  stroke-width: 2;
}

.ring-dot {
  fill: var(--coral);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.process-step {
  padding: 32px 24px;
  border-left: 1px solid var(--line);
}

.process-step:first-child {
  border-left: 0;
}

.process-step .step-number {
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.process-step h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.process-step p {
  color: var(--muted);
  font-size: 14.5px;
}

.about-grid,
.contact-grid,
.footer-cta {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow);
  min-height: 360px;
  padding: 32px;
}

.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.about-visual::before {
  inset: -60px auto auto -60px;
  width: 180px;
  height: 180px;
  background: rgba(79, 227, 193, 0.14);
}

.about-visual::after {
  inset: auto -40px -70px auto;
  width: 220px;
  height: 220px;
  background: rgba(255, 107, 74, 0.12);
}

.about-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.about-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 21, 38, 0.08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.about-big {
  font-size: 64px;
  font-weight: 900;
  color: var(--navy);
}

.about-caption {
  max-width: 18ch;
  color: var(--muted);
  font-size: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.value-chip {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(251, 250, 247, 0.9);
  text-align: center;
}

.value-chip .chip-number {
  color: var(--mint-dim);
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
}

.value-chip .chip-label {
  margin-top: 6px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 800;
}

.contact-card,
.contact-form,
.admin-panel,
.admin-card,
.admin-notice,
.admin-section {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(251, 250, 247, 0.95);
  box-shadow: 0 20px 48px -34px rgba(14, 21, 38, 0.35);
}

.contact-card,
.contact-form,
.admin-card,
.admin-notice,
.admin-section {
  padding: 32px;
}

.contact-card {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}

.contact-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.contact-card p {
  color: rgba(251, 250, 247, 0.74);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-item-label {
  display: block;
  margin-bottom: 2px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.btn:focus-visible,
.nav-links a:focus-visible,
.admin-link:focus-visible {
  outline: 2px solid var(--mint-dim);
  outline-offset: 2px;
}

.status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.status.ok {
  display: block;
  border: 1px solid rgba(43, 175, 149, 0.3);
  background: rgba(43, 175, 149, 0.12);
  color: var(--mint-dim);
}

.status.err {
  display: block;
  border: 1px solid rgba(229, 72, 77, 0.3);
  background: rgba(229, 72, 77, 0.1);
  color: var(--red);
}

.footer-shell {
  padding: 80px 0 40px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.footer-cta {
  margin-bottom: 56px;
  padding: 46px 42px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}

.footer-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 34px);
}

.footer-cta p {
  max-width: 470px;
  color: rgba(251, 250, 247, 0.74);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--navy);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14.5px;
}

.footer-brand p {
  max-width: 280px;
  color: var(--muted);
  font-size: 14.5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  color: #787c8a;
  font-size: 13px;
}

.admin-link {
  color: var(--navy);
  font-weight: 700;
}

.chat-launcher {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 34px -16px rgba(255, 107, 74, 0.7);
}

.chat-dot {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--mint);
}

.chat-panel {
  position: fixed;
  left: 24px;
  bottom: 96px;
  z-index: 50;
  display: none;
  flex-direction: column;
  width: min(360px, calc(100vw - 24px));
  max-height: min(72vh, 640px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chat-panel.open {
  display: flex;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: var(--navy);
  color: var(--white);
}

.chat-head strong {
  display: block;
  font-size: 15px;
}

.chat-head span {
  color: var(--mint);
  font-size: 12.5px;
}

.chat-head button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 22px;
  cursor: pointer;
}

.chat-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 16px 18px;
  background: var(--paper);
}

.chat-msg {
  max-width: 85%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 14px;
}

.chat-msg.bot {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: var(--white);
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
  background: var(--paper);
}

.chat-quick button {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.chat-quick button:hover,
.chat-quick button:focus-visible {
  border-color: var(--mint-dim);
  color: var(--mint-dim);
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chat-input-row input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.chat-input-row button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  cursor: pointer;
}

.chat-whatsapp {
  padding: 0 14px 14px;
  background: var(--paper);
}

.chat-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
}

.admin-header {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}

.admin-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-header-copy p {
  margin-top: 8px;
  max-width: 620px;
  color: rgba(251, 250, 247, 0.72);
  font-size: 14px;
}

.admin-main {
  padding: 34px 0 80px;
}

.admin-login-card {
  width: min(560px, 100%);
  margin: 80px auto 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.96);
  box-shadow: var(--shadow);
}

.admin-login-copy {
  margin: 18px 0 20px;
  color: var(--muted);
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-login-hint {
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.admin-notice {
  margin-bottom: 24px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.76);
}

.admin-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.admin-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(201, 195, 178, 0.72);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(10px);
}

.admin-nav-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 14px;
}

.admin-nav-shell a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(237, 234, 226, 0.5);
  color: var(--navy);
  font-weight: 700;
}

.admin-nav-shell a.active,
.admin-nav-shell a[aria-current="page"] {
  border-color: rgba(79, 227, 193, 0.7);
  background: rgba(79, 227, 193, 0.14);
}

.admin-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.admin-card h2,
.admin-section h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.admin-anchor-section {
  scroll-margin-top: 130px;
  margin-bottom: 24px;
}

.admin-panel[hidden] {
  display: none !important;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-card-head h2 {
  margin: 6px 0 0;
}

.admin-jump-link {
  color: var(--mint-deep);
  font-weight: 700;
  white-space: nowrap;
}

.admin-section-copy {
  margin: 0 0 18px;
  color: var(--muted);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.admin-actions.compact {
  margin-top: 0;
  margin-bottom: 14px;
}

.admin-divider {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.admin-subtitle {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-mini-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(237, 234, 226, 0.5);
}

.admin-mini-card h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.admin-catalog-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.admin-products-list-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.7);
}

.admin-products-list {
  display: grid;
  gap: 10px;
  max-height: 720px;
  overflow: auto;
}

.admin-product-item {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-align: right;
}

.admin-product-item strong {
  color: var(--navy);
}

.admin-product-item span {
  color: var(--muted);
  font-size: 13px;
}

.admin-product-item.active {
  border-color: rgba(79, 227, 193, 0.7);
  box-shadow: 0 10px 24px rgba(79, 227, 193, 0.12);
}

.admin-product-form {
  display: grid;
  gap: 16px;
}

.admin-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-placeholder-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px dashed rgba(14, 21, 38, 0.18);
  border-radius: 20px;
  background: rgba(251, 250, 247, 0.72);
}

.admin-placeholder-card strong {
  color: var(--navy);
}

.admin-placeholder-card span {
  color: var(--muted);
  line-height: 1.6;
}

.inbox-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.inbox-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(237, 234, 226, 0.54);
}

.inbox-stat strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  font-family: "Rubik", sans-serif;
}

.inbox-stat span {
  color: var(--muted);
  font-size: 13px;
}

.inbox-list {
  display: grid;
  gap: 14px;
}

.inbox-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(237, 234, 226, 0.46);
}

.inbox-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.inbox-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13.5px;
}

.inbox-empty {
  padding: 26px 20px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.catalog-hero {
  padding-bottom: 42px;
}

.catalog-hero-grid,
.product-hero-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.catalog-hero-image,
.catalog-card-image,
.brand-card-image,
.product-list-image,
.product-hero-image {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(251, 250, 247, 0.88);
  box-shadow: var(--shadow);
}

.catalog-grid,
.brands-grid,
.product-list-grid {
  display: grid;
  gap: 24px;
}

.catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brands-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card,
.brand-card,
.product-list-card,
.product-summary-card,
.product-spec-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 20px 48px -34px rgba(14, 21, 38, 0.35);
}

.catalog-card,
.brand-card,
.product-list-link {
  display: block;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.catalog-card:hover,
.catalog-card:focus-visible,
.brand-card:hover,
.brand-card:focus-visible,
.product-list-link:hover,
.product-list-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px -34px rgba(14, 21, 38, 0.46);
}

.catalog-card-body,
.product-list-body,
.product-summary-card,
.product-spec-card {
  padding: 24px;
}

.catalog-card-body h3,
.product-list-body h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: var(--navy);
}

.catalog-card-body p,
.product-list-body p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.brand-card {
  padding: 18px;
}

.brand-card-image {
  border: 0;
  box-shadow: none;
}

.product-brand-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 21, 38, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  font-family: "IBM Plex Mono", monospace;
}

.product-hero {
  padding-bottom: 42px;
}

.product-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
}

.product-brand-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.product-image-stage {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.product-hero-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 0.25s ease;
}

.product-image-stage.zoom-active .product-hero-image,
.product-image-stage:hover .product-hero-image {
  transform: scale(1.75);
}

.product-summary-card h2,
.product-spec-card h2 {
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--navy);
}

.product-summary-table {
  width: 100%;
  border-collapse: collapse;
}

.product-summary-table th,
.product-summary-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 195, 178, 0.75);
  text-align: right;
  vertical-align: top;
}

.product-summary-table th {
  width: 38%;
  color: var(--muted);
  font-size: 14px;
}

.product-summary-table td {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.product-spec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.product-price-note {
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}

.product-spec-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.product-spec-chip {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(237, 234, 226, 0.5);
}

.product-spec-chip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.product-spec-chip span {
  color: var(--muted);
  font-size: 14px;
}

.product-accordion-list {
  display: grid;
  gap: 12px;
}

.product-accordion {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(251, 250, 247, 0.74);
  overflow: hidden;
}

.product-accordion summary {
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-accordion[open] summary {
  border-bottom: 1px solid rgba(201, 195, 178, 0.75);
}

.product-accordion ul {
  margin: 0;
  padding: 14px 24px 18px;
  color: var(--muted);
}

.product-accordion li + li {
  margin-top: 8px;
}

.product-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.78);
  color: var(--navy);
  font-weight: 700;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.product-source-link:hover,
.product-source-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(14, 21, 38, 0.18);
  background: rgba(251, 250, 247, 0.98);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-mini {
    display: none;
  }

  .nav-shell {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-search-form {
    width: min(100vw - 80px, 420px);
  }

  .hero-grid,
  .catalog-hero-grid,
  .product-hero-grid,
  .product-detail-grid,
  .dark-grid,
  .about-grid,
  .contact-grid,
  .footer-cta,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-card-head {
    flex-direction: column;
  }

  .services-grid,
  .sectors-grid,
  .catalog-grid,
  .nav-mega-grid,
  .brands-grid,
  .product-list-grid,
  .footer-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-search {
    width: 100%;
  }

  .site-search-toggle {
    width: 100%;
  }

  .site-search-form {
    right: 0;
    left: 0;
    width: 100%;
  }

  .search-page-form {
    flex-direction: column;
    align-items: stretch;
  }

  .site-search-form {
    flex-wrap: wrap;
  }

  .site-search-submit {
    width: 100%;
  }

  .services-grid,
  .sectors-grid,
  .catalog-grid,
  .nav-mega-grid,
  .brands-grid,
  .product-list-grid,
  .footer-grid,
  .field-grid,
  .stat-list,
  .values-grid,
  .inbox-stats,
  .admin-placeholder-grid,
  .process-grid,
  .product-spec-bullets {
    grid-template-columns: 1fr;
  }

  .admin-catalog-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .footer-bottom,
  .admin-header-shell,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-image {
    height: 56px;
  }

  .nav-dropdown {
    width: min(100vw - 28px, 520px);
  }

  .nav-mega-summary {
    padding: 16px;
  }

  .nav-mega-panel {
    padding: 0 16px 16px;
  }

  .hero-map-card {
    min-width: 220px;
    max-width: 240px;
  }

  .chat-panel {
    left: 14px;
    bottom: 88px;
    width: calc(100vw - 28px);
  }

  .chat-launcher {
    left: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
