/**
 * Argus Shield - Futuristic Design System 2026
 * Breaking away from typical AI patterns
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

/* ============================================
   VARIABLES
   ============================================ */
:root {
  /* Brand - From Logo */
  --indigo-deep: #0d0d2b;
  --indigo-rich: #1a1a4e;
  --indigo-mid: #2d2d7a;
  --indigo-light: #4a4aad;
  
  --cyan-glow: #00d4ff;
  --cyan-bright: #22d3ee;
  --cyan-soft: #67e8f9;
  
  --green-core: #22c55e;
  --green-glow: #4ade80;
  
  /* UI Colors */
  --bg-void: #050510;
  --bg-deep: #0a0a1a;
  --bg-surface: #0f0f24;
  --bg-elevated: #161636;
  --bg-card: #1a1a3e;
  
  --text-bright: #ffffff;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-faint: #475569;
  
  --danger: #f43f5e;
  --warning: #eab308;
  
  --glow-cyan: 0 0 60px rgba(0, 212, 255, 0.4);
  --glow-green: 0 0 40px rgba(34, 197, 94, 0.4);
  --glow-indigo: 0 0 80px rgba(74, 74, 173, 0.3);
}

/* ============================================
   BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

::selection {
  background: var(--cyan-glow);
  color: var(--bg-void);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.glow-text {
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan-glow) 0%, var(--cyan-soft) 50%, var(--green-core) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.nav__brand span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
}

.nav__link {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 100px;
  transition: all 0.3s;
}

.nav__link:hover {
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link--active {
  color: var(--bg-void);
  background: var(--cyan-glow);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan-glow);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.nav__cta svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   HERO - IMMERSIVE FULL EXPERIENCE
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated gradient orbs */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float-orb 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--indigo-mid) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  opacity: 0.3;
  animation-delay: -7s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--green-core) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  opacity: 0.2;
  animation-delay: -14s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Grid pattern */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left side - Text */
.hero__text {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-core);
  border-radius: 50%;
  box-shadow: var(--glow-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero__badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-glow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 24px;
}

.hero__title span {
  display: block;
  color: var(--cyan-glow);
  text-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
}

.hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

/* Right side - Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

/* Central shield */
.shield {
  position: relative;
  width: 280px;
  height: 320px;
}

.shield__body {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--indigo-rich) 0%, var(--indigo-deep) 100%);
  clip-path: polygon(50% 0%, 100% 12%, 100% 65%, 50% 100%, 0% 65%, 0% 12%);
  border: 1px solid var(--indigo-mid);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 100px rgba(74, 74, 173, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.shield__inner {
  position: absolute;
  inset: 20px;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  clip-path: polygon(50% 0%, 100% 12%, 100% 65%, 50% 100%, 0% 65%, 0% 12%);
}

.shield__eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.shield__eye-outer {
  position: absolute;
  inset: 0;
  border: 3px solid var(--cyan-glow);
  border-radius: 50%;
  box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0, 212, 255, 0.2);
  animation: eye-pulse 3s ease-in-out infinite;
}

@keyframes eye-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.shield__eye-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--green-glow) 0%, var(--green-core) 100%);
  border-radius: 50%;
  box-shadow: var(--glow-green);
}

/* Scan line effect */
.shield__scan {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
  opacity: 0.6;
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { top: 20px; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: calc(100% - 60px); opacity: 0; }
}

/* Floating cards */
.float-card {
  position: absolute;
  padding: 14px 18px;
  background: rgba(15, 15, 36, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: float 5s ease-in-out infinite;
}

.float-card--threat {
  top: 40px;
  right: -20px;
  animation-delay: 0s;
  border-color: rgba(244, 63, 94, 0.3);
}

.float-card--safe {
  bottom: 60px;
  left: -40px;
  animation-delay: -2.5s;
  border-color: rgba(34, 197, 94, 0.3);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card__icon--danger {
  background: rgba(244, 63, 94, 0.15);
  color: var(--danger);
}

.float-card__icon--success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green-core);
}

.float-card__icon svg {
  width: 18px;
  height: 18px;
}

.float-card__text {
  font-size: 13px;
  font-weight: 600;
}

.float-card__text--danger { color: var(--danger); }
.float-card__text--success { color: var(--green-core); }

/* Orbital rings */
.orbit {
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  animation: orbit-rotate 30s linear infinite;
}

.orbit--1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit--2 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
  animation-duration: 45s;
}

@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan-glow);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.orbit--1 .orbit__dot { top: 0; left: 50%; transform: translateX(-50%); }
.orbit--2 .orbit__dot { bottom: 0; left: 50%; transform: translateX(-50%); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan-glow) 0%, var(--cyan-bright) 100%);
  color: var(--bg-void);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   FEATURES - BENTO GRID
   ============================================ */
.features {
  padding: 120px 0;
  position: relative;
}

.features__header {
  max-width: 600px;
  margin-bottom: 64px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cyan-glow);
}

.section__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Bento Grid - Asymmetric */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}

.bento__item {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento__item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bento__item:hover::before {
  opacity: 1;
}

/* Grid positioning */
.bento__item--1 { grid-column: span 7; grid-row: span 2; }
.bento__item--2 { grid-column: span 5; }
.bento__item--3 { grid-column: span 5; }
.bento__item--4 { grid-column: span 4; }
.bento__item--5 { grid-column: span 4; }
.bento__item--6 { grid-column: span 4; }

.bento__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.bento__icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.bento__icon--danger {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(244, 63, 94, 0.05) 100%);
  color: var(--danger);
}

.bento__icon--warning {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(234, 179, 8, 0.05) 100%);
  color: var(--warning);
}

.bento__icon--success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
  color: var(--green-core);
}

.bento__icon--cyan {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 100%);
  color: var(--cyan-glow);
}

.bento__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.bento__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Large feature card extras */
.bento__item--1 .bento__visual {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 200px;
  height: 200px;
  opacity: 0.15;
}

/* ============================================
   HOW IT WORKS - HORIZONTAL FLOW
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo-mid), transparent);
}

.process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.process__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connecting line */
.process__flow::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo-mid), var(--cyan-glow), var(--green-core));
  opacity: 0.3;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__num {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  background: var(--bg-surface);
  border: 2px solid var(--indigo-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan-glow);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.process__step:hover .process__num {
  border-color: var(--cyan-glow);
  box-shadow: var(--glow-cyan);
  transform: scale(1.1);
}

.process__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.process__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================
   INSTALLATION
   ============================================ */
.install {
  padding: 120px 0;
}

.install__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.install__content {
  position: sticky;
  top: 120px;
}

.install__steps {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
}

.install__step {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.install__step:last-child {
  border-bottom: none;
}

.install__step:hover {
  background: rgba(0, 212, 255, 0.03);
}

.install__step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--indigo-rich) 0%, var(--indigo-mid) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan-glow);
  flex-shrink: 0;
}

.install__step-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.install__step-content p {
  font-size: 14px;
  color: var(--text-muted);
}

.install__step-content code {
  padding: 3px 10px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--cyan-glow);
}

.install__step-content a {
  color: var(--cyan-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Notice */
.notice {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
}

.notice__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan-glow);
  margin-bottom: 8px;
}

.notice__title svg {
  width: 18px;
  height: 18px;
}

.notice__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--cyan-glow);
}

.footer__copy {
  font-size: 13px;
  color: var(--text-faint);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__text {
    max-width: 100%;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__visual {
    height: 400px;
  }
  
  .shield {
    width: 220px;
    height: 260px;
  }
  
  .float-card--threat { right: 20px; }
  .float-card--safe { left: 20px; }
  
  .bento__item--1 { grid-column: span 12; grid-row: span 1; }
  .bento__item--2,
  .bento__item--3 { grid-column: span 6; }
  .bento__item--4,
  .bento__item--5,
  .bento__item--6 { grid-column: span 4; }
  
  .process__flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .process__flow::before {
    display: none;
  }
  
  .install__grid {
    grid-template-columns: 1fr;
  }
  
  .install__content {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .bento__item--2,
  .bento__item--3 { grid-column: span 12; }
  
  .bento__item--4,
  .bento__item--5,
  .bento__item--6 { grid-column: span 12; }
  
  .process__flow {
    grid-template-columns: 1fr;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
/* ============================================
   ARSENAL CTA (Homepage)
   ============================================ */
.arsenal-cta {
  padding: 40px 0 80px;
}

.arsenal-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.arsenal-cta__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.arsenal-cta__content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.arsenal-cta__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  flex-shrink: 0;
}

.arsenal-cta__icon svg {
  width: 32px;
  height: 32px;
}

.arsenal-cta__text h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.arsenal-cta__text p {
  font-size: 15px;
  color: var(--text-secondary);
}

.arsenal-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--cyan-glow) 0%, var(--cyan-bright) 100%);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-void);
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.3);
  transition: all 0.3s;
  flex-shrink: 0;
}

.arsenal-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
}

.arsenal-cta__btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.arsenal-cta__btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .arsenal-cta__card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  
  .arsenal-cta__content {
    flex-direction: column;
  }
  
  .arsenal-cta__btn {
    width: 100%;
    justify-content: center;
  }
}