:root {
  --ink: #071027;
  --night: #050823;
  --deep: #0b1552;
  --paper: #ffffff;
  --soft: #f5f8ff;
  --soft-2: #e7efff;
  --line: #cfdaf6;
  --muted: #65718f;
  --teal: #08c7f4;
  --aqua: #00b8ff;
  --lime: #5bd7ff;
  --blue: #1f68ff;
  --coral: #6f5cff;
  --violet: #8b32ff;
  --violet-deep: #3b16d9;
  --royal: #1428b8;
  --indigo: #120075;
  --shadow: 0 24px 70px rgba(8, 17, 57, 0.18);
  --shadow-soft: 0 16px 38px rgba(8, 17, 57, 0.11);
  --radius: 8px;
  --container: 1180px;
  --font-body: "Manrope", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 229, 226, 0.78);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(9, 17, 22, 0.08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--night);
  background: linear-gradient(135deg, var(--aqua), var(--lime));
  font-size: 0.78rem;
}

.brand-name span {
  color: var(--teal);
}

.brand.inverse {
  color: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link,
.nav-button {
  border: 0;
  background: transparent;
  color: #263640;
  padding: 12px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: var(--soft);
  color: var(--teal);
}

.nav-group {
  position: relative;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.subnav {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 250px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group:hover .subnav,
.nav-group:focus-within .subnav,
.nav-button[aria-expanded="true"] + .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subnav a {
  display: block;
  padding: 10px 11px;
  color: #24343d;
  border-radius: 6px;
}

.subnav a:hover,
.subnav a:focus-visible {
  color: var(--teal);
  background: var(--soft);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 17px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button-primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--aqua), var(--lime));
  box-shadow: 0 12px 28px rgba(31, 104, 255, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:not(.dark) {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.button-secondary.dark {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78svh;
  background: linear-gradient(135deg, var(--night) 0%, var(--deep) 62%, #0b1417 100%);
  color: var(--paper);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.75) 48%, transparent 100%);
}

.hero-inner {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 58px 0 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-section .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.eyebrow,
.button,
.nav-link,
.nav-button,
.header-cta {
  font-family: var(--font-display);
}

h1 {
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 1.03;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-lead,
.page-hero-copy p,
.section-title p,
.cta-inner p,
.contact-copy p,
.editorial-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-lead {
  max-width: 640px;
  color: #d8e5e2;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #eaf8f5;
  background: rgba(255, 255, 255, 0.08);
}

.hero-points svg {
  color: var(--lime);
}

.hero-visual {
  position: absolute;
  right: -24px;
  top: 50%;
  width: 500px;
  height: 520px;
  transform: translateY(-50%);
  opacity: 0.98;
}

.mockup-shell,
.server-card,
.phone-card,
.mini-dashboard {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
}

.mockup-shell {
  position: absolute;
  right: 20px;
  top: 58px;
  width: 420px;
  padding: 16px;
}

.mockup-topbar,
.mini-head {
  display: flex;
  gap: 7px;
  padding-bottom: 14px;
}

.mockup-topbar span,
.mini-head span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aqua);
}

.mockup-topbar span:nth-child(2),
.mini-head span:nth-child(2) {
  background: var(--lime);
}

.mockup-topbar span:nth-child(3),
.mini-head span:nth-child(3) {
  background: var(--coral);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
}

.mockup-panel {
  min-height: 138px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 16, 25, 0.44);
}

.mockup-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.65rem;
}

.panel-wide {
  grid-column: span 2;
}

.panel-label {
  color: #b9cbc7;
  font-size: 0.82rem;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  height: 52px;
  gap: 8px;
  margin-top: 18px;
}

.mini-bars i {
  display: block;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--aqua), var(--lime));
}

.mini-bars i:nth-child(1) {
  height: 36%;
}

.mini-bars i:nth-child(2) {
  height: 70%;
}

.mini-bars i:nth-child(3) {
  height: 52%;
}

.mini-bars i:nth-child(4) {
  height: 88%;
}

.mini-bars i:nth-child(5) {
  height: 62%;
}

.shield-chip {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: 20px;
  border-radius: var(--radius);
  color: var(--lime);
  background: rgba(91, 215, 255, 0.1);
}

.shield-chip svg {
  width: 28px;
  height: 28px;
}

.social-dots {
  display: flex;
  gap: 9px;
  margin-top: 23px;
}

.social-dots i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--aqua);
}

.social-dots i:nth-child(2) {
  background: var(--lime);
}

.social-dots i:nth-child(3) {
  background: var(--coral);
}

.timeline {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 96px;
}

.timeline span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.timeline span:nth-child(1) {
  width: 82%;
}

.timeline span:nth-child(2) {
  width: 58%;
}

.timeline span:nth-child(3) {
  width: 72%;
  background: linear-gradient(90deg, var(--aqua), rgba(91, 215, 255, 0.4));
}

.server-card {
  position: absolute;
  left: 0;
  bottom: 88px;
  width: 190px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.server-card span {
  display: block;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--aqua);
}

.server-card span:nth-child(2) {
  border-left-color: var(--lime);
}

.server-card span:nth-child(3) {
  border-left-color: var(--coral);
}

.phone-card {
  position: absolute;
  right: 14px;
  bottom: 0;
  width: 150px;
  min-height: 230px;
  padding: 14px;
}

.phone-card span {
  display: block;
  width: 52px;
  height: 7px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.phone-card i {
  display: block;
  height: 64px;
  margin-top: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 92px 0;
}

.light-band {
  background: var(--soft);
}

#macro-aree {
  padding-top: 56px;
}

#macro-aree .section-title {
  opacity: 1;
  transform: none;
}

.section-title {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.macro-grid,
.services-grid,
.why-grid,
.partner-grid,
.portfolio-grid,
.feature-list,
.contact-grid,
.contact-page-grid,
.contact-only-grid,
.consultation-grid,
.editorial-grid {
  display: grid;
  gap: 18px;
}

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

.macro-card,
.service-card,
.why-item,
.portfolio-card,
.partner-logo,
.feature-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.macro-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.macro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--aqua);
}

.macro-card span {
  color: var(--teal);
  font-weight: 800;
}

.macro-icon,
.service-icon,
.why-check,
.feature-item > div {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--night);
  background: linear-gradient(135deg, var(--aqua), var(--lime));
}

.macro-icon svg,
.service-icon svg,
.why-check svg,
.feature-item > div svg {
  width: 26px;
  height: 26px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 800;
}

.card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.card-link:hover svg {
  transform: translateX(3px);
}

.services-section {
  background:
    linear-gradient(180deg, #fff 0%, rgba(244, 248, 247, 0.8) 100%);
}

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

.service-card {
  min-height: 278px;
  padding: 22px;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 255, 0.42);
  box-shadow: var(--shadow);
}

.service-card p,
.macro-card p,
.why-item p,
.feature-item p,
.portfolio-card p,
.portfolio-card dd {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

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

.why-item {
  padding: 24px;
}

.why-check {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
}

.voip-strip {
  padding: 0;
  background: var(--night);
  color: var(--paper);
}

.voip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 0;
}

.voip-inner h2 {
  margin-bottom: 8px;
}

.voip-inner p {
  max-width: 760px;
  color: #d8e5e2;
  margin-bottom: 0;
}

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

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

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 142px;
  padding: 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 1)),
    var(--paper);
}

.partner-logo strong {
  font-size: 1.2rem;
}

.partner-logo span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.portfolio-card {
  overflow: hidden;
}

.portfolio-thumb {
  min-height: 170px;
  padding: 18px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.84), rgba(31, 104, 255, 0.82)),
    var(--deep);
}

.portfolio-thumb span {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.portfolio-thumb div {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.portfolio-thumb i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.portfolio-thumb i:nth-child(1) {
  width: 82%;
}

.portfolio-thumb i:nth-child(2) {
  width: 58%;
}

.portfolio-thumb i:nth-child(3) {
  width: 70%;
}

.portfolio-body {
  padding: 22px;
}

.portfolio-client {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9rem;
}

.portfolio-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.portfolio-card dt {
  color: var(--ink);
  font-weight: 800;
}

.portfolio-card dd {
  margin: 3px 0 0;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page-hero {
  overflow: hidden;
  background: linear-gradient(135deg, var(--night), var(--deep));
  color: var(--paper);
}

.page-hero-inner {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: center;
  padding: 76px 0;
}

.page-hero-copy p {
  color: #d8e5e2;
}

.page-hero-copy {
  width: 100%;
}

.page-visual {
  display: flex;
  justify-content: flex-end;
}

.mini-dashboard {
  width: 360px;
  padding: 18px;
}

.mini-body {
  display: grid;
  gap: 12px;
}

.mini-stat,
.mini-line {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.mini-stat strong {
  display: block;
  color: var(--lime);
}

.mini-stat span {
  color: #d8e5e2;
}

.mini-stat.accent strong {
  color: var(--aqua);
}

.mini-line {
  display: grid;
  gap: 9px;
}

.mini-line i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-line i:nth-child(1) {
  width: 80%;
}

.mini-line i:nth-child(2) {
  width: 62%;
}

.mini-line i:nth-child(3) {
  width: 72%;
  background: linear-gradient(90deg, var(--aqua), var(--lime));
}

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

.feature-item {
  padding: 24px;
}

.editorial-grid {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
}

.editorial-copy {
  max-width: 760px;
}

.cta-section {
  padding: 78px 0;
  color: var(--paper);
  background: linear-gradient(135deg, var(--night), #142923);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner > div:first-child {
  max-width: 760px;
}

.cta-inner p {
  color: #d8e5e2;
}

.contact-section,
.contact-page,
.map-section {
  background: var(--soft);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 34px;
}

.contact-page-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
}

.contact-only-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
}

.contact-only-grid > div:first-child,
.consultation-copy {
  padding: 30px;
  border: 1px solid rgba(20, 40, 184, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(0, 184, 255, 0.1), transparent 16rem),
    #fff;
  box-shadow: var(--shadow-soft);
}

.contact-map-panel {
  min-height: 100%;
}

.contact-map-panel .map-wrap {
  height: 100%;
  min-height: 420px;
}

.contact-map-panel iframe {
  height: 100%;
  min-height: 420px;
}

.consultation-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.consultation-copy .eyebrow {
  color: var(--blue);
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-cards a,
.contact-cards > span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-cards svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex: 0 0 auto;
}

.contact-cards strong,
.contact-cards small {
  display: block;
}

.contact-cards small {
  color: var(--muted);
}

.contact-panel {
  padding: 24px;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #273942;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9d8d5;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 104, 255, 0.13);
}

.privacy-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 750;
}

.map-wrap {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--paper);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.home-map {
  margin-top: 34px;
}

.contact-map-panel .map-wrap,
.contact-map-panel .map-wrap iframe {
  height: 100%;
  min-height: 420px;
}

.narrow-copy {
  max-width: 780px;
}

.site-footer {
  color: #d8e5e2;
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0 34px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 9px;
  color: #d8e5e2;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

/* Brand-led redesign: electric blue, circuit cuts and operational nodes. */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 184, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 46%, #f9fbff 100%);
}

.site-header {
  background: rgba(5, 8, 35, 0.9);
  border-bottom: 1px solid rgba(0, 184, 255, 0.28);
  box-shadow: 0 18px 44px rgba(4, 8, 38, 0.2);
}

.site-header.is-scrolled {
  background: rgba(5, 8, 35, 0.96);
  box-shadow: 0 20px 48px rgba(4, 8, 38, 0.28);
}

.header-inner {
  min-height: 76px;
}

.brand {
  min-width: 210px;
  color: #fff;
}

.brand-logo-crop {
  position: relative;
  display: block;
  width: 216px;
  height: 66px;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 216px;
  max-width: 100%;
  height: auto;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 16px rgba(0, 184, 255, 0.28));
}

.brand.inverse .brand-logo-crop {
  width: 238px;
  height: 72px;
}

.brand.inverse .brand-logo {
  width: 238px;
}

.nav-link,
.nav-button {
  color: #dce8ff;
  background: transparent;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.18), rgba(31, 104, 255, 0.12));
  box-shadow: inset 0 0 0 1px rgba(0, 184, 255, 0.22);
}

.subnav {
  background: rgba(8, 14, 48, 0.97);
  border-color: rgba(0, 184, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.subnav a {
  color: #dce8ff;
}

.subnav a:hover,
.subnav a:focus-visible {
  color: #fff;
  background: rgba(0, 184, 255, 0.14);
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #00c8ff 0%, #1f68ff 48%, var(--violet) 100%);
  box-shadow:
    0 16px 34px rgba(0, 184, 255, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.button-secondary:not(.dark) {
  color: #081139;
  border-color: rgba(20, 40, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.hero {
  isolation: isolate;
  min-height: 76svh;
  background:
    radial-gradient(ellipse at 82% 30%, rgba(0, 200, 255, 0.28), transparent 30rem),
    radial-gradient(ellipse at 26% 78%, rgba(139, 50, 255, 0.28), transparent 34rem),
    radial-gradient(ellipse at 55% 10%, rgba(31, 104, 255, 0.2), transparent 34rem),
    linear-gradient(135deg, #03051b 0%, #08104a 46%, #030617 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 72% 40%, rgba(91, 215, 255, 0.12), transparent 38%),
    radial-gradient(ellipse at 15% 85%, rgba(139, 50, 255, 0.18), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -16%;
  top: 8%;
  z-index: 0;
  width: 62%;
  height: 78%;
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.14), rgba(139, 50, 255, 0.08)),
    rgba(255, 255, 255, 0.02);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  border: 1px solid rgba(91, 215, 255, 0.16);
  border-radius: 48px;
  opacity: 0.55;
  transform: rotate(-7deg);
  box-shadow: 0 0 90px rgba(0, 184, 255, 0.08);
}

.hero-pattern {
  display: none;
}

.hero-inner {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: 48px;
  min-height: 68svh;
  padding: 50px 0 38px;
}

.hero-copy {
  max-width: 760px;
}

.hero .eyebrow {
  color: #5bd7ff;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.2vw, 4.5rem);
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  color: #d7e7ff;
  font-size: 1.12rem;
}

.hero-points span {
  border-color: rgba(0, 184, 255, 0.25);
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.12), rgba(31, 104, 255, 0.08));
}

.hero-points svg {
  color: #5bd7ff;
}

.hero-visual.brand-lab {
  position: relative;
  right: auto;
  top: auto;
  width: min(100%, 474px);
  height: 474px;
  transform: none;
  opacity: 1;
  margin-left: auto;
}

.brand-lab::before,
.brand-lab::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(0, 184, 255, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 46px rgba(0, 184, 255, 0.08);
}

.brand-lab::after {
  inset: 23%;
  border-style: dashed;
  opacity: 0.72;
}

.lab-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-a {
  inset: 0;
  background: conic-gradient(from 20deg, transparent 0 16%, #00c8ff 16% 19%, transparent 19% 48%, #1f68ff 48% 53%, transparent 53% 75%, var(--violet) 75% 78%, transparent 78% 100%);
  filter: drop-shadow(0 0 24px rgba(0, 184, 255, 0.34));
  mask: radial-gradient(circle, transparent 0 65%, #000 66% 70%, transparent 71%);
}

.ring-b {
  inset: 14%;
  background: conic-gradient(from 180deg, #00c8ff, transparent 24%, #1f68ff 42%, transparent 64%, var(--violet) 74%, #5bd7ff);
  opacity: 0.55;
  mask: radial-gradient(circle, transparent 0 63%, #000 64% 67%, transparent 68%);
}

.lab-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
  padding: 22px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 32% 24%, rgba(0, 200, 255, 0.36), transparent 34%),
    linear-gradient(145deg, rgba(5, 8, 35, 0.92), rgba(18, 0, 117, 0.74) 66%, rgba(139, 50, 255, 0.36));
  border: 1px solid rgba(91, 215, 255, 0.44);
  box-shadow:
    0 0 64px rgba(0, 184, 255, 0.22),
    inset 0 0 34px rgba(0, 184, 255, 0.15);
}

.lab-core strong,
.lab-core span {
  display: block;
}

.lab-core strong {
  font-size: 0.84rem;
}

.lab-core span {
  color: #b9d7ff;
  font-size: 0.78rem;
}

.lab-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(91, 215, 255, 0.38);
  border-radius: 999px;
  background: rgba(8, 14, 48, 0.78);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.lab-node svg {
  color: #5bd7ff;
  width: 22px;
  height: 22px;
}

.node-security {
  left: 6%;
  top: 18%;
}

.node-network {
  right: 3%;
  top: 26%;
}

.node-web {
  left: 11%;
  bottom: 18%;
}

.node-social {
  right: 9%;
  bottom: 12%;
}

.data-strip {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 138px;
}

.data-strip i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00c8ff, #1f68ff 72%, transparent);
}

.strip-one {
  left: 0;
  top: 48%;
}

.strip-two {
  right: 0;
  top: 58%;
}

.strip-two i {
  background: linear-gradient(90deg, transparent, #1f68ff, #00c8ff);
}

.section {
  position: relative;
}

#macro-aree,
.partner-section,
.contact-section,
.contact-page,
.map-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(234, 241, 255, 0.86)),
    var(--soft);
}

.macro-grid {
  gap: 22px;
}

.macro-card {
  overflow: hidden;
  min-height: 320px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.18), rgba(31, 104, 255, 0.1)),
    linear-gradient(145deg, #07103e 0%, #101a74 58%, #070b28 100%);
  border-color: rgba(0, 184, 255, 0.28);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.macro-card::before {
  inset: auto 0 0;
  height: 4px;
  border: 0;
  background: linear-gradient(90deg, #00c8ff, #1f68ff, var(--violet), transparent);
}

.macro-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(91, 215, 255, 0.24);
  border-radius: 50%;
}

.macro-card span,
.portfolio-client {
  color: #5bd7ff;
}

.macro-card p,
.macro-card h3,
.macro-card .card-link {
  position: relative;
}

.macro-card p {
  color: #d7e7ff;
}

.macro-card h3 {
  color: #fff;
  font-size: 1.55rem;
}

.macro-icon,
.service-icon,
.why-check,
.feature-item > div {
  color: #fff;
  background: linear-gradient(135deg, #00c8ff, #1f68ff 62%, var(--violet-deep));
  box-shadow: 0 14px 30px rgba(31, 104, 255, 0.24);
}

.services-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 184, 255, 0.14), transparent 28rem),
    linear-gradient(180deg, #050823 0%, #081344 100%);
  color: #fff;
}

.services-section .section-title p {
  color: #c9dcff;
}

.services-section .eyebrow {
  color: #5bd7ff;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 46px;
  gap: 18px;
  align-items: center;
  min-height: 136px;
  padding: 22px 22px 22px 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.12), rgba(31, 104, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(91, 215, 255, 0.24);
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.service-card::before {
  content: attr(data-service-number);
  position: absolute;
  right: 66px;
  top: 16px;
  color: rgba(91, 215, 255, 0.22);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00c8ff, #1f68ff);
}

.service-card:nth-child(3n)::after {
  background: linear-gradient(180deg, #00c8ff, var(--violet));
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 215, 255, 0.56);
  box-shadow: 0 20px 58px rgba(0, 184, 255, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0;
  background: rgba(0, 184, 255, 0.1);
  border: 1px solid rgba(91, 215, 255, 0.28);
}

.service-card h3,
.service-card p {
  position: relative;
}

.service-card h3 {
  margin-bottom: 4px;
  color: #fff;
}

.service-card p {
  margin-bottom: 0;
  color: #c9dcff;
}

.service-card .card-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(91, 215, 255, 0.28);
  border-radius: 50%;
  color: #5bd7ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0;
}

.service-card .card-link svg {
  width: 20px;
  height: 20px;
}

.split-section {
  align-items: center;
}

.why-item,
.feature-item,
.contact-panel,
.portfolio-card,
.partner-logo {
  border-color: rgba(20, 40, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.voip-strip {
  background:
    linear-gradient(90deg, #050823, #111a6c 48%, #050823),
    var(--night);
}

.partner-logo {
  align-content: center;
  gap: 10px;
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.08), rgba(139, 50, 255, 0.05)),
    #fff;
}

.partner-mark {
  display: inline-grid;
  place-items: center;
  width: min(100%, 178px);
  min-height: 76px;
  padding: 10px 16px;
  color: #06103c;
  border: 1px solid rgba(20, 40, 184, 0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.partner-mark.real-logo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 184, 255, 0.08), transparent 72%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.partner-mark.real-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.partner-mark.real-logo img {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 148px;
  max-height: 56px;
  object-fit: contain;
}

.partner-mark.threecx,
.partner-mark.sophos,
.partner-mark.webex {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 184, 255, 0.18), transparent 48%),
    linear-gradient(145deg, #03051b, #071044 72%, #050823);
  border-color: rgba(91, 215, 255, 0.18);
}

.partner-mark.threecx img {
  max-width: 136px;
  max-height: 48px;
}

.partner-mark.webex img {
  max-width: 150px;
  max-height: 48px;
}

.partner-mark.cisco img {
  max-width: 140px;
  max-height: 62px;
}

.partner-mark.meraki img {
  max-width: 150px;
  max-height: 64px;
}

.partner-mark.aruba img {
  max-width: 154px;
  max-height: 54px;
}

.partner-mark.fortinet img,
.partner-mark.sophos img,
.partner-mark.ekahau img {
  max-width: 146px;
  max-height: 54px;
}

.partner-svg {
  display: block;
  width: 146px;
  height: 54px;
  color: #0b58a7;
  overflow: visible;
}

.partner-svg text {
  fill: currentColor;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.partner-svg path,
.partner-svg circle,
.partner-svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-svg rect {
  rx: 2;
}

.partner-mark strong {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  line-height: 1;
}

.partner-mark.threecx .partner-svg {
  color: #0b9bd8;
}

.partner-mark.threecx .logo-three,
.partner-mark.threecx .logo-x {
  font-size: 42px;
  fill: #0b9bd8;
}

.partner-mark.threecx .logo-c {
  fill: #fff;
  font-size: 24px;
}

.partner-mark.threecx circle {
  fill: #2b2f35;
  stroke: #d9f5ff;
  stroke-width: 3;
}

.partner-mark.cisco .partner-svg {
  color: #005073;
}

.partner-mark.meraki .partner-svg,
.partner-mark.webex .partner-svg {
  color: #00a6b4;
}

.partner-mark.aruba .partner-svg {
  color: #f26b21;
}

.partner-mark.fortinet .partner-svg {
  color: #cf1f2e;
}

.partner-mark.fortinet rect {
  fill: currentColor;
  stroke: currentColor;
}

.partner-mark.sophos .partner-svg {
  color: #0d5cab;
}

.partner-mark.sophos rect {
  fill: #0d5cab;
  stroke: #0d5cab;
}

.partner-mark.sophos text {
  fill: #fff;
  font-size: 18px;
}

.partner-mark.ekahau .partner-svg {
  color: var(--violet-deep);
}

.partner-logo small {
  color: var(--violet-deep);
  font-weight: 800;
}

.portfolio-thumb {
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.82), rgba(18, 0, 117, 0.86)),
    #06103c;
}

.page-hero {
  background:
    radial-gradient(circle at 84% 36%, rgba(0, 184, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, #050823, #111a6c 58%, #050823);
}

.page-hero-inner {
  min-height: 420px;
}

.mini-dashboard {
  background:
    radial-gradient(circle at 26% 20%, rgba(0, 200, 255, 0.3), transparent 34%),
    rgba(5, 8, 35, 0.72);
  border-color: rgba(91, 215, 255, 0.3);
}

.cta-section {
  background:
    linear-gradient(120deg, rgba(0, 184, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #050823, #111a6c);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31, 104, 255, 0.14);
}

.form-status,
.contact-cards svg,
.card-link {
  color: var(--blue);
}

.site-footer {
  background:
    linear-gradient(135deg, #050823, #091457 56%, #050823);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.25rem;
  }

  .hero-visual {
    right: -150px;
    opacity: 0.7;
  }

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

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .site-nav {
    position: fixed;
    inset: 66px 14px auto 14px;
    display: none;
    max-height: calc(100svh - 86px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-left: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .nav-link,
  .nav-button {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .subnav {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-group:hover .subnav,
  .nav-group:focus-within .subnav {
    display: block;
  }

  .nav-button[aria-expanded="true"] + .subnav {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 0 52px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 520px);
    height: 360px;
    margin: 30px auto 0;
    transform: none;
    opacity: 1;
  }

  .mockup-shell {
    right: 22px;
    top: 0;
    width: min(100%, 390px);
  }

  .server-card {
    bottom: 16px;
  }

  .phone-card {
    bottom: 8px;
  }

  .macro-grid,
  .split-section,
  .contact-grid,
  .contact-page-grid,
  .contact-only-grid,
  .consultation-grid,
  .editorial-grid,
  .page-hero-inner,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .voip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-inner {
    min-height: auto;
    padding: 62px 0;
  }

  .page-visual {
    justify-content: flex-start;
  }

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

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .brand-name {
    max-width: 154px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 2.06rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero-inner {
    padding: 44px 0 24px;
  }

  .actions {
    width: 100%;
    max-width: min(calc(100vw - 28px), 362px);
  }

  .actions .button {
    width: 100%;
    flex: 0 0 100%;
  }

  .hero-points span {
    width: 100%;
  }

  .hero-points {
    display: none;
  }

  .hero-visual {
    width: min(calc(100vw - 28px), 362px);
    max-width: 100%;
    height: 168px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-copy,
  .page-hero-copy {
    width: min(calc(100vw - 28px), 362px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .mockup-shell {
    left: 0;
    right: auto;
    width: calc(100% / 0.68);
    transform: scale(0.68);
    transform-origin: top left;
  }

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

  .mockup-panel {
    min-height: 104px;
    padding: 12px;
  }

  .mockup-panel strong {
    font-size: 1.22rem;
  }

  .server-card {
    display: none;
  }

  .phone-card {
    display: none;
  }

  .services-grid,
  .why-grid,
  .partner-grid,
  .portfolio-grid,
  .portfolio-grid.large,
  .feature-list,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .mini-dashboard {
    width: 100%;
  }

  .contact-panel {
    padding: 18px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 330px;
    height: 330px;
  }

  .contact-map-panel .map-wrap,
  .contact-map-panel .map-wrap iframe {
    min-height: 330px;
    height: 330px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  }

  .hero-visual.brand-lab {
    width: 420px;
    height: 420px;
  }

  .service-card::before {
    right: 58px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-crop {
    width: 176px;
    height: 54px;
  }

  .brand-logo {
    width: 176px;
  }

  .site-nav {
    background: rgba(5, 8, 35, 0.98);
    border-color: rgba(0, 184, 255, 0.28);
  }

  .menu-toggle {
    border-color: rgba(91, 215, 255, 0.34);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 56px 0 34px;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 7.1vw, 3.15rem);
  }

  .hero-visual.brand-lab {
    width: min(100%, 390px);
    height: 390px;
    margin: 0;
  }

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

@media (max-width: 640px) {
  .brand-logo-crop {
    width: 146px;
    height: 46px;
  }

  .brand-logo {
    width: 146px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 34px 0 18px;
  }

  .hero h1 {
    font-size: 1.86rem;
    line-height: 1.07;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-visual.brand-lab {
    width: min(100%, 330px);
    height: 184px;
    overflow: hidden;
  }

  .brand-lab::before {
    inset: 4%;
  }

  .brand-lab::after,
  .ring-b,
  .data-strip {
    display: none;
  }

  .ring-a {
    inset: -10%;
  }

  .lab-core {
    width: 112px;
    height: 112px;
    padding: 14px;
  }

  .lab-core strong {
    font-size: 0.72rem;
  }

  .lab-core span {
    font-size: 0.7rem;
  }

  .lab-node {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .node-security {
    left: 0;
    top: 8%;
  }

  .node-network {
    right: 0;
    top: 15%;
  }

  .node-web {
    left: 3%;
    bottom: 14%;
  }

  .node-social {
    right: 0;
    bottom: 8%;
  }

  .macro-card {
    min-height: auto;
    padding: 26px;
  }

  .service-card {
    grid-template-columns: 48px minmax(0, 1fr) 38px;
    gap: 13px;
    min-height: 128px;
    padding: 18px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-card::before {
    right: 50px;
    top: 12px;
    font-size: 1.85rem;
  }

  .service-card .card-link {
    width: 36px;
    height: 36px;
  }
}
