/* ============================================================
   ORBIT SARL - REVISED SPACE-THEMED WHITE & DARK BLUE DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Colors — Primary (Royal Blue & Deep Indigo) */
  --color-primary:       #0A46E4; /* Royal Blue */
  --color-primary-soft:  #2962FF; /* Medium Blue */
  --color-primary-pale:  #EFF6FF; /* Ice Blue */
  --color-accent:        #00B0FF; /* Electric Cyan */
  --color-teal:          #00E5FF; /* Neo Teal */
  --color-violet:        #8B5CF6; /* Violet standard */
  --color-violet-bright: #A78BFA; /* Violet bright */

  /* Colors — Neutrals (Clean White theme with deep Navy/Dark Blue details) */
  --color-bg:            #FFFFFF;
  --color-surface:       #FFFFFF;
  --color-dark:          #020617; /* Midnight Space Blue */
  --color-dark-card:     #0B1530; /* Dark Card Deep Blue */
  --color-border:        #E2E8F0; /* Soft Slate Border */
  --color-muted:         #64748B; /* Secondary Labels */

  /* Colors — Text */
  --color-text-primary:   #0F172A; /* Deep Navy slate */
  --color-text-secondary: #475569; /* Slate Gray */
  --color-text-inverse:   #FFFFFF;

  /* Colors — Semantic */
  --color-success:  #10B981;
  --color-warning:  #F59E0B;
  --color-danger:   #EF4444;

  /* Typography */
  --font-display: 'Sora', 'DM Sans', sans-serif;
  --font-body:    'DM Sans', 'Plus Jakarta Sans', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing (8px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Border radius */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(10,70,228,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md:   0 8px 24px rgba(10,70,228,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 20px 60px rgba(10,70,228,0.10), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 24px rgba(10,70,228,0.30);
  --shadow-dark: 0 20px 60px rgba(2,6,23,0.30);

  /* Transitions */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 250ms;
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-primary);
  background: linear-gradient(165deg, #FFFFFF 0%, #F8FAFC 45%, #F1F5F9 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-soft);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ============================================================
   SPACE-THEMED PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #020617; /* Immersive Deep space black */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}

.preloader-orbit {
  position: relative;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-5);
}

/* Core glowing sun/star */
.preloader-core {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  z-index: 5;
}

/* Concentric rotating orbital rings */
.preloader-ring-1, .preloader-ring-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 176, 255, 0.4);
}

.preloader-ring-1 {
  width: 90px;
  height: 90px;
  animation: rotate-clockwise 4s linear infinite;
}

.preloader-ring-2 {
  width: 140px;
  height: 140px;
  animation: rotate-counter 6s linear infinite;
}

/* Tiny orbiting satellite indicators */
.preloader-ring-1::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-teal);
}

.preloader-ring-2::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  background: var(--color-primary-soft);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-primary-soft);
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-2);
}

.preloader-percent {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
}

@keyframes rotate-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-counter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* ============================================================
   STUNNING ORBITAL HERO (SPACE ELEMENTS)
   ============================================================ */
.starry-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(rgba(10, 70, 228, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(10, 70, 228, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 70, 228, 0.02) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px, 80px 80px;
  pointer-events: none;
  z-index: 1;
}

/* 3D Tilted Orbital System */
.orbital-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.orbital-center {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, var(--color-accent) 0%, var(--color-primary) 70%);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  z-index: 10;
  position: relative;
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}

/* Concentric orbital rings with 3D tilts */
.orbital-ring {
  position: absolute;
  border: 2px solid rgba(10, 70, 228, 0.4);
  border-radius: 50%;
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
}

.orbital-ring-1 {
  width: 200px;
  height: 200px;
  transform: rotateX(65deg) rotateY(-15deg);
}

.orbital-ring-2 {
  width: 320px;
  height: 320px;
  transform: rotateX(60deg) rotateY(10deg);
}

.orbital-ring-3 {
  width: 440px;
  height: 440px;
  transform: rotateX(70deg) rotateY(-5deg);
}

/* Rotating planetary spheres carrying tags */
.orbital-planet {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  z-index: 12;
  transition: transform var(--duration), border-color var(--duration);
}

.orbital-planet:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.orbital-planet i {
  color: var(--color-primary);
  margin-bottom: 4px;
}

/* ============================================================
   TYPOGRAPHY & TEXT UTILITIES
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
}

p {
  color: var(--color-text-secondary);
}

.display-xl {
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.display-lg {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.25;
}

.title-lg {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.body-lg {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.body-md {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.caption {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent) 60%, var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-inverse {
  color: var(--color-text-inverse);
}

/* ============================================================
   CONTAINERS & GRIDS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
  position: relative;
}

.section-padding {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

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

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section-padding { padding-top: var(--space-8); padding-bottom: var(--space-8); }
}

/* ============================================================
   STICKY NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: var(--shadow-glow);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.mobile-actions {
  display: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--duration) var(--ease);
}

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

/* ============================================================
   SERVICES DROPDOWN MENU
   ============================================================ */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--duration) var(--ease);
  margin-top: -8px;
  padding: var(--space-2) 0;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 0;
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background: var(--color-primary-pale);
  border-left-color: var(--color-primary);
  padding-left: calc(var(--space-5) + 4px);
}

.dropdown-link i {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.dropdown-title {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.dropdown-desc {
  display: block;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.lang-toggle {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  background: var(--color-primary-pale);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  transition: all var(--duration) var(--ease);
}

.lang-toggle:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: var(--space-2);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - 72px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    padding: var(--space-7) var(--space-5);
    align-items: flex-start;
    gap: var(--space-5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active { right: 0; }
  .nav-actions { display: none; }
  .nav-menu .mobile-actions {
    width: 100%;
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-4);
    margin-top: var(--space-2);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
}

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: 0 4px 14px rgba(10, 70, 228, 0.15);

}

.btn-primary:hover {
  background: var(--color-primary-soft);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
  padding: 11px 24px;
 
}

.btn-ghost:hover {
  background: var(--color-primary-pale);
  border-color: var(--color-primary-soft);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-text-inverse);
}

.btn-dark:hover {
  background: var(--color-dark-card);
  box-shadow: var(--shadow-dark);
  transform: translateY(-2px);
}

.btn-soft {
  background: var(--color-primary-pale);
  color: var(--color-primary);
}

.btn-soft:hover {
  background: var(--color-primary-soft);
  color: white;
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
  justify-content: center;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
}

.btn-icon:hover {
  background: var(--color-primary-pale);
  border-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   GLASSMORPHISM & CARDS SYSTEM
   ============================================================ */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--duration) var(--ease);
}

.glass:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-soft);
  transform: translateY(-4px);
}

.glass-dark {
  background: rgba(11, 21, 48, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  color: var(--color-text-inverse);
  transition: all var(--duration) var(--ease);
}

.glass-dark:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-dark {
  background: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-dark);
  transition: all var(--duration) var(--ease);
}

.card-dark:hover { transform: translateY(-3px); }

/* ============================================================
   STAT / METRIC CARD
   ============================================================ */
.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, var(--color-primary-pale), transparent 70%);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-primary { background: var(--color-primary-pale); color: var(--color-primary); }
.badge-success { background: rgba(16,185,129,0.12); color: #059669; }
.badge-warning { background: rgba(245,158,11,0.12);  color: #D97706; }
.badge-danger  { background: rgba(239,68,68,0.12); color: #DC2626; }
.badge-neutral { background: #F1F5F9; color: var(--color-muted); }
.badge-dark    { background: var(--color-dark); color: var(--color-text-inverse); }

.badge-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* ============================================================
   AVATARS & TEAM
   ============================================================ */
.avatar {
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
  background: var(--color-primary-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.avatar-circle { border-radius: var(--radius-full); }
.avatar-sm  { width: 36px;  height: 36px;  font-size: 12px; }
.avatar-md  { width: 44px;  height: 44px;  font-size: 14px; }
.avatar-lg  { width: 64px;  height: 64px;  font-size: 20px; }
.avatar-xl  { width: 110px; height: 110px; font-size: 28px; border-radius: 24px; }

/* ============================================================
   INPUTS & FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.form-input, .form-textarea {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-primary);
  outline: none;
  transition: all var(--duration) var(--ease);
  width: 100%;
}

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

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

.form-input:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-pale);
}

.form-error .form-input, .form-error .form-textarea {
  border-color: var(--color-danger);
}

.form-error-msg {
  font-size: 12px;
  color: var(--color-danger);
  margin-top: var(--space-1);
}

/* Sliders and Ranges */
.range-slider {
  width: 100%;
  height: 6px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: rgba(10, 70, 228, 0.08);
  border: 1px solid rgba(10, 70, 228, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-4);
  font-size: 13px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

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

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slider-controls {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 30;
  display: flex;
  gap: 12px;
}

.hero-slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
   background:transparent;
  color:rgba(0, 176, 255, 0.4);
  display: grid;
  font-size: 30px;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-2px);
  box-shadow: purple;
  
}

.hero-slider-dots,
.hero-slider-dot,
.hero-slider-dot.active {
  display: none;
}

@media (max-width: 768px) {
  .hero-slider-controls {
    bottom: 14px;
    width: calc(100% - 40px);
  }

  .hero-slider-arrow {
    width: 38px;
    height: 38px;
  }
}

.page-nav {
  position: sticky;
  top: 72px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: top 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.page-nav.stuck {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.navbar {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.partner-slider {
  margin-top: 92px;
}


.partners-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 12px;
}

.page-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
   padding: 0px 44px;
  
}

.page-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 157px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.page-nav-links a {
  color: var(--color-text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.page-nav-links a:hover,
.page-nav-links a:focus {
  color: rgb(0, 85, 255);
  transform: translateY(-1px);
}

.page-nav-links a.active {
  color: var(--color-primary);
}

.hero-image-wrap--with-shapes {
  position: relative;
  min-height: 420px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap--with-shapes .hero-shape {
  position: absolute;
  border-radius: 48% 52% 60% 40% / 45% 50% 50% 55%;
  filter: none;
  opacity: 0.82;
 animation: morph 6s infinite ease-in-out alternate;
  z-index: 1;
}

.hero-image-wrap--with-shapes .hero-shape--blue {
  width: 190px;
  height: 190px;
  top: -14px;
  left: -24px;
  background: rgba(10, 72, 228, 0.515);
  animation: morph 6s infinite ease-in-out alternate, orbit-blue 10s infinite ease-in-out;
}

.hero-image-wrap--with-shapes .hero-shape--violet {
  width: 240px;
  height: 240px;
  bottom: 0;
  right: -10px;
  background: rgba(138, 92, 246, 0.548);
  animation: morph2 6s infinite ease-in-out alternate, orbit-violet 12s infinite ease-in-out;
}

/* ============================================================
   MISSION SECTION & RINGS
   ============================================================ */
.mission-section {
  background: white;
  border-top: 1px solid var(--color-border);
  margin-bottom: 70px;
  margin-right: 20px;
}

.mission-content {
  position: relative;
  z-index: 10;
}

.mission-objectives {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.mission-objectives li {
  position: relative;
  padding-left: 30px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.mission-objectives li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.mission-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
  overflow: visible;
  gap: 0;
}

.mission-image-card {
  position: absolute;
  display: grid;
  place-items: center;
  
  overflow: hidden;
 
  background: transparent;
  box-shadow: none;
}

.mission-image-card--1 {
  width: 300px;
  height: 480px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mission-image-card--2 {
  width: 300px;
  height: 200px;
  z-index: 5;
  top: 65%;
  right: 2%;
  transform: translate(20px, 40px);
}

.mission-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mission-image-card img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.mission-ring {
  position: absolute;
  border-radius: 22px;
  z-index: 1;
  opacity: 0.88;
  pointer-events: none;
}

.mission-ring--blue {
  width: 340px;
  height: 340px;
  left: -90px;
  top: -50px;
  background: rgba(10,72,228,0.18);
  box-shadow: 0 20px 50px rgba(10,72,228,0.18);
  animation: orbit-blue 14s infinite ease-in-out;
}

.mission-ring--violet {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -50px;
  background: rgba(138,92,246,0.18);
  box-shadow: 0 16px 42px rgba(138,92,246,0.18);
  animation: orbit-violet 16s infinite ease-in-out;
}

@keyframes orbit-blue {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(-16px, 10px) rotate(4deg);
  }
  50% {
    transform: translate(-30px, 0px) rotate(-6deg);
  }
  80% {
    transform: translate(-18px, -18px) rotate(3deg);
  }
}

@keyframes orbit-violet {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  18% {
    transform: translate(10px, -12px) rotate(-5deg);
  }
  45% {
    transform: translate(24px, -22px) rotate(7deg);
  }
  70% {
    transform: translate(18px, 10px) rotate(-4deg);
  }
  90% {
    transform: translate(6px, 22px) rotate(5deg);
  }
}

@keyframes morph {
  0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; transform: scale(1); }
  25%  { border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%; transform: scale(1.1); }
  50%  { border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%; transform: scale(0.9); }
  75%  { border-radius: 40% 60% 30% 70% / 50% 50% 70% 30%; transform: scale(1.05); }
  100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; transform: scale(1); }
}


@keyframes morph {
  0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; transform: scale(1); }
  25%  { border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%; transform: scale(0.9); }
  50%  { border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%; transform: scale(1.1); }
  75%  { border-radius: 40% 60% 30% 70% / 50% 50% 70% 30%; transform: scale(1.05); }
  100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; transform: scale(1); }
}


.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: float-card 6s ease-in-out infinite alternate;
}

@keyframes float-card {
  0% { transform: translateY(0px) scale(1.00); }
  50% { transform: translateY(-12px) scale(1.01); }
  100% { transform: translateY(0px) scale(1.00); }
}

@keyframes float-shape {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(10px); }
  100% { transform: translateY(0) translateX(-8px); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-8) auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.section-desc {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-top: var(--space-3);
}

/* ============================================================
   METHOD TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: var(--space-6) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-border);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-7);
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-primary-pale);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.timeline-content {
  width: 44%;
  padding: var(--space-5);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-content { width: calc(100% - 40px); margin-left: 40px; }
  .timeline-item:nth-child(even) { flex-direction: row; }
}

/* ============================================================
   FAQ ACCORDION BLOCK
   ============================================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: var(--color-primary-soft);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: var(--space-4) var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

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

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-4) var(--space-5);
  font-size: 14px;
  color: var(--color-text-secondary);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  border-top-color: var(--color-border);
}

/* ============================================================
   PORTFOLIO FILTER & GRID
   ============================================================ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

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

.portfolio-item {
  display: flex;
  flex-direction: column;
}

.portfolio-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/10;
  margin-bottom: var(--space-4);
  background: var(--color-dark);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.95), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* ============================================================
   DARK CALL TO ACTION SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #020617 0%, #0B1530 50%, #0F172A 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  text-align: center;
  margin-top: var(--space-8);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 176, 255, 0.15) 0%, transparent 70%);
}

.cta-section .display-lg { margin-bottom: var(--space-4); }

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto var(--space-6) auto;
  font-size: 17px;
}

/* ============================================================
   PRICING TIER SYSTEM
   ============================================================ */
.pricing-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.pricing-tier-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--duration) var(--ease);
}

.pricing-tier-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.pricing-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .pricing-matrix { grid-template-columns: 1fr; }
  .pricing-tier-card.featured { transform: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-text-inverse);
  padding: var(--space-9) 0 var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-contact-info a:hover { color: var(--color-accent); }

.footer-socials { display: flex; gap: 12px; margin-top: var(--space-4); }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--duration) var(--ease);
}

.footer-social-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.4); }
.footer-legal { display: flex; gap: var(--space-4); }
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-legal a:hover { color: white; }

/* ============================================================
   INNER PAGES SPACING MODIFICATIONS
   ============================================================ */
body.inner-page .hero-section {
  padding-bottom: var(--space-9); /* Add spacing below inner page heroes */
  min-height: auto; /* Allow height to adjust naturally */
}

body.inner-page .section-padding {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

body.inner-page .section-padding[style*="padding-top: 0"],
body.inner-page .section-padding[style*="padding-top:0"] {
  padding-top: var(--space-8) !important; /* Force margin between hero and section right below */
}

.partner-slider{
  padding: 60px 30px;
 margin-top: 70px;
 
  background-color: transparent;
}

.partner-logo{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partner-logo::-webkit-scrollbar {
  display: none;
}

.partner-logo img{
  width: clamp(60px, 12vw, 100px);
  height: auto;
  object-fit: contain;
  filter: saturate(1.05) brightness(1.03);
  flex-shrink: 0;
}
#brain{
 color: rgb(238, 96, 119) ; 
}
#smartphone{
  color: rgb(44, 94, 220);
}
#laptop{
  color: purple;
}
#globe{
  color: gray;
}
#cloud{
  color: #059669;
}
#objet {
  position: relative;
  box-shadow: 0 0 20px blue;    /* halo lumineux */
  animation: blinkColor 2s infinite alternate,
             float 3s ease-in-out infinite;
}

/* Animation de clignotement + changement de couleur */
@keyframes blinkColor {
  0%   { opacity: 0.6; transform: scale(0.9); background-color: rgba(0, 0, 255, 0.563);   box-shadow: 0 0 15px blue; }
  50%  { opacity: 1;   transform: scale(1.1); background-color: rgba(128, 0, 128, 0.563); box-shadow: 0 0 25px violet; }
  100% { opacity: 0.7; transform: scale(1);   background-color: rgba(0, 0, 255, 0.563);   box-shadow: 0 0 15px blue; }
}

/* Animation de flottement (haut-bas) */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

 #rotation {
  width: 60px;
  height: 60px;
      
      animation: spin 7s linear infinite; 
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

/* ============================================================
   PROJECTS SLIDER SECTION
   ============================================================ */
.projects-slider-section {
  position: relative;
  padding-top: var(--space-6) !important;
  padding-bottom: var(--space-6) !important;
}

.projects-slider-wrapper {
  position: relative;
  margin-top: var(--space-4);
}

.projects-slider {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10, 70, 228, 0.02) 0%, rgba(0, 176, 255, 0.02) 100%);
  padding: var(--space-4);
}

@media (max-width: 768px) {
  .projects-slider {
    padding: var(--space-3);
    min-height: 380px;
  }
}

.project-slide {
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: left 0.5s ease-in-out,
              opacity 0.5s ease-in-out,
              visibility 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.project-slide.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10;
}

.project-slide.prev {
  left: -100%;
}

@media (max-width: 768px) {
  .project-slide {
    top: var(--space-3);
    bottom: var(--space-3);
    left: 100%;
    width: calc(100% - var(--space-6));
  }

  .project-slide.active {
    left: var(--space-3);
  }

  .project-slide.prev {
    left: -100%;
  }
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: calc(var(--space-4) + var(--space-2));
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary-soft);
}

@media (max-width: 992px) {
  .project-card {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding: var(--space-3);
  }
}

@media (max-width: 768px) {
  .project-card {
    padding: var(--space-2);
    gap: var(--space-2);
  }
}

.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-primary-pale);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 70, 228, 0.1) 0%, rgba(0, 176, 255, 0.05) 100%);
  z-index: 2;
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.08) rotate(1deg);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-1);
}

.project-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-title {
  filter: brightness(1.1);
}

.project-desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-desc {
  color: var(--color-text-primary);
}

/* ============================================================
   SLIDER DOTS NAVIGATION
   ============================================================ */
.projects-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: var(--space-3);
  flex-wrap: wrap;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.slider-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 50%;
}

.slider-dot:hover {
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(10, 70, 228, 0.4);
}

.slider-dot.active {
  background: var(--color-primary);
  box-shadow: 0 0 16px var(--color-primary), 0 0 24px rgba(10, 70, 228, 0.3);
  width: 16px;
  height: 16px;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.slider-dot.active::before {
  opacity: 1;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 16px var(--color-primary), 0 0 24px rgba(10, 70, 228, 0.3);
  }
  50% {
    box-shadow: 0 0 24px var(--color-primary), 0 0 32px rgba(10, 70, 228, 0.5);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    left: 100%;
  }
  to {
    opacity: 1;
    left: var(--space-4);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    left: var(--space-4);
  }
  to {
    opacity: 0;
    left: -100%;
  }
}

.projects-cta {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .projects-slider-dots {
    gap: var(--space-2);
    margin-top: var(--space-4);
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 14px;
    height: 14px;
  }
}
#disp {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color:rgb(35, 52, 232);

}
.solutions-section {
 
  padding: 4rem 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.solutions-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1.5px solid #e8e4f9;
  pointer-events: none;
}
.solutions-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1.5px solid #dce8f8;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b4fe0;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: #6b4fe0;
  border-radius: 2px;
}
.section-title {
  
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1535;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.section-title span { color: #1e2be2; }
.section-sub {
  font-size: 15px;
  color: #6b7280;
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid #e5e3f5;
  border-radius: 16px;
  padding: 1.75rem 1.25rem 1.5rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(.22,.68,0,1.2), border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  animation: fadeUp 0.55s both;
}
.card:nth-child(1){animation-delay:.05s}
.card:nth-child(2){animation-delay:.13s}
.card:nth-child(3){animation-delay:.21s}
.card:nth-child(4){animation-delay:.29s}
.card:nth-child(5){animation-delay:.37s}
@keyframes fadeUp {
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}
.card::before {
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.32s cubic-bezier(.22,.68,0,1.2);
  border-radius:16px 16px 0 0;
}
.card.blue::before  {background:#2725b8}
.card.violet::before{background:#6b4fe0}
.card.indigo::before{background:#4338ca}
.card.navy::before  {background:#2830da}
.card.deep::before  {background:#7c3aed}
.card:hover{transform:translateY(-6px);border-color:transparent}
.card.blue:hover  {box-shadow:0 12px 36px #2563b820;border-color:#bfdbfe}
.card.violet:hover{box-shadow:0 12px 36px #6b4fe022;border-color:#ddd6fe}
.card.indigo:hover{box-shadow:0 12px 36px #4338ca1a;border-color:#c7d2fe}
.card.navy:hover  {box-shadow:0 12px 36px #1e40af1a;border-color:#93c5fd}
.card.deep:hover  {box-shadow:0 12px 36px #7c3aed1e;border-color:#e9d5ff}
.card:hover::before{transform:scaleX(1)}
.card-icon {
  width:48px;height:48px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
  margin-bottom:1.1rem;
  transition:transform 0.28s cubic-bezier(.22,.68,0,1.2);
}
.card:hover .card-icon{transform:scale(1.12) rotate(-4deg)}
.card.blue  .card-icon{background:#eff6ff;color:#2563b8}
.card.violet.card-icon{background:#f3f0ff;color:#6b4fe0}
.card.indigo .card-icon{background:#eef2ff;color:#4338ca}
.card.navy  .card-icon{background:#eff6ff;color:#1e40af}
.card.deep  .card-icon{background:#faf5ff;color:#7c3aed}
.card.violet .card-icon{background:#f3f0ff;color:#6b4fe0}
.card-title {
  font-family:'Syne',sans-serif;
  font-size:15px;font-weight:600;
  color:#1a1535;margin:0 0 .45rem;
}
.card-desc{font-size:13px;color:#6b7280;line-height:1.6;margin:0 0 1.1rem}
.card-link {
  font-size:12.5px;font-weight:500;
  display:inline-flex;align-items:center;gap:5px;
  text-decoration:none;
  transition:gap 0.2s ease;
}
.card.blue  .card-link{color:#2563b8}
.card.violet .card-link{color:#6b4fe0}
.card.indigo .card-link{color:#4338ca}
.card.navy  .card-link{color:#1e40af}
.card.deep  .card-link{color:#7c3aed}
.card:hover .card-link{gap:9px}
.tag {
  display:inline-block;
  font-size:10.5px;font-weight:500;
  padding:2px 8px;border-radius:20px;
  margin-bottom:.75rem;
}
.card.blue  .tag{background:#dbeafe;color:#1e40af}
.card.violet .tag{background:#ede9fe;color:#5b21b6}
.card.indigo .tag{background:#e0e7ff;color:#3730a3}
.card.navy  .tag{background:#dbeafe;color:#1e3a8a}
.card.deep  .tag{background:#f3e8ff;color:#6b21a8}

/* ── PARTENAIRES ── */
.partners-section {
  
  padding: 3.5rem 2rem;
  background: #f8f7ff;
  position: relative;
  overflow: hidden;
}
.partners-section .section-header { margin-bottom: 2.5rem; }

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slider-wrapper::before,
.slider-wrapper::after {
  content:'';
  position:absolute;
  top:0;bottom:0;
  width:80px;
  z-index:2;
  pointer-events:none;
}
.slider-wrapper::before{left:0;background:linear-gradient(to right,#f8f7ff,transparent)}
.slider-wrapper::after {right:0;background:linear-gradient(to left,#f8f7ff,transparent)}

.slider-track {
  display:flex;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.slider-track:hover { animation-play-state: paused; }

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

.logo-card {
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  background:#fff;
  border:1px solid #e5e3f5;
  border-radius:14px;
  padding: 0 1.5rem;
  height: 72px;
  min-width: 140px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: default;
  white-space: nowrap;
}
.logo-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 6px 24px #6b4fe014;
  transform: translateY(-3px);
}
.logo-card i {
  font-size: 22px;
  flex-shrink: 0;
}
.logo-card span {
  
  font-size:14px;
  font-weight:600;
  color:#1a1535;
}
.lc-aws   i { color: #f59e0b; }
.lc-azure i { color: #2563b8; }
.lc-google i{ color: #4338ca; }
.lc-ms    i { color: #2563b8; }
.lc-sap   i { color: #1e40af; }
.lc-oracle i{ color: #dc2626; }
.lc-cisco  i{ color: #1d4ed8; }
.lc-sf    i { color: #0ea5e9; }
.lc-hp    i { color: #6b4fe0; }
.lc-ibm   i { color: #1a1535; }


.stats-section{
  font-family:'DM Sans',sans-serif;
  background:#fff;
  padding:4rem 2rem 4rem;
  position:relative;
  overflow:hidden;
}

.section-header{text-align:center;margin-bottom:3.5rem}
.section-label{
  
  font-size:11px;font-weight:600;
  letter-spacing:0.18em;text-transform:uppercase;
  color:#6b4fe0;margin-bottom:0.75rem;
  display:flex;align-items:center;justify-content:center;gap:8px;
}
.section-label::before,.section-label::after{
  content:'';display:inline-block;width:28px;height:2px;
  background:#6b4fe0;border-radius:2px;
}
.section-title{
  font-family:'Syne',sans-serif;
  font-size:2rem;font-weight:700;color:#1a1535;
  margin:0 0 0.6rem;line-height:1.2;
}
.section-title span{color:#2531b8}
.section-sub{
  font-size:14.5px;color:#6b7280;
  max-width:440px;margin:0 auto;line-height:1.7;
}

/* ── CIRCLES LAYOUT ── */
.circles-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
  position:relative;
}

.circle-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  position:relative;
  cursor:default;
  transition:transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
  text-align:center;
  animation:popIn 0.6s both;
}

@keyframes popIn{
  from{opacity:0;transform:scale(0.6)}
  to{opacity:1;transform:scale(1)}
}

.circle-item:nth-child(1){animation-delay:0.05s}
.circle-item:nth-child(2){animation-delay:0.18s}
.circle-item:nth-child(3){animation-delay:0.31s}
.circle-item:nth-child(4){animation-delay:0.44s}

/* Tailles décalées pour effet dynamique */
.circle-item.large { width:220px;height:220px; margin:-18px }
.circle-item.medium{ width:190px;height:190px; margin:-14px }
.circle-item.small { width:165px;height:165px; margin:-12px }

.circle-item:hover{ transform:scale(1.1); z-index:10; }

/* Couleurs */
.circle-item.blue  { background:#eff6ff; border:3px solid #bfdbfe; }
.circle-item.violet{ background:#f5f2ff; border:3px solid #ddd6fe; }
.circle-item.indigo{ background:#eef2ff; border:3px solid #c7d2fe; }
.circle-item.sky   { background:#f0f9ff; border:3px solid #bae6fd; }

.circle-item.blue:hover  { box-shadow:0 16px 48px #2563b828; border-color:#93c5fd; }
.circle-item.violet:hover{ box-shadow:0 16px 48px #6b4fe028; border-color:#c4b5fd; }
.circle-item.indigo:hover{ box-shadow:0 16px 48px #4338ca22; border-color:#a5b4fc; }
.circle-item.sky:hover   { box-shadow:0 16px 48px #0284c722; border-color:#7dd3fc; }

/* Anneau décoratif extérieur */
.circle-item::before{
  content:'';
  position:absolute;
  inset:-10px;
  border-radius:50%;
  border:1.5px dashed transparent;
  transition:border-color 0.3s ease, transform 0.6s ease;
}
.circle-item.blue::before  { border-color:transparent }
.circle-item.violet::before{ border-color:transparent }
.circle-item:hover::before {
  transform:rotate(45deg);
}
.circle-item.blue:hover::before  { border-color:#bfdbfe }
.circle-item.violet:hover::before{ border-color:#ddd6fe }
.circle-item.indigo:hover::before{ border-color:#c7d2fe }
.circle-item.sky:hover::before   { border-color:#bae6fd }

.ci-icon{
  font-size:20px;
  margin-bottom:6px;
  transition:transform 0.28s cubic-bezier(.22,.68,0,1.2);
}
.circle-item:hover .ci-icon{ transform:scale(1.2) rotate(-8deg) }

.circle-item.blue   .ci-icon{ color:#2563b8 }
.circle-item.violet .ci-icon{ color:#6b4fe0 }
.circle-item.indigo .ci-icon{ color:#4338ca }
.circle-item.sky    .ci-icon{ color:#0284c7 }

.ci-number{
  font-family:'Syne',sans-serif;
  font-weight:800;line-height:1;
  margin-bottom:4px;
}
.large  .ci-number{ font-size:2.6rem }
.medium .ci-number{ font-size:2.2rem }
.small  .ci-number{ font-size:1.9rem }

.circle-item.blue   .ci-number{ color:#2563b8 }
.circle-item.violet .ci-number{ color:#6b4fe0 }
.circle-item.indigo .ci-number{ color:#4338ca }
.circle-item.sky    .ci-number{ color:#0284c7 }

.ci-label{
  font-family:'Syne',sans-serif;
  font-size:11.5px;font-weight:600;
  color:#1a1535;
  line-height:1.3;
  padding:0 12px;
}
.ci-sub{
  font-size:10.5px;color:#9ca3af;
  margin-top:3px;
  padding:0 10px;
  line-height:1.3;
}

/* connecteur décoratif entre cercles */
.connector{
  width:32px;height:3px;
  border-radius:2px;
  flex-shrink:0;
  margin:0 -4px;
  align-self:center;
  position:relative;
  z-index:0;
}
.connector.c1{ background:#bfdbfe }
.connector.c2{ background:#ddd6fe }
.connector.c3{ background:#c7d2fe }

/* ============================================================
   TESTIMONIALS SLIDER SECTION
   ============================================================ */
.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) 0;
}

.testimonials-track {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: var(--space-2);
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-4));
  min-width: 300px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  border-color: var(--color-primary-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-primary-pale);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.testimonial-role {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 4px 0 0 0;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-3);
  color: #FDB022;
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  font-style: italic;
}

.testimonials-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: var(--space-2);
}

.testimonials-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.testimonials-arrow:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-8);
}

.blog-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.filter-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-6);
}

.filter-btn {
  padding: var(--space-3) var(--space-2);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--color-text-secondary);
  font-size: 14px;
  transition: all var(--duration) var(--ease);
  border-left: 3px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  background: var(--color-primary-pale);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.blog-list-item {
  padding: var(--space-4);
  background: var(--color-primary-pale);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border-left: 3px solid transparent;
}

.blog-list-item:hover {
  background: linear-gradient(135deg, rgba(10, 70, 228, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
  border-left-color: var(--color-primary);
}

.blog-list-item.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B5CF6 100%);
  color: white;
  border-left-color: white;
}

.blog-list-item.active .blog-date {
  color: rgba(255, 255, 255, 0.8);
}

.blog-list-item.active .blog-list-title {
  color: white;
}

.blog-list-item.active .blog-list-excerpt {
  color: rgba(255, 255, 255, 0.9);
}

.blog-date {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
}

.blog-list-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
  transition: all var(--duration) var(--ease);
}

.blog-list-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  transition: all var(--duration) var(--ease);
}

.blog-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
}

.blog-article {
  display: none;
}

.blog-article.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-article-header {
  margin-bottom: var(--space-8);
}

.blog-article-category {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.blog-article-category.tech {
  background: rgba(10, 70, 228, 0.1);
  color: var(--color-primary);
}

.blog-article-category.business {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

.blog-article-category.tips {
  background: rgba(0, 176, 255, 0.1);
  color: #00B0FF;
}

.blog-article-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.blog-article-meta {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-6);
}

.blog-article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-article-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  object-fit: cover;
}

.blog-article-body {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

.blog-article-body p {
  margin-bottom: var(--space-5);
}

.blog-article-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: var(--space-6) 0 var(--space-4);
}

/* ============================================================
   CONTACT FORM STYLES
   ============================================================ */
.contact-grid {
  @media (max-width: 1024px) {
    grid-template-columns: 1fr !important;
  }
}

.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
}

.contact-form-header {
  margin-bottom: var(--space-6);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}

.contact-form-desc {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-primary);
  transition: all var(--duration) var(--ease);
}

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

.form-group textarea {
  resize: vertical;
}

.form-verification {
  background: linear-gradient(135deg, rgba(10, 70, 228, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 70, 228, 0.2);
}

.verification-code-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.verification-challenge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.btn-refresh {
  background: transparent;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  transition: all var(--duration) var(--ease);
}

.btn-refresh:hover {
  transform: rotate(180deg);
}

.code-hint {
  font-size: 12px;
  color: var(--color-text-secondary);
  font-style: italic;
}

.form-checkbox {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 6px;
  cursor: pointer;
}

.form-checkbox label {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.4;
}

.form-message {
  background: var(--color-success);
  color: white;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: 14px;
}

.form-message.error {
  background: var(--color-danger);
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-card {
  transition: all var(--duration) var(--ease);
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-info-card a {
  color: inherit;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* ============================================================
   CONTACT FAQ IN SECTION
   ============================================================ */
.contact-faq-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
}

.contact-faq-section .section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.contact-faq-section .faq-container {
  max-width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: relative;
    top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - var(--space-2));
    min-width: 100%;
  }

  .blog-article-title {
    font-size: 24px;
  }

  .blog-article-meta {
    flex-direction: column;
    gap: var(--space-3);
  }
}