@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

/* ==========================================================================
   1. CORE DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-deep: #060608;
  --bg-dark: #0B0B0F;
  --bg-card: rgba(16, 16, 22, 0.65);
  --bg-card-hover: rgba(22, 22, 32, 0.8);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 122, 255, 0.15); /* Blue/Indigo glow */
  
  --text-primary: #F5F5F7;
  --text-secondary: #9E9EAF;
  --text-muted: #626275;
  
  /* Vibrant brand colors - High-tech spectrum (Crimson, Magenta, Violet, Cyan, Green, Blue) */
  --glow-red: #FF3B30;
  --glow-orange: #FF2D55; /* Shifted to Magenta to reduce orange prominence */
  --glow-yellow: #AF52DE; /* Shifted to Violet to reduce yellow prominence */
  --glow-green: #34C759;
  --glow-blue: #007AFF;
  
  /* Gradients - Balanced premium color spectrum flow */
  --grad-spectrum: linear-gradient(135deg, #FF3B30 0%, #FF2D55 20%, #AF52DE 45%, #5AC8FA 68%, #34C759 82%, #007AFF 100%);
  --grad-dark: linear-gradient(180deg, #0B0B0F 0%, #060608 100%);
  --grad-glow: linear-gradient(135deg, rgba(255, 59, 48, 0.12) 0%, rgba(0, 122, 255, 0.12) 100%);
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  
  /* Layout & Animations */
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* Prevent background ambient glow elements from expanding viewport */
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--grad-dark);
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #1C1C24;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Selection */
::selection {
  background: rgba(0, 122, 255, 0.25);
  color: var(--text-primary);
}

/* ==========================================================================
   2. TYPOGRAPHY & BUTTONS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-gradient {
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Primary Glass Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-spectrum);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 122, 255, 0.45);
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

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

/* Glassmorphism Panel styles */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Ambient glow cards */
.glow-card {
  position: relative;
}
.glow-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--grad-spectrum);
  opacity: 0.15;
  z-index: -1;
  transition: var(--transition-smooth);
}
.glow-card:hover::after {
  opacity: 0.4;
  filter: blur(8px);
}

/* ==========================================================================
   3. HEADER & HERO & LAYOUTS
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(6, 6, 8, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header-scrolled {
  height: 70px;
  background: rgba(6, 6, 8, 0.9);
}

.nav-container {
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  user-select: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  transition: transform 0.5s ease;
}

.logo-wrapper:hover .logo-icon {
  transform: rotate(360deg);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Desktop Header Contact (WhatsApp Direct Button) */
.header-action {
  display: flex;
  align-items: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* Cosmic Ambient Lights representing production stage rigs */
.ambient-glow-1 {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.concentric-visual {
  width: min(450px, 75vw); /* Scaled-up to match the exact size of the text next to it */
  height: min(450px, 75vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concentric-ring {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: pulse-spin 20s linear infinite;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.ring-outer {
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--bg-deep), var(--bg-deep)) padding-box, var(--grad-spectrum) border-box;
  animation-duration: 25s;
}

.ring-mid {
  width: 80%;
  height: 80%;
  background: linear-gradient(var(--bg-deep), var(--bg-deep)) padding-box, var(--grad-spectrum) border-box;
  animation-duration: 18s;
  animation-direction: reverse;
}

.ring-inner {
  width: 60%;
  height: 60%;
  background: linear-gradient(var(--bg-deep), var(--bg-deep)) padding-box, var(--grad-spectrum) border-box;
  animation-duration: 12s;
}

.ring-core {
  width: 40%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: 50%;
}

.ring-core img {
  width: 65%; /* Adjusted sizer for clean core balance */
  height: 65%;
}

@keyframes pulse-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.03); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--glow-blue);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Catalog Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--bg-deep);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 16px;
  font-weight: 700;
}

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

.service-leads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-lead {
  font-size: 0.75rem;
  padding: 10px 14px;
  border-radius: var(--radius-md);
}

.btn-whatsapp {
  background: rgba(52, 199, 89, 0.08);
  color: var(--glow-green);
  border: 1px solid rgba(52, 199, 89, 0.2);
}

.btn-whatsapp:hover {
  background: #34C759;
  color: #FFFFFF;
  border-color: #34C759;
  box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.btn-email {
  background: rgba(0, 122, 255, 0.08);
  color: var(--glow-blue);
  border: 1px solid rgba(0, 122, 255, 0.2);
}

.btn-email:hover {
  background: #007AFF;
  color: #FFFFFF;
  border-color: #007AFF;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

/* ==========================================================================
   5. MOBILE ONE-HANDED MENUS (LEFT / RIGHT SYSTEM)
   ========================================================================== */
/* The floating One-Hand control toggle button */
.hand-toggle-badge {
  position: fixed;
  bottom: 96px;
  z-index: 105;
  background: rgba(16, 16, 22, 0.9);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 6px 14px;
  display: none; /* Hidden on desktop (scaled-up) */
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: var(--transition-elastic);
  user-select: none;
}

.hand-toggle-badge:hover {
  border-color: rgba(255,255,255,0.2);
}

.hand-toggle-badge i {
  font-size: 0.85rem;
}

/* Floating Action Button (Mobile Menu Trigger) */
.mobile-fab {
  display: none; /* Desktop hidden */
  position: fixed;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-spectrum);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 122, 255, 0.4);
  cursor: pointer;
  z-index: 110;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.35rem;
  transition: var(--transition-elastic);
}

.mobile-fab:active {
  transform: scale(0.9);
}

/* Mobile Drawer Styles */
.mobile-drawer {
  display: none; /* Shown dynamically in media query */
  position: fixed;
  top: 0;
  width: 320px;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height to prevent home navigation bar overlap */
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  z-index: 108;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  transition: var(--transition-smooth);
  overflow-y: auto; /* Allow vertical scrolling if elements exceed screen height */
  -webkit-overflow-scrolling: touch; /* Smooth inertia scroll on iOS devices */
}

/* Drawer Header with hand orientation description */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.drawer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.drawer-link:hover, .drawer-link.active {
  color: #FFFFFF;
  padding-left: 10px;
}

.drawer-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Alignment Classes for One-Hand Operations */
/* RIGHT-HAND CONFIGURATION (Default) */
.hand-right .mobile-fab {
  right: 24px;
  left: auto;
}
.hand-right .hand-toggle-badge {
  right: 24px;
  left: auto;
}
.hand-right .mobile-drawer {
  right: 0;
  left: auto;
  transform: translateX(100%);
  border-left: 1px solid var(--border-light);
  border-right: none;
}
.hand-right .mobile-drawer.open {
  transform: translateX(0);
}
.hand-right .drawer-link:hover, .hand-right .drawer-link.active {
  padding-left: 10px;
  padding-right: 0;
}

/* LEFT-HAND CONFIGURATION */
.hand-left .mobile-fab {
  left: 24px;
  right: auto;
}
.hand-left .hand-toggle-badge {
  left: 24px;
  right: auto;
}
.hand-left .hand-toggle-badge i {
  transform: scaleX(-1);
  display: inline-block;
}
.hand-left .mobile-drawer {
  left: 0;
  right: auto;
  transform: translateX(-100%);
  border-right: 1px solid var(--border-light);
  border-left: none;
}
.hand-left .mobile-drawer.open {
  transform: translateX(0);
}
.hand-left .drawer-link {
  text-align: right;
}
.hand-left .drawer-link:hover, .hand-left .drawer-link.active {
  padding-right: 10px;
  padding-left: 0;
}
.hand-left .drawer-title {
  text-align: right;
}
.hand-left .drawer-header {
  flex-direction: row-reverse;
}

/* Backdrop overlay */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 106;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   6. HIDDEN AGENT TERMINAL (MESSENGER)
   ========================================================================== */
.agent-console-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition-smooth);
}

.agent-console-toggle:hover {
  color: var(--glow-green);
  text-shadow: 0 0 8px rgba(52, 199, 89, 0.4);
}

/* The Terminal Overlay Window */
.terminal-window {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 400px;
  height: 500px;
  background: #040406;
  border: 1px solid #153A1C; /* Glowing green-ish outline */
  border-radius: var(--radius-md);
  box-shadow: 0 10px 50px rgba(0,0,0,0.9), 0 0 20px rgba(52, 199, 89, 0.15);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--font-mono);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  visibility: hidden;
  transition: var(--transition-smooth);
}

.terminal-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* Hologram CRT Screen scanlines */
.terminal-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 10;
}

/* Terminal Header */
.terminal-header {
  background: #0B0B10;
  border-bottom: 1px solid #153A1C;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.terminal-title {
  color: var(--glow-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glow-green);
  box-shadow: 0 0 8px var(--glow-green);
  animation: terminal-blink 1.5s ease infinite;
}

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

.terminal-controls {
  display: flex;
  gap: 8px;
}

.terminal-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.term-close { background: #FF5F56; }
.term-min { background: #FFBD2E; }
.term-max { background: #27C93F; }

/* Message Logs screen */
.terminal-body {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #34D399; /* Emerald Green */
  font-size: 0.85rem;
  line-height: 1.4;
  scroll-behavior: smooth;
}

.terminal-log-welcome {
  border-bottom: 1px dashed rgba(52, 199, 89, 0.2);
  padding-bottom: 10px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.terminal-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msg-agent .msg-meta {
  color: var(--glow-green);
}
.msg-user .msg-meta {
  color: var(--glow-blue);
}

.msg-meta {
  font-size: 0.7rem;
  opacity: 0.8;
}

.msg-text {
  background: rgba(21, 58, 28, 0.15);
  border-left: 2px solid currentColor;
  padding: 6px 10px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  word-break: break-word;
}

.msg-user .msg-text {
  background: rgba(0, 122, 255, 0.05);
}

/* Terminal Input */
.terminal-input-row {
  background: #060608;
  border-top: 1px solid #153A1C;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terminal-prompt {
  color: var(--glow-green);
  font-weight: 700;
}

.terminal-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #34D399;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* For responsive terminal on mobile */
@media (max-width: 480px) {
  .terminal-window {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    height: 420px;
    bottom: 96px; /* Sits above the FAB button */
  }
}

/* ==========================================================================
   7. FOOTER SECTION
   ========================================================================== */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-title {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-tech {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES & BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide standard header elements on mobile to use the FAB + Drawer */
  .nav-menu {
    display: none;
  }
  .header-action {
    display: none;
  }
  .mobile-fab {
    display: flex;
  }
  .hand-toggle-badge {
    display: flex; /* Show hand comfort toggle badge only on mobile sizes */
  }
  .mobile-drawer {
    display: flex;
    padding: 24px 20px; /* Highly compact padding on mobile viewports */
  }
  .drawer-header {
    margin-bottom: 24px; /* Reduced gap from 40px */
  }
  .drawer-menu {
    gap: 18px; /* Reduced gap from 24px */
  }
  .drawer-footer {
    padding-top: 18px;
    margin-top: 20px;
  }
  .section {
    padding: 70px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    text-align: center;
    align-items: center;
  }
  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-details .glass-panel {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .detail-leads {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }
  .detail-leads .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-buttons .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
