:root {
  /* Brand Colors from Logo */
  --color-blue: #0066FF;
  --color-blue-glow: rgba(0, 102, 255, 0.4);
  --color-blue-dark: #003399;
  
  --color-orange: #FF5500;
  --color-orange-glow: rgba(255, 85, 0, 0.4);
  --color-orange-dark: #CC4400;

  /* Theme Tokens (Dark Default) */
  --bg-main: #080808;
  --bg-secondary: #040404;
  --bg-card: rgba(25, 25, 25, 0.6);
  --bg-nav: rgba(8, 8, 8, 0.7);
  --bg-panel: rgba(255, 255, 255, 0.01);

  /* Glassmorphism */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.03);

  /* Typography Colors */
  --text-main: #FFFFFF;
  --text-muted: #A0A0A0;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Metrics */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 9999px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Light Theme Overrides */
body.light-theme {
  --bg-main: #F8F9FA;
  --bg-secondary: #EDF1F5;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-nav: rgba(248, 249, 250, 0.85);
  --bg-panel: rgba(0, 102, 255, 0.02);
  
  --glass-border: rgba(0, 102, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.5);
  
  --text-main: #1A1A1A;
  --text-muted: #5A6A7A;
  
  --card-border: rgba(0, 102, 255, 0.05);
  --card-shadow: rgba(0, 0, 0, 0.05);
  --footer-grad: radial-gradient(circle at top right, #FFFFFF, #F1F4F8);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

/* Base scroll smoothness should not be affected by * transition */
html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
}

body {
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-blue);
  color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1; /* Below content */
  pointer-events: none;
}

/* Subtle Mouse Lighting */
#cursor-glow-subtle {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, rgba(255, 85, 0, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2; /* Below content, above particles */
  mix-blend-mode: screen;
  filter: blur(40px);
}
/* Intro Sequence */
body.intro-active {
  overflow: hidden;
}
.initial-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark); /* Solid background to block content */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

/* Hide everything except intro when active */
body.intro-active .navbar,
body.intro-active section,
body.intro-active footer,
body.intro-active #particle-canvas {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.intro-brand-title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  perspective: 1200px;
  position: relative;
}

.intro-defenso {
  color: var(--text-main);
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
}

.intro-tech {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.intro-tech::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(circle, var(--color-blue-glow) 0%, rgba(255, 85, 0, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}

.intro-char {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.intro-space {
  display: inline-block;
  width: 0.25em;
}


/* Reusable Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 20;
}

.section {
  padding: 8rem 0;
  position: relative;
  z-index: 20;
}

.bg-darker {
  background-color: var(--bg-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-blue), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-blue { color: var(--color-blue); }
.text-orange { color: var(--color-orange); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-round);
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}
.badge i { width: 14px; height: 14px; }

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.125rem;
  max-width: 650px;
  margin-bottom: 2rem;
}

.section-desc.centered {
  margin-left: auto;
  margin-right: auto;
}

.container-narrow {
  max-width: 900px;
}

.about-content {
  margin-top: 3.5rem;
}

.about-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
}

.about-paragraph.highlight {
  color: var(--text-main);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1.5rem;
}


/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-round);
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
.btn-large { padding: 1.25rem 3rem; font-size: 1.1rem; }

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  color: #fff;
}

.btn-glow:hover {
  box-shadow: 0 0 20px var(--color-blue-glow), 0 0 40px var(--color-orange-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--text-main);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  transform: scale(1.1);
  border-color: var(--color-blue);
  box-shadow: 0 0 15px var(--color-blue-glow);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  position: absolute;
}

.theme-toggle .icon-sun {
  opacity: 0;
  transform: translateY(20px) rotate(90deg);
}

.theme-toggle .icon-moon {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

body.light-theme .theme-toggle .icon-sun {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

body.light-theme .theme-toggle .icon-moon {
  opacity: 0;
  transform: translateY(-20px) rotate(-90deg);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -1px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-blue);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-main);
}
.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2500;
  backdrop-filter: blur(10px);
}

.menu-toggle:hover, .menu-toggle.active {
  background: var(--glass-bg);
  border-color: var(--color-blue);
  transform: scale(1.05);
}

/* 1. Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-bg-blobs {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: floatBlobs 25s infinite alternate ease-in-out;
}

.blob-1 {
  width: 700px; height: 700px;
  background: var(--color-blue);
  top: -10%; left: -10%;
}

.blob-2 {
  width: 600px; height: 600px;
  background: var(--color-orange);
  bottom: -10%; right: -5%;
  animation-delay: -10s;
}

@keyframes floatBlobs {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 90px) scale(0.9); }
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-brand-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  perspective: 1200px;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.brand-defenso {
  color: var(--text-main);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.brand-tech {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85); /* fallback solid color */
  position: relative;
}

/* Optional: apply gradient to the child text instead if needed, but a solid color works perfectly and safely */
/* Let's keep it simple and premium */

/* Soft glow strictly behind 'Technologies' */
.brand-tech::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(circle, var(--color-blue-glow) 0%, transparent 60%);
  filter: blur(30px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.brand-char {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.brand-space {
  display: inline-block;
  width: 0.25em;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1;
  font-weight: 700;
  max-width: 1000px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-break {
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 800px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Mockup Visualization */
.hero-mockup-wrapper {
  margin-top: 5rem;
  width: 100%;
  max-width: 1100px;
  perspective: 1200px;
  padding: 0 1rem;
}

.hero-mockup {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(0, 102, 255, 0.15);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform: rotateX(5deg) scale(0.98);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-mockup-wrapper:hover .hero-mockup {
  transform: rotateX(0deg) scale(1.02);
  box-shadow: 0 50px 100px rgba(0,0,0,0.7), 0 0 80px rgba(255, 85, 0, 0.2);
}

.mockup-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.mockup-dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mockup-browser-search {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  gap: 0.5rem;
  font-size: 11px;
  color: #666;
}
.mockup-browser-search i { width: 12px; height: 12px; }

.mockup-user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.mockup-notif { color: #888; display: flex; align-items: center; }
.mockup-notif i { width: 14px; height: 14px; }
.mockup-avatar { width: 24px; height: 24px; border-radius: 50%; background: #ddd; }

.mockup-content {
  min-height: 520px;
  height: auto;
  display: flex;
  background: #f8f9fa; /* Light UI Inside Mockup */
  color: #333;
  text-align: left;
}

.mockup-sidebar {
  width: 200px;
  background: #fff;
  border-right: 1px solid #eee;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
}

.mockup-logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 2rem;
  color: #2e7d32;
}
.mockup-logo-icon {
  width: 24px; height: 24px;
  background: #c8e6c9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
}
.mockup-logo-icon i { width: 14px; height: 14px; }

.mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.m-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
}
.m-nav-item.active {
  background: #e8f5e9;
  color: #2e7d32;
}
.m-nav-item i { width: 16px; height: 16px; }

.mockup-nav.bottom { margin-top: auto; }

.mockup-main {
  flex-grow: 1;
  padding: 1.5rem;
}

.mockup-main-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.m-stat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.m-stat-label { font-size: 11px; color: #888; display: block; }
.m-stat-val { font-size: 22px; font-weight: 800; display: block; color: #111; }
.m-stat-trend { font-size: 10px; font-weight: 700; margin-top: 0.25rem; }
.m-stat-trend.up { color: #2e7d32; }
.m-stat-trend.down { color: #d32f2f; }

.m-stat-chart-mini {
  width: 44px; height: 24px;
  background: #f0f0f0;
  border-radius: 4px;
}
.m-stat-chart-mini.blue { background: #e3f2fd; }
.m-stat-chart-mini.orange { background: #fff3e0; }
.m-stat-chart-mini.red { background: #ffebee; }

.mockup-charts-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
}

.card-glass {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
}

.m-chart-header { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.m-main-chart { position: relative; height: 160px; margin-top: 1rem; }
.m-chart-labels { display: flex; justify-content: space-between; margin-top: 0.5rem; padding: 0 0.5rem; }
.m-chart-labels span { font-size: 10px; color: #888; font-weight: 600; }

.m-donut-chart {
  width: 140px; height: 140px;
  border: 16px solid #e8f5e9;
  border-top-color: #2e7d32;
  border-radius: 50%;
  margin: 1.5rem auto 0;
  position: relative;
}
.m-donut-chart::before {
  content: ''; position: absolute; top: -16px; left: -16px; width: 140px; height: 140px;
  border: 16px solid transparent; border-bottom-color: #d32f2f; border-left-color: #000;
  border-radius: 50%; transform: rotate(15deg);
}

.m-donut-inner {
  width: 70px; height: 70px;
  border: 1px dashed #eee;
  border-radius: 50%;
}


/* 3. Security Highlight Strip */
.security-strip {
  padding: 8rem 0;
  background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.strip-content {
  max-width: 900px;
  margin: 0 auto;
}

.strip-text {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.strip-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  margin: 0 auto;
  border-radius: var(--radius-round);
}

@keyframes nodeFloat {
  0% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-20px) rotate(10deg); }
}

/* 4. Services layout */
.services.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services .section-header {
  margin-bottom: 1.5rem;
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}
.col-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.col-title i { width: 24px; height: 24px; }

.services-grid-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 1.75rem 1.5rem !important;
  z-index: 1;
}

/* Luxury Shine Sweep */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::after {
  left: 200%;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.service-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-blue);
  transition: var(--transition-smooth);
}
.hover-glow-orange .service-icon { color: var(--color-orange); }

.service-card:hover .service-icon {
  background: var(--color-blue);
  color: #fff;
  transform: scale(1.15);
  filter: brightness(1.2);
  box-shadow: 0 0 20px var(--color-blue-glow);
}
.hover-glow-orange:hover .service-icon { 
  background: var(--color-orange); 
  box-shadow: 0 0 20px var(--color-orange-glow);
}

.hover-glow-blue:hover { 
  transform: translateY(-20px) scale(1.08); 
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 102, 255, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.05); 
  border-color: rgba(0, 102, 255, 0.6) !important;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
}
.hover-glow-orange:hover { 
  transform: translateY(-20px) scale(1.08); 
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 85, 0, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.05); 
  border-color: rgba(255, 85, 0, 0.6) !important;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
}

.hover-glow-blue:hover h4 { color: var(--color-blue); transition: color 0.3s ease; }
.hover-glow-orange:hover h4 { color: var(--color-orange); transition: color 0.3s ease; }

/* 5. Security Spotlight */
.security-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(25,25,25,0.8) 0%, rgba(10,10,10,0.9) 100%);
}

.benefit-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--text-main);
}
.benefit-list li i { color: var(--color-orange); width: 20px; height: 20px; }

.radar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.radar-animation {
  width: 320px;
  height: 320px;
  max-width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  border: 1px solid rgba(255, 85, 0, 0.1);
  margin: 0 auto;
}

.radar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 85, 0, 0.15);
  border-radius: 50%;
}
.radar-ring:nth-child(1) { width: 100%; height: 100%; }
.radar-ring:nth-child(2) { width: 75%; height: 75%; }
.radar-ring:nth-child(3) { width: 50%; height: 50%; }
.radar-ring:nth-child(4) { width: 25%; height: 25%; }

.radar-crosshair {
  position: absolute;
  background: rgba(255, 85, 0, 0.1);
  z-index: 1;
}
.radar-crosshair.h { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.radar-crosshair.v { top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%); }

.radar-sweep {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: conic-gradient(from 0deg, rgba(255, 85, 0, 0.25) 0deg, transparent 90deg);
  border-radius: 50%;
  border-left: 2px solid rgba(255, 85, 0, 0.5);
  animation: radarScan 4s infinite linear;
  z-index: 2;
}

.radar-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--color-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-blue);
  animation: radarTarget 3s infinite ease-in-out;
  opacity: 0;
  z-index: 3;
}
.dot-1 { top: 25%; left: 70%; animation-delay: 0.2s; }
.dot-2 { top: 65%; left: 30%; animation-delay: 1.4s; }
.dot-3 { top: 40%; left: 20%; animation-delay: 2.6s; }

.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #fff;
  z-index: 4;
}

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

@keyframes radarTarget {
  0% { opacity: 0; transform: scale(0.5); filter: blur(2px); }
  20% { opacity: 1; transform: scale(1); filter: blur(0px); }
  80% { opacity: 0.6; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.2); }
}

/* 6. Why Choose Us Layout */
.why-us-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.why-content {
  text-align: left;
}

.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.adv-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  flex-shrink: 0;
}

.advantage-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.advantage-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* 6. Why Choose Us Layers */
.feature-stack {
  position: relative;
  height: 300px;
  width: 100%;
  max-width: 380px;
  margin-right: 0;
  margin-left: auto;
  margin-top: -4rem;
  perspective: 1200px;
}
.layer {
  position: absolute;
  width: 100%; height: 120px;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  overflow: hidden;
  position: relative;
}

/* Shine Sweep for Layers */
.layer::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  transition: 0.75s;
}

.layer:hover::after {
  left: 150%;
}

.layer-1 { top: 0; transform: translateZ(80px) translateY(10px); border: 1px solid rgba(255,255,255,0.08); border-left: 4px solid var(--color-blue); }
.layer-2 { top: 45px; transform: translateZ(40px) translateY(5px); border: 1px solid rgba(255,255,255,0.08); border-left: 4px solid var(--color-orange); opacity: 0.8; }
.layer-3 { top: 90px; transform: translateZ(0); border: 1px solid rgba(255,255,255,0.08); border-left: 4px solid var(--color-blue); opacity: 0.6; }

.layer-1:hover { border-color: rgba(0, 102, 255, 0.6) !important; box-shadow: 0 45px 90px rgba(0,0,0,0.6), 0 0 35px rgba(0, 102, 255, 0.25); background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%) !important; opacity: 1 !important; z-index: 50; }
.layer-2:hover { border-color: rgba(255, 85, 0, 0.6) !important; box-shadow: 0 45px 90px rgba(0,0,0,0.6), 0 0 35px rgba(255, 85, 0, 0.25); background: linear-gradient(135deg, rgba(255, 85, 0, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%) !important; opacity: 1 !important; z-index: 50; }
.layer-3:hover { border-color: rgba(0, 102, 255, 0.6) !important; box-shadow: 0 45px 90px rgba(0,0,0,0.6), 0 0 35px rgba(0, 102, 255, 0.25); background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%) !important; opacity: 1 !important; z-index: 50; }

.feature-stack:hover .layer-1 { transform: translateZ(100px) translateY(120px) scale(1.02); }
.feature-stack:hover .layer-2 { transform: translateZ(50px) translateY(40px) scale(1.01); opacity: 1; }
.feature-stack:hover .layer-3 { transform: translateZ(0) translateY(-40px) scale(1); opacity: 0.8; }

/* 7. Industry Solutions (Showcase) */
.showcase-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.showcase-card {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.showcase-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.showcase-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-card:hover .showcase-img {
  transform: scale(1.15) rotate(5deg);
}

.c-restaur { background: rgba(255, 85, 0, 0.1); color: var(--color-orange); }
.c-retail { background: rgba(0, 102, 255, 0.1); color: var(--color-blue); }
.c-startup { background: rgba(0, 212, 255, 0.1); color: #00D4FF; }
.c-office { background: rgba(255, 255, 255, 0.05); color: #fff; }
.c-webdev { background: rgba(0, 102, 255, 0.15); color: var(--color-blue); }
.c-platform { background: rgba(255, 115, 0, 0.15); color: var(--color-orange); }

.showcase-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.showcase-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
}




/* 9. Process Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 6rem auto 0;
  padding-left: 3rem;
}
.timeline-line {
  position: absolute;
  left: 0; top: 0; width: 2px; height: 100%;
  background: linear-gradient(180deg, var(--color-blue), var(--color-orange));
}
.time-step {
  position: relative;
  margin-bottom: 5rem;
}
.step-dot {
  position: absolute;
  left: -42px; top: 0;
  width: 24px; height: 24px;
  background: var(--bg-dark);
  border: 4px solid var(--color-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.highlight-step .step-dot { border-color: var(--color-orange); animation: pulseOrange 2s infinite; }

/* Testimonials */
.testim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testim-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
}

.testim-text {
  opacity: 0.4;
  font-style: italic;
}

@media (max-width: 768px) {
  .hero-break { display: inline; }
}

@keyframes pulseOrange {
  0% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 85, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

/* 12. Footer */
.footer {
  background: var(--footer-grad);
  padding: 8rem 0 3rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-blue), var(--color-orange), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-blue);
  transform: translateX(6px);
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-link i {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  z-index: 2;
}

.social-link:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Individual Brand Glows */
.social-link.instagram:hover {
  background: rgba(255, 85, 0, 0.1);
  border-color: var(--color-orange);
  box-shadow: 0 0 20px var(--color-orange-glow);
  color: #fff;
}

.social-link.whatsapp:hover,
.social-link.email:hover {
  background: rgba(0, 102, 255, 0.1);
  border-color: var(--color-blue);
  box-shadow: 0 0 20px var(--color-blue-glow);
  color: #fff;
}

/* Base icon sizing for SVG */
.social-link svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  z-index: 2;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Specific fill for WhatsApp logo path if using fill instead of stroke */
.social-link.whatsapp:hover svg {
  fill: rgba(255, 85, 0, 0.1);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Footer image sizing */
.footer-logo .brand-img { height: 30px; }

/* CTA Social Buttons */
.social-cta-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* CTA Social Icons (Circular) */
.social-cta-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.cta-social-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-social-icon i,
.cta-social-icon svg {
  width: 20px; /* Matched to footer weight */
  height: 20px;
  transition: all 0.3s ease;
  display: block;
}

/* Tooltip Styling */
.cta-social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(8, 8, 8, 0.95);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cta-social-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Hover States with Brand Colors */
.cta-social-icon:hover {
  transform: scale(1.15) translateY(-5px);
  color: #fff;
}

.cta-social-icon.whatsapp:hover {
  border-color: var(--color-blue);
  box-shadow: 0 0 25px var(--color-blue-glow);
  background: rgba(0, 102, 255, 0.1);
}

.cta-social-icon.email:hover {
  border-color: var(--color-blue);
  box-shadow: 0 0 25px var(--color-blue-glow);
  background: rgba(0, 102, 255, 0.1);
}

.cta-social-icon.instagram:hover {
  border-color: var(--color-orange);
  box-shadow: 0 0 25px var(--color-orange-glow);
  background: rgba(255, 85, 0, 0.1);
}

.cta-social-icon:hover i,
.cta-social-icon:hover svg {
  filter: brightness(1.2);
}

/* Enhanced Media Queries */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .hero-title { font-size: clamp(2.5rem, 7vw, 5rem); }
  .services-columns { gap: 2.5rem; }
}

@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .navbar { padding: 1rem 0; }
  
  .services-columns {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .security-layout {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
  
  .security-visual {
    order: -1; /* Radar on top */
    margin-bottom: 2rem;
  }
  
  .radar-container { padding: 1rem; }
  


  
  .footer-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media (max-width: 992px) {
  .menu-toggle { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at top right, rgba(15, 15, 25, 0.98), rgba(5, 5, 5, 1));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.4s ease;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transform: translateX(100%) scale(1.1);
  }
  
  .nav-links.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
  }

  .nav-link {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  }

  .nav-links.active .nav-link {
    transform: translateY(0);
    opacity: 1;
  }

  /* Stagger delays for nav links */
  .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .nav-link:nth-child(2) { transition-delay: 0.15s; }
  .nav-link:nth-child(3) { transition-delay: 0.2s; }
  .nav-link:nth-child(4) { transition-delay: 0.25s; }
  
  .nav-cta {
    display: none; /* Hide in navbar, show in menu if needed */
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 300px; height: 300px;
    background: var(--color-blue);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
  }
  
  .why-us-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .advantage-item {
    flex-direction: column;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
  }
  
  .advantage-list {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feature-stack {
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  
  .brand-img { height: 26px; }
  .brand-text { font-size: 1.2rem; }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  
  .hero-mockup-wrapper { margin-top: 2rem; padding: 0 1rem; }
  .hero-mockup { transform: rotateX(2deg) scale(1); }
  
  .radar-animation { width: 220px; height: 220px; }
  .radar-container { padding: 1rem 0; }
  
  .mockup-content { min-height: 380px; padding-bottom: 2rem; }
  .mockup-sidebar { display: none; }
  .mockup-stats { grid-template-columns: 1fr; gap: 1rem; }
  .mockup-charts-row { grid-template-columns: 1fr; }
  .mockup-main { padding: 1rem; }
  
  .mockup-browser-search { font-size: 10px; }
  .mockup-header { padding: 0 0.5rem; gap: 0.5rem; }
  
  .strip-text { font-size: 2.2rem; }
  
  .timeline { padding-left: 1.5rem; }
  .step-dot { left: -26px; width: 20px; height: 20px; font-size: 9px; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .testim-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-actions .btn { width: 100%; }
  
  .social-cta-row { flex-direction: row; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
  .cta-social-icon { width: 50px; height: 50px; }
  .cta-social-icon i { width: 20px; height: 20px; }
  
  .nav-container { padding: 0 1rem; gap: 0.5rem; }
  .btn-sm { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
  .brand-img { height: 20px; }
  .brand-text { font-size: 1rem; }

  .hero-mockup { transform: rotateX(0deg) scale(1); }
  .mockup-main { padding: 0.75rem; }
  .m-stat-card { padding: 0.75rem; }
  .m-stat-val { font-size: 16px; }
  .m-stat-label { font-size: 9px; }
  
  .section-title { 
    font-size: clamp(1.6rem, 5vw, 2.2rem); 
    line-height: 1.5; 
    margin-bottom: 1.25rem; 
    transform: none !important; 
    opacity: 1 !important;
  }
  .section-desc { font-size: 0.95rem; margin-bottom: 2rem !important; }
  
  #showcase { 
    z-index: 100; 
    position: relative; 
    background: var(--bg-dark); 
    margin-top: 5rem; /* Increased margin significantly */
    padding-top: 3rem;
  }
  
  .radar-animation { width: 180px; height: 180px; }
  .security-layout { padding: 2.5rem 1.25rem; }
  


  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand { align-items: center; }
  .footer-desc { margin: 0 auto; }
  .footer-social-meta { justify-content: center; }
  .social-links { justify-content: center; }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2rem; }
  .container { padding: 0 1rem; }
  .glass-panel { padding: 1.25rem; }
  .hero-actions .btn { font-size: 0.9rem; padding: 1rem; }
}

/* Luxury Mobile Enhancements */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem 1.25rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%) !important;
  }
  
  .service-icon {
    width: 38px; height: 38px;
    margin-bottom: 1rem;
  }

  .service-card h4 { font-size: 1.15rem; }
  .service-card p { font-size: 0.9rem; }

  .layer-3 { top: 0 !important; transform: none !important; opacity: 1 !important; z-index: 1; position: relative; }
  
  .feature-stack { 
    height: auto; 
    margin-bottom: 5rem; 
    position: relative; 
    z-index: 5; 
    perspective: none !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    pointer-events: none; /* Disable all tap/hover interaction completely */
  }

  .layer {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 320px;
    height: 80px !important;
    transform: none !important;
    margin: 0 auto;
    box-shadow: var(--shadow-sm) !important;
  }

  .feature-stack:hover .layer, .layer:active, .layer:focus, .feature-stack:hover .layer-1, .feature-stack:hover .layer-2, .feature-stack:hover .layer-3 { 
    transform: none !important; /* Force static state */
    top: 0 !important;
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }

  /* Remove any remaining animation logic */
  .feature-stack * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .showcase-slider {
    gap: 1rem;
    margin-top: 1rem;
  }

  .showcase-card {
    padding: 1.5rem 1.15rem;
  }

  .showcase-info h4 { font-size: 1.1rem; }
  .showcase-info p { font-size: 0.85rem; }

  .cta-box {
    padding: 3rem 1.25rem;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
