@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --neon: #2e7dff;
  --neon-bright: #4f96ff;
  --neon-dim: rgba(46, 125, 255, 0.45);
  --primary: #2e7dff;
  --primary-light: #7eb8ff;
  --primary-dark: #1a5fd9;
  --primary-glow: rgba(46, 125, 255, 0.35);
  --accent: #6eb0ff;
  --bg-dark: #050a14;
  --bg-deep: #000511;
  --bg-soft: #0c1828;
  --surface: rgba(8, 20, 45, 0.55);
  --surface-strong: rgba(12, 32, 64, 0.65);
  --surface-border: rgba(46, 125, 255, 0.28);
  --surface-border-strong: rgba(46, 125, 255, 0.5);
  --text-main: #f2f6ff;
  --text-soft: #b8c9e8;
  --text-muted: #7a8fb0;
  --success: #2ee6a8;
  --warning: #ffb454;
  --danger: #ff6b7d;
  --shadow-xl: 0 20px 56px rgba(0, 8, 24, 0.45);
  --shadow-lg: 0 12px 40px rgba(0, 12, 32, 0.35);
  --shadow-md: 0 8px 28px rgba(0, 10, 28, 0.28);
  --shadow-neon: 0 0 32px rgba(46, 125, 255, 0.22);
  --shadow-inset-glass: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --radius-xl: 5px;
  --radius-lg: 5px;
  --radius-md: 5px;
  --radius-sm: 5px;
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Mono', 'JetBrains Mono', monospace;
  --font-mono: 'JetBrains Mono', 'Space Mono', monospace;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #0e1626;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

p {
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

/* Prevent overflow without breaking normal words awkwardly */
h1,
h2,
h3,
h4,
p,
li,
td,
th,
.eyebrow,
.meta-pill,
.status-pill {
  overflow-wrap: break-word;
  word-break: normal;
}

.btn {
  overflow-wrap: normal;
  word-break: normal;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 12px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 14px 14px;
  z-index: 1100;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Let grid/flex children shrink instead of overflowing */
.container > *,
.hero-grid > *,
.page-hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.pricing-grid > *,
.testimonial-grid > *,
.locations-grid > *,
.tools-grid > *,
.status-grid > *,
.footer-grid > *,
.article-layout > *,
.contact-grid > * {
  min-width: 0;
}

.section {
  padding: 96px 0 112px;
  position: relative;
}

/* Sections sit on the same atmospheric bg — no separate “stripes” */
main > .section:nth-child(even) {
  background: transparent;
  border: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(46, 125, 255, 0.35);
  background: rgba(0, 12, 32, 0.65);
  color: var(--neon-bright);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(46, 125, 255, 0.06);
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 16px var(--primary-glow);
}

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: 52px;
}

.section-head.center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: center;
  justify-items: center;
}

.section-head h2,
.page-hero h1,
.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4.9rem);
  line-height: 1.06;
  text-wrap: balance;
}

.section-head p,
.hero-copy p,
.page-hero p {
  max-width: 760px;
  font-size: 1.04rem;
  text-wrap: pretty;
}

.text-gradient {
  background: linear-gradient(125deg, #ffffff 0%, #8ec5ff 35%, var(--neon) 70%, #1a5fd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-neon {
  color: var(--neon-bright);
  text-shadow: 0 0 28px var(--neon-dim), 0 0 60px rgba(46, 125, 255, 0.15);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  text-align: center;
  white-space: normal;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition), filter var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  border: none;
  background: linear-gradient(145deg, var(--neon-bright) 0%, var(--primary) 45%, var(--primary-dark) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  box-shadow: var(--shadow-neon), 0 12px 36px rgba(46, 125, 255, 0.25), var(--shadow-inset-glass);
  filter: saturate(1.05);
}

.btn-primary:hover {
  filter: brightness(1.08) saturate(1.1);
  box-shadow: 0 0 36px rgba(46, 125, 255, 0.35), 0 14px 40px rgba(46, 125, 255, 0.2), var(--shadow-inset-glass);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--neon-bright);
  outline-offset: 3px;
}

.btn-secondary {
  border: 1px solid rgba(46, 125, 255, 0.45);
  background: rgba(0, 5, 20, 0.45);
  color: var(--text-main);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(46, 125, 255, 0.75);
  background: rgba(46, 125, 255, 0.08);
}

.btn-secondary:focus-visible {
  outline: 2px solid rgba(127, 200, 255, 0.6);
  outline-offset: 3px;
}

.btn-ghost {
  border: 1px solid transparent;
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  /* Same palette as body — merged, not a separate dark slab */
  background: linear-gradient(
    180deg,
    rgba(19, 29, 50, 0.82) 0%,
    rgba(14, 22, 38, 0.76) 100%
  );
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  border-bottom: 1px solid rgba(46, 125, 255, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(17, 26, 44, 0.94) 0%,
    rgba(11, 18, 31, 0.92) 100%
  );
  border-bottom-color: rgba(46, 125, 255, 0.2);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 28px);
  padding: 14px 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .site-nav {
  padding: 12px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  border-radius: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-brand:hover {
  opacity: 0.92;
}

.nav-brand:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 4px;
}

.nav-brand img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(4px, 1.2vw, 18px);
  color: var(--text-soft);
  min-width: 0;
}

.nav-item {
  position: relative;
}

.nav-link-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.88;
  transition: opacity 0.18s ease, color 0.18s ease;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 6px;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover .nav-link-icon {
  opacity: 1;
  color: var(--neon-bright);
}

.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a[aria-current="page"] .nav-link-icon {
  opacity: 1;
  color: var(--neon-bright);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(46, 125, 255, 0.28);
  background: rgba(8, 20, 44, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 1200;
}

.nav-dropdown a {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 10px 12px;
  border: 1px solid transparent;
  color: var(--text-soft);
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: #fff;
  border-color: rgba(46, 125, 255, 0.34);
  background: rgba(46, 125, 255, 0.1);
  outline: none;
}

.nav-item--has-menu:hover > .nav-dropdown,
.nav-item--has-menu:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a:focus-visible {
  outline: none;
  color: var(--text-main);
}

.nav-links a:focus-visible::after {
  transform: scaleX(1);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.35);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-client-area {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.btn-client-area .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-nav .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.site-nav .btn-client-area {
  padding: 0 22px 0 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(20, 90, 180, 0.18);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid rgba(125, 182, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(125, 182, 255, 0.35);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 140, 255, 0.45);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle svg path {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] svg path:nth-of-type(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] svg path:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] svg path:nth-of-type(3) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle svg path {
    transition: none;
  }
}

.mobile-panel {
  display: none;
}

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

.hero.hero--cyber .hero-copy .hero-title-cyber {
  margin: 0;
}

.hero-title-cyber__line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.12;
  color: #fff;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-title-cyber__accent {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-bright);
  text-shadow: 0 0 40px var(--neon-dim);
  overflow-wrap: break-word;
  word-break: normal;
}

.hero.hero--cyber .hero-copy > p {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 560px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 32, 52, 0.35) 0%, rgba(10, 28, 48, 0.55) 50%, rgba(10, 26, 44, 0.82) 100%),
    url('../assets/images/background_with_servers.jpg') center/cover no-repeat;
  opacity: 0.58;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 700px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.metric-chip,
.glass-card,
.service-card,
.feature-card,
.pricing-card,
.testimonial-card,
.location-card,
.tool-card,
.status-card,
.contact-card,
.content-card {
  border: 1px solid rgba(46, 125, 255, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    165deg,
    rgba(8, 24, 56, 0.55) 0%,
    rgba(4, 12, 32, 0.45) 50%,
    rgba(0, 8, 24, 0.5) 100%
  );
  box-shadow: var(--shadow-inset-glass), 0 0 0 1px rgba(0, 0, 0, 0.35), var(--shadow-md);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.metric-chip {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition);
}

.metric-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 200, 255, 0.28);
}

.metric-chip strong,
.stat-value {
  display: block;
  font-size: 1.8rem;
  color: var(--text-main);
}

.metric-chip span,
.stat-label {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-orbit {
  position: absolute;
  inset: 5% 8%;
  border-radius: 50%;
  border: 1px solid rgba(104, 182, 255, 0.14);
  animation: spin 28s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  width: 14px;
  height: 14px;
  top: 14%;
  left: 12%;
  background: var(--neon-bright);
  box-shadow: 0 0 20px rgba(46, 125, 255, 0.7);
}

.hero-orbit::after {
  width: 10px;
  height: 10px;
  right: 16%;
  bottom: 18%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.hero-panel {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.hero-panel img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 125, 255, 0.2);
  box-shadow: 0 0 40px rgba(46, 125, 255, 0.08);
}

/* Make homepage hero feel more "premium" (scoped only to cyber hero) */
.hero.hero--cyber {
  min-height: 640px;
}

.hero.hero--cyber .hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 36px;
}

.hero.hero--cyber .metric-chip,
.hero.hero--cyber .floating-badge,
.hero.hero--cyber .hero-panel {
  border-color: rgba(46, 125, 255, 0.18);
  background: linear-gradient(
    165deg,
    rgba(8, 24, 56, 0.52) 0%,
    rgba(4, 12, 32, 0.42) 55%,
    rgba(0, 8, 24, 0.42) 100%
  );
}

.hero.hero--cyber .hero-panel {
  padding: 28px;
  box-shadow:
    var(--shadow-inset-glass),
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 0 46px rgba(46, 125, 255, 0.14),
    var(--shadow-lg);
}

.hero.hero--cyber .hero-panel img {
  border-color: rgba(46, 125, 255, 0.12);
  box-shadow: 0 0 54px rgba(46, 125, 255, 0.18);
}

.hero.hero--cyber .floating-badge {
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    var(--shadow-inset-glass),
    0 0 28px rgba(46, 125, 255, 0.12);
}

.hero.hero--cyber .floating-badge strong {
  color: var(--neon-bright);
}

/* Hide overlapping background badge text behind right-side cards */
.hero.hero--cyber .floating-badge {
  display: none;
}

.floating-badge {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
}

.floating-badge strong {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-bright);
}

.floating-badge span {
  font-size: 0.95rem;
  color: var(--text-main);
}

.floating-badge.top {
  right: -24px;
  top: 22px;
}

.floating-badge.bottom {
  left: -24px;
  bottom: 24px;
}

.logo-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 42px;
  padding: 10px 0;
}

.logo-strip::before,
.logo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 1;
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, #0f1728 0%, rgba(15, 23, 40, 0) 100%);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, #0f1728 0%, rgba(15, 23, 40, 0) 100%);
}

.logo-strip-track {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  width: max-content;
  animation: logo-ticker 26s linear infinite reverse;
}

.logo-strip img {
  height: clamp(24px, 2.7vw, 38px);
  width: auto;
  opacity: 0.7;
  filter: grayscale(1) brightness(1.2);
}

@keyframes logo-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-strip-track {
    animation: none;
  }
}

/* Right-side vertical brand/page label */
.page-vertical-label {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  pointer-events: none;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.15vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.95);
  text-shadow:
    0 0 14px rgba(46, 125, 255, 0.35),
    0 0 34px rgba(46, 125, 255, 0.18);
}

.page-vertical-label::before {
  content: '';
  position: absolute;
  left: -12px;
  top: -10px;
  bottom: -10px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(126, 184, 255, 0.9) 0%,
    rgba(46, 125, 255, 0.15) 45%,
    rgba(126, 184, 255, 0.45) 100%
  );
  box-shadow: 0 0 18px rgba(46, 125, 255, 0.35);
}

.page-vertical-label span {
  line-height: 1;
}

@media (max-width: 680px) {
  .page-vertical-label {
    display: none;
  }
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.service-card,
.feature-card,
.pricing-card,
.testimonial-card,
.location-card,
.tool-card,
.status-card,
.contact-card,
.content-card,
.glass-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stack-lg {
  display: grid;
  gap: 24px;
}

.stack-md {
  display: grid;
  gap: 18px;
}

.service-card:hover,
.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.location-card:hover,
.tool-card:hover,
.status-card:hover,
.contact-card:hover,
.content-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 125, 255, 0.55);
  box-shadow: var(--shadow-inset-glass), 0 0 28px rgba(46, 125, 255, 0.12), var(--shadow-lg);
}

.icon-bare {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* Brand blue (#2e7dff) for white SVG icons (img) */
.icon-bare--neon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(2000%) hue-rotate(200deg) brightness(1.05)
      contrast(1.05)
    drop-shadow(0 0 10px rgba(46, 125, 255, 0.35));
}

.service-card {
  display: grid;
  gap: 18px;
}

.service-card h3,
.feature-card h3,
.pricing-card h3,
.testimonial-card h3,
.location-card h3,
.tool-card h3,
.status-card h3,
.contact-card h3 {
  font-size: 1.35rem;
}

.pill-list,
.check-list,
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li,
.inline-list li {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125, 182, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.check-list {
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
}

.check-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 0 18px var(--primary-glow);
}

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

.pricing-card {
  position: relative;
  display: grid;
  gap: 20px;
}

.pricing-card.featured {
  border-color: rgba(46, 125, 255, 0.65);
  background: linear-gradient(180deg, rgba(46, 125, 255, 0.12), rgba(8, 20, 48, 0.55));
  box-shadow: var(--shadow-inset-glass), 0 0 36px rgba(46, 125, 255, 0.15);
}

.card-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(46, 125, 255, 0.12);
  border: 1px solid rgba(46, 125, 255, 0.35);
  color: var(--neon-bright);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-family: var(--font-heading);
}

.price strong {
  font-size: 3rem;
}

.price span {
  color: var(--text-muted);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.comparison-table td {
  color: var(--text-soft);
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 24px;
  align-items: start;
}

.article-card {
  display: grid;
  gap: 24px;
}

.article-section {
  display: grid;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.article-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-section h2 {
  font-size: 1.4rem;
}

.article-section h3 {
  font-size: 1.1rem;
  color: var(--text-main);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 182, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

.article-list li {
  display: flex;
  gap: 12px;
  color: var(--text-soft);
}

.article-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 0 14px var(--primary-glow);
}

.resource-card {
  display: grid;
  gap: 16px;
}

.resource-card p {
  font-size: 0.96rem;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.84rem;
}

.sidebar-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.mini-stat {
  display: grid;
  gap: 6px;
}

.mini-stat strong {
  font-size: 1.5rem;
  color: var(--text-main);
}

.stats-grid,
.testimonial-grid,
.locations-grid,
.tools-grid,
.contact-grid,
.status-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.stat-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 125, 255, 0.22);
  background: rgba(8, 20, 48, 0.4);
  text-align: center;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-soft);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(104, 182, 255, 0.18), rgba(0, 123, 255, 0.28));
  color: #fff;
  font-weight: 800;
}

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

.map-visual {
  position: relative;
}

.map-card img {
  width: 100%;
  opacity: 0.85;
}

.map-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 18, 38, 0.92);
  border: 1px solid rgba(46, 125, 255, 0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 10px));
  z-index: 2;
  box-shadow: 0 0 18px rgba(46, 125, 255, 0.2);
}

.map-point::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 10px;
  height: 10px;
  background: rgba(6, 18, 38, 0.92);
  border-right: 1px solid rgba(46, 125, 255, 0.35);
  border-bottom: 1px solid rgba(46, 125, 255, 0.35);
  transform: translateX(-50%) rotate(45deg);
}

.map-point::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-bright);
  box-shadow: 0 0 12px rgba(46, 125, 255, 0.8);
}

.map-point--amsterdam {
  left: 40.54%;
  top: 22.72%;
}

.map-point--frankfurt {
  left: 41.41%;
  top: 24.22%;
}

.location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.cta-panel {
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(46, 125, 255, 0.2), transparent 45%),
    linear-gradient(135deg, rgba(20, 70, 160, 0.35), rgba(0, 8, 24, 0.6));
  border: 1px solid rgba(46, 125, 255, 0.35);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(46, 125, 255, 0.1);
}

.hero.hero--cyber::before {
  background:
    linear-gradient(180deg, rgba(5, 12, 34, 0.7) 0%, rgba(4, 10, 28, 0.86) 100%),
    url('../assets/hero-bg.png') center/cover no-repeat;
  opacity: 0.94;
}

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

.hero.hero--cyber .hero-grid.hero-grid--simple {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  justify-items: center;
  gap: 0;
}

.hero.hero--cyber .hero-grid.hero-grid--simple .hero-copy {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.hero-grid--simple .hero-title-cyber__line {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.05em;
  text-transform: none;
}

.hero-grid--simple .hero-title-cyber__accent {
  font-family: var(--font-main);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--accent);
}

.hero-actions-simple {
  max-width: 460px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.home-product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.product-shortcut {
  display: grid;
  gap: 10px;
  min-height: 132px;
  align-content: start;
  text-align: left;
}

.product-shortcut img {
  width: 28px;
  height: 28px;
}

.product-shortcut strong {
  font-size: 1.2rem;
  line-height: 1.05;
}

.product-shortcut span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-soft);
}

.info-tile {
  justify-items: center;
  text-align: center;
}

.info-tile p {
  max-width: 32ch;
}

.home-copy-card,
.highlight-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.highlight-stack {
  display: grid;
  gap: 24px;
}

.ping-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 125, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.ping-pill strong {
  color: var(--text-main);
}

.ping-pill span {
  color: var(--text-soft);
  line-height: 1.5;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vat-note {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.support-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 125, 255, 0.26);
  background: linear-gradient(135deg, rgba(46, 125, 255, 0.12), rgba(8, 20, 48, 0.48));
}

.support-link-card strong {
  display: block;
  color: var(--text-main);
}

.support-link-card small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
}

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

.hero.hero--cyber .floating-badge {
  display: grid;
}

.site-footer {
  position: relative;
  padding: 88px 0 34px;
  margin-top: 28px;
  border-top: 1px solid rgba(46, 125, 255, 0.2);
  background:
    radial-gradient(circle at 14% 0%, rgba(46, 125, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(6, 18, 38, 0.84) 0%, rgba(5, 14, 30, 0.96) 50%, rgba(4, 10, 22, 1) 100%);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 125, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 125, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 34px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand img {
  width: 156px;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links h3 {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--text-main);
}

.footer-links a,
.footer-links li {
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #d9e9ff;
  transform: translateX(2px);
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(46, 125, 255, 0.25);
  background: rgba(14, 34, 62, 0.55);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(126, 184, 255, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(46, 125, 255, 0.22);
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(126, 184, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #90a4c7;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.page-hero {
  padding: 140px 0 88px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 0%, rgba(120, 190, 255, 0.14), transparent 62%);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.page-hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.page-hero-card img {
  width: 100%;
  border-radius: 20px;
}

/* Antiddos / PletX page */
.ddos-hero {
  padding-top: 96px;
}

.ddos-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.ddos-hero-copy {
  display: grid;
  gap: 22px;
}

.ddos-hero-visual {
  position: relative;
}

.ddos-logo-card {
  text-align: center;
}

.ddos-logo-card img {
  max-width: 220px;
  margin: 0 auto 18px;
  display: block;
}

.ddos-logo-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.ddos-sim-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.ddos-sim-stage {
  grid-column: span 2;
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 125, 255, 0.32);
  background: radial-gradient(circle at top left, rgba(79, 150, 255, 0.22), transparent 55%), rgba(4, 14, 32, 0.9);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.65);
}

.ddos-sim-stage h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ddos-sim-stage p {
  font-size: 0.94rem;
  color: var(--text-soft);
}

.ddos-sim-stage--attack {
  border-color: rgba(255, 105, 120, 0.6);
}

.ddos-sim-stage--servers {
  border-color: rgba(46, 215, 140, 0.65);
}

.ddos-sim-arrow {
  grid-column: span 1;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 150, 255, 0.1), rgba(79, 150, 255, 0.9), rgba(79, 150, 255, 0.1));
  position: relative;
}

.ddos-sim-arrow::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 4px 0 4px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(79, 150, 255, 0.9);
}

.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-border);
}

.tab-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: background var(--transition), color var(--transition);
}

.tab-button.is-active {
  background: linear-gradient(135deg, var(--primary), #2098ff);
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

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

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--text-main);
  font-weight: 600;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(125, 182, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: rgba(104, 182, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
}

.field-hint {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-pill.success {
  background: rgba(32, 211, 155, 0.12);
  color: #8ae6c6;
}

.status-pill.success::before {
  background: var(--success);
}

.status-pill.warning {
  background: rgba(255, 180, 84, 0.12);
  color: #ffd18b;
}

.status-pill.warning::before {
  background: var(--warning);
}

.status-pill.danger {
  background: rgba(255, 107, 125, 0.12);
  color: #ff9ba9;
}

.status-pill.danger::before {
  background: var(--danger);
}

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

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.status-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 220px;
}

.chart-bars span {
  display: block;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #7dc8ff 0%, #005ee5 100%);
  min-height: 42px;
}

.tool-result {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(125, 182, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.tool-result.is-visible {
  display: block;
}

.speed-panel {
  display: grid;
  gap: 18px;
}

.speed-meter {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.speed-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #70c5ff 0%, #007bff 100%);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.speed-results .content-card {
  padding: 20px;
}

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

.faq-item {
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-main);
}

.faq-item p {
  margin-top: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: opacity 0.35s ease;
    transform: none;
  }
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid,
  .article-layout,
  .contact-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .pricing-grid,
  .stats-grid,
  .testimonial-grid,
  .locations-grid,
  .tools-grid,
  .status-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .page-hero-grid,
  .article-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 8px 4px;
  }

  .nav-link-icon {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 940px) {
  .site-nav {
    padding: 12px 0;
  }

  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .support-link-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header.is-scrolled .site-nav {
    padding: 10px 0;
  }

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-panel {
    display: grid;
    gap: 0;
    margin-top: 12px;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: rgba(14, 36, 58, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    overflow: hidden;
  }

  .mobile-panel[hidden] {
    display: none;
  }

  .mobile-panel a {
    display: block;
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border-radius: 0;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .mobile-panel a:hover,
  .mobile-panel a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    outline: none;
  }

  .mobile-panel a[aria-current="page"] {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-panel a:last-child {
    border-bottom: 0;
  }

  /* Hide the prominent Client Area button on small screens
     and surface it in the mobile menu instead to avoid layout
     collisions with the hamburger */
  .btn-client-area {
    display: none;
  }

  body.menu-open .site-header {
    z-index: 1002;
  }

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

  .floating-badge.top,
  .floating-badge.bottom {
    position: static;
    margin-top: 16px;
  }

  .ddos-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ddos-sim-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ddos-sim-stage,
  .ddos-sim-arrow {
    grid-column: auto;
  }

  .ddos-sim-arrow {
    height: 32px;
    width: 2px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(79, 150, 255, 0.1), rgba(79, 150, 255, 0.9), rgba(79, 150, 255, 0.1));
  }

  .ddos-sim-arrow::after {
    right: 50%;
    top: auto;
    bottom: -6px;
    transform: translateX(50%);
    border-width: 6px 4px 0 4px;
    border-color: rgba(79, 150, 255, 0.9) transparent transparent transparent;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-nav {
    gap: 10px;
    align-items: center;
  }

  .hero.hero--cyber {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .hero.hero--cyber .hero-grid.hero-grid--simple {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .hero.hero--cyber .hero-grid.hero-grid--simple .hero-copy {
    width: 100%;
    max-width: 100%;
    justify-items: center;
    text-align: center;
    padding: 18px 14px;
    gap: 14px;
  }

  .hero-title-cyber__line {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-transform: none;
    text-wrap: balance;
  }

  .hero-title-cyber__accent {
    font-size: clamp(0.95rem, 3.9vw, 1.08rem);
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .hero.hero--cyber .hero-copy > p,
  .hero-lead {
    max-width: 100%;
    width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
    text-wrap: pretty;
  }

  .hero-actions-simple {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions-simple .btn {
    width: min(100%, 320px);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
  }

  .hero-tags {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .location-badge {
    justify-content: center;
    text-align: center;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-panel {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .section,
  .hero,
  .page-hero {
    padding-top: 88px;
    padding-bottom: 72px;
  }

  /* Make the cyber hero reasonable on small phones */
  .hero.hero--cyber {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .hero-grid--simple .hero-copy {
    gap: 14px;
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
    border: 1px solid rgba(46, 125, 255, 0.2);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(4, 12, 28, 0.72), rgba(4, 10, 24, 0.52));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero.hero--cyber::before {
    background-position: 60% center;
  }

  .hero-title-cyber__line {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .hero-title-cyber__accent {
    margin-top: 0;
    font-size: clamp(0.95rem, 4.1vw, 1.12rem);
    line-height: 1.28;
    letter-spacing: 0.01em;
  }

  .hero.hero--cyber .hero-copy > p,
  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    letter-spacing: 0;
    max-width: 34ch;
  }

  .eyebrow {
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero-actions-simple {
    width: 100%;
    max-width: 100%;
  }

  .hero-tags {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-tags .location-badge:last-child {
    grid-column: 1 / -1;
  }

  .location-badge {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .btn,
  .site-nav .btn {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }

  .nav-brand img {
    height: 32px;
  }

  .service-card,
  .feature-card,
  .pricing-card,
  .testimonial-card,
  .location-card,
  .tool-card,
  .status-card,
  .contact-card,
  .content-card,
  .glass-card,
  .faq-item {
    padding: 20px 16px;
  }

  .price strong {
    font-size: 2.35rem;
  }

  .btn-group,
  .hero-metrics,
  .pricing-grid,
  .testimonial-grid,
  .locations-grid,
  .tools-grid,
  .status-grid,
  .footer-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .speed-results {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-grid--simple {
    grid-template-columns: 1fr;
  }

  .hero-tags {
    flex-direction: column;
    align-items: stretch;
  }

  .product-shortcut {
    min-height: auto;
  }

  .tabs {
    width: 100%;
    flex-direction: column;
    border-radius: 22px;
  }

  .tab-button {
    width: 100%;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

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

  /* Mobile hero/panel adjustments to avoid overflow and improve spacing */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-visual,
  .hero-panel,
  .hero-orbit,
  .floating-badge {
    max-width: 100%;
    position: relative;
    left: auto;
    right: auto;
    transform: none;
  }

  .hero-panel {
    padding: 18px;
    overflow: visible;
  }

  .floating-badge {
    margin: 0;
  }

  .metric-chip {
    padding: 14px 12px;
  }

  .hero-title-cyber__line {
    font-size: clamp(1.5rem, 5vw, 2.6rem);
  }

  .hero-title-cyber__accent {
    font-size: clamp(0.95rem, 3.5vw, 1.3rem);
  }

  /* Ensure the vertical page label doesn't take space on small phones */
  .page-vertical-label {
    display: none !important;
  }

  /* ensure no accidental horizontal scroll on small devices */
  html, body {
    overscroll-behavior-x: none;
  }
}
