/*
Theme Name: MSKEY Security
Theme URI: https://mskey.ma
Author: MSKEY Team
Author URI: https://mskey.ma
Description: Thème WordPress pour MSKEY - Solutions de sécurité connectée au Maroc
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mskey
Domain Path: /languages
Tags: security, corporate, responsive, custom-menu, featured-images
*/

/* ========================================
   1. VARIABLES CSS
   ======================================== */
:root {
  /* Primary Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-500: #3b82f6;
  
  /* Secondary Colors */
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  
  /* Accent Colors */
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  
  /* Slate Palette */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  /* White & Black */
  --white: #ffffff;
  --black: #000000;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  --shadow-primary: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -4px rgba(37, 99, 235, 0.3);
  --shadow-primary-lg: 0 20px 25px -5px rgba(37, 99, 235, 0.4), 0 8px 10px -6px rgba(37, 99, 235, 0.4);
  
  /* Border Radius */
  --rounded-sm: 0.125rem;
  --rounded: 0.25rem;
  --rounded-md: 0.375rem;
  --rounded-lg: 0.5rem;
  --rounded-xl: 0.75rem;
  --rounded-2xl: 1rem;
  --rounded-3xl: 1.5rem;
  --rounded-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Typography */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, monospace;
}

/* ========================================
   2. RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-600);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   3. LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1280px;
}

.container-full {
  max-width: 100%;
}

/* Grid Systems */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Spacing */
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* ========================================
   4. UTILITAIRES
   ======================================== */
/* Text Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-800 { color: var(--slate-800); }
.text-slate-900 { color: var(--slate-900); }

/* Background Colors */
.bg-white { background-color: var(--white); }
.bg-slate-50 { background-color: var(--slate-50); }
.bg-slate-100 { background-color: var(--slate-100); }
.bg-slate-900 { background-color: var(--slate-900); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Layout */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { inset: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
}

.site-header.scrolled .site-logo img {
  height: 40px;
}

/* Navigation Desktop */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-600);
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item a {
  color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu .current-menu-item a::after {
  width: 100%;
}

/* Dropdown Menu */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.menu-item-has-children > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 256px;
  background-color: var(--white);
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.sub-menu a:hover {
  background-color: var(--slate-50);
}

/* Header CTA Buttons */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--rounded-full);
  font-weight: 700;
  font-size: 0.875rem;
  background-color: #1e3a8a;
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.btn-phone:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -5px rgba(30, 58, 138, 0.4);
}

.btn-header-primary {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: var(--rounded-full);
  font-weight: 600;
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.btn-header-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: var(--white);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--slate-100);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  display: block;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav-inner {
  padding: 1.5rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
}

.mobile-nav a.active,
.mobile-nav .current-menu-item a {
  color: var(--primary);
}

.mobile-nav .sub-menu-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

.mobile-nav .sub-menu-link {
  padding-left: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-phone-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--rounded-xl);
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.mobile-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
  color: var(--white);
}

/* ========================================
   6. HERO V2
   ======================================== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 120px 0 80px;
}

/* Animated Background */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Glowing Orbs */
.glowing-orb {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
  background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, rgba(245,158,11,0.1) 50%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, rgba(37,99,235,0.1) 50%, transparent 70%);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.orb-3 {
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
  bottom: 10%;
  left: 40%;
  animation-delay: 4s;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(245,158,11,0.3));
  filter: blur(2px);
  animation: float 6s ease-in-out infinite;
}

.p1 { width: 20px; height: 20px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 5s; }
.p2 { width: 15px; height: 15px; left: 80%; top: 30%; animation-delay: 0.5s; animation-duration: 7s; }
.p3 { width: 25px; height: 25px; left: 60%; top: 70%; animation-delay: 1s; animation-duration: 6s; }
.p4 { width: 12px; height: 12px; left: 30%; top: 80%; animation-delay: 1.5s; animation-duration: 8s; }
.p5 { width: 18px; height: 18px; left: 90%; top: 60%; animation-delay: 2s; animation-duration: 5s; }
.p6 { width: 22px; height: 22px; left: 20%; top: 50%; animation-delay: 2.5s; animation-duration: 7s; }
.p7 { width: 14px; height: 14px; left: 70%; top: 15%; animation-delay: 3s; animation-duration: 6s; }
.p8 { width: 20px; height: 20px; left: 45%; top: 45%; animation-delay: 3.5s; animation-duration: 8s; }

/* Grid Pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Hero Content */
.hero-v2-content {
  position: relative;
  z-index: 20;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-v2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Side */
.hero-v2-left {
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@media (min-width: 1024px) {
  .hero-v2-left {
    text-align: left;
  }
}

.hero-v2-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  color: #ffffff;
}

.title-line.gradient {
  background: linear-gradient(135deg, #2563eb, #60a5fa, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@media (min-width: 1024px) {
  .hero-v2-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Hero Buttons */
.hero-v2-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

@media (min-width: 1024px) {
  .hero-v2-buttons {
    justify-content: flex-start;
  }
}

.btn-hero-v2-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(37,99,235,0.3);
  transition: all 0.3s ease;
}

.btn-hero-v2-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(37,99,235,0.4);
  color: #ffffff;
}

.btn-hero-v2-primary svg {
  transition: transform 0.3s ease;
}

.btn-hero-v2-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-v2-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero-v2-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.05);
  color: #ffffff;
}

/* Hero Stats */
.hero-v2-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

@media (min-width: 1024px) {
  .hero-v2-stats {
    justify-content: flex-start;
  }
}

.hero-v2-stats .stat {
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.hero-v2-stats .stat:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero-v2-stats .stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.hero-v2-stats .stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Right Side - Product Showcase */
.hero-v2-right {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-v2-right {
    display: block;
    animation: fadeInUp 0.8s ease 1s both;
  }
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.product-card-showcase {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.5s ease;
}

.product-card-showcase:hover {
  transform: scale(1.05) rotate(2deg);
  z-index: 50;
}

.product-card-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card-showcase:hover img {
  transform: scale(1.1);
}

.product-card-showcase.p1 { height: 280px; }
.product-card-showcase.p2 { height: 320px; }
.product-card-showcase.p3 { height: 240px; }
.product-card-showcase.p4 { height: 270px; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-showcase:hover .product-overlay {
  opacity: 1;
}

/* Glow effect behind products */
.showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: rgba(37,99,235,0.2);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  animation: orbPulse 10s ease-in-out infinite;
}

/* Bottom Gradient */
.hero-v2-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 30;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  animation: bounce 2s infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: scroll 2s infinite;
}

/* ========================================
   7. SECTIONS COMMUNES
   ======================================== */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--rounded-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   8. PARTNERS SECTION
   ======================================== */
.partners-section {
  padding: 4rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

.partners-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2.5rem;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.partners-logos span,
.partner-logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--secondary);
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners-logos span:hover,
.partner-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* ========================================
   9. PRODUCTS GRID
   ======================================== */
.products-section {
  padding: 6rem 0;
  background-color: var(--slate-50);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: block;
  background-color: var(--white);
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
  border: 1px solid var(--slate-100);
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.2);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-image {
  height: 224px;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--primary);
}

.product-description {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.product-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-link svg {
  transform: translateX(4px);
}

.product-card:hover .product-link {
  color: var(--primary-dark);
}

/* ========================================
   10. FEATURES GRID
   ======================================== */
.features-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--rounded-xl);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-xl);
  background-color: var(--white);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--rounded-2xl);
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--slate-500);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ========================================
   11. STATS SECTION
   ======================================== */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--rounded-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--slate-400);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   12. TESTIMONIALS
   ======================================== */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--slate-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  fill: currentColor;
}

.testimonial-content {
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* ========================================
   13. CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-content h2 span {
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content > p {
  color: var(--slate-400);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--slate-400);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  color: var(--white);
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-2xl);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--rounded-lg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate-700);
  background-color: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--rounded-xl);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ========================================
   14. FOOTER
   ======================================== */
.site-footer {
  background-color: var(--slate-900);
  color: var(--white);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: inline-block;
  background-color: var(--white);
  border-radius: var(--rounded-lg);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-description {
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-400);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-copyright a {
  color: var(--slate-400);
}

.footer-copyright a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-full);
  background-color: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   15. ANIMATIONS
   ======================================== */
/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Orb Pulse */
@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Float */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(10px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) translateX(-10px);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-40px) translateX(5px);
    opacity: 0.7;
  }
}

/* Scroll Indicator */
@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Count Up Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Grid Move */
@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

/* Pulse Ring */
@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Animate on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fadeIn.visible {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fadeInUp.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInDown.visible {
  animation: fadeInDown 0.8s ease forwards;
}

.animate-fadeInLeft.visible {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight.visible {
  animation: fadeInRight 0.8s ease forwards;
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* ========================================
   16. WORDPRESS DEFAULTS
   ======================================== */
/* Screen Reader Text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: var(--slate-900);
  color: var(--white);
  z-index: 100000;
}

/* Alignment */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignnone {
  margin: 1rem 0;
}

/* Captions */
.wp-caption {
  max-width: 100%;
  margin-bottom: 1rem;
}

.wp-caption img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--slate-500);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-columns-1 { grid-template-columns: repeat(1, 1fr); }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }

.gallery-item {
  margin: 0;
}

.gallery-icon img {
  border-radius: var(--rounded-lg);
}

/* Blockquotes */
blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--slate-600);
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--slate-800);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 0.75rem;
  border: 1px solid var(--slate-200);
  text-align: left;
}

th {
  background-color: var(--slate-50);
  font-weight: 600;
  color: var(--secondary);
}

/* Lists in content */
.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

/* ========================================
   17. PAGE CONTENT
   ======================================== */
.page-content {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 60vh;
}

.page-header {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header h1 span {
  color: var(--primary);
}

.page-header p {
  color: var(--slate-400);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  position: relative;
  z-index: 1;
}

.breadcrumbs a {
  color: var(--slate-400);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs .separator {
  color: var(--slate-600);
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ========================================
   18. RESPONSIVE (MOBILE)
   ======================================== */
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .hero-v2 {
    padding: 100px 0 60px;
  }
  
  .hero-v2-right {
    display: none;
  }
  
  .products-grid,
  .features-grid {
    gap: 1.5rem;
  }
  
  .contact-grid {
    gap: 3rem;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Hero */
  .hero-v2 {
    padding: 90px 0 60px;
    min-height: auto;
  }
  
  .hero-v2-title {
    font-size: 2.5rem;
  }
  
  .hero-v2-subtitle {
    font-size: 1rem;
  }
  
  .hero-v2-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-v2-primary,
  .btn-hero-v2-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-v2-stats {
    gap: 1rem;
  }
  
  .hero-v2-stats .stat {
    padding: 0.5rem;
  }
  
  .hero-v2-stats .stat-value {
    font-size: 1.5rem;
  }
  
  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .feature-icon {
    margin: 0;
    flex-shrink: 0;
  }
  
  /* Stats */
  .stats-grid {
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Footer */
  .footer-main {
    padding: 3rem 0;
  }
  
  .footer-grid {
    gap: 2rem;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  /* Page Header */
  .page-header {
    padding: 7rem 0 3rem;
  }
  
  .page-content {
    padding-top: 6rem;
  }
  
  /* Alignments on mobile */
  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin: 1rem auto;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-v2-title {
    font-size: 2rem;
  }
  
  .hero-v2-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-v2-stats .stat {
    min-width: 100px;
  }
  
  .product-image {
    height: 200px;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto;
  }
  
  .stat-value {
    font-size: 1.75rem;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .partners-logos {
    gap: 1.5rem;
  }
  
  .partners-logos span {
    font-size: 1rem;
  }
}

/* ========================================
   19. ADMIN BAR FIX
   ======================================== */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    position: absolute;
  }
}

/* ========================================
   20. PRINT STYLES
   ======================================== */
@media print {
  .site-header,
  .site-footer,
  .scroll-indicator,
  .hero-v2-bg,
  .btn-submit {
    display: none !important;
  }
  
  body {
    color: #000;
    font-size: 12pt;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .hero-v2 {
    min-height: auto;
    padding: 2rem 0;
    background: none;
  }
  
  .hero-v2-title,
  .section-title {
    color: #000;
  }
  
  .page-content {
    padding-top: 2rem;
  }
}

/* ========================================
   21. ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate-900);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0 0 var(--rounded-lg) var(--rounded-lg);
  z-index: 999999;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   22. LOADING STATES
   ======================================== */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--slate-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--slate-100) 25%, var(--slate-200) 50%, var(--slate-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--rounded-lg);
}

/* ========================================
   23. NOTIFICATIONS & ALERTS
   ======================================== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--rounded-lg);
  margin-bottom: 1rem;
  font-weight: 500;
}

.alert-info {
  background-color: var(--primary-50);
  border: 1px solid var(--primary-200);
  color: var(--primary-dark);
}

.alert-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.alert-warning {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
}

.alert-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* Contact Form 7 Custom Styles */
.wpcf7-form {
  margin: 0;
}

.wpcf7-form .form-group {
  margin-bottom: 1.5rem;
}

.wpcf7-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--rounded-lg);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wpcf7-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: var(--rounded-xl);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.wpcf7-response-output {
  margin: 1rem 0 !important;
  padding: 1rem !important;
  border-radius: var(--rounded-lg) !important;
}

/* ========================================
   24. UTILITY CLASSES
   ======================================== */
/* Display */
.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;
}

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-none { box-shadow: none; }

/* Border Radius */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--rounded-sm); }
.rounded { border-radius: var(--rounded); }
.rounded-md { border-radius: var(--rounded-md); }
.rounded-lg { border-radius: var(--rounded-lg); }
.rounded-xl { border-radius: var(--rounded-xl); }
.rounded-full { border-radius: var(--rounded-full); }

/* Transitions */
.transition { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

/* Transform */
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
