/* ==========================================================================
   AVYAKTA WEBTECH - NEO-CYBER ANIMATED SYSTEM (LIGHT & DARK DUAL THEME)
   Auto Time-Based Theme Switcher & Rich Micro-Animation Engine
   ========================================================================== */

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

/* --- DARK THEME TOKENS (DEFAULT / NIGHT) --- */
:root, [data-theme="dark"] {
  --bg-page: #030712;
  --bg-dark-0: #030712;
  --bg-dark-1: #080d1a;
  --bg-dark-2: #0b1329;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-hover: rgba(30, 41, 69, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-island: rgba(8, 13, 26, 0.88);
  
  --cyber-indigo: #6366f1;
  --cyber-purple: #a855f7;
  --cyber-cyan: #06b6d4;
  --cyber-emerald: #10b981;
  --cyber-amber: #f59e0b;
  
  --grad-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
  --grad-cyan-indigo: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  
  --text-white: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-active: 1px solid rgba(99, 102, 241, 0.4);
  --border-island: 1px solid rgba(255, 255, 255, 0.12);
  
  --shadow-bento: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);
  --mesh-opacity: 0.85;
}

/* --- LIGHT THEME TOKENS (DAYTIME) --- */
[data-theme="light"] {
  --bg-page: #f8fafc;
  --bg-dark-0: #f8fafc;
  --bg-dark-1: #f1f5f9;
  --bg-dark-2: #e2e8f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-island: rgba(255, 255, 255, 0.92);
  
  --cyber-indigo: #4f46e5;
  --cyber-purple: #7c3aed;
  --cyber-cyan: #0284c7;
  --cyber-emerald: #059669;
  --cyber-amber: #d97706;
  
  --grad-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #0284c7 100%);
  --grad-cyan-indigo: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
  
  --text-white: #0f172a;
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  --border-subtle: 1px solid rgba(0, 0, 0, 0.08);
  --border-active: 1px solid rgba(79, 70, 229, 0.35);
  --border-island: 1px solid rgba(0, 0, 0, 0.1);
  
  --shadow-bento: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);
  --mesh-opacity: 0.15;
}

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --theme-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: var(--theme-transition);
}

/* Background Aurora Mesh & Grid */
.cyber-bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 15%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  opacity: var(--mesh-opacity);
  transition: opacity 0.5s ease;
}

.cyber-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

[data-theme="light"] .cyber-grid-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
}

.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ==========================================================================
   SCROLL REVEAL & MICRO-ANIMATIONS
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
  50% { box-shadow: 0 0 35px rgba(168, 85, 247, 0.7); }
}

/* ==========================================================================
   HEADER ISLAND & THEME SWITCHER
   ========================================================================== */
.header-island-wrapper {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.header-island {
  pointer-events: auto;
  width: 100%;
  max-width: 1260px;
  padding: 10px 20px;
  background: var(--bg-island);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--border-island);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-bento);
  transition: var(--theme-transition);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-cyber-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseGlow 4s infinite ease-in-out;
}

.brand-cyber-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.brand-title-box {
  display: flex;
  flex-direction: column;
}

.brand-logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--cyber-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav Menu */
.nav-island-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.island-link-item {
  position: relative;
  white-space: nowrap;
}

.island-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.island-link:hover, .island-link.active {
  color: var(--text-white);
  background: rgba(99, 102, 241, 0.12);
}

.island-link.active {
  color: var(--cyber-indigo);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Theme Switcher Pill */
.theme-switch-btn, .theme-toggle-btn {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.theme-switch-btn:hover, .theme-toggle-btn:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: var(--cyber-indigo);
  transform: translateY(-1px);
}

.theme-icon {
  font-size: 0.95rem;
  transition: transform 0.4s ease;
}

/* Mobile Hamburger Toggle */
.mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: var(--transition);
}

.mobile-menu-btn:hover, .mobile-menu-btn.active {
  background: var(--cyber-indigo);
  color: #fff;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cyber-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  background: var(--bg-glass);
  border: var(--border-subtle);
  transition: var(--transition);
}

.btn-cyber-outline:hover {
  border-color: var(--cyber-indigo);
  color: var(--cyber-indigo);
}

.btn-cyber-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-primary);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
  transition: var(--transition);
}

.btn-cyber-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.6);
}

/* ==========================================================================
   PAGE HERO & SECTION HEADERS
   ========================================================================== */
.page-hero-section {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-hero-title .grad-text, .hero-main-title .grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.section-center-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.cyber-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.pill-glow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyber-cyan);
  box-shadow: 0 0 8px var(--cyber-cyan);
}

.pill-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-white);
}

.section-h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HERO BENTO SECTION
   ========================================================================== */
.hero-bento-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
}

.hero-bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.hero-lead-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 580px;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-metrics-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: var(--border-subtle);
}

.metric-unit h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.metric-unit p {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Interactive Neural Console Card */
.hero-console-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-bento);
  backdrop-filter: blur(16px);
  position: relative;
  transition: var(--theme-transition);
}

.hero-console-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: var(--border-subtle);
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.console-dot.red { background: #ef4444; }
.console-dot.yellow { background: #f59e0b; }
.console-dot.green { background: #10b981; }

.console-title-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.console-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
}

.console-line {
  margin-bottom: 10px;
}

.console-prompt { color: var(--cyber-cyan); }
.console-cmd { color: var(--text-white); }
.console-res { color: var(--text-muted); padding-left: 14px; }
.console-success { color: var(--cyber-emerald); padding-left: 14px; font-weight: 600; }
.console-tag { color: var(--cyber-purple); }

/* ==========================================================================
   FEATURED MARQUEE STRIP
   ========================================================================== */
.cyber-marquee-section {
  padding: 30px 0;
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  background: var(--bg-dark-1);
  transition: var(--theme-transition);
}

.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cyber-marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: cyberScroll 30s linear infinite;
}

.cyber-marquee-item {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cyber-marquee-item span {
  color: var(--cyber-cyan);
}

@keyframes cyberScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   BENTO GRID SERVICES & DEEP DIVE CARDS
   ========================================================================== */
.bento-services-section {
  padding: 80px 0;
}

.bento-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.bento-card-featured {
  grid-column: span 2;
  border-color: rgba(99, 102, 241, 0.3);
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bento-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.bento-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyber-cyan);
}

.bento-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.bento-card-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyber-indigo);
  margin-bottom: 12px;
}

.bento-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 24px;
  transition: var(--transition);
}

.bento-card:hover .bento-card-arrow {
  color: var(--cyber-cyan);
  transform: translateX(4px);
}

/* Service Deepdive (services.html) */
.service-deepdive-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
}

.service-deepdive-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

.deepdive-left h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.deepdive-left p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.deepdive-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.deepdive-features-list li {
  font-size: 0.92rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.deepdive-features-list li::before {
  content: '✓';
  color: var(--cyber-emerald);
  font-weight: 800;
}

.deepdive-right {
  background: var(--bg-dark-1);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.deepdive-right h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-bento-section {
  padding: 80px 0;
  background: var(--bg-dark-1);
  transition: var(--theme-transition);
}

.industries-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.industry-bento-tile {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
}

.industry-bento-tile:hover {
  background: var(--bg-card-hover);
  border-color: var(--cyber-cyan);
  transform: translateY(-4px);
}

.industry-tile-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.industry-tile-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.industry-tile-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ==========================================================================
   CASE STUDIES SHOWCASE
   ========================================================================== */
.case-studies-bento-section {
  padding: 80px 0;
}

.case-study-hero-card {
  background: var(--bg-card);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 44px;
  align-items: center;
  box-shadow: var(--shadow-bento);
  margin-bottom: 40px;
  transition: var(--transition);
}

.case-study-hero-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

.case-study-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyber-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.case-study-headline, .case-study-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  margin: 10px 0 16px;
}

.case-study-p, .case-study-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.case-study-visual {
  background: var(--bg-dark-1);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-bento);
}

.case-study-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-subtle);
  box-shadow: var(--shadow-bento);
}

.case-study-img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-hero-card:hover .case-study-img-frame img {
  transform: scale(1.03);
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: var(--border-subtle);
}

.case-metric-box {
  background: rgba(0, 0, 0, 0.25);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.case-metric-box h5, .case-metric-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cyber-emerald);
  line-height: 1.1;
  margin-bottom: 4px;
}

.case-metric-box p, .case-metric-lbl {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   ABOUT & CONTACT PAGES
   ========================================================================== */
.about-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 60px;
}

.about-bento-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-bento);
}

.about-bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.about-bento-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 80px;
}

.contact-form-box {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-bento);
}

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

/* ==========================================================================
   TECH MATRIX (INTERACTIVE TABS)
   ========================================================================== */
.tech-matrix-section {
  padding: 80px 0;
}

.tech-matrix-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: flex-start;
}

.tech-nav-list {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tech-nav-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.tech-nav-btn:hover {
  color: var(--text-white);
  background: rgba(99, 102, 241, 0.1);
}

.tech-nav-btn.active {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tech-matrix-display {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 420px;
  box-shadow: var(--shadow-bento);
}

.tech-cluster-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-cluster-title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyber-cyan);
  box-shadow: 0 0 8px var(--cyber-cyan);
}

.tech-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-dark-1);
  border: var(--border-subtle);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.tech-chip:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--cyber-indigo);
  color: var(--cyber-indigo);
  transform: translateY(-2px);
}

/* ==========================================================================
   TESTIMONIALS & FAQ DUAL SECTION
   ========================================================================== */
.proof-faq-section {
  padding: 80px 0;
}

.proof-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.proof-column h3, .faq-column h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 24px;
}

.testimonial-cyber-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
}

.testimonial-cyber-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.client-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
}

.client-name { font-weight: 700; color: var(--text-white); font-size: 1rem; }
.client-org { font-size: 0.82rem; color: var(--cyber-cyan); }

.stars { color: #f59e0b; margin-bottom: 10px; font-size: 0.9rem; }
.review-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ Cyber Accordion */
.faq-cyber-item {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
}

.faq-cyber-item.active {
  border-color: var(--cyber-indigo);
  box-shadow: var(--shadow-glow);
}

.faq-cyber-btn, .faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-cyber-btn:hover, .faq-question-btn:hover {
  color: var(--cyber-cyan);
}

.faq-cyber-num {
  font-family: var(--font-mono);
  color: var(--cyber-cyan);
  font-size: 0.85rem;
}

.faq-chevron {
  font-size: 0.75rem;
  color: var(--cyber-cyan);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq-cyber-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-cyber-content, .faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-cyber-body, .faq-answer-text {
  padding: 0 24px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   CORPORATE FOOTER (DUAL CARDS)
   ========================================================================== */
.cyber-footer {
  background: var(--bg-dark-0);
  border-top: var(--border-subtle);
  padding: 80px 0 40px;
  transition: var(--theme-transition);
  position: relative;
  overflow: hidden;
}

.footer-offices-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 50px;
}

.footer-office-box {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
}

.footer-office-box:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.footer-office-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-detail-row:last-child {
  margin-bottom: 0;
}

.footer-detail-row a {
  color: var(--cyber-cyan);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer-detail-row a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.footer-sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .footer-sub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

.footer-sub-title, .footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sub-title::before {
  content: '▸';
  color: var(--cyber-cyan);
  font-size: 0.85rem;
}

.footer-links-list, .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-links-list li, .footer-col li {
  margin: 0;
  list-style: none;
}

.footer-links-list a, .footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer-links-list a:hover, .footer-col a:hover {
  color: var(--cyber-cyan);
  transform: translateX(4px);
}

.footer-legal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .footer-legal-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ==========================================================================
   MODALS & FLOATING WIDGETS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.12);
  border: none;
  font-size: 16px;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-form-group {
  margin-bottom: 16px;
}

.modal-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark-1);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
  border-color: var(--cyber-indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Toast */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--cyber-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 3000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   SERVICE CATEGORY FILTERS & BADGES
   ========================================================================== */
.service-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.service-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-filter-btn:hover {
  border-color: var(--cyber-indigo);
  color: var(--text-white);
  transform: translateY(-2px);
}

.service-filter-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.service-filter-btn .filter-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
}

.service-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.service-checklist li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-checklist li span.check-icon {
  color: var(--cyber-emerald);
  font-weight: 800;
}

/* Deliverables Card & SLA */
.deliverable-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 18px;
}

.deliverable-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyber-cyan);
  margin-bottom: 8px;
}

/* ==========================================================================
   GLOBAL DELIVERY SECTION (USA, UK, INDIA)
   ========================================================================== */
.global-delivery-section {
  padding: 90px 0;
  background: var(--bg-dark-1);
  transition: var(--theme-transition);
}

.global-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.global-region-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.global-region-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.region-flag-badge {
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
}

.region-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.region-services-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-services-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-services-list li::before {
  content: '→';
  color: var(--cyber-indigo);
  font-weight: 700;
}

.region-compliance-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-family: var(--font-mono);
  color: var(--cyber-emerald);
}

/* ==========================================================================
   6-STAGE ENGINEERING METHODOLOGY / PROCESS
   ========================================================================== */
.process-section {
  padding: 90px 0;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.process-step-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  border-color: var(--cyber-indigo);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyber-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 14px;
}

.step-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.step-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   COMPARISON MATRIX (WHY AVYAKTA)
   ========================================================================== */
.comparison-section {
  padding: 90px 0;
  background: var(--bg-dark-1);
  transition: var(--theme-transition);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: var(--border-subtle);
  box-shadow: var(--shadow-bento);
}

.cyber-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  background: var(--bg-card);
}

.cyber-table th {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(0, 0, 0, 0.25);
  border-bottom: var(--border-subtle);
}

.cyber-table th.highlight-col {
  background: rgba(99, 102, 241, 0.15);
  color: var(--cyber-cyan);
  border-top: 3px solid var(--cyber-indigo);
}

.cyber-table td {
  padding: 18px 24px;
  border-bottom: var(--border-subtle);
  color: var(--text-muted);
}

.cyber-table td.highlight-col {
  background: rgba(99, 102, 241, 0.05);
  color: var(--text-white);
  font-weight: 600;
}

.table-check {
  color: var(--cyber-emerald);
  font-weight: 800;
}

.table-cross {
  color: #ef4444;
  font-weight: 800;
}

/* ==========================================================================
   INTERACTIVE PROJECT ESTIMATOR & SCOPE BUILDER
   ========================================================================== */
.estimator-section {
  padding: 90px 0;
}

.estimator-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.estimator-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-bento);
}

.estimator-group {
  margin-bottom: 28px;
}

.estimator-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  display: block;
}

.estimator-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.estimator-option-btn {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-dark-1);
  border: var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.estimator-option-btn:hover {
  border-color: var(--cyber-indigo);
  color: var(--text-white);
}

.estimator-option-btn.selected {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--cyber-indigo);
  color: var(--cyber-cyan);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.3);
}

.estimator-summary-box {
  background: var(--bg-card);
  border: var(--border-active);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-glow);
  position: sticky;
  top: 100px;
}

.estimate-price-badge {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-white);
  margin: 16px 0;
  line-height: 1.1;
}

/* ==========================================================================
   STAT CALLOUTS & PROOF
   ========================================================================== */
.stat-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-highlight-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-bento);
  transition: var(--transition);
}

.stat-highlight-card:hover {
  border-color: var(--cyber-indigo);
  transform: translateY(-4px);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-island-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-island-menu.mobile-open {
    display: flex;
    position: fixed;
    top: 75px;
    left: 16px;
    right: 16px;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: var(--border-active);
    border-radius: var(--radius-xl);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    z-index: 1000;
  }

  .nav-island-menu.mobile-open .island-link {
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }

  .hero-bento-grid, .tech-matrix-layout, .case-study-hero-card, .proof-faq-grid, .footer-offices-bento, .footer-sub-grid, .service-deepdive-card, .about-bento-grid, .contact-page-layout, .global-region-grid, .process-steps-grid, .estimator-layout, .stat-highlight-grid {
    grid-template-columns: 1fr;
  }
  .bento-services-grid { grid-template-columns: 1fr; }
  .bento-card-featured { grid-column: span 1; }
  .service-checklist { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-main-title { font-size: 2.3rem; }
  .page-hero-title { font-size: 2.1rem; }
  .section-h2 { font-size: 1.8rem; }
  .header-island { padding: 8px 14px; gap: 8px; }
  .service-deepdive-card { padding: 24px; }
  .estimator-card, .estimator-summary-box { padding: 20px; }
  .about-bento-card, .contact-form-box { padding: 24px; }
  .btn-cyber-outline { display: none; }
}
