:root {
  --ink: #101828;
  --muted: #667085;
  --line: #d9e2ec;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --blue: #0b5cab;
  --cyan: #00a7c8;
  --red: #df3f3f;
  --green: #1f9d65;
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.brand img {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(11, 92, 171, 0.95), rgba(16, 24, 40, 0.92)),
    radial-gradient(circle at 78% 24%, rgba(0, 167, 200, 0.7), transparent 26%),
    #101828;
  color: #ffffff;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.74;
  overflow: hidden;
  pointer-events: none;
}

.hero-network::before,
.hero-network::after {
  position: absolute;
  inset: -20%;
  content: "";
}

.hero-network::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(155, 232, 244, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 62%, rgba(155, 232, 244, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 34%, rgba(155, 232, 244, 0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 58%, rgba(155, 232, 244, 0.48) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 24%, rgba(155, 232, 244, 0.38) 0 2px, transparent 3px),
    linear-gradient(28deg, transparent 0 23%, rgba(155, 232, 244, 0.22) 23.1% 23.35%, transparent 23.45%),
    linear-gradient(149deg, transparent 0 30%, rgba(155, 232, 244, 0.18) 30.1% 30.35%, transparent 30.45%),
    linear-gradient(118deg, transparent 0 52%, rgba(155, 232, 244, 0.18) 52.1% 52.32%, transparent 52.42%),
    linear-gradient(64deg, transparent 0 66%, rgba(155, 232, 244, 0.16) 66.1% 66.35%, transparent 66.45%);
  background-size: 520px 320px;
  animation: network-pan 14s linear infinite;
}

.hero-network::after {
  background:
    radial-gradient(circle at 22% 42%, rgba(0, 167, 200, 0.2), transparent 12%),
    radial-gradient(circle at 72% 34%, rgba(155, 232, 244, 0.18), transparent 10%),
    radial-gradient(circle at 62% 72%, rgba(0, 167, 200, 0.16), transparent 12%);
  animation: network-pulse 4.5s ease-in-out infinite alternate;
}

.network-signal {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(155, 232, 244, 0.92);
  box-shadow:
    0 0 16px rgba(155, 232, 244, 0.85),
    0 0 34px rgba(0, 167, 200, 0.42);
  opacity: 0;
}

.network-stream {
  position: absolute;
  left: -18%;
  width: 18%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(155, 232, 244, 0.92), transparent);
  box-shadow: 0 0 18px rgba(155, 232, 244, 0.62);
  opacity: 0;
  transform: rotate(-28deg);
}

.stream-one {
  top: 22%;
  animation: network-stream-one 5.8s ease-in-out infinite;
}

.stream-two {
  top: 52%;
  animation: network-stream-two 7.2s ease-in-out infinite 1.4s;
}

.stream-three {
  top: 78%;
  animation: network-stream-three 6.6s ease-in-out infinite 2.6s;
}

.network-signal::after {
  position: absolute;
  inset: -10px;
  content: "";
  border: 1px solid rgba(155, 232, 244, 0.36);
  border-radius: 50%;
  animation: signal-ripple 1.8s ease-out infinite;
}

.signal-one {
  top: 26%;
  left: -8%;
  animation: signal-one 7.5s linear infinite;
}

.signal-two {
  top: 64%;
  left: -8%;
  animation: signal-two 9s linear infinite 1.5s;
}

.signal-three {
  top: 42%;
  left: -8%;
  animation: signal-three 8.5s linear infinite 3s;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 92, 171, 0.18), rgba(16, 24, 40, 0.58)),
    radial-gradient(circle at 24% 42%, rgba(0, 167, 200, 0.18), transparent 32%);
  pointer-events: none;
}

.hero-content,
.hero-panel,
.page-hero > :not(.hero-network) {
  position: relative;
  z-index: 1;
}

@keyframes network-stream-one {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-28deg);
  }

  12%,
  72% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(132vw, 46vh, 0) rotate(-28deg);
  }
}

@keyframes network-stream-two {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(23deg);
  }

  14%,
  70% {
    opacity: 0.58;
  }

  100% {
    opacity: 0;
    transform: translate3d(126vw, -34vh, 0) rotate(23deg);
  }
}

@keyframes network-stream-three {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  12%,
  68% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: translate3d(124vw, -10vh, 0) rotate(-18deg);
  }
}

@keyframes network-pan {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-120px, -52px, 0);
  }
}

@keyframes network-pulse {
  from {
    opacity: 0.45;
    transform: scale(1);
  }

  to {
    opacity: 0.82;
    transform: scale(1.04);
  }
}

@keyframes signal-one {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  12%,
  82% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate3d(118vw, 36vh, 0);
  }
}

@keyframes signal-two {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  14%,
  78% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translate3d(116vw, -34vh, 0);
  }
}

@keyframes signal-three {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  16%,
  76% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(112vw, 2vh, 0);
  }
}

@keyframes signal-ripple {
  from {
    opacity: 0.72;
    transform: scale(0.35);
  }

  to {
    opacity: 0;
    transform: scale(1.75);
  }
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 1.02;
}

.hero-copy,
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #9be8f4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
}

.button.outline {
  border-color: var(--line);
  background: #ffffff;
  color: var(--blue);
}

.button.compact {
  min-height: 38px;
  background: var(--ink);
  color: #ffffff;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-card-experience strong {
  font-size: 2.5rem;
}

.hero-card span {
  display: block;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.hero-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.hero-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.intro,
.values {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.feature,
.contact-card,
.contact-form,
.partner-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.06);
}

.feature {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(0, 167, 200, 0.12);
  color: var(--blue);
  font-weight: 900;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature p,
.split p,
.intro p,
.contact-card p,
.legal p,
.muted {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.fortinet-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.fortinet-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(180px, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.95), rgba(255, 255, 255, 0.95)),
    #ffffff;
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.06);
}

.fortinet-card img:first-child {
  max-width: 190px;
  justify-self: center;
}

.fortinet-card img:last-child {
  max-width: 280px;
  justify-self: center;
}

.psirt-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #ffffff;
}

.psirt-copy p:not(.eyebrow) {
  color: var(--muted);
}

.cisco-copy {
  align-self: start;
}

.advisory-cards {
  display: contents;
}

.psirt-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.psirt-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.psirt-status {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.psirt-list {
  display: grid;
}

.psirt-item {
  display: grid;
  grid-template-columns: 92px 78px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  color: var(--ink);
  text-decoration: none;
}

.psirt-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.psirt-item:hover {
  background: var(--soft);
}

.psirt-item strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.psirt-item small {
  color: var(--muted);
  font-weight: 800;
}

.psirt-score {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.severity-tag {
  justify-self: start;
  min-width: 64px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.psirt-score.low,
.severity-tag.low {
  background: rgba(31, 157, 101, 0.12);
  color: #0b6b43;
}

.psirt-score.medium,
.severity-tag.medium {
  background: rgba(255, 176, 32, 0.18);
  color: #8a5200;
}

.psirt-score.high,
.severity-tag.high {
  background: rgba(223, 63, 63, 0.12);
  color: #a12727;
}

.psirt-score.critical,
.severity-tag.critical {
  background: #2a0f14;
  color: #ffffff;
}

.psirt-score.info,
.severity-tag.info,
.psirt-score.unknown {
  background: rgba(102, 112, 133, 0.12);
  color: #475467;
}

.cert-section {
  background: var(--soft);
}

.cert-heading {
  margin-bottom: 28px;
}

.cert-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.carousel-button:hover {
  background: #ffffff;
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button-prev {
  left: 14px;
}

.carousel-button-next {
  right: 14px;
}

.cert-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 76px;
}

.cert-track {
  display: flex;
  gap: 18px;
  transition: transform 450ms ease;
  will-change: transform;
}

.cert-slide {
  flex: 0 0 calc((100% - 54px) / 4);
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.06);
}

.cert-slide img {
  max-width: 86%;
  max-height: 92px;
  object-fit: contain;
}

.partner-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.partner-box img:last-child {
  grid-column: 1 / -1;
  max-width: 240px;
  margin: 0 auto;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration-color: rgba(11, 92, 171, 0.28);
  text-underline-offset: 4px;
}

.advisory-link {
  display: inline-block;
  margin-top: 10px;
}

.values {
  background: var(--ink);
  color: #ffffff;
}

.values ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values li {
  padding: 14px 16px;
  border-left: 4px solid var(--cyan);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 72px);
  background: var(--soft);
}

.cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.page-hero {
  display: grid;
  align-content: center;
  height: 260px;
  min-height: 260px;
  padding: 42px clamp(20px, 5vw, 72px);
  box-sizing: border-box;
  background:
    linear-gradient(110deg, rgba(11, 92, 171, 0.95), rgba(16, 24, 40, 0.92)),
    #101828;
  color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.48fr);
  gap: 24px;
  align-items: start;
  background: var(--soft);
}

.not-found-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--soft);
}

.not-found-content p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 3vw, 3.1rem);
}

.page-hero p {
  margin-bottom: 0;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.contact-page .contact-layout {
  padding-top: 28px;
  padding-bottom: 28px;
}

.contact-card,
.contact-form {
  padding: clamp(24px, 4vw, 42px);
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  content: "";
  border-radius: 50%;
  background: rgba(0, 167, 200, 0.07);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(11, 92, 171, 0.16);
  border-radius: 8px;
  background: rgba(11, 92, 171, 0.08);
  color: var(--blue);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-email {
  display: inline-block;
  margin: 4px 0 12px;
  padding: 9px 11px;
  border: 1px solid rgba(11, 92, 171, 0.16);
  border-radius: 8px;
  background: rgba(11, 92, 171, 0.06);
  color: var(--blue);
  font-size: clamp(0.98rem, 1.4vw, 1.18rem);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-page .contact-card,
.contact-page .contact-form {
  padding: 24px;
}

.contact-page .contact-card {
  min-height: 0;
}

.contact-page .contact-card .eyebrow {
  margin-bottom: 10px;
}

.contact-page .contact-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.15;
}

.contact-page .contact-card p {
  margin-bottom: 9px;
  font-size: 0.96rem;
}

.contact-page .contact-email {
  margin: 2px 0 12px;
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
}

.contact-page .contact-form {
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
}

.contact-page .contact-form label {
  gap: 6px;
}

.form-hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  padding: 10px 12px;
}

.contact-page .contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 167, 200, 0.18);
  border-color: var(--cyan);
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(31, 157, 101, 0.12);
  color: #0b6b43;
}

.form-status.is-error {
  background: rgba(223, 63, 63, 0.12);
  color: #a12727;
}

.form-consent {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-page .form-consent {
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-consent a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-color: rgba(11, 92, 171, 0.28);
  text-underline-offset: 3px;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
}

.legal ul {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
}

.legal li {
  margin-bottom: 8px;
}

.legal h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-updated {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(160px, 0.75fr));
  gap: 28px;
  align-items: start;
  padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 72px);
  background: #0b1220;
  color: #ffffff;
}

.footer-brand img {
  width: 178px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #ffffff;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h2 {
  margin: 0;
  color: #ffffff;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 16px;
  max-width: 430px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (min-width: 921px) {
  .site-header {
    min-height: 84px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: 214px;
  }

  .hero {
    min-height: 640px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(32px, 5vw, 88px);
    padding-top: clamp(44px, 5vw, 72px);
    padding-bottom: clamp(44px, 5vw, 72px);
  }

  .hero h1 {
    max-width: 840px;
    font-size: clamp(2.75rem, 3.35vw, 3.65rem);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 760px;
    font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-panel {
    gap: 12px;
  }

  .hero-card {
    padding: 18px 24px;
  }

  .hero-card strong {
    font-size: 1.35rem;
  }

  .hero-card-experience strong {
    font-size: 2.15rem;
  }

  .section {
    padding-top: clamp(44px, 5vw, 72px);
    padding-bottom: clamp(44px, 5vw, 72px);
  }

  .page-hero h1 {
    max-width: 860px;
    font-size: clamp(2.1rem, 3vw, 3.1rem);
    line-height: 1.1;
  }

  .page-hero p {
    max-width: 760px;
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  }

  .contact-layout {
    padding-top: clamp(42px, 5vw, 64px);
    padding-bottom: clamp(42px, 5vw, 64px);
  }

  .contact-card,
  .contact-form {
    padding: clamp(22px, 3vw, 34px);
  }

  .contact-page .contact-card,
  .contact-page .contact-form {
    padding: 22px;
  }

  .legal {
    padding-top: clamp(42px, 5vw, 64px);
    padding-bottom: clamp(42px, 5vw, 64px);
  }

  .partner-box {
    grid-template-columns: minmax(160px, 0.55fr) minmax(220px, 1fr);
    gap: 20px;
    padding: 28px;
  }

  .partner-box img:first-child {
    max-width: 210px;
    justify-self: center;
  }

  .partner-box img:nth-child(2) {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 720px;
    justify-self: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
  }

  .partner-box img:last-child {
    grid-column: auto;
    max-width: 260px;
  }
}

@media (max-width: 920px) {
  .hero,
  .intro,
  .split,
  .fortinet-section,
  .psirt-section,
  .values,
  .contact-layout,
  .not-found-content {
    grid-template-columns: 1fr;
  }

  .not-found-actions {
    justify-content: flex-start;
  }

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

  .cert-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

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

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
  }

  .page-hero {
    height: auto;
    min-height: 300px;
  }

  .feature-grid,
  .fortinet-card,
  .partner-box,
  .values ul {
    grid-template-columns: 1fr;
  }

  .cert-slide {
    flex-basis: 100%;
  }

  .psirt-card-header,
  .psirt-item {
    grid-template-columns: 1fr;
  }

  .psirt-card-header {
    display: grid;
  }

  .psirt-item {
    gap: 8px;
  }

  .cert-carousel {
    padding: 0 46px;
  }

  .carousel-button {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .carousel-button-prev {
    left: 0;
  }

  .carousel-button-next {
    right: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta {
    display: grid;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}
