/*
Theme Name: Guignard Robotisation
Theme URI: https://guignard-robotisation.fr
Author: Guignard Robotisation
Author URI: https://guignard-robotisation.fr
Description: Thème premium pour Guignard Robotisation - Intégrateur de cellules robotisées
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: guignard
Tags: robotics, industrial, custom
*/

/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
  --dark-teal: #096062;
  --light-teal: #60BEB1;
  --orange: #F7893D;
  --dark: #052021;
  --darker: #051819;
  --light: #f8f9fa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--orange); color: #fff; }

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

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(247,137,61,0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: skewX(-12deg) translateX(-120%);
  transition: transform 0.7s ease;
}

.btn-primary:hover::after { transform: skewX(-12deg) translateX(120%); }
.btn-primary:hover { transform: scale(1.05); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: #fff; color: var(--dark-teal); transform: scale(1.05); }

.btn-ghost {
  background: transparent;
  color: var(--orange);
  padding-left: 0;
}
.btn-ghost:hover { background: transparent; }
.btn-ghost .btn-icon { transform: translateX(0); transition: transform 0.3s; }
.btn-ghost:hover .btn-icon { transform: translateX(4px); }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; } 50% { transform: translateX(-50%) translateY(10px); opacity: 1; } }
@keyframes shimmer { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes progressIn { from { width: 0; } to { width: 100%; } }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 15px rgba(45,212,191,0.3); }
  50% { box-shadow: 0 0 40px rgba(45,212,191,0.7); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  transition: color 0.3s;
}

#site-header.scrolled .site-logo { color: var(--dark-teal); }

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--dark-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  transition: transform 0.7s ease, box-shadow 0.3s;
  box-shadow: 0 0 0 rgba(45,212,191,0);
}

#site-header.scrolled .logo-icon { animation: glowPulse 2s infinite; }
.site-logo:hover .logo-icon { transform: rotate(360deg); }

.logo-text { font-weight: 300; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

#site-header.scrolled .nav-link { color: var(--gray-800); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
#site-header.scrolled .nav-link::after { background: var(--dark-teal); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

#site-header.scrolled .nav-toggle span { background: var(--dark-teal); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); border-bottom: 1px solid var(--gray-100); padding-bottom: 0.75rem; }

/* ============================================
   HERO
============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #051819;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,96,98,0.8) 0%, transparent 50%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(96,190,177,0.3);
  background: rgba(9,96,98,0.3);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #60BEB1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

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

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title-gradient {
  background: linear-gradient(90deg, #60BEB1, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 28rem;
  line-height: 1.7;
  border-left: 2px solid var(--orange);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s 0.6s ease both;
}

/* Hero Right Card */
.hero-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  backdrop-filter: blur(4px);
  aspect-ratio: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: overlay;
  transition: transform 0.7s;
}

.hero-card:hover img { transform: scale(1.1); }

.hero-card-overlay { position: absolute; inset: 0; background: rgba(9,96,98,0.2); }

.hero-status-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(96,190,177,0.3);
  color: #60BEB1;
  text-align: center;
  animation: float 4s 1s ease-in-out infinite;
}

.hero-status-badge .status-label { font-size: 0.65rem; color: #60BEB1; margin: 0.5rem 0 0.25rem; }
.hero-status-badge .status-value { font-family: var(--font-mono); color: #fff; font-size: 0.9rem; font-weight: 700; }

.hero-info-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--dark-teal);
  max-width: 16rem;
  transition: transform 0.3s;
}
.hero-info-card:hover { transform: scale(1.05); }
.hero-info-card .info-tag { font-size: 0.65rem; font-weight: 700; color: var(--dark-teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.hero-info-card .info-title { font-weight: 700; font-size: 1rem; color: var(--gray-900); line-height: 1.3; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  animation: scrollBounce 2s infinite;
}
.hero-scroll span { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.hero-scroll-line { width: 1px; height: 3rem; background: linear-gradient(to bottom, var(--orange), transparent); margin: 0 auto; }

/* ============================================
   SOLUTIONS SECTION
============================================ */
#solutions {
  padding: 8rem 0;
  background: var(--gray-50);
  position: relative;
}

.section-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#096062 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-divider {
  width: 6rem;
  height: 6px;
  background: var(--orange);
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,96,98,0.04), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.solution-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.solution-card:hover::before { opacity: 1; }

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-teal);
  color: #fff;
  margin-bottom: 2rem;
  transition: transform 0.3s;
  box-shadow: 0 8px 20px rgba(9,96,98,0.2);
}

.solution-card:hover .card-icon { transform: scale(1.1); }

.card-title { font-size: 1.3rem; color: var(--gray-900); margin-bottom: 1rem; }
.card-desc { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 2rem; line-height: 1.7; }

.card-features {
  margin-top: auto;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-700, #374151);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s, color 0.3s;
}
.card-link:hover { color: #e07030; gap: 0.75rem; }

/* ============================================
   MEDICAL SECTION
============================================ */
#medical {
  padding: 8rem 0;
  background: #60BEB1;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.medical-skew {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  background: var(--dark-teal);
  transform: skewX(-12deg) translateX(8rem);
  opacity: 0.2;
  pointer-events: none;
}

.medical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }

.medical-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.medical-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 2rem; line-height: 1.1; }

.medical-desc { font-size: 1.1rem; opacity: 0.9; line-height: 1.8; max-width: 28rem; font-weight: 300; }

.medical-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.medical-feat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  cursor: default;
}

.medical-feat:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.medical-feat svg { color: #fed7aa; margin: 0 auto 1rem; }
.medical-feat span { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; }

/* Mover System Card */
.mover-card {
  background: #fff;
  border-radius: 2.5rem;
  padding: 3rem;
  color: var(--gray-800);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 72rem;
}

.mover-card::before {
  content: '';
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--orange);
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(48px);
  opacity: 0.3;
  animation: pulse 3s infinite;
}

.mover-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: center; }

.mover-title { font-size: 1.8rem; color: var(--dark-teal); margin-bottom: 1.5rem; }

.mover-desc { color: var(--gray-600); line-height: 1.8; font-size: 1rem; margin-bottom: 1.5rem; }

.mover-advantages { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.mover-advantage {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.adv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--light-teal); flex-shrink: 0; }

/* Mover Visualization */
.mover-visual {
  position: relative;
  background: var(--gray-100);
  border-radius: 1rem;
  padding: 0.5rem;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.mover-mac-dots { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.5rem; z-index: 5; }
.mover-mac-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #34d399; }

.mover-sim-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 5;
}

.mover-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.5;
}

.mover-ar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ar-circle-outer {
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(9,96,98,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 10s linear infinite;
}

.ar-circle-inner {
  width: 15rem;
  height: 15rem;
  border: 1px dashed rgba(247,137,61,0.3);
  border-radius: 50%;
}

.ar-line-h { position: absolute; inset: 0; top: 50%; height: 1px; background: rgba(9,96,98,0.3); }
.ar-line-v { position: absolute; inset: 0; left: 50%; width: 1px; background: rgba(9,96,98,0.3); }

.station-tag {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 10;
  animation: float 2s ease-in-out infinite;
}

.station-tag-1 { top: 33%; left: 22%; border-left: 4px solid var(--orange); animation-delay: 0s; }
.station-tag-2 { bottom: 33%; right: 22%; border-left: 4px solid var(--light-teal); animation-delay: 1s; }

/* ============================================
   PROCESS SECTION
============================================ */
#process { padding: 8rem 0; background: #fff; }

.process-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; flex-wrap: wrap; gap: 2rem; }

.process-subtitle { font-size: 1.2rem; color: var(--dark-teal); font-family: var(--font-mono); margin-top: 0.5rem; }

.process-desc { color: var(--gray-500); max-width: 24rem; text-align: right; border-right: 4px solid var(--gray-200); padding-right: 1rem; font-size: 0.95rem; line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }

.step-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  background: var(--gray-50);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: default;
}

.step-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); background: #fff; border-color: var(--light-teal); }

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.25rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-200);
  transition: color 0.5s;
  line-height: 1;
  user-select: none;
}
.step-card:hover .step-number { color: rgba(9,96,98,0.05); }

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover .step-dot { opacity: 1; }

.step-title { font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; font-size: 1rem; }
.step-desc { font-size: 0.75rem; color: var(--gray-500); line-height: 1.6; transition: color 0.3s; }
.step-card:hover .step-desc { color: var(--gray-700, #374151); }

.step-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gray-200);
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--dark-teal), var(--light-teal));
  transition: width 0.5s ease;
}
.step-card:hover .step-progress-fill { width: 100%; }

/* ============================================
   STATS SECTION
============================================ */
#stats {
  padding: 6rem 0;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-bg-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--light-teal);
  border-radius: 50%;
  filter: blur(100px);
  top: -100px;
  left: -100px;
  opacity: 0.1;
  animation: pulse 3s infinite;
}

.stats-bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(100px);
  bottom: -100px;
  right: -100px;
  opacity: 0.1;
  animation: pulse 3s 2s infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 1rem;
  position: relative;
  transition: background 0.3s;
  border-right: 1px solid rgba(9,96,98,0.3);
}
.stat-item:last-child { border-right: none; }

.stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,96,98,0.2);
  border-radius: 0.5rem;
  transform: scale(0);
  transition: transform 0.5s ease;
}
.stat-item:hover::after { transform: scale(1); }

.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #60BEB1;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  display: block;
}

.stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }

/* ============================================
   CTA SECTION
============================================ */
#cta {
  padding: 8rem 0;
  background: var(--gray-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(96,190,177,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--gray-900); margin-bottom: 2rem; }
.cta-title span { color: var(--orange); }
.cta-desc { color: var(--gray-600); font-size: 1.1rem; max-width: 36rem; margin: 0 auto 3rem; line-height: 1.7; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }

.btn-outline-dark {
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  background: transparent;
  border-radius: 9999px;
  padding: 0.75rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-dark:hover { background: var(--gray-100); }

/* ============================================
   FOOTER
============================================ */
#site-footer {
  background: var(--darker);
  color: #fff;
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-brand { grid-column: span 1; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--dark-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(96,190,177,0.3);
}

.footer-tagline { color: #9ca3af; font-size: 0.85rem; line-height: 1.7; max-width: 22rem; margin-bottom: 2rem; }

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

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-link:hover { background: var(--orange); transform: scale(1.1); border-color: var(--orange); }

.footer-heading { font-size: 0.75rem; font-weight: 700; color: #60BEB1; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: 1.5rem; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.85rem; color: #9ca3af; transition: color 0.3s; }
.footer-contact-item:hover { color: #fff; }

.contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(9,96,98,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.footer-contact-item:hover .contact-icon { background: var(--dark-teal); }
.contact-icon svg { color: #60BEB1; }

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

.footer-link {
  font-size: 0.85rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.footer-link:hover { color: #F7893D; }
.footer-link-arrow { opacity: 0; font-size: 0.75rem; transition: opacity 0.3s, margin 0.3s; }
.footer-link:hover .footer-link-arrow { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #6b7280; transition: color 0.3s; }
.footer-legal a:hover { color: #fff; }

.status-indicator { display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; animation: pulse 2s infinite; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .medical-grid { grid-template-columns: 1fr; }
  .mover-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .medical-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-header { flex-direction: column; }
  .process-desc { text-align: left; border-right: none; border-left: 4px solid var(--gray-200); padding-right: 0; padding-left: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
