/* ============================================
   MANAM Technologies - Light Modern Theme V2
   Professional Teal/Emerald Palette
   ============================================ */

/* CSS Variables - Light Professional Palette */
:root {
  /* Light Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFB;
  --bg-tertiary: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFB;
  --bg-dark: #0F172A;
  --bg-dark-secondary: #1E293B;
  
  /* Teal/Emerald Accents */
  --accent-primary: #0D9488;
  --accent-primary-light: #14B8A6;
  --accent-primary-dark: #0F766E;
  --accent-primary-glow: rgba(13, 148, 136, 0.2);
  --accent-secondary: #6366F1;
  --accent-secondary-glow: rgba(99, 102, 241, 0.2);
  --accent-orange: #F97316;
  --accent-purple: #8B5CF6;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
  --gradient-hero: linear-gradient(135deg, #0D9488 0%, #6366F1 100%);
  --gradient-orange: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  --gradient-ai: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  
  /* Text Colors */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-light: #FFFFFF;
  --text-accent: #0D9488;
  
  /* Borders */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-dark: #334155;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(13, 148, 136, 0.15);
  --shadow-glow-purple: 0 0 40px rgba(99, 102, 241, 0.15);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 24px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--accent-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-wide {
  max-width: 1400px;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

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

.section-dark {
  background-color: var(--bg-dark);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding: 6px 16px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-full);
}

.section-title {
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-dark {
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: all var(--transition-base);
  line-height: 1;
}

.logo-main {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.navbar.scrolled .logo-main {
  color: var(--text-primary);
}

.logo-tagline {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.navbar.scrolled .logo-tagline {
  color: var(--text-secondary);
}

.logo-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5px;
  height: 5px;
  background: var(--accent-primary-light);
  border-radius: 50%;
  margin: 0 3px;
  box-shadow: 0 0 6px var(--accent-primary-light), 0 0 10px var(--accent-primary-light);
}

.navbar.scrolled .logo-accent {
  background: var(--accent-primary);
  box-shadow: 0 0 6px var(--accent-primary), 0 0 10px var(--accent-primary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--text-light);
}

.navbar.scrolled .nav-link:hover {
  color: var(--accent-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Nav CTA Button */
.nav-links .btn-primary {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
  color: #0F766E;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-links .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-links .btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.navbar.scrolled .nav-links .btn-primary:hover {
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: all var(--transition-fast);
}

.navbar.scrolled .menu-toggle span {
  background-color: var(--text-primary);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  color: var(--accent-primary-dark);
  border-color: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 255, 255, 0.3);
  color: var(--accent-primary-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-outline-light:hover::before {
  left: 100%;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F766E 0%, #0D9488 30%, #14B8A6 60%, #2DD4BF 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-gradient-1 {
  background: rgba(255, 255, 255, 0.3);
  top: -200px;
  right: -100px;
}

.hero-gradient-2 {
  background: rgba(99, 102, 241, 0.3);
  bottom: -200px;
  left: -100px;
}

.hero-gradient-3 {
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  opacity: 0.15;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--text-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title-gradient {
  color: var(--text-light);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 650px;
}

/* Platform Badges */
.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.platform-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.platform-badge img {
  height: 24px;
  width: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

/* Hero-specific button styles */
.hero .btn-primary {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
  color: #0F766E;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  animation: heroButtonPulse 2.5s ease-in-out infinite;
}

.hero .btn-primary:hover {
  animation: none;
  background: linear-gradient(135deg, #FFFFFF 0%, #E0F2FE 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
}

.hero .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes heroButtonPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

/* Trust Badges */
.trust-badges {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.trust-logo {
  height: 50px;
  width: auto;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.trust-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
  background: var(--bg-secondary);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  max-width: 540px;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--text-secondary);
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-md);
}

.about-highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
}

.about-highlight-text {
  font-weight: 600;
  color: var(--text-primary);
}

.about-visual {
  position: relative;
}

.about-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-stat-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-stat-card.accent-1::before {
  background: linear-gradient(90deg, #0D9488, #14B8A6);
}

.about-stat-card.accent-2::before {
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
}

.about-stat-card.accent-3::before {
  background: linear-gradient(90deg, #F97316, #FB923C);
}

.about-stat-card.accent-4::before {
  background: linear-gradient(90deg, #EC4899, #F472B6);
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.about-stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 1.25rem;
}

.about-stat-card.accent-1 .about-stat-icon {
  background: rgba(13, 148, 136, 0.1);
  color: #0D9488;
}

.about-stat-card.accent-2 .about-stat-icon {
  background: rgba(99, 102, 241, 0.1);
  color: #6366F1;
}

.about-stat-card.accent-3 .about-stat-icon {
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
}

.about-stat-card.accent-4 .about-stat-icon {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-full);
}

.about-visual-badge .badge-icon {
  color: var(--accent-primary);
  font-size: 1.125rem;
}

.about-visual-badge .badge-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

/* ============================================
   AI Section
   ============================================ */
.ai-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #F8FAFB 0%, #EEF2FF 100%);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.ai-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-ai);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ai-card:hover {
  border-color: var(--accent-secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-purple), var(--shadow-lg);
}

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

.ai-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-ai);
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.ai-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.ai-card-desc {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: var(--section-padding);
}

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

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
}

.service-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.service-card.featured {
  border-color: var(--accent-orange);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, var(--bg-primary) 100%);
}

.service-card.featured:hover {
  box-shadow: var(--shadow-lg), 0 0 40px rgba(249, 115, 22, 0.15);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gradient-orange);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-icon img {
  height: 40px;
  width: auto;
}

.service-card:hover .service-icon {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================
   Partners Section
   ============================================ */
.partners {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.partners-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.partner-featured-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: all var(--transition-base);
}

.partner-featured-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.partner-featured-logo {
  height: 50px;
  width: auto;
  margin: 0 auto 20px;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.partner-featured-name {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.partner-featured-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.partner-featured-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

/* Partners Grid - 3x2 Layout */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.partner-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.partner-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.partner-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.partner-card-icon img {
  height: 40px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}

.partner-card-icon.icon-only {
  background: var(--gradient-primary);
  border-color: transparent;
}

.partner-card-icon.icon-only i {
  font-size: 2rem;
  color: var(--text-light);
}

.partner-card:hover .partner-card-icon {
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.partner-card:hover .partner-card-icon.icon-only {
  box-shadow: var(--shadow-glow);
}

.partner-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.partner-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* Technology Carousel */
.tech-section-title {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.tech-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.tech-carousel::before,
.tech-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.tech-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.tech-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

.tech-carousel-track {
  display: flex;
  gap: 20px;
  animation: scrollTech 45s linear infinite;
  width: max-content;
}

.tech-carousel-track:hover {
  animation-play-state: paused;
}

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

.tech-item {
  flex-shrink: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 130px;
  transition: all var(--transition-base);
}

.tech-item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.tech-item img {
  height: 50px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.tech-item span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* ============================================
   Industries Section
   ============================================ */
.industries {
  padding: var(--section-padding);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.industry-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.industry-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--accent-primary);
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.industry-card:hover .industry-icon {
  background: var(--gradient-primary);
  color: var(--text-light);
  border-color: transparent;
}

.industry-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.industry-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 1.375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0;
  display: block;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  background: var(--border-medium);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary-glow);
}

/* ============================================
   Global Presence / Map Section
   ============================================ */
.global-presence {
  padding: var(--section-padding);
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.map-wrapper:hover .map-image {
  transform: scale(1.02);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
  pointer-events: none;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.location-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.location-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.location-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--accent-primary);
  border-radius: 50%;
  font-size: 1.25rem;
  margin: 0 auto 16px;
  transition: all var(--transition-base);
}

.location-card:hover .location-icon {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.location-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.location-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.contact-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  color: var(--accent-primary);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.contact-item-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item-value {
  font-weight: 500;
  color: var(--text-primary);
}

/* Contact Form */
.contact-form {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-primary-glow);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-heading);
  margin-bottom: 16px;
  line-height: 1;
  text-align: center;
  display: inline-block;
}

.footer-logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.footer-logo-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-logo-tagline .logo-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4px;
  height: 4px;
  background: var(--accent-primary-light);
  border-radius: 50%;
  margin: 0 3px;
  box-shadow: 0 0 5px var(--accent-primary-light), 0 0 8px var(--accent-primary-light);
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary-light);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary-light);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .services-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 70px 0;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links .nav-link {
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 8px 0;
  }
  
  .nav-links .btn {
    margin-top: 8px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-image-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-block;
  }
  
  .services-grid,
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-featured {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
    --container-padding: 16px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .section-label {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 14px;
    margin-bottom: 16px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  
  .hero-platforms {
    gap: 8px;
    margin-bottom: 24px;
    justify-content: flex-start;
  }
  
  .platform-badge {
    padding: 8px 12px;
    font-size: 0.8rem;
    gap: 6px;
  }
  
  .platform-badge img {
    height: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .trust-badges {
    padding-top: 30px;
  }
  
  .trust-label {
    font-size: 0.75rem;
    margin-bottom: 16px;
  }
  
  .trust-logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .trust-logos::-webkit-scrollbar {
    display: none;
  }
  
  .trust-logo {
    height: 48px;
    padding: 10px 16px;
    flex-shrink: 0;
  }
  
  /* Stats Mobile */
  .stats {
    padding: 40px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-value {
    font-size: 2.25rem;
  }
  
  .stat-label {
    font-size: 0.8125rem;
  }
  
  /* About Mobile */
  .about-text {
    font-size: 1rem;
  }
  
  .about-highlight {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }
  
  .about-highlight-icon {
    margin: 0 auto;
  }
  
  .about-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .about-stat-card {
    padding: 20px 16px;
  }
  
  .about-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .about-stat-number {
    font-size: 1.75rem;
  }
  
  .about-stat-text {
    font-size: 0.75rem;
  }
  
  .about-visual-badge {
    margin-top: 16px;
    padding: 10px 16px;
    font-size: 0.875rem;
  }
  
  /* AI Section Mobile */
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ai-card {
    padding: 24px 20px;
  }
  
  .ai-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
  
  .ai-card-title {
    font-size: 1.125rem;
  }
  
  .ai-card-desc {
    font-size: 0.9rem;
  }
  
  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .services-grid[style*="repeat(4"] {
    grid-template-columns: 1fr !important;
  }
  
  .service-card {
    padding: 24px 20px;
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
  
  .service-icon img {
    height: 32px;
  }
  
  .service-title {
    font-size: 1.125rem;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
  
  .service-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  
  /* Partners Mobile */
  .partners-featured {
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .partner-featured-card {
    padding: 24px 20px;
  }
  
  .partner-featured-logo {
    height: 40px;
  }
  
  .partner-featured-name {
    font-size: 1.25rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .partner-card {
    padding: 24px 20px;
  }
  
  .partner-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  
  .partner-card-icon img {
    height: 32px;
  }
  
  .partner-card-icon.icon-only i {
    font-size: 1.5rem;
  }
  
  .partner-card-title {
    font-size: 1.125rem;
  }
  
  /* Tech Carousel Mobile */
  .tech-section-title {
    font-size: 0.75rem;
    margin-bottom: 24px;
  }
  
  .tech-carousel::before,
  .tech-carousel::after {
    width: 60px;
  }
  
  .tech-item {
    min-width: 100px;
    padding: 16px 12px;
    gap: 8px;
  }
  
  .tech-item img {
    height: 36px;
  }
  
  .tech-item span {
    font-size: 0.75rem;
  }
  
  /* Industries Mobile */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .industry-card {
    padding: 20px 16px;
  }
  
  .industry-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  
  .industry-name {
    font-size: 0.9375rem;
  }
  
  .industry-description {
    font-size: 0.8rem;
    display: none;
  }
  
  /* Testimonials Mobile */
  .testimonials-slider {
    padding: 0;
  }
  
  .testimonial-card {
    padding: 24px 20px;
  }
  
  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .testimonial-quote::before {
    font-size: 3rem;
    margin-bottom: 8px;
  }
  
  /* Map / Locations Mobile */
  .map-wrapper {
    border-radius: var(--radius-lg);
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .location-card {
    padding: 16px 12px;
  }
  
  .location-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .location-name {
    font-size: 0.875rem;
  }
  
  .location-desc {
    font-size: 0.75rem;
  }
  
  /* Contact Mobile */
  .contact-grid {
    gap: 40px;
  }
  
  .contact-text {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .contact-details {
    gap: 16px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-item-label {
    font-size: 0.75rem;
  }
  
  .contact-item-value {
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 24px 20px;
  }
  
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-label {
    font-size: 0.8125rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 0.9375rem;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 40px 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-logo {
    font-size: 1.25rem;
  }
  
  .footer-description {
    font-size: 0.875rem;
  }
  
  .footer-heading {
    font-size: 0.8125rem;
    margin-bottom: 16px;
  }
  
  .footer-links a {
    font-size: 0.875rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
  }
  
  .footer-copyright {
    font-size: 0.8125rem;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 14px;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  
  .hero {
    padding: 90px 0 50px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
  }
  
  .platform-badge {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .platform-badge img {
    height: 16px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-item {
    padding: 16px 8px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
  }
  
  .stat-value {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .industries-grid {
    gap: 10px;
  }
  
  .industry-card {
    padding: 16px 12px;
  }
  
  .industry-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .industry-name {
    font-size: 0.8125rem;
  }
  
  .locations-grid {
    gap: 10px;
  }
  
  .location-card {
    padding: 14px 10px;
  }
  
  .location-card:last-child {
    grid-column: 1 / -1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .trust-logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .trust-logos::-webkit-scrollbar {
    display: none;
  }
  
  .trust-logo {
    height: 45px;
    padding: 10px 16px;
    flex-shrink: 0;
    min-width: auto;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .platform-badge span {
    display: none;
  }
  
  .platform-badge {
    padding: 8px 12px;
  }
  
  .platform-badge img {
    height: 20px;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.text-primary { color: var(--text-primary); }
.text-accent { color: var(--accent-primary); }
.text-muted { color: var(--text-muted); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
