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

:root {
  --primary: #FF3366;
  --primary-glow: rgba(255, 51, 102, 0.25);
  --secondary: #0070F3;
  --secondary-glow: rgba(0, 112, 243, 0.25);
  --bg-color: #080C14;
  --card-bg: rgba(13, 20, 35, 0.7);
  --text-color: #E2E8F0;
  --text-muted: #94A3B8;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Base Styles & Grid Overlay */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  font-size: 18px; /* High-trust executive scale */
}

/* Background Grid Overlay & Spotlights */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  z-index: -1;
  pointer-events: none;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 8.5rem 0;
  position: relative;
}

.bg-light {
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }

/* Typography Overhaul (Sora & Inter) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 4.25rem; /* 68px scale */
  background: linear-gradient(135deg, #FFFFFF 40%, #A1A1AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.75rem; /* 44px scale */
  background: linear-gradient(135deg, #FFFFFF 50%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 1.6rem;
  color: white;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0.5rem auto 4.5rem;
  line-height: 1.75;
}

/* Glowing Accent Line */
.hero-accent {
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #FF3366 0%, #E60045 100%);
  color: white;
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 51, 102, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, #0070F3 0%, #0051B3 100%);
  color: white;
  box-shadow: 0 0 20px var(--secondary-glow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 112, 243, 0.5);
}

.btn-outline {
  border-color: var(--border-color);
  background-color: rgba(255, 255, 255, 0.02);
  color: white;
}

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

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

.btn-outline-white:hover {
  background-color: white;
  color: var(--bg-color);
  border-color: white;
  transform: translateY(-2px);
}

/* Floating Glassmorphic Navbar & Mega Menu */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 1.1rem 0;
  background-color: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.45rem;
  color: white;
  letter-spacing: -0.03em;
  font-weight: 800;
  font-family: var(--font-heading);
}

.logo span {
  font-weight: 300;
  opacity: 0.7;
}

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

.nav-item-container {
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

/* Mega Menu Core */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 1000px;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.6), 0 0 1px 1px rgba(255,255,255,0.05) inset;
  z-index: 1010;
}

.nav-item-container:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.mega-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  font-weight: 700;
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mega-list li a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.2s;
}

.mega-list li a:hover {
  color: white;
  transform: translateX(3px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 20px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  transition: all 0.3s;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #05080e;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: var(--font-heading);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 98vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 112, 243, 0.04) 0%, transparent 60%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-content p.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 650px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-metrics {
  display: flex;
  gap: 3.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.hero-metric-item h4 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.hero-metric-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Hero Visual Overhaul */
.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.mesh-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  mask-image: radial-gradient(circle, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle, black 40%, transparent 85%);
  opacity: 0.85;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -2;
  opacity: 0.45;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

.ambient-glow.g1 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: 15%;
  left: 20%;
}

.ambient-glow.g2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  bottom: 10%;
  right: 15%;
  animation-delay: -4s;
}

@keyframes glowPulse {
  0% { transform: scale(1) translate(0px, 0px); opacity: 0.35; }
  100% { transform: scale(1.2) translate(15px, -15px); opacity: 0.55; }
}

.network-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: visible;
  top: 0;
  left: 0;
}

@keyframes dash {
  to {
    stroke-dashoffset: -40;
  }
}

/* Glass Dashboard Fragments */
.glass-fragment {
  position: absolute;
  background: rgba(13, 20, 35, 0.45);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: 260px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.glass-fragment:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(13, 20, 35, 0.6);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-fragment.f1 {
  top: 5%;
  left: 5%;
  animation: floatFrag1 7s ease-in-out infinite alternate;
}

.glass-fragment.f2 {
  top: 40%;
  right: 5%;
  animation: floatFrag2 9s ease-in-out infinite alternate;
}

.glass-fragment.f3 {
  bottom: 5%;
  left: 15%;
  animation: floatFrag3 8s ease-in-out infinite alternate;
}

@keyframes floatFrag1 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatFrag2 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(18px) rotate(-1.5deg); }
}

@keyframes floatFrag3 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1.2deg); }
}

.frag-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.frag-status-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}

.frag-status-indicator.green {
  background-color: #34C759;
  box-shadow: 0 0 8px #34C759;
}

.frag-status-indicator.blue {
  background-color: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
}

.frag-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.frag-value {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.frag-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Partner Trust Strip */
.partner-strip {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(90deg, rgba(255, 51, 102, 0.02) 0%, rgba(8, 12, 20, 0.9) 50%, rgba(0, 112, 243, 0.02) 100%);
  backdrop-filter: blur(10px);
  padding: 3rem 0;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

.partner-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.25) 20%, rgba(0, 112, 243, 0.25) 80%, transparent);
}

.partner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: -0.02em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo:hover {
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* Who We Help Cards */
.who-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.who-card {
  background: rgba(10, 16, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.who-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(0, 112, 243, 0.05) 0%, transparent 60%);
  z-index: -1;
  transition: opacity 0.5s;
}

.who-card:hover {
  border-color: rgba(0, 112, 243, 0.3);
  box-shadow: 0 20px 45px -10px rgba(0, 112, 243, 0.2);
  transform: translateY(-5px);
}

.who-card h4 {
  font-size: 1.35rem;
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.who-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Premium Card Grids (8 Premium categories) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.service-card {
  background: rgba(10, 16, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  z-index: -1;
  transition: opacity 0.5s;
}

.service-card:hover {
  border-color: rgba(255, 51, 102, 0.25);
  box-shadow: 0 25px 50px -15px rgba(255, 51, 102, 0.25);
  transform: translateY(-6px);
}

.service-card:nth-child(even):hover {
  border-color: rgba(0, 112, 243, 0.25);
  box-shadow: 0 25px 50px -15px rgba(0, 112, 243, 0.25);
}

/* Lucide Icon Holder */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-color);
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.card-icon svg, .who-card svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(255, 51, 102, 0.2) 100%);
  border-color: rgba(255, 51, 102, 0.4);
  color: var(--primary);
  box-shadow: 0 0 25px rgba(255, 51, 102, 0.25);
  transform: rotate(5deg) scale(1.05);
}

.service-card:nth-child(even):hover .card-icon {
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.1) 0%, rgba(0, 112, 243, 0.2) 100%);
  border-color: rgba(0, 112, 243, 0.4);
  color: var(--secondary);
  box-shadow: 0 0 25px rgba(0, 112, 243, 0.25);
}

.who-card:hover svg {
  transform: scale(1.1) rotate(-5deg);
  color: var(--secondary);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  color: white;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Card Metric Chip */
.card-metric {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 51, 102, 0.08);
  border: 1px solid rgba(255, 51, 102, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.service-card:nth-child(even) .card-metric {
  color: var(--secondary);
  background: rgba(0, 112, 243, 0.08);
  border: 1px solid rgba(0, 112, 243, 0.15);
}

.card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
}

.card-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.service-card:nth-child(even) .card-link:hover {
  color: var(--secondary);
}

/* Delivery Methodology Layout */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.method-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.method-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.method-card h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.5rem;
}

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

/* Two-column structures */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat-box {
  border-left: 3.5px solid var(--secondary);
  padding-left: 1.5rem;
}

.stat-box h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: white;
}

.stat-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Terminal Mockup */
.terminal-card {
  background-color: #0b0f19;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.terminal-header {
  background-color: #0d1423;
  padding: 0.9rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background-color: #ff5f56; }
.terminal-dot.yellow { background-color: #ffbd2e; }
.terminal-dot.green { background-color: #27c93f; }

.terminal-body {
  padding: 2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #a9b1d6;
  line-height: 1.7;
}

/* Client Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(15px);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  border-color: rgba(0, 112, 243, 0.2);
  box-shadow: 0 15px 35px -10px rgba(0, 112, 243, 0.15);
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
}

.author-meta h5 {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.15rem;
}

.author-meta p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Consultation request CTA banner */
.cta-banner {
  background: linear-gradient(180deg, rgba(0, 112, 243, 0.03) 0%, transparent 100%);
  border-top: 1px solid var(--border-color);
  padding: 6.5rem 0;
}

/* Newsletter Input Form Docks */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 400px;
}

.newsletter-form input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  outline: none;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

/* Real Corporate Footer */
.footer {
  border-top: 1px solid var(--border-color);
  background-color: #05080e;
  padding: 6.5rem 0 3rem;
  font-size: 0.95rem;
}

.footer-top-line {
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  margin-bottom: 4rem;
}

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

.footer-col h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-icons a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 10px var(--primary-glow);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Premium Interactive Slideshow Styles --- */
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-container {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
  position: relative;
}

.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item {
  flex-shrink: 0;
  width: 100%;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.slide-item.active {
  opacity: 1;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 5rem;
}

.slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  border: 1px solid;
  font-family: var(--font-mono);
}

.slide-item h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.slide-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
}

.slide-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1.5rem;
  width: 100%;
}

.slide-stat-item {
  display: flex;
  flex-direction: column;
}

.slide-stat-val {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.slide-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0.25rem;
}

.slide-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-visual .visual-placeholder {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background-color: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visual-symbol {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item:hover .visual-symbol {
  transform: scale(1.1) rotate(5deg);
}

.visual-metric-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.7;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 20, 35, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 15px var(--primary-glow);
  background: rgba(13, 20, 35, 0.95);
}

.slider-arrow.prev {
  left: -23px;
}

.slider-arrow.next {
  right: -23px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.slider-dots .dot.active {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  transform: scale(1.3);
}

/* FAQ Accordions */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: var(--font-heading);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* Responsive Overrides */
@media(max-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.25rem; }
  .two-col { grid-template-columns: 1fr; gap: 3.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .mega-menu { display: none !important; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
  h1 { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links, .nav-cta { display: none !important; }
  .mobile-menu-btn { display: block; }
  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .slide-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  .slider-arrow {
    display: none;
  }
  .slide-visual {
    order: -1;
  }
  .method-grid { grid-template-columns: 1fr; }
}

/* Floating Conversion Dock */
.conversion-dock {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
  align-items: flex-end;
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-shadow: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.sticky-cta-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.sticky-cta-whatsapp:hover {
  background: #25D366;
  color: white !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
}

.sticky-cta-consult {
  background: rgba(0, 112, 243, 0.15);
  border-color: rgba(0, 112, 243, 0.3);
  color: #0070F3;
}

.sticky-cta-consult:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, #0056b3 100%);
  color: white !important;
  box-shadow: 0 10px 30px rgba(0, 112, 243, 0.4);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .conversion-dock {
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .sticky-cta {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}
