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

:root {
  /* Enterprise Dark Palette */
  --nav:       rgba(11, 15, 25, 0.85);
  --nav-dark:  #05080f;
  --nav-hover: #1e293b;
  
  /* Vibrant Accents */
  --accent:    #00e5ff; /* Cyber Cyan */
  --accent-hover: #00b8cc;
  --accent-glow: 0 0 20px rgba(0, 229, 255, 0.4);
  
  --accent2:   #6366f1; /* Indigo */
  --accent2-glow: 0 0 20px rgba(99, 102, 241, 0.4);
  
  --gold:      #f59e0b; /* Amber */
  --gold-dk:   #d97706;
  
  --hero-bg:   #05080f; /* Deep background */
  --bg:        #0B0F19; /* Main background */
  
  /* Glassmorphism Surfaces */
  --surface:   rgba(30, 41, 59, 0.4);
  --surface2:  rgba(30, 41, 59, 0.7);
  --glass-blur: blur(12px);
  
  /* Text */
  --text:      #F8FAFC; /* Slate 50 */
  --text-mid:  #94A3B8; /* Slate 400 */
  --text-lt:   #64748B; /* Slate 500 */
  
  /* Borders */
  --border:    rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 229, 255, 0.3);
  
  /* Shadows */
  --sh-sm:     0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  --sh:        0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -4px rgba(0, 0, 0, 0.6);
  --sh-lg:     0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 8px 10px -6px rgba(0, 0, 0, 0.7);
  
  --r:         16px; /* Slightly softer corners for premium feel */
  
  /* Legacy variable mappings to maintain compatibility */
  --card-color: var(--accent);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Gradients/Mesh */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.03) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

/* NAV - Glassmorphism */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 76px;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-text span {
  color: var(--accent);
  display: block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-left: 50px;
  margin-right: auto;
}

nav a {
  font-family: 'Inter', sans-serif;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 240px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent);
}

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0);
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #000 !important;
  box-shadow: var(--accent-glow);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 160px 48px 100px;
  background: transparent;
  overflow: hidden;
}

/* Hero gradient orb behind content */
.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 229, 255, 0.05) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

.binary-float {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-logo-wrap {
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero-logo-svg {
  height: 120px; /* Slightly smaller, more refined */
  width: auto;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  backdrop-filter: blur(4px);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.1s both;
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero h1 .gold {
  background: linear-gradient(135deg, #00e5ff, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  display: inline-block;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--text-mid);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.25s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #00b8cc 100%);
  color: #000;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* STATS BAR */
.stats-bar {
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.stat-item {
  flex: 1;
  max-width: 240px;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #94A3B8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-mid);
  text-transform: uppercase;
}

/* SECTIONS */
section {
  position: relative;
  padding: 120px 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header h2 strong {
  font-weight: 800;
  color: var(--accent);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin: 0 auto 24px;
  border-radius: 4px;
}

.section-header p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-block;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

/* SERVICES */
.services {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

/* Gradient hover border effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--r);
  padding: 2px;
  background: linear-gradient(135deg, var(--card-color, var(--accent)), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 20px rgba(0, 229, 255, 0.05);
  background: rgba(30, 41, 59, 0.6);
}

.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-lt);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--accent);
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--accent2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ai-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent2);
  fill: none;
  stroke-width: 2;
}

.service-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.sstat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.sstat-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  color: var(--text-lt);
  text-transform: uppercase;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 4px 0 4px 22px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300e5ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 12px;
  color: var(--accent-hover);
}

/* AI SECTION */
.ai-section {
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* Add a subtle glow behind AI core */
.ai-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ai-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotate 20s linear infinite;
}

.ai-ring:nth-child(1) {
  width: 320px; height: 320px;
  border-color: rgba(0, 229, 255, 0.15);
  border-top-color: var(--accent);
}

.ai-ring:nth-child(2) {
  width: 240px; height: 240px;
  border-color: rgba(99, 102, 241, 0.15);
  border-right-color: var(--accent2);
  animation-direction: reverse;
  animation-duration: 15s;
}

.ai-ring:nth-child(3) {
  width: 380px; height: 380px;
  border-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  animation-duration: 25s;
}

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

.ai-core {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nav-hover);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.2);
  font-size: 2.5rem;
}

.ai-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ai-content h2 strong {
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-content p {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.ai-feat:hover {
  transform: translateX(8px);
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--sh);
}

.ai-feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(0, 229, 255, 0.1);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}

.ai-feat-text strong {
  display: block;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #fff;
}

.ai-feat-text span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* PROCESS */
.process {
  background: transparent;
}

.timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.2) 15%, rgba(0, 229, 255, 0.2) 85%, transparent);
}

.t-step {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  position: relative;
}

.t-num {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--nav-hover);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
  position: relative;
  z-index: 1;
}

.t-content {
  flex: 1;
  padding: 24px 32px;
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  transition: all 0.3s ease;
}

.t-content:hover {
  transform: translateX(8px);
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--sh);
}

.t-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.t-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* CTA / CONTACT */
.cta {
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
}

.cta h2 strong {
  color: var(--accent);
}

.cta > p {
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-2px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-lt);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item-value {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.contact-item-value a {
  color: #fff;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: var(--accent);
}

.avail-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.avail-pill {
  flex: 1;
  min-width: 80px;
  padding: 12px 8px;
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}

.avail-pill-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.avail-pill-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  color: var(--text-lt);
  text-transform: uppercase;
  margin-top: 4px;
}

/* FORM */
.inquiry-form-wrap {
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--sh-lg);
  position: relative;
}

.inquiry-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: var(--r) var(--r) 0 0;
}

.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group.half {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
}

.form-input, .form-select {
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
  background: rgba(11, 15, 25, 0.8);
}

.form-input::placeholder {
  color: var(--text-lt);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300e5ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  -webkit-appearance: none;
  appearance: none;
}

.form-select option {
  background: var(--nav-hover);
  color: #fff;
}

.service-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
  background: rgba(11, 15, 25, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.check-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.check-item input[type="checkbox"] {
  display: none;
}

.check-box {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s;
  background: rgba(11, 15, 25, 0.5);
}

.check-item input:checked ~ .check-box {
  border-color: var(--accent);
  background: var(--accent);
}

.check-item input:checked ~ .check-box::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 10px;
  border: 2px solid #000;
  border-left: none; border-top: none;
  transform: rotate(45deg);
}

.check-label {
  font-size: 0.9rem;
  color: var(--text-mid);
  user-select: none;
}

.check-item input:checked ~ .check-label {
  color: #fff;
}

.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 8px 12px;
  background: rgba(11, 15, 25, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.tb-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.tb-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.tb-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
}

.rich-editor {
  min-height: 120px;
  max-height: 250px;
  overflow-y: auto;
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px;
  outline: none;
  line-height: 1.7;
  border-radius: 0 0 8px 8px;
  transition: all 0.2s ease;
}

.rich-editor:focus {
  border-color: var(--accent);
  background: rgba(11, 15, 25, 0.8);
}

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
}

/* BLOG */
.blog-section {
  background: transparent;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.blog-card {
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(30, 41, 59, 0.6);
}

.blog-card-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

/* Tag colors */
.blog-tag.vapt { color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); }
.blog-tag.cloud { color: #a78bfa; border-color: rgba(167, 139, 250, 0.3); }
.blog-tag.harden { color: #34d399; border-color: rgba(52, 211, 153, 0.3); }
.blog-tag.risk { color: #fb923c; border-color: rgba(251, 146, 60, 0.3); }
.blog-tag.audit { color: #f87171; border-color: rgba(248, 113, 113, 0.3); }
.blog-tag.threat { color: #fb7185; border-color: rgba(251, 113, 133, 0.3); }

.blog-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-lt);
}

.blog-card-body {
  padding: 16px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.2s;
}

.blog-card:hover h3 {
  color: var(--accent);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.blog-author-name {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}

.blog-read-time {
  font-size: 0.8rem;
  color: var(--text-lt);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.2s;
}

.blog-read-more:hover {
  gap: 10px;
  color: var(--accent-hover);
}

.blog-featured {
  max-width: 1200px;
  margin: 0 auto 40px;
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: all 0.3s ease;
  position: relative;
}

.blog-featured:hover {
  box-shadow: var(--sh-lg);
  border-color: rgba(255, 255, 255, 0.15);
}

.blog-featured-label {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #000;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 10;
}

.blog-featured-visual {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.blog-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content .blog-tag {
  margin-bottom: 16px;
  display: inline-block;
  align-self: flex-start;
}

.blog-featured-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.blog-featured:hover .blog-featured-content h3 {
  color: var(--accent);
}

.blog-featured-content p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.blog-subscribe {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--r);
  flex-wrap: wrap;
}

.blog-subscribe-text strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.blog-subscribe-text span {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.blog-subscribe-form {
  display: flex;
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  margin-left: auto;
}

.blog-subscribe-input {
  flex: 1;
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: #fff;
  padding: 14px 20px;
  outline: none;
  border-radius: 8px 0 0 8px;
}

.blog-subscribe-btn {
  background: var(--accent2);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background 0.2s;
}

.blog-subscribe-btn:hover {
  background: #4f46e5;
}

/* FOOTER */
footer {
  background: #020617;
  padding: 64px 48px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo-svg {
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.2));
}

.footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-align: left;
  line-height: 1.2;
}

.footer-logo-text span {
  color: var(--accent);
  display: block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

footer nav {
  position: static;
  background: transparent;
  border: none;
  justify-content: center;
  height: auto;
  padding: 0;
  margin-bottom: 24px;
  backdrop-filter: none;
}

footer nav ul {
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

footer nav a {
  color: var(--text-mid);
}

footer p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-lt);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #05080f; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.3); }

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Tablet Optimization */
@media(max-width: 1024px) {
  .hero { padding: 140px 32px 80px; }
  .hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
  
  /* Convert 3+ column grids to 2 columns */
  .services-grid, 
  .values-grid, 
  .ai-grid, 
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr; /* Form stacks on tablet */
    gap: 40px;
  }
}

/* Mobile Optimization */
@media(max-width: 768px) {
  nav { padding: 0 24px; }
  
  /* Mobile Menu Styles */
  .menu-toggle { display: flex; }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    margin: 0;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(0, 229, 255, 0.1);
  }

  nav ul.active { right: 0; }
  
  nav ul li { margin-bottom: 24px; text-align: center; }
  nav ul li a { font-size: 1.25rem; }
  
  /* Hide CTA in mobile nav bar to save space */
  .nav-cta { display: none; }
  
  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Sections & Typography */
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero h1 { font-size: 2.2rem; }
  
  .section-header h2 { font-size: 2rem; }
  
  /* Convert all grids to 1 column */
  .services-grid, 
  .values-grid, 
  .ai-grid, 
  .blog-grid,
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }
  
  /* Stats bar wrap */
  .stats-bar { flex-wrap: wrap; padding: 40px 20px; }
  .stat-item { min-width: 140px; padding: 24px 16px; border-bottom: 1px solid var(--border); border-right: none; }
  
  /* Form components */
  .blog-subscribe { flex-direction: column; align-items: stretch; text-align: center; }
  .blog-subscribe-form { margin: 0; max-width: 100%; flex-direction: column; }
  .blog-subscribe-form button { margin-left: 0; margin-top: 16px; }
}

/* ==========================================================================
   GLOBAL PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #0B0F19; /* matches new dark theme */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(0, 229, 255, 0.1);
  border-top-color: var(--accent);
  border-right-color: var(--accent2);
  animation: spinLoader 0.8s linear infinite;
  margin-bottom: 24px;
}

@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.loader-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 12px;
  opacity: 0.7;
  animation: pulseLoader 1.5s ease-in-out infinite;
}

@keyframes pulseLoader {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
