:root {
  --accent: #ffffff;
  --accent2: #ff6b00;
  --red: #ff3b3b;
  --green: #ffffff;
  --amber: #dddddd;
  --text: #ffffff;
  --text-dim: #b8c8d8;
  --border: rgba(255, 255, 255, 0.1);
  --border2: rgba(255, 255, 255, 0.05);
  --bg-panel: rgba(15, 15, 15, 0.95);
  --bg-deep: #0a0a0a;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg-deep);
  font-family: 'Rajdhani', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.subpage-body-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

app-footer {
  margin-top: auto;
}

/* ─────────── SCAN LINE OVERLAY ─────────── */
body::after {
  content: '';
  display: none !important;
}

/* ─────────── FIXED 3D CANVAS ─────────── */
#canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
  background-color: #0a0a12;
  /* Matches THREE.js scene fog color - no black flash on load */
}

#canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

#canvas-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

/* ─────────── NOISE OVERLAY ─────────── */
#noise-canvas,
.side-hud,
.stats-hud,
.threat-meter,
.ticker-bar,
.corner-tl,
.corner-tr,
.corner-bl,
.corner-br,
.vert-label {
  display: none !important;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

nav.scrolled {
  background: rgba(12, 12, 12, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

nav::before {
  display: none;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

/* Brand text (removed – kept for fallback only) */
.brand-icon {
  display: none;
}

.brand-name {
  display: none;
}

.brand-tagline {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links>a,
.nav-links .dropdown>a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color .2s;
  position: relative;
  padding: 6px 0;
}

.nav-links>a::after,
.nav-links .dropdown>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .3s;
}

.nav-links>a:hover,
.nav-links .dropdown>a:hover {
  color: #fff;
}

.nav-links>a:hover::after,
.nav-links .dropdown>a:hover::after {
  width: 100%;
}

/* Dropdown / Mega-menu */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(15, 15, 15, 0.99);
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  top: calc(100% + 14px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

/* Invisible bridge to prevent hover loss when moving mouse to dropdown */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

/* Regular (Solutions) dropdown links */
.dropdown-content a {
  color: rgba(255, 255, 255, .6);
  padding: 11px 20px;
  text-decoration: none;
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all .18s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 26px;
}

/* Desktop hover dropdowns — ONLY for devices with a real mouse (hover:hover)
   On touchscreens (mobile), dropdowns are controlled by JS + .open class instead */
@media (hover: hover) and (pointer: fine) {

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown>a {
  position: relative;
}

/* Mega-menu (Products) */
.mega-menu {
  display: none !important;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  min-width: 720px;
  padding: 8px 0;
  left: auto;
  right: 0;
}

@media (hover: hover) and (pointer: fine) {

  .dropdown:hover .mega-menu,
  .dropdown:focus-within .mega-menu {
    display: grid !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.mega-col {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.mega-col:last-child {
  border-right: none;
}

.mega-col a {
  color: rgba(255, 255, 255, .6);
  padding: 8px 20px;
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  text-decoration: none;
  border-bottom: none;
  transition: all .18s ease;
}

.mega-col a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 26px;
}

.mega-group-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  padding: 8px 20px 6px;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sys-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .2em;
  color: var(--green);
  text-transform: uppercase;
}

.sys-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.85);
  }
}

.btn-demo {
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background: transparent;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.btn-demo::before {
  display: none;
}

.btn-demo:hover::before {
  display: none;
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ─────────── CORNER DECORATIONS ─────────── */
.corner-tl,
.corner-tr,
.corner-bl,
.corner-br {
  position: fixed;
  width: 28px;
  height: 28px;
  z-index: 100;
  pointer-events: none;
}

.corner-tl {
  top: 68px;
  left: 18px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  border-left: 1px solid rgba(255, 255, 255, .4);
}

.corner-tr {
  top: 52px;
  right: 18px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  border-right: 1px solid rgba(255, 255, 255, .4);
}

.corner-bl {
  bottom: 36px;
  left: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  border-left: 1px solid rgba(255, 255, 255, .4);
}

.corner-br {
  bottom: 36px;
  right: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  border-right: 1px solid rgba(255, 255, 255, .4);
}

/* ─────────── SIDE HUD ─────────── */
.side-hud {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hud-step {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: var(--bg-deep);
  cursor: pointer;
  transition: all .35s;
}

.hud-step.active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
}

.hud-step-label {
  position: absolute;
  right: 22px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 7px;
  letter-spacing: .18em;
  color: var(--text-dim);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

/* ─────────── LEFT VERTICAL LABEL ─────────── */
.vert-label {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 50;
  font-family: 'Share Tech Mono', monospace;
  font-size: 7.5px;
  letter-spacing: .35em;
  color: rgba(255, 255, 255, .25);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* ─────────── BOTTOM HUD ─────────── */
.stats-hud {
  position: fixed;
  bottom: 36px;
  left: 28px;
  z-index: 50;
  display: flex;
  gap: 8px;
}

.stat {
  background: rgba(12, 12, 12, .88);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  padding: 8px 14px;
  border-radius: 0;
  min-width: 88px;
}

.stat-l {
  font-family: 'Share Tech Mono', monospace;
  font-size: 7px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}

.stat-v {
  font-family: 'Orbitron', monospace;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  line-height: 1;
}

.stat-v span {
  font-size: 9px;
  opacity: .7;
}

.stat-u {
  font-family: 'Share Tech Mono', monospace;
  font-size: 7px;
  color: var(--text-dim);
  letter-spacing: .1em;
  margin-top: 2px;
}

/* ─────────── THREAT METER ─────────── */
.threat-meter {
  position: fixed;
  bottom: 36px;
  right: 52px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.threat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 7px;
  letter-spacing: .22em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.threat-bar-wrap {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, .06);
  border-radius: 0;
  overflow: hidden;
}

.threat-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
  width: 62%;
  animation: threatFlicker 3.5s ease-in-out infinite;
}

@keyframes threatFlicker {

  0%,
  100% {
    width: 62%
  }

  50% {
    width: 71%
  }
}

.threat-val {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
}

/* ─────────── TICKER ─────────── */
.ticker-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 200;
  background: rgba(10, 10, 10, .94);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  padding: 0 16px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  letter-spacing: .22em;
  color: var(--accent);
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-scroll {
  flex: 1;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  letter-spacing: .14em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding-left: 24px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-inner em {
  color: var(--accent);
  font-style: normal;
}

.ticker-inner .red-em {
  color: var(--red);
}

.ticker-inner .grn-em {
  color: var(--green);
}

/* ─────────── SCROLL CONTENT ─────────── */
#scroll-driver {
  position: relative;
  z-index: 10;
}

/* ─────────── HERO ─────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 9vw;
  padding-top: 76px;
  position: relative;
}

.hero-content {
  max-width: 660px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 40px 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s infinite;
}

.hero-badge-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  letter-spacing: .28em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: .5;
}

h1.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(38px, 5.8vw, 80px);
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

h1.hero-title .accent-line {
  color: #fff;
  display: block;
  text-shadow: none;
}

h1.hero-title .dim-line {
  opacity: .3;
  display: block;
}

.hero-rule {
  width: 60px;
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.25);
}

.hero-body {
  font-size: 17.5px;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 490px;
  margin-bottom: 38px;
}

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

.btn-primary {
  padding: 16px 36px;
  background: #ffffff;
  border: none;
  border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #111111;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  position: relative;
  box-shadow: none;
}

.btn-primary:hover {
  box-shadow: none;
  transform: translateY(-2px);
  background: #e0e8f0;
}

.btn-secondary {
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary:hover {
  border-color: rgba(0, 255, 120, 0.6);
  color: #fff;
  background: rgba(0, 255, 120, 0.15);
  box-shadow: 0 10px 30px rgba(0, 255, 120, 0.2);
  transform: translateY(-3px);
}


.scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 9vw;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .26em;
  color: var(--text-dim);
  text-transform: uppercase;
  animation: floatDown 2.4s ease-in-out infinite;
}

.scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--text-dim));
}

@keyframes floatDown {

  0%,
  100% {
    opacity: .4;
    transform: translateY(0);
  }

  50% {
    opacity: .9;
    transform: translateY(8px);
  }
}

/* ─────────── STORY SECTIONS ─────────── */
.story-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.story-section.left .story-inner {
  padding-left: 6vw;
  padding-right: 50vw;
}

.story-section.right .story-inner {
  padding-left: 6vw;
  padding-right: 50vw;
}

.story-inner {
  padding-top: 58px;
  width: 100%;
}

.story-card {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  max-width: 530px;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(50px) scale(.98);
  transition: opacity .4s ease-out, transform .4s ease-out;
}

.story-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Accent side line */
.story-card::before {
  display: none;
}

.story-card.visible::before {
  height: 100%;
}

/* Corner dots */
.story-card .c1,
.story-card .c2,
.story-card .c3,
.story-card .c4 {
  display: none;
}

.story-card .c1 {
  top: 12px;
  left: 12px;
}

.story-card .c2 {
  top: 12px;
  right: 12px;
}

.story-card .c3 {
  bottom: 12px;
  left: 12px;
}

.story-card .c4 {
  bottom: 12px;
  right: 12px;
}

/* Inner glow */
.story-card::after {
  display: none;
}

.card-index {
  display: none;
}

.card-index::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.card-category {
  display: none;
}

.card-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

.card-body {
  font-size: 20px;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 1);
  margin-bottom: 14px;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pill-dot.red {
  background: var(--red);
  box-shadow: 0 0 4px var(--red);
}

.pill-dot.green {
  background: var(--green);
  box-shadow: 0 0 4px var(--green);
}

.pill-dot.amber {
  background: var(--amber);
}

/* ─────────── METRICS STRIP ─────────── */
.metrics-strip {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 8vw;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1000px;
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s, transform .8s;
}

.metrics-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-cell {
  background: transparent;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-cell:last-child {
  border-right: none;
}

.metric-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--accent);
  opacity: .4;
}

.metric-num {
  font-family: 'Orbitron', monospace;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-num span {
  font-size: 20px;
  color: var(--accent);
}

.metric-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  letter-spacing: .24em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ─────────── NEW CTA & FOOTER BLOCK ─────────── */
.cta-section {
  min-height: 400px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  text-align: left;
  padding: 50px 0px 0px 0px;
  background: #000000;

  border-top: none;
}

.cta-overlay {
  display: none;
}

.cta-phone-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #316eb2;
  /* blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
}

.cta-phone-icon svg {
  width: 32px;
  height: 32px;
}

.cta-inner {
  position: relative;
  z-index: 11;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cta-inner {
    padding: 0 5vw;
  }
}

.cta-title {
  font-family: sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0;
}

.cta-body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 35px;
}

.btn-solid-blue {
  display: inline-block;
  background: #3a7bc2;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  padding: 16px 36px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
}

.btn-solid-blue:hover {
  background: #2b6cb0;
}

/* ─────────── NEW FOOTER STRIP ─────────── */
.footer-lorem {
  background: #ffffff;
  padding: 40px 10vw;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-lorem p {
  color: #718096;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ─────────── NEW SITE FOOTER ─────────── */
.site-footer {
  background: #292d33;
  padding: 60px 10vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left {
  color: #a0aec0;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-left a {
  color: #a0aec0;
  text-decoration: none;
}

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

.footer-right .social-icons {
  display: flex;
  gap: 10px;
}

.soc-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  font-family: sans-serif;
}

.soc-icon:hover {
  background: #4a5568;
  color: #ffffff;
}

.cta-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-frame {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.cta-frame::before,
.cta-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, .25);
  border-style: solid;
}

.cta-frame::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.cta-frame::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.cta-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: .75;
}

.cta-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-body {
  font-size: 18px;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ─────────── DOMAIN CARDS SECTION ─────────── */
.domains-section {
  position: relative;
  z-index: 10;
  padding: 100px 0 0;
  background: #000000;
  border-top: 1px solid var(--border);
}

.domains-eyebrow {
  text-align: center;
  margin-bottom: 52px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: .7;
}

.domains-title {
  text-align: center;
  margin-bottom: 52px;
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}

.domains-title span {
  color: var(--accent);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 520px;
  overflow: hidden;
}

.domain-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, .06);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .7s ease, transform .7s ease, flex .5s ease;
}

.domain-card:last-child {
  border-right: none;
}

.domain-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.domain-card:nth-child(1).visible {
  transition-delay: .05s;
}

.domain-card:nth-child(2).visible {
  transition-delay: .15s;
}

.domain-card:nth-child(3).visible {
  transition-delay: .25s;
}

.domain-card:nth-child(4).visible {
  transition-delay: .35s;
}

.domain-card:nth-child(5).visible {
  transition-delay: .45s;
}

/* Background image via inline style + gradient overlay */
.domain-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(.55) brightness(.55);
}

.domain-card:hover .domain-card-bg {
  transform: scale(1.06);
  filter: saturate(.75) brightness(.7);
}

.domain-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, .15) 0%, rgba(10, 10, 10, .55) 60%, rgba(10, 10, 10, .88) 100%);
  transition: background .4s;
}

.domain-card:hover::after {
  background: linear-gradient(to bottom, rgba(10, 10, 10, .05) 0%, rgba(10, 10, 10, .4) 55%, rgba(10, 10, 10, .82) 100%);
}

.domain-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 32px;
  z-index: 2;
}

.domain-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  opacity: .85;
  transition: opacity .3s, transform .3s;
}

.domain-card:hover .domain-icon {
  opacity: 1;
  transform: translateY(-4px);
}

.domain-icon svg {
  width: 100%;
  height: 100%;
}

.domain-name {
  font-family: 'Orbitron', monospace;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .02em;
}

.domain-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(220, 235, 255, .85);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease;
  opacity: 0;
}

.domain-card:hover .domain-desc {
  max-height: 120px;
  opacity: 1;
}

/* Hover accent line at top */
.domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.5);
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}

.domain-card:hover::before {
  transform: scaleX(1);
}

.domain-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
}

.domain-card:hover .domain-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────── CREDENTIALS / STATS SECTION ─────────── */
.creds-section {
  position: relative;
  z-index: 10;
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin: 100px 10vw;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.creds-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT — World map + rank */
.creds-left {
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.world-map-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.world-map-svg {
  width: 100%;
  opacity: 1;
}

/* Dot-matrix effect via CSS filter */
.world-map-img {
  width: 100%;
  max-width: 460px;
  opacity: .7;
  filter: brightness(.9) saturate(.6) hue-rotate(170deg);
}

.creds-rank {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.creds-rank-num {
  font-family: 'Orbitron', monospace;
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 900;
  color: #fff;
  line-height: .9;
  letter-spacing: -.04em;
}

.creds-rank-suffix {
  font-family: 'Orbitron', monospace;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.creds-rank-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 320px;
  margin-top: 6px;
}

.creds-rank-label strong {
  color: var(--text);
}

/* DIVIDER */
.creds-divider {
  background: var(--border);
  margin: 0 0;
}

/* RIGHT — Stat grid */
.creds-right {
  padding-left: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  align-content: start;
}

.creds-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.creds-stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.creds-stat-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  opacity: .7;
}

.creds-stat-icon svg {
  width: 100%;
  height: 100%;
}

.creds-stat-num {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}

.creds-stat-num sup {
  font-size: .45em;
  color: var(--accent);
  vertical-align: super;
  font-weight: 700;
}

.creds-stat-num .unit {
  font-size: .38em;
  color: var(--accent);
  letter-spacing: 0;
}

.creds-stat-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  letter-spacing: .22em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 2px;
}

.creds-stat-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-top: 4px;
}

/* ─────────── FOOTER ─────────── */
footer {
  position: relative;
  z-index: 10;
  padding: 24px 40px;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, .92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Share Tech Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .16em;
  color: var(--text-dim);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 10px;
}

footer a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}

footer a:hover {
  color: var(--accent);
}

.footer-classified {
  padding: 3px 10px;
  border: 1px solid rgba(255, 59, 59, .3);
  color: rgba(255, 59, 59, .6);
  font-size: 7px;
}

/* ─────────── CROSSHAIR CURSOR ELEMENT ─────────── */
#cursor-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  z-index: 9998;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .08s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cursor-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─────────── LOADING SCREEN ─────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .7s ease;
}

#loader.done {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--accent);
  text-transform: uppercase;
}

.loader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  position: relative;
  border-radius: 2px;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
  animation: loadBar 1.8s ease-out forwards;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

.loader-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  letter-spacing: .3em;
  color: var(--text-dim);
  text-transform: uppercase;
  animation: loadFade 1.8s ease-in-out infinite;
}

@keyframes loadFade {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: .9
  }
}


/* ─────────── SUBPAGE STYLES ─────────── */
.subpage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 10;
}

.subpage-hero {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.subpage-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--green);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 4px 10px;
  background: rgba(0, 255, 136, 0.03);
}

.subpage-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s infinite;
}

.subpage-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.subpage-category {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .25em;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .subpage-grid {
    grid-template-columns: 1fr;
  }
}

.subpage-card {
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid var(--border);
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
}

.subpage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.subpage-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 10px;
}

.subpage-body {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.subpage-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .subpage-features-list {
    grid-template-columns: 1fr;
  }
}

.subpage-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: var(--text);
}

.subpage-feature-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* Cyber table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 10px;
}

.specs-table tr {
  border-bottom: 1px solid var(--border2);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 10px;
  font-size: 13.5px;
}

.specs-table td.label {
  font-family: 'Share Tech Mono', monospace;
  color: var(--text-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  width: 40%;
}

.specs-table td.value {
  color: var(--accent);
  font-weight: 600;
  text-align: right;
}

/* Cyber Enquiry Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(12, 12, 12, 0.4);
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.form-control {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 15px;
  padding: 16px;
  background: #000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  border: 1px solid #ffffff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  background: #111;
  border: 1px solid #ffffff;
}

/* Cyber breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span.separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs span.current {
  color: var(--accent);
}

/* ─────────── NEW HIGH-FIDELITY SUBPAGE STYLES ─────────── */

/* Full-width sections */
.subpage-section-dark {
  background: var(--bg-deep);
  color: var(--text);
  padding: 80px 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.subpage-section-light {
  background: #ffffff;
  color: #111111;
  padding: 50px 0;
  position: relative;
}

.subpage-section-light * {
  color: #111111;
}

.subpage-inner-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

/* Breadcrumbs (Light gray on dark hero) */
.subpage-breadcrumbs-wrap {
  margin-bottom: 30px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.subpage-breadcrumbs-wrap a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.subpage-breadcrumbs-wrap a:hover {
  color: var(--accent);
}

.subpage-breadcrumbs-wrap span.separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

.subpage-breadcrumbs-wrap span.current {
  color: var(--accent);
}

/* Subpage Hero */
.subpage-hero-sec {
  padding-top: 130px;
  /* Offset for fixed nav */
  padding-bottom: 30px;
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
  overflow: hidden;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .subpage-inner-container {
    padding: 0 24px;
  }
}

.subpage-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--green);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  padding: 5px 12px;
  background: rgba(0, 255, 136, 0.04);
}

.subpage-hero-status.amber {
  color: var(--amber);
  border-color: rgba(255, 183, 0, 0.25);
  background: rgba(255, 183, 0, 0.04);
}

.subpage-hero-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: pulse 1.8s infinite;
}

.subpage-hero-text {
  max-width: 1000px !important;
  text-align: left;
}

.subpage-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px) !important;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.subpage-hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(16px, 2.0vw, 24px) !important;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 35px;
  line-height: 1.6 !important;
}

.subpage-hero-btn-wrap {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .subpage-hero-btn-wrap {
    justify-content: flex-start;
  }
}

.btn-download-pdf {
  padding: 14px 36px;
  background: #007bff;
  border: none;
  border-radius: 2px;
  font-family: 'Orbitron', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-download-pdf:hover {
  background: #0056b3;
  box-shadow: 0 4px 25px rgba(0, 123, 255, 0.5);
  transform: translateY(-1px);
}

.subpage-hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.subpage-hero-img {
  max-width: 100%;
  max-height: 380px;
  filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.15));
  animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Metrics Row (White BG) */
.subpage-metrics-sec {
  border-bottom: 1px solid #e2e8f0;
  padding: 70px 0;
}

.subpage-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 850px) {
  .subpage-metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.subpage-metric-card {
  padding: 10px 0;
}

.subpage-metric-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.subpage-metric-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

/* Overview Sections (White BG) */
.subpage-overview-sec {
  border-bottom: 1px solid #e2e8f0;
}

.subpage-overview-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.subpage-overview-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.subpage-overview-row:last-child {
  margin-bottom: 0;
}

.subpage-overview-row.image-left {
  flex-direction: row;
}

.subpage-overview-row.image-right {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {

  .subpage-overview-row,
  .subpage-overview-row.image-left,
  .subpage-overview-row.image-right {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  /* Always show image on top on mobile */
  .subpage-overview-row.image-right .subpage-overview-img-col {
    order: -1;
  }

  .subpage-overview-row.image-right .subpage-overview-text-col {
    order: 1;
  }
}

.subpage-overview-img-col {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.subpage-overview-img {
  max-width: 100%;
  max-height: 450px;
}

.subpage-overview-text-col {
  flex: 1.2;
}

.subpage-overview-row-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 2.5vw, 36px);
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
}

.subpage-overview-row-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.75;
  color: #4a5568;
}

/* Applications Row (White BG) */
.subpage-apps-sec {
  padding: 90px 0;
}

.subpage-apps-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .subpage-apps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.subpage-apps-img-col {
  display: flex;
  justify-content: center;
}

.subpage-apps-img {
  max-width: 100%;
  max-height: 320px;
  /* border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); */
}

.subpage-apps-text-col {
  text-align: left;
}

@media (max-width: 900px) {
  .subpage-apps-text-col {
    text-align: center;
  }
}

.subpage-apps-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.subpage-apps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subpage-apps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  color: #2d3748;
}

@media (max-width: 900px) {
  .subpage-apps-item {
    justify-content: center;
  }
}

.subpage-apps-check {
  color: #007bff;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Specs Grid (Dark BG) */
.subpage-specs-sec {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid var(--border);
  padding: 95px 0;
}

.subpage-specs-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subpage-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

@media (max-width: 900px) {
  .subpage-specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.subpage-specs-table-wrapper {
  margin-bottom: 20px;
}

.subpage-specs-table-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  /* Cyan title matching specs label */
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 8px;
  margin-bottom: 15px;
  letter-spacing: .05em;
}

.subpage-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.subpage-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subpage-specs-table tr:last-child {
  border-bottom: none;
}

.subpage-specs-table td {
  padding: 14px 0;
  font-size: 17px;
}

.subpage-specs-key {
  font-family: 'Rajdhani', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  width: 50%;
  text-align: left;
  font-weight: 500;
}

.subpage-specs-val {
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  font-weight: 600;
  text-align: right;
  width: 50%;
}

.subpage-specs-actions {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* Call to Action Row (Dark BG) */
.subpage-cta-sec {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('../images/handshake_bg.jpg') no-repeat center center;
  background-size: cover;
  border-top: 1px solid var(--border);
  padding: 60px 0;
}

.subpage-cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .subpage-cta-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

.subpage-cta-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: .02em;
}

.btn-cta-outline {
  padding: 12px 28px;
  border: 1px solid #ffffff;
  background: transparent;
  font-family: 'Orbitron', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
}

.btn-cta-outline:hover {
  background: #ffffff;
  color: #0a0a0a;
}

.btn-cta-outline span.arrow {
  font-size: 14px;
  transition: transform 0.25s;
}

.btn-cta-outline:hover span.arrow {
  transform: translateX(4px);
}

/* Contact Section Replacement */
.contact-replacement-sec {
  background: #0a0a0a;
  color: #ffffff;
  padding: 8px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-family: "Rajdhani", sans-serif;
}

.contact-replacement-sec h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-replacement-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}

.contact-replacement-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}

.contact-text h3 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  font-family: "Orbitron", sans-serif;
}

.contact-text p {
  font-size: 0.85rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
  margin-left: auto;
}

.hamburger span {
  display: block !important;
  width: 25px !important;
  height: 2px !important;
  background: #ffffff !important;
  margin: 5px 0 !important;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════
   GLOBAL RESPONSIVE — MOBILE NAVIGATION
   ═══════════════════════════════════════ */

/* Prevent horizontal overflow — do NOT use * { max-width } as it breaks layouts */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

@media (max-width: 900px) {

  /* ── Fixed dark top bar ── */
  nav {
    padding: 0 20px;
    height: 60px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    background: rgba(10, 10, 10, 0.98) !important;
    /* backdrop-filter disabled on mobile: it creates a containing block
       that traps position:fixed children inside the nav's 60px box */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    /* NO overflow:hidden — would also clip the fixed menu */
    overflow: visible;
    contain: none;
  }

  .nav-logo {
    height: 44px !important;
  }

  /* ── Hamburger — 3 white lines ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 300;
    flex-shrink: 0;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    margin: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Full-screen dark drawer ── */
  .nav-links {
    display: none;
    /* NO !important — .active class must be able to override */
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background: #000000;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    padding: 8px 0 60px;
    gap: 0;
    align-items: stretch;
    z-index: 199;
    border-top: 2px solid var(--accent);
  }

  .nav-links.active {
    display: flex !important;
    /* !important ensures it beats all other rules */
  }

  /* ── Top-level nav links ── */
  .nav-links>a {
    color: rgba(255, 255, 255, 0.88) !important;
    width: 100% !important;
    display: block !important;
    padding: 18px 24px !important;
    font-size: 16px !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: transparent;
    transition: background 0.15s, color 0.15s;
  }

  .nav-links>a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-links a::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
  }

  /* ── Dropdown accordion wrapper ── */
  .dropdown {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    /* NO overflow:hidden — it clips the expanding accordion content */
    overflow: visible;
  }

  /* ── Dropdown trigger row ── */
  .nav-links .dropdown>a {
    color: rgba(255, 255, 255, 0.88) !important;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px !important;
    font-size: 16px !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: capitalize;
    border-bottom: none !important;
    background: transparent;
    transition: background 0.15s;
  }

  .nav-links .dropdown>a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  /* Chevron arrow */
  .dropdown>a::after {
    content: '›' !important;
    display: inline-block !important;
    font-size: 22px !important;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: transform 0.25s ease;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    position: static !important;
    flex-shrink: 0;
    margin-left: 8px;
  }

  .dropdown.open>a {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--accent) !important;
    padding-left: 21px !important;
  }

  .dropdown.open>a::after {
    transform: rotate(90deg);
    color: var(--accent) !important;
  }

  /* ── Dropdown panels (hidden → visible on .open) ── */
  .mega-menu,
  .dropdown-content {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100vw !important;
    background: rgba(0, 5, 20, 0.6) !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-direction: column;
    overflow: visible;
    transform: none !important;
    transition: none !important;
  }

  .dropdown.open>.mega-menu,
  .dropdown.open>.dropdown-content {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-direction: column !important;
    pointer-events: auto;
    transform: none !important;
  }

  /* Products mega-menu: single column */
  .mega-menu {
    grid-template-columns: 1fr !important;
  }

  .mega-col {
    border-right: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* ── Group category labels ── */
  .mega-group-label {
    display: block !important;
    color: var(--accent) !important;
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 9px !important;
    letter-spacing: .28em !important;
    padding: 14px 24px 6px 44px !important;
    opacity: 0.6 !important;
    text-transform: uppercase !important;
    background: transparent !important;
    pointer-events: none;
  }

  .mega-col a,
  .dropdown-content a {
    color: rgba(255, 255, 255, 0.7) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 13px 24px 13px 40px !important;
    font-size: 14px !important;
    text-transform: none !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 500 !important;
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    transition: all 0.15s;
  }

  .mega-col a:last-child {
    border-bottom: none !important;
  }

  .mega-col a:hover,
  .dropdown-content a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding-left: 50px !important;
  }

  /* Hide nav-right (demo btn) on mobile */
  .nav-right {
    display: none !important;
  }

  /* ── Hero ── */
  .hero {
    padding: 88px 5vw 40px;
  }

  h1.hero-title {
    font-size: clamp(28px, 7vw, 48px);
    line-height: 1.1;
  }

  .hero-body {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* ── Story sections ── */
  .story-section.left .story-inner,
  .story-section.right .story-inner {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }

  .story-card {
    max-width: 100% !important;
  }

  /* ── Generic Grids ── */
  .contact-replacement-grid,
  .subpage-grid,
  .subpage-metrics-grid,
  .subpage-apps-grid,
  .subpage-specs-grid,
  .sec-grid,
  .content-grid,
  .creds-section,
  .domains-grid {
    grid-template-columns: 1fr !important;
    display: block !important;
  }

  .domains-grid {
    height: auto !important;
  }

  .domain-card {
    height: 260px !important;
  }

  .creds-left,
  .creds-right {
    padding: 0 !important;
  }

  .creds-divider {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }

  /* Contact section */
  .contact-replacement-col {
    min-width: unset !important;
    width: 100%;
  }

  .enquiry-form {
    padding: 20px;
  }

  .subpage-hero-grid {
    grid-template-columns: 1fr !important;
    text-align: left;
  }

  .subpage-inner-container {
    padding: 0 20px !important;
  }
}

@media (max-width: 480px) {
  h1.hero-title {
    font-size: 2rem;
  }

  .nav-logo {
    height: 38px !important;
  }

  .metric-num {
    font-size: 30px !important;
  }

  .metrics-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────── CAPABILITIES CARDS SECTION ─────────── */
.capabilities-section {
  padding: 40px 0;
  background: #000000;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.capabilities-section .domains-title {
  color: #ffffff;
}

.cap-list-wrap {
  width: 100%;
  padding: 10px 5vw;
}

.cap-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.cap-card.vertical-card {
  width: 100%;
  min-height: auto;
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  cursor: default;
  background: #ffffff;
  border: none;
  opacity: 1;
  transform: none;
}

.cap-card.vertical-card.active {
  /* No special active state needed since they are always visible */
}

.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-icon svg {
  width: 24px;
  height: 24px;
  stroke: #000000;
}

.cap-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .cap-list {
    grid-template-columns: 1fr;
  }
}

/* Global footer overrides to match homepage style */
app-footer .iio-footer-sec {
  background: #000000 !important;
  border-top: none !important;
}

@media (max-width: 768px) {
  app-footer .iio-footer-sec {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
}

app-footer .iio-footer-addr,
app-footer .iio-footer-contact {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 16px !important;
  color: #fff !important;
  letter-spacing: 0.05em;
}

/* ─────────── GPU OPTIMIZATION: Mobile ─────────── */
@media (max-width: 768px) {

  .story-card,
  .risk-container,
  .domain-card,
  .product-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Hide custom cursor on touch devices */
  #cursor-ring {
    display: none !important;
  }
}

/* ─────────── COOKIE CONSENT ─────────── */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 12, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-family: 'Rajdhani', sans-serif;
  color: #ccc;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-sizing: border-box;
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 16px;
  line-height: 1.5;
  margin-right: 20px;
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 28px;
  font-size: 15px;
  border-radius: 4px;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}

.cookie-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-text {
    margin-right: 0;
  }
}

/* Fix for captcha overflow on small screens */
@media (max-width: 400px) {
  .enquiry-form {
    padding: 15px !important;
  }
  .subpage-inner-container {
    padding: 0 10px !important;
  }
  .h-captcha {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
  }
}
