﻿
:root {
  --bg-dark: #02040b;
  --bg-darker: #000208;
  --accent: #F2B705;
  --accent-soft: #FFE57A;
  --text-main: #f5f7ff;
  --text-muted: #8c96b3;
  --nav-height: 90px;
  --topbar-height: 42px;
  --max-width: 1240px;
  --ribbon-height: 6px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--ribbon-height));
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-darker);
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html {
  width: 100%;
  overflow-x: hidden;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(242,183,5,0.08), transparent 40%),
              radial-gradient(circle at 80% 10%, rgba(255,229,122,0.08), transparent 40%),
              #02030a;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.35;
  animation: es-gridDrift 24s ease-in-out infinite;
  pointer-events: none;
}
.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.loader-emblem {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 34px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
.loader-logo-img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
  animation: float 3s ease-in-out infinite;
}
.loader-ring {
  position: absolute;
  inset: -16px;
  border-radius: 20px;
  border: 1px solid rgba(242,183,5,0.2);
  background:
    conic-gradient(from 0deg, rgba(242,183,5,0.6), rgba(255,229,122,0.15), rgba(242,183,5,0.6));
  box-shadow: 0 0 26px rgba(242,183,5,0.25);
  mix-blend-mode: screen;
  animation: orbit 5s linear infinite;
}
.loader-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(242,183,5,0.9);
  animation: pulse 2s ease-in-out infinite;
}
.loader-text {
  font-family: "Orbitron", system-ui;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0 8px 22px rgba(0,0,0,0.65);
}
.loader-bar {
  width: 180px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: 999px;
  animation: slide 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.7; }
}
@keyframes slide {
  0% { transform: translateX(-60%); }
  50% { transform: translateX(40%); }
  100% { transform: translateX(140%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes orbit {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.02); }
  100% { transform: rotate(360deg) scale(1); }
}

.container {
  width: 100%;
  max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 26px;
    }

/* ========== NAVBAR ========== */

/* TOP BAR */
.top-bar {
  position: static;
  width: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(5,7,16,0.96), rgba(6,10,22,0.95));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 4px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 13px;
  color: var(--text-main);
}

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.top-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 1.6px;
}

.top-pill svg path:first-child {
  fill: rgba(242,183,5,0.16);
  stroke: var(--accent);
}

.top-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }
  .top-pill {
    flex-direction: column;
    gap: 8px;
  }
  .top-divider {
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.12);
  }
  body {
    padding-top: 0;
  }
}

header.nav {
  position: sticky;
  top: var(--ribbon-height);
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.92),
    rgba(5,10,25,0.9),
    rgba(0,0,0,0.92)
  );
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
}

    .nav-inner {
      @supports (display: flex) {
        display: flex;
      }
      width: 100%;
      max-width: var(--max-width);
      align-items: center;
      justify-content: space-between;
      height: var(--nav-height);
      padding-inline: 26px;
    }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 86px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
  object-fit: contain;
}

.brand-logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent);
      box-shadow: 0 0 25px rgba(242,183,5,0.8);
      border: 3px solid rgba(255,255,255,0.14);
    }

.brand-text {
  font-family: "Orbitron", system-ui;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
}

@media (max-width: 520px) {
  .brand-logo {
    height: 76px;
  }
}

    nav.nav-links {
      display: flex;
      align-items: center;
      height: 100%;
      gap: 30px;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.18em;
    }

    nav.nav-links a {
      color: var(--text-muted);
      text-decoration: none;  
      position: relative;
      padding-bottom: 4px;
      display: inline-flex;
      align-items: center;
      height: 100%;
      transition: color 0.18s ease;
    }
    .nav-cta-mobile {
      display: none;
    }

    nav.nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: linear-gradient(90deg,var(--accent),var(--accent-soft));
      transition: width 0.18s ease;
    }

    nav.nav-links a:hover {
      color: var(--text-main);
    }

    nav.nav-links a:hover::after {
      width: 100%;
    }

    .nav-links .nav-cta {
      display: none;
    }

    .nav-cta {
      padding: 11px 26px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: linear-gradient(135deg,var(--accent),var(--accent-soft));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      cursor: pointer;
      text-decoration: none;  
      box-shadow: 0 16px 36px rgba(242,183,5,0.75);
      transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      filter: brightness(1.07);
      box-shadow: 0 22px 52px rgba(242,183,5,0.9);
    }

    /* hamburger */
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: none;
      background: transparent;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      gap: 6px;
      flex-direction: column;
      transition: transform 0.16s ease;
      z-index: 130;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-toggle:hover {
      transform: translateY(-1px);
    }

    .nav-close {
      display: none;
      position: absolute;
      top: 16px;
      right: 18px;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: none;
      background: rgba(255,255,255,0.08);
      color: #fff;
      font-size: 26px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      box-shadow: none;
      transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      z-index: 2;
    }

.nav-close {
  display: none !important;
}

    .nav-close:hover {
      background: rgba(255,255,255,0.14);
      border-color: transparent;
      box-shadow: none;
      transform: translateY(-1px);
    }

    body.nav-open .menu-toggle span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    body.nav-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    body.nav-open .menu-toggle span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

/* dim overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(242,183,5,0.12), transparent 32%),
              radial-gradient(circle at 80% 10%, rgba(105,160,255,0.12), transparent 38%),
              rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 110;
}
body.nav-open .nav-overlay,
.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
body.nav-open {
  overflow: hidden;
}

    /* ========== BACK TO TOP ========== */

    .back-to-top {
      position: fixed;
      right: 22px;
      bottom: 24px;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.18);
      background: linear-gradient(135deg, rgba(242,183,5,0.9), rgba(255,229,122,0.9));
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow:
        0 18px 42px rgba(0,0,0,0.55),
        0 8px 26px rgba(242,183,5,0.6);
      cursor: pointer;
      opacity: 0;
      transform: translateY(14px) scale(0.98);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
      z-index: 60;
    }

    .call-fab {
      position: fixed;
      right: 22px;
      bottom: 88px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      background: linear-gradient(135deg, #F2B705, #FFE57A);
      color: #0b0d15;
      display: grid;
      place-items: center;
      box-shadow:
        0 18px 42px rgba(0,0,0,0.55),
        0 10px 28px rgba(242,183,5,0.65);
      cursor: pointer;
      opacity: 0;
      transform: translateY(18px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
      z-index: 62;
      text-decoration: none;
      overflow: visible;
    }

    .call-fab::after {
      content: "";
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      background: rgba(242,183,5,0.18);
      z-index: -1;
      animation: callPulse 1.8s ease-in-out infinite;
      transform: scale(0.85);
      opacity: 0;
    }

    .call-fab.show {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .call-fab.show::after {
      opacity: 1;
    }

.call-fab svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
}

    .back-to-top:hover {
      box-shadow:
        0 22px 50px rgba(0,0,0,0.6),
        0 10px 30px rgba(242,183,5,0.75);
      transform: translateY(8px) scale(1);
    }

    .back-to-top.show {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .back-to-top svg {
      width: 18px;
      height: 18px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
    }

    @keyframes callPulse {
      0% { transform: scale(0.9); opacity: 0.6; }
      50% { transform: scale(1.15); opacity: 0.15; }
      100% { transform: scale(0.9); opacity: 0.6; }
    }

    /* ========== HERO ========== */

    .hero {
      position: relative;
      min-height: 100vh;
      padding-top: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: center;
      background: #010007;
      overflow: hidden;
      isolation: isolate;
    }

    /* background video */
    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6) contrast(1.05) saturate(1.05);
      z-index: 0;
    }

    /* red tint + vignette */
    .hero-overlay-red {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
      mix-blend-mode: normal;
      opacity: 1;
      z-index: 1;
      pointer-events: none;
    }

    .hero-vignette {
      position: absolute;
      inset: -40px;
      background:
        radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.9));
      z-index: 2;
      pointer-events: none;
    }

    /* digital grid in the background */
    .hero-grid {
      position: absolute;
      inset: -80px;
      opacity: 0.38;
      background-image:
        repeating-linear-gradient(
          0deg,
          rgba(255,255,255,0.04),
          rgba(255,255,255,0.04) 1px,
          transparent 1px,
          transparent 34px
        ),
        repeating-linear-gradient(
          90deg,
          rgba(255,255,255,0.04),
          rgba(255,255,255,0.04) 1px,
          transparent 1px,
          transparent 34px
        );
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 3;
      animation: gridFloat 26s linear infinite alternate;
      transform: translateY(-8px);
    }

    /* red tech lines overlay */
    .hero-lines {
      position: absolute;
      inset: -40px;
      background-image:
        linear-gradient(135deg, var(--accent-soft) 2px, transparent 2px),
        linear-gradient(-135deg, var(--accent-soft) 2px, transparent 2px);
      background-size: 70px 70px;
      background-position: 0 0, 35px 35px;
      opacity: 0.42;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 4;
      animation: linesDrift 16s ease-in-out infinite;
    }

    /* hero banner images pinned to edges */
    .hero-banner {
      position: absolute;
      inset: 0;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      opacity: 0.7;
      filter: grayscale(1) sepia(1) saturate(520%) hue-rotate(-8deg) brightness(1.12);
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 2;
      animation: bannerFloat 12s ease-in-out infinite;
    }

    .hero-banner-left {
      background-image: url("https://reactheme.com/products/wordpress/ucam/wp-content/uploads/2025/02/banner-left-scaled.webp");
      background-position: -8% 40%;
    }

    .hero-banner-right {
      background-image: url("https://reactheme.com/products/wordpress/ucam/wp-content/uploads/2025/02/banner-right.webp");
      background-position: 108% 30%;
      animation-delay: 1.2s;
    }

    .hero-inner {
      position: relative;
      z-index: 5;
      width: 100%;
    }

    .hero-flex {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 110px 0 90px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.25);
      background: radial-gradient(circle at 0 0, rgba(242,183,5,0.7), rgba(1,4,16,0.9));
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      margin-bottom: 18px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.7);
      opacity: 0;
      transform: translateY(-20px);
      animation: heroDrop 0.9s ease-out forwards;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(0,0,0,0.55);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 12px 32px rgba(0,0,0,0.65);
      color: #fff;
      margin-bottom: 18px;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(-16px);
      animation: heroDrop 0.95s ease-out forwards;
      animation-delay: 0.08s;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 10px rgba(242,183,5,0.9);
    }

    .hero-badge-sub {
      font-size: 11px;
      letter-spacing: 0.14em;
      color: var(--accent-soft);
    }

    .hero-label-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #11ff7a;
      box-shadow: 0 0 12px rgba(17,255,122,0.95);
    }

    /* SECURE word with corner brackets */
    .hero-secure-wrap {
      position: relative;
      display: inline-block;
      padding: 30px 70px;
      margin-bottom: 18px;
    }

    .hero-secure-wrap::before,
    .hero-secure-wrap::after {
      content: "";
      position: absolute;
      width: 32px;
      height: 32px;
      border: 2px solid var(--accent);
      opacity: 0.9;
    }

    .hero-secure-wrap::before {
      left: 0;
      top: 0;
      border-right: none;
      border-bottom: none;
    }

    .hero-secure-wrap::after {
      right: 0;
      bottom: 0;
      border-left: none;
      border-top: none;
    }

    .hero-title-accent {
      color: var(--accent);
    }

    .hero-title {
      font-family: "Orbitron", system-ui;
      font-size: clamp(68px, 10vw, 100px);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      font-weight: 800;
      text-shadow:
        0 0 18px rgba(0,0,0,0.85);
      opacity: 0;
      transform: translateY(-30px);
      animation: heroDrop 1.05s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
      animation-delay: 0.12s;
    }

    .hero-subtext {
      max-width: 640px;
      margin: 0 auto;
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      opacity: 0;
      transform: translateY(-18px);
      animation: heroDrop 1s ease-out forwards;
      animation-delay: 0.26s;
    }

    .hero-cta-row {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px;
      opacity: 0;
      transform: translateY(-14px);
      animation: heroDrop 1s ease-out forwards;
      animation-delay: 0.38s;
    }

    .hero-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 28px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      background: linear-gradient(135deg,var(--accent),var(--accent-soft));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none; 
      box-shadow:
        0 18px 42px rgba(242,183,5,0.9),
        0 0 0 1px rgba(255,255,255,0.08);
      transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
    }

    .hero-btn-primary span.arrow {
      transform: translateY(1px);
    }

    .hero-btn-primary:hover {
      transform: translateY(-2px);
      filter: brightness(1.09);
      box-shadow:
        0 26px 60px rgba(242,183,5,1),
        0 0 24px rgba(242,183,5,0.9);
    }

    .hero-cta-hint {
      font-size: 12px;
      color: var(--text-muted);
      text-shadow: 0 8px 20px rgba(0,0,0,0.9);
    }

    .hero-cta-hint strong {
      color: var(--text-main);
      font-weight: 500;
    }

    /* ========== SERVICES STRIP (ICONS) ========== */

    .services-strip-wrap {
      margin-top: 70px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .services-track {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 22px;
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,0.16);
      z-index: 1;
    }

    .services-strip-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(65%) sepia(35%) contrast(1.2) brightness(0.82);
      opacity: 0.45;
      z-index: 0;
      pointer-events: none;    animation: overlayDrift 14s ease-in-out infinite alternate;    }

    .service-item {
      flex: 1 1 120px;
      min-width: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      opacity: 0;
      animation: cardFloatUp 0.9s ease forwards;
    }

    .service-item:nth-child(1) { animation-delay: 0.05s; }
    .service-item:nth-child(2) { animation-delay: 0.12s; }
    .service-item:nth-child(3) { animation-delay: 0.18s; }
    .service-item:nth-child(4) { animation-delay: 0.24s; }
    .service-item:nth-child(5) { animation-delay: 0.3s; }
    .service-item:nth-child(6) { animation-delay: 0.36s; }

    /* match the reference strip: simple red line icons and bold white labels */
.service-icon-ring {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: floatY 7s ease-in-out infinite;
}

.service-item:nth-child(2) .service-icon-ring { animation-delay: 0.8s; }
.service-item:nth-child(3) .service-icon-ring { animation-delay: 1.2s; }
.service-item:nth-child(4) .service-icon-ring { animation-delay: 0.4s; }
.service-item:nth-child(5) .service-icon-ring { animation-delay: 1.6s; }
.service-item:nth-child(6) .service-icon-ring { animation-delay: 1s; }
    .service-icon {
      width: 50px;
      height: 50px;
      stroke: var(--accent);
      stroke-width: 2.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-label {
      font-family: "Orbitron", system-ui;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--accent-soft);
    }

    /* ========== WHY SECTION (NEW) ========== */

    section.why-new {
      position: relative;
      background: linear-gradient(180deg, #030510, #02030a);
      padding: 72px 0 82px;
      border-top: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
    }

    .why-new .why-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 34px;
      align-items: center;
    }

    .why-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--accent-soft);
      margin-bottom: 10px;
    }

    .why-kicker-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 16px rgba(242,183,5,0.9);
    }

    .why-title-big {
      font-family: "Orbitron", system-ui;
      font-size: clamp(32px, 6vw, 56px);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .why-points {
      display: grid;
      gap: 12px;
      margin: 20px 0 28px;
      list-style: none;
      padding: 0;
    }

    .why-point {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: #e9ecff;
      letter-spacing: 0.01em;
    }

    .why-point svg {
      width: 18px;
      height: 18px;
      stroke: var(--accent);
      stroke-width: 2.4;
      fill: none;
    }

    .why-stat-card {
      width: 190px;
      height: 170px;
      border-radius: 14px;
      background: radial-gradient(circle at 30% 20%, rgba(242,183,5,0.12), rgba(0,0,0,0.85));
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.6);
    }

    .why-stat-number {
      font-family: "Orbitron", system-ui;
      font-size: 44px;
      letter-spacing: 0.12em;
    }

    .why-stat-label {
      font-size: 15px;
      color: var(--text-muted);
      text-align: center;
    }

    .why-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--accent), var(--accent-soft));
      color: #0b0d15;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-decoration: none; 
      box-shadow: 0 16px 36px rgba(242,183,5,0.35);
      border: 1px solid rgba(255,255,255,0.06);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .why-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 50px rgba(242,183,5,0.48);
    }

    .why-camera {
      position: relative;
      justify-self: end;
      max-width: 620px;
      width: 100%;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.65));
      opacity: 0;
      transform: translateX(120px) scale(0.98);
      transition: opacity 1s ease, transform 1s ease;
    }

    .why-camera.show {
      opacity: 1;
      transform: translateX(0) scale(1);
      animation: cameraFloat 10s ease-in-out infinite 0.8s;
    }

    .why-camera img {
      width: 100%;
      height: auto;
      display: block;
    }

/* Responsive tweaks for "Siguri pa kompromis" */
@media (max-width: 860px) {
  section.why-new {
    padding: 56px 0 64px;
  }
  .why-new .why-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    justify-items: center;
    padding: 0 8px;
  }
  .why-title-big {
    letter-spacing: 0.08em;
  }
  .why-points {
    justify-items: center;
  }
  .why-point {
    justify-content: center;
  }
  .why-stat-card {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
  .why-cta {
    justify-content: center;
  }
  .why-camera {
    justify-self: center;
    max-width: 420px;
    margin-top: 10px;
    transform: translateX(40px) scale(0.98);
  }
  .why-camera.show {
    transform: translateX(0) scale(1);
  }
}

    @keyframes cameraFloat {
      0%   { transform: translateY(0) scale(1); }
      50%  { transform: translateY(-8px) scale(1.01); }
      100% { transform: translateY(0) scale(1); }
    }

    /* ========== ANIMATIONS ========== */

    @keyframes gridFloat {
      0% { transform: translate3d(0,0,0); }
      50% { transform: translate3d(-20px, 12px, 0); }
      100% { transform: translate3d(0,0,0); }
    }

    @keyframes linesDrift {
      0% { background-position: 0 0, 35px 35px; }
      50% { background-position: 40px 20px, 75px 55px; }
      100% { background-position: 0 0, 35px 35px; }
    }

    @keyframes overlayDrift {
      0% { transform: translate3d(0,0,0); }
      50% { transform: translate3d(8px, -6px, 0); }
      100% { transform: translate3d(0,0,0); }
    }

    @keyframes bannerFloat {
      0%, 100% { transform: translate3d(0,0,0) scale(1); }
      50% { transform: translate3d(6px, -10px, 0) scale(1.01); }
    }

    @keyframes heroDrop {
      0% { opacity: 0; transform: translateY(-36px); }
      100% { opacity: 1; transform: translateY(0); }
    }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cardFloatUp {
  0% { opacity: 0; transform: translateY(18px) scale(0.98); }
  60% { opacity: 1; transform: translateY(-4px) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

   

    /* ========== RESPONSIVE ========== */

    @media (max-width: 980px) {
      nav.nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(78vw, 360px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        height: auto;
        padding: 120px 22px 40px;
        background: radial-gradient(circle at 18% 8%, rgba(242,183,5,0.16), transparent 55%),
                    radial-gradient(circle at 82% 0%, rgba(120,182,255,0.14), transparent 50%),
                    linear-gradient(165deg, rgba(5,8,18,0.92), rgba(4,6,16,0.94));
        backdrop-filter: blur(14px);
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
        z-index: 140;
        text-align: left;
        border-left: 1px solid rgba(255,255,255,0.12);
        box-shadow: -18px 0 50px rgba(0,0,0,0.65);
      }
      body.nav-open nav.nav-links {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
      }
      nav.nav-links a {
        font-size: 16px;
        letter-spacing: 0.1em;
        color: #fff;
        display: block;
        height: auto;
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
        background: linear-gradient(120deg, rgba(242,183,5,0.16), rgba(255,229,122,0.06));
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
      }
      nav.nav-links a::after {
        display: none;
      }
      nav.nav-links a:hover {
        background: rgba(255,255,255,0.1);
      }
      .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 18px;
        right: 16px;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 12px;
        font-size: 18px;
        color: #fff;
      }
      .menu-toggle {
        display: inline-flex;
      }
      .nav-inner {
        padding-inline: 18px;
      }
      .container {
        padding-inline: 18px;
      }
      .nav-links .nav-cta-mobile {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 6px;
        width: 100%;
        border-radius: 14px;
        text-align: center;
        box-shadow: 0 12px 30px rgba(242,183,5,0.35);
      }
      .hero-secure-wrap {
        padding-inline: 38px;
      }
      .services-track {
        justify-content: center;
      }
      .why-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
    }

    @media (max-width: 640px) {
      .hero-flex {
        padding-top: 80px;
      }
      .hero-secure-wrap {
        padding-inline: 24px;
      }
      .hero-secure-wrap::before,
      .hero-secure-wrap::after {
        width: 24px;
        height: 24px;
      }
      .hero-title {
        font-size: clamp(38px, 12vw, 64px);
        letter-spacing: 0.18em;
      }
      .hero-subtext {
        font-size: 14px;
      }
      .services-track {
        row-gap: 26px;
      }
      .services-track::before {
        display: none;
      }
      .why-grid {
        grid-template-columns: 1fr;
      }
      section.why {
        padding-bottom: 58px;
      }
    }
/* ========== CAMERAS & SERVICES / TESTIMONIAL CARDS ========== */

section.solutions {
  position: relative;
  background: radial-gradient(circle at 10% 0%, rgba(242,183,5,0.18), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(255,229,122,0.16), transparent 55%),
              linear-gradient(180deg, #000108, #010006);
  padding: 70px 0 90px;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.solutions-noise {
  position: absolute;
  inset: -60px;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.15), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(242,183,5,0.25), transparent 60%);
  pointer-events: none;     animation: overlayDrift 14s ease-in-out infinite alternate;    }

.solutions-headline {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 32px;
}

.solutions-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

.solutions-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #11ff7a;
  box-shadow: 0 0 12px rgba(17,255,122,0.95);
}

.solutions-title {
  font-family: "Orbitron", system-ui;
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.solutions-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* grid */

.solutions-grid {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.solution-card {
  position: relative;
  border-radius: 20px;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top left, rgba(242,183,5,0.38), rgba(4,7,20,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 0%, rgba(242,183,5,0.45), transparent 40%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,183,5,0.7);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.9),
    0 0 24px rgba(242,183,5,0.9);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(230,235,255,0.9);
  margin-bottom: 8px;
}

.solution-badge-pill {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(242,183,5,0.95);
  box-shadow: 0 0 10px rgba(242,183,5,0.9);
}

.solution-name {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.solution-meta {
  position: relative;
  z-index: 1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.solution-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.solution-list li {
  font-size: 13px;
  color: #d9e0ff;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.solution-list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: 0;
  color: var(--accent-soft);
  font-size: 14px;
}

/* responsive */

@media (max-width: 980px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== INDUSTRIES SERVED ========== */

section.industries {
  position: relative;
  padding: 96px 0 82px;
  background:
    linear-gradient(180deg, #060915, #050714 55%, #03040d),
    radial-gradient(circle at 10% 12%, rgba(255,78,96,0.08), transparent 38%),
    radial-gradient(circle at 90% 10%, rgba(255,78,96,0.12), transparent 42%);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  --industries-accent: var(--accent);
}

.industries-grid-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 140px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 140px);
  opacity: 0.25;
  pointer-events: none;
     animation: overlayDrift 14s ease-in-out infinite alternate;   }

.industries-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  text-align: center;
}

.industries-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  justify-content: center;
}

.industries-kicker .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--industries-accent);
  box-shadow: 0 0 16px rgba(242,183,5,0.8);
}

.industries-title {
  font-family: "Orbitron", system-ui;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 1100px;
  margin: 10px auto 8px;
}

.industries-sub {
  max-width: 820px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0b0f1d;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 42px rgba(0,0,0,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  isolation: isolate;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.75);
  border-color: rgba(242,183,5,0.45);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  opacity: 0;
  transform: translateX(-40%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 3;
  pointer-events: none;
}

.industry-card:hover::after {
  opacity: 1;
  transform: translateX(40%);
}

.industry-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
  transition: transform 0.35s ease;
}

.industry-card:hover .industry-img {
  transform: scale(1.05);
}

.industry-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55)),
    linear-gradient(180deg, rgba(242,183,5,0) 40%, rgba(242,183,5,0.7) 100%);
}

.industry-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  text-align: center;
  font-family: "Orbitron", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
}

@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  section.industries {
    padding: 70px 0 60px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== BRAND SHOWCASE ========== */

section.brand-showcase {
  position: relative;
  padding: 90px 0 90px;
  background: linear-gradient(180deg, #070b18, #050713);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.brand-showcase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.brand-showcase-head {
  text-align: center;
}

.brand-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--text-muted);
}

.brand-showcase-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(242,183,5,0.7);
}

.brand-showcase-title {
  font-family: "Orbitron", system-ui;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 12px;
}

.brand-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.brand-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(242,183,5,0.08), transparent 40%),
    linear-gradient(145deg, #0c1022, #0a0d1b);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 260px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
  border-color: rgba(242,183,5,0.45);
}

.brand-panel::after {
  content: "";
  position: absolute;
  inset: -40% -40% auto;
  height: 60%;
  background: radial-gradient(circle at 30% 40%, rgba(242,183,5,0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.brand-panel:hover::after {
  opacity: 1;
}

.brand-image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55)) saturate(1.05);
  transition: transform 0.35s ease;
}

.brand-panel:hover .brand-image {
  transform: scale(1.04);
}

.brand-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.brand-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.55);
}

.brand-logo-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px currentColor;
}

.brand-logo-pill.brand-hikvision { color: #e60012; }
.brand-logo-pill.brand-ruijie { color: #6d2da8; }
.brand-logo-pill.brand-shelly { color: #009fe3; }

.brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.82) 100%);
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  display: flex;
  align-items: flex-end;
}

.brand-panel:hover .brand-overlay,
.brand-panel:focus-within .brand-overlay {
  opacity: 1;
  transform: translateY(0);
}

.brand-overlay-content {
  padding: 18px 16px 18px;
  width: 100%;
  display: grid;
  gap: 8px;
}
.brand-logo-row {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
}
.brand-logo-mark {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
  max-width: 150px;
}
.brand-logo-fallback {
  display: none;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #fff;
}
.brand-logo-row.fallback .brand-logo-fallback {
  display: inline-flex;
}

.brand-name {
  font-family: "Orbitron", system-ui;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft)); color: #050713; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px; border: 1px solid rgba(255,255,255,0.08);text-decoration: none;  
}

.brand-meta {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(5,7,16,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: "Orbitron", system-ui;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.brand-panel:focus-within .brand-cta {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .brand-panels {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .brand-panels {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   NEXT-LEVEL CYBER MARQUEE - RED/BLUE NEON, GLITCH, DEPTH
   ============================================================ */

/* ========== MOVING SECURITY TEXT STRIP (MARQUEE) ========== */

.security-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
  padding: 22px 0;
  backdrop-filter: blur(12px);
}

.security-track {
  display: flex;
  gap: 70px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.security-item {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #fff;
  text-shadow: 0 0 14px rgba(242,183,5,0.8);
  opacity: 0.92;
  transition: opacity .2s ease;
}

.security-item:hover {
  opacity: 1;
}

/* marquee movement */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ========== LIVE MONITORING CONSOLE ========== */

section.monitor {
  position: relative;
  background: radial-gradient(circle at 10% 0%, rgba(242,183,5,0.18), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(255,229,122,0.16), transparent 55%),
              linear-gradient(180deg, #000109, #010005);
  padding: 80px 0 90px;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.monitor-bg {
  position: absolute;
  inset: -80px;
  opacity: 0.25;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 30px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 30px
    );
  mix-blend-mode: screen;
  pointer-events: none;
  animation: monitorGridDrift 26s linear infinite;
}

@keyframes monitorGridDrift {
  0%   { transform: translate3d(0,0,0); }
  50%  { transform: translate3d(-18px, 10px, 0); }
  100% { transform: translate3d(0,0,0); }
}

.monitor-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

/* left side text */

.monitor-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

.monitor-title {
  font-family: "Orbitron", system-ui;
  font-size: 26px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.monitor-lede {
  max-width: 520px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.monitor-bullets {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.monitor-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #d9e0ff;
}

.monitor-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #11ff7a;
  box-shadow: 0 0 12px rgba(17,255,122,0.9);
}

/* right side console card */

.monitor-console {
  border-radius: 22px;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top left, rgba(242,183,5,0.4), rgba(5,8,22,0.98));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* subtle scan bar */
.monitor-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.12) 50%,
    transparent 100%
  );
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: monitorScan 5.5s linear infinite;
}

@keyframes monitorScan {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.monitor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.monitor-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.monitor-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #11ff7a;
  box-shadow: 0 0 14px rgba(17,255,122,0.95);
}

.monitor-header-chip {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.55);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* alerts block */

.monitor-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 14px;
}

.monitor-alerts {
  border-radius: 14px;
  padding: 10px 10px 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.14);
}

.monitor-alerts-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.monitor-alert-list {
  display: grid;
  gap: 6px;
  max-height: 140px;
  overflow: hidden;
}

.monitor-alert-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  padding: 6px 7px;
  border-radius: 10px;
  background: radial-gradient(circle at top left, rgba(242,183,5,0.4), rgba(0,0,0,0.9));
}

.monitor-alert-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.monitor-alert-label {
  font-weight: 600;
}

.monitor-alert-location {
  font-size: 11px;
  color: var(--text-muted);
}

.monitor-alert-time {
  font-size: 11px;
  color: rgba(240,245,255,0.9);
  white-space: nowrap;
}

/* stats block */

.monitor-stats {
  display: grid;
  gap: 8px;
}

.monitor-stat-card {
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.16);
}

.monitor-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.monitor-stat-value {
  font-family: "Orbitron", system-ui;
  font-size: 16px;
}

.monitor-stat-sub {
  font-size: 11px;
  color: rgba(210,215,245,0.9);
}

/* tiny uptime bar */
.monitor-uptime-bar {
  height: 6px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.monitor-uptime-bar span {
  display: block;
  height: 100%;
  width: 98%;
  background: linear-gradient(90deg, #11ff7a, #00d0ff, var(--accent));
}

/* responsive */

@media (max-width: 980px) {
  .monitor-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .monitor-body {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========== TESTIMONIAL SLIDER ========== */

section.testi-slider {
  padding: 90px 0;
  background: linear-gradient(180deg, #010006, #02040f);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}

.testi-slider-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.testi-slider-title {
  font-family: "Orbitron";
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.testi-box {
  background: radial-gradient(circle at top left, rgba(242,183,5,0.32), rgba(4,6,16,0.92));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 35px;
  border-radius: 22px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  min-height: 220px;
  position: relative;
}

.testi-text {
  font-size: 18px;
  line-height: 1.7;
  color: #e8ecff;
  margin-bottom: 20px;
}

.testi-author {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

.testi-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 18px rgba(242,183,5,0.4);
}

.testi-btn:hover {
  background: rgba(242,183,5,0.3);
  border-color: rgba(242,183,5,0.5);
  transform: translateY(-2px);
}

/* smooth transitions */
.fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.fade.show {
  opacity: 1;
}
/* ========== INSTALLATION STEPS ========== */

section.install-steps {
  position: relative;
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #000108, #02040f);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.install-headline {
  text-align: center;
  margin-bottom: 46px;
}

.install-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  margin-bottom: 8px;
}

.install-title {
  font-family: "Orbitron", system-ui;
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* line + steps */

.install-track-wrap {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 0;
}

.install-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

/* connecting line */
.install-track::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(242,183,5,0.1), rgba(242,183,5,0.8), rgba(242,183,5,0.1));
  opacity: 0.8;
}

/* single step */

.install-step {
  position: relative;
  text-align: center;
  flex: 1;
  padding-top: 12px;
}

.install-step-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  margin: 0 auto 10px;
  background: radial-gradient(circle at 30% 30%, #F2B705, #6a4b00);
  box-shadow:
    0 0 16px rgba(242,183,5,0.85),
    0 0 32px rgba(242,183,5,0.6);
  position: relative;
  z-index: 2;
  animation: stepPulse 2.6s ease-in-out infinite;
}

/* thin outline ring */
.install-step-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.35);
  opacity: 0.7;
}

@keyframes stepPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.install-step-index {
  font-family: "Orbitron", system-ui;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.install-step-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.install-step-text {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 190px;
  margin: 0 auto;
  line-height: 1.6;
}

/* responsive */

@media (max-width: 840px) {
  .install-track {
    flex-direction: column;
    align-items: flex-start;
  }
  .install-track::before {
    display: none;
  }
  .install-step {
    text-align: left;
    padding-left: 40px;
  }
  .install-step-dot {
    margin: 0;
    position: absolute;
    left: 0;
    top: 16px;
  }
  .install-step-text {
    margin-left: 0;
    max-width: none;
  }
}
/* ========== BRAND LOGO STRIP ========== */

section.brand-strip {
  position: relative;
  padding: 40px 0 48px;
  background: linear-gradient(180deg, #02040f, #000108);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.brand-strip-head {
  text-align: center;
  margin-bottom: 18px;
}

.brand-strip-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.brand-strip-title {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.8;
}

/* marquee area */

.brand-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 14px;
}

.brand-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: brandScroll 26s linear infinite;
}

@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-pill {
  flex: none;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.7);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(242,183,5,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242,183,5,0.9);
}

/* slight blur halo at edges */
.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;    animation: overlayDrift 14s ease-in-out infinite alternate; }

.brand-marquee::before {
  left: 0;
  background: linear-gradient(to right, #02040f, transparent);
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(to left, #000108, transparent);
}
/* ========== VIDEO SECTION ========== */

section.video-showcase {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Background video */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(70%) sepia(35%) contrast(1.2) brightness(0.9) saturate(1.05);
}

/* Red/black overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 55% 40%, 
      rgba(242,183,5,0.45) 0%, 
      rgba(0,0,0,0.85) 60%
  );
  mix-blend-mode: screen;
}

/* Content */
.video-content {
  position: relative;
  text-align: center;
  z-index: 10;
  max-width: 780px;
  padding: 0 20px;
}

.video-title {
  font-family: "Orbitron", system-ui;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  animation: fadeUp 1.3s ease-out forwards;
  opacity: 0;
}

.video-text {
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 26px;
  animation: fadeUp 1.6s ease-out forwards;
  opacity: 0;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 30px rgba(242,183,5,0.7);
  cursor: pointer;
  text-decoration: none; 
  animation: fadeUp 1.9s ease-out forwards;
  opacity: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.video-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(242,183,5,0.95);
  filter: brightness(1.1);
}

/* Fade-up animation */
@keyframes fadeUp {
  0% { transform: translateY(25px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ========== CONTACT BANNER / FINAL CTA ========== */

section.contact-banner {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(circle at 50% 20%, rgba(242,183,5,0.3), rgba(0,0,0,0.95)),
              linear-gradient(180deg, #010006, #02040c);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  overflow: hidden;
}

/* faint animated glow line */
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(242,183,5,0.8), transparent);
  animation: glowline 4s infinite ease-in-out;
  opacity: 0.55;
}

@keyframes glowline {
  0% { transform: translateX(-50%) scaleX(0.8); opacity: 0.2; }
  50% { transform: translateX(-50%) scaleX(1); opacity: 0.8; }
  100% { transform: translateX(-50%) scaleX(0.8); opacity: 0.2; }
}

.cta-title {
  font-family: "Orbitron", system-ui;
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA BUTTONS */

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  text-decoration: none; 
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  box-shadow: 0 18px 40px rgba(242,183,5,0.8);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 26px 60px rgba(242,183,5,0.95);
}

.cta-btn-outline {
  background: rgba(0,0,0,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}

.cta-btn-outline:hover {
  background: rgba(242,183,5,0.2);
  border-color: var(--accent);
  transform: translateY(-2px);
}
/* ========== FOOTER ========== */

footer.secure-footer {
  background: linear-gradient(180deg, #000005, #02040b);
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

/* Scroll ribbon */
.scroll-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--ribbon-height);
  background: rgba(242,183,5,0.16);
  z-index: 180;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.scroll-ribbon-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #F2B705, #FFE57A);
  box-shadow: 0 0 16px rgba(242,183,5,0.45);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  transition: transform 0.15s ease-out;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: transform, opacity;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.anim-slide-left.reveal { transform: translateX(40px); }
.anim-slide-left.reveal.show { transform: translateX(0); }
.anim-slide-right.reveal { transform: translateX(-40px); }
.anim-slide-right.reveal.show { transform: translateX(0); }
.anim-zoom-in.reveal { transform: scale(0.95); }
.anim-zoom-in.reveal.show { transform: scale(1); }
.anim-tilt-up.reveal { transform: translateY(30px) rotateX(6deg); transform-origin: center; }
.anim-tilt-up.reveal.show { transform: translateY(0) rotateX(0deg); }
.anim-pop.reveal { transform: translateY(10px) scale(0.96); }
.anim-pop.reveal.show { transform: translateY(0) scale(1); }
.anim-glow.reveal { box-shadow: 0 0 0 rgba(242,183,5,0); }
.anim-glow.reveal.show { box-shadow: 0 20px 60px rgba(242,183,5,0.25); }
.anim-slide-up.reveal { transform: translateY(34px); }
.anim-slide-up.reveal.show { transform: translateY(0); }
.anim-rise.reveal { transform: translateY(40px); }
.anim-rise.reveal.show { transform: translateY(0); }
.anim-fade-up.reveal { transform: translateY(24px); }
.anim-fade-up.reveal.show { transform: translateY(0); }

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 32px rgba(242,183,5,0.9);
  border: 3px solid rgba(255,255,255,0.1);
}

.footer-logo-text {
  font-family: "Orbitron";
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

/* Footer links */

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  color: #ffffff;
  opacity: 0.85;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none; 
  transition: color 0.20s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Social icons */

.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(242,183,5,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2B705;
  font-size: 16px;
  transition: 0.25s ease;
  border: 1px solid rgba(242,183,5,0.35);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a.instagram-link svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  background: rgba(242,183,5,0.35);
  color: #F2B705;
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* Divider */

.footer-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  margin: 40px 0 24px;
}

/* Bottom */

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Responsive */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-brand {
    margin-bottom: 16px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 18px;
  }
  nav.nav-links {
    left: 10px;
    right: 10px;
  }
  .brand-marquee {
    padding: 0 6px;
  }
  section.hero {
    overflow: hidden;
  }
}




