/* ============================================
   SOS SMARTPHONE AVIGNON - STYLES
   ============================================ */

:root {
  --bg-primary: #0A1628;
  --bg-secondary: #0F1E38;
  --bg-card: #15243F;
  --cyan: #00D4E0;
  --cyan-light: #4FE5EE;
  --cyan-glow: rgba(0, 212, 224, 0.4);
  --white: #FFFFFF;
  --gray: #8B9CB5;
  --gray-dark: #4A5A78;
  --danger: #FF3B5C;
  --success: #00E676;
  --gradient-1: linear-gradient(135deg, #00D4E0 0%, #4FE5EE 100%);
  --gradient-2: linear-gradient(135deg, #0A1628 0%, #15243F 100%);
  --gradient-3: linear-gradient(135deg, #00D4E0 0%, #0066FF 100%);
  --shadow-cyan: 0 0 30px rgba(0, 212, 224, 0.3);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
  --transition: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

::selection {
  background: var(--cyan);
  color: var(--bg-primary);
}

/* ====== CUSTOM CURSOR ====== */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.05s ease;
}

.cursor.hover {
  transform: scale(2.5);
  background: var(--cyan-glow);
}

@media (max-width: 768px) {
  .cursor, .cursor-dot { display: none; }
}

/* ====== LOADING SCREEN ====== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 120px;
  height: 120px;
  border: 3px solid var(--bg-card);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

.loader-text {
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--cyan);
  font-weight: 700;
}

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

/* ====== PARTICLES BG ====== */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.4;
  box-shadow: 0 0 10px var(--cyan);
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s var(--transition);
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 224, 0.1);
}

.navbar.scrolled {
  padding: 12px 5%;
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
  text-decoration: none;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 212, 224, 0.5));
  transition: transform 0.4s var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05) rotate(-3deg);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 224, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 224, 0.8); }
}

.logo-text span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient-1);
  color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s var(--transition);
  box-shadow: 0 4px 20px rgba(0, 212, 224, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 224, 0.6);
}

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

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 968px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s var(--transition);
    gap: 30px;
    padding: 40px;
    border-left: 1px solid rgba(0, 212, 224, 0.2);
  }
  .nav-links.active { right: 0; }
  .nav-cta { display: none; }
}

/* ====== ANIMATED MESH GRADIENT BLOBS ====== */
.mesh-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00D4E0, transparent);
  top: -100px;
  left: -100px;
  animation-duration: 25s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0066FF, transparent);
  bottom: -100px;
  right: -100px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #4FE5EE, transparent);
  top: 50%;
  left: 50%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, -60px) scale(1.1); }
  50% { transform: translate(-40px, 80px) scale(0.95); }
  75% { transform: translate(-80px, -40px) scale(1.05); }
}

/* ====== CURSOR TRAIL ====== */
.trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  box-shadow: 0 0 12px var(--cyan);
  animation: trail-fade 0.8s linear forwards;
}

@keyframes trail-fade {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

/* ====== CONFETTI ====== */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 9999;
  border-radius: 2px;
  animation: confetti-fall 1.8s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

@keyframes confetti-fall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translateY(400px) rotate(720deg) scale(0.3); }
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00D4E0, #0066FF);
  border-radius: 10px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4FE5EE, #00D4E0);
  box-shadow: 0 0 10px var(--cyan);
}

/* ====== TEXT GLOW PULSE ====== */
.glow-pulse {
  animation: text-glow 2.5s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 212, 224, 0.4); }
  50% { text-shadow: 0 0 40px rgba(0, 212, 224, 0.9), 0 0 60px rgba(0, 212, 224, 0.5); }
}

/* ====== LETTER STAGGER ====== */
.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-90deg);
  animation: letter-in 0.6s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes letter-in {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* ====== SECTION DIVIDERS ====== */
.divider-wave {
  display: block;
  width: 100%;
  height: 80px;
  margin: -1px 0;
  position: relative;
  z-index: 2;
}

/* ====== LIVE BADGE ENHANCED ====== */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E676;
  position: relative;
  margin-right: 8px;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.3);
  animation: live-ping 1.5s ease-in-out infinite;
}

@keyframes live-ping {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ====== HOVER LIFT GLOBAL ====== */
.btn:active {
  transform: scale(0.96) !important;
}

/* ====== PREMIUM SHINE ON BUTTONS ====== */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes shine {
  0% { left: -100%; }
  60%, 100% { left: 200%; }
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 5% 50px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 224, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 224, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 224, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 224, 0.1);
  border: 1px solid rgba(0, 212, 224, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 .glitch {
  position: relative;
  display: inline-block;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glitch-anim 3s ease-in-out infinite;
}

@keyframes glitch-anim {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, -2px); }
  80% { transform: translate(1px, 2px); }
}

.hero p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--bg-primary);
  box-shadow: 0 8px 30px rgba(0, 212, 224, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 224, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(0, 212, 224, 0.3);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 224, 0.1);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 212, 224, 0.15);
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== HERO PHONE 3D - VERSION MALADE ====== */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
  perspective-origin: center center;
  height: 650px;
}

.phone-scene {
  position: relative;
  transform-style: preserve-3d;
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.phone-3d {
  width: 290px;
  height: 600px;
  background: linear-gradient(145deg, #1a2942 0%, #0a1628 50%, #15243F 100%);
  border-radius: 48px;
  position: relative;
  transform-style: preserve-3d;
  animation: phone-rotate 10s ease-in-out infinite;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(0, 212, 224, 0.4),
    inset 0 0 0 2px rgba(0, 212, 224, 0.3),
    inset 0 0 30px rgba(0, 212, 224, 0.1);
}

/* Bordure metallic */
.phone-3d::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00D4E0, #4FE5EE, #0066FF, #00D4E0);
  background-size: 400% 400%;
  z-index: -1;
  animation: border-shine 4s linear infinite;
  filter: blur(2px);
}

@keyframes border-shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

/* Reflet glass */
.phone-3d::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 50%;
  border-radius: 40px 40px 100px 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
  opacity: 0.7;
}

@keyframes phone-rotate {
  0% { transform: rotateY(-20deg) rotateX(8deg) rotateZ(-2deg); }
  25% { transform: rotateY(15deg) rotateX(-5deg) rotateZ(2deg); }
  50% { transform: rotateY(20deg) rotateX(5deg) rotateZ(-1deg); }
  75% { transform: rotateY(-10deg) rotateX(-8deg) rotateZ(1deg); }
  100% { transform: rotateY(-20deg) rotateX(8deg) rotateZ(-2deg); }
}

.phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, #0A1628 0%, #15243F 50%, #0A1628 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(0, 212, 224, 0.2);
}

.phone-notch::before {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4FE5EE, #00D4E0 40%, #003040);
  box-shadow: 0 0 6px rgba(0, 212, 224, 0.6);
}

/* UI Mock dans l'écran */
.phone-ui {
  padding: 60px 20px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  padding: 0 8px;
}

.phone-status .signal {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.phone-status .signal span {
  width: 3px;
  background: var(--cyan);
  border-radius: 1px;
}

.phone-status .signal span:nth-child(1) { height: 4px; }
.phone-status .signal span:nth-child(2) { height: 6px; }
.phone-status .signal span:nth-child(3) { height: 8px; }
.phone-status .signal span:nth-child(4) { height: 10px; }

.phone-time {
  font-size: 56px;
  font-weight: 200;
  text-align: center;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 212, 224, 0.4);
}

.phone-date {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.phone-notif {
  background: rgba(0, 212, 224, 0.1);
  border: 1px solid rgba(0, 212, 224, 0.3);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  backdrop-filter: blur(10px);
  animation: notif-pop 0.5s var(--transition);
  animation-delay: 1s;
  animation-fill-mode: backwards;
}

.phone-notif:nth-child(2) { animation-delay: 1.3s; }
.phone-notif:nth-child(3) { animation-delay: 1.6s; }

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

.phone-notif-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.phone-notif-text {
  flex: 1;
  min-width: 0;
}

.phone-notif-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.phone-notif-msg {
  font-size: 10px;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-bottom-bar {
  margin-top: auto;
  width: 40%;
  height: 4px;
  background: var(--white);
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.6;
}

/* Boutons côtés téléphone */
.phone-buttons {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 20%, #00D4E0 20%, #00D4E0 25%, transparent 25%, transparent 30%, #00D4E0 30%, #00D4E0 38%, transparent 38%, transparent 45%, #00D4E0 45%, #00D4E0 53%, transparent 53%);
  opacity: 0.5;
}

.phone-buttons.left { left: -4px; border-radius: 4px 0 0 4px; }
.phone-buttons.right { right: -4px; border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, transparent 25%, #00D4E0 25%, #00D4E0 35%, transparent 35%);
}

/* Ombre projetée sol */
.phone-shadow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 212, 224, 0.4) 0%, transparent 70%);
  filter: blur(15px);
  animation: shadow-pulse 6s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scaleX(0.7); opacity: 0.9; }
}

.phone-glow {
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle, rgba(0, 212, 224, 0.5) 0%, transparent 60%);
  z-index: -1;
  filter: blur(60px);
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Rayons lumière hero */
.phone-rays {
  position: absolute;
  inset: -100px;
  background:
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(0, 212, 224, 0.1) 30deg,
      transparent 60deg,
      transparent 120deg,
      rgba(0, 212, 224, 0.1) 150deg,
      transparent 180deg,
      transparent 240deg,
      rgba(0, 212, 224, 0.1) 270deg,
      transparent 300deg);
  z-index: -2;
  animation: rays-spin 15s linear infinite;
  filter: blur(20px);
}

@keyframes rays-spin {
  to { transform: rotate(360deg); }
}

/* Orbite */
.phone-orbit {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 2px dashed rgba(0, 212, 224, 0.15);
  border-radius: 50%;
  animation: orbit-spin 25s linear infinite;
  z-index: 0;
}

.phone-orbit-2 {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px dashed rgba(0, 212, 224, 0.1);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite reverse;
  z-index: 0;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.orbit-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--bg-card);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-cyan);
  animation: icon-counter-rotate 25s linear infinite;
}

@keyframes icon-counter-rotate {
  to { transform: rotate(-360deg); }
}

.phone-orbit .orbit-icon:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.phone-orbit .orbit-icon:nth-child(2) { right: 0; top: 50%; transform: translateY(-50%); }
.phone-orbit .orbit-icon:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.phone-orbit .orbit-icon:nth-child(4) { left: 0; top: 50%; transform: translateY(-50%); }

.phone-orbit-2 .orbit-icon:nth-child(1) { top: 50%; left: 0; transform: translateY(-50%); }
.phone-orbit-2 .orbit-icon:nth-child(2) { top: 0; right: 0; }
.phone-orbit-2 .orbit-icon:nth-child(3) { bottom: 50%; right: 0; transform: translateY(50%); }
.phone-orbit-2 .orbit-icon:nth-child(4) { bottom: 0; left: 0; }

@media (max-width: 968px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-phone { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }
}

/* ====== SECTIONS COMMON ====== */
section {
  padding: 100px 5%;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--gray);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== MARQUEE BRANDS - VERSION LOGOS ====== */
.marquee-section {
  background: var(--bg-secondary);
  padding: 50px 0;
  position: relative;
  border-top: 1px solid rgba(0, 212, 224, 0.1);
  border-bottom: 1px solid rgba(0, 212, 224, 0.1);
  overflow: hidden;
}

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

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, transparent 100%);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-secondary) 0%, transparent 100%);
}

.marquee-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 4px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}

.marquee-track.reverse {
  animation: marquee-scroll-reverse 40s linear infinite;
}

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

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

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 224, 0.15);
  border-radius: 16px;
  transition: all 0.4s var(--transition);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.marquee-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 212, 224, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.marquee-item:hover::before { transform: translateX(100%); }

.marquee-item:hover {
  background: rgba(0, 212, 224, 0.08);
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 212, 224, 0.2);
}

.marquee-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 212, 224, 0.4));
  transition: transform 0.4s;
}

.marquee-item:hover img {
  transform: rotate(8deg) scale(1.15);
}

/* Fallback si logo absent */
.marquee-item.no-logo img { display: none; }

.marquee-item.no-logo {
  background: linear-gradient(135deg, rgba(0, 212, 224, 0.08), rgba(0, 102, 255, 0.04));
}

.marquee-item.no-logo::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--gradient-1);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  margin-right: 4px;
  order: -1;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.marquee-item.no-logo span {
  font-size: 24px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.marquee-item span {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.marquee-item:hover span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== SCROLL PROGRESS BAR ====== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-1);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 212, 224, 0.6);
}

/* ====== NOISE TEXTURE ====== */
.noise-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 224, 0.1);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 212, 224, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 212, 224, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 224, 0.1);
  border: 1px solid rgba(0, 212, 224, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-1);
  transform: rotate(10deg) scale(1.1);
  box-shadow: var(--shadow-cyan);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-list li {
  font-size: 13px;
  color: var(--gray);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: bold;
}

.service-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-card:hover .service-link { gap: 12px; }

/* ====== WHY US ====== */
.why-us {
  background: var(--bg-secondary);
  border-radius: 40px;
  margin: 0 5%;
  padding: 100px 5%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.why-item {
  position: relative;
}

.why-num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  color: var(--gray);
  font-size: 14px;
}

/* ====== REVIEWS ====== */
.reviews-track {
  display: flex;
  gap: 24px;
  animation: marquee-scroll 50s linear infinite;
  width: max-content;
}

.reviews-wrapper { overflow: hidden; mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 224, 0.1);
  border-radius: 20px;
  padding: 28px;
  width: 380px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.review-stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 100px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg-primary);
  font-size: 16px;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
}

.review-date {
  color: var(--gray);
  font-size: 12px;
}

/* ====== FORM RDV ====== */
.rdv-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.rdv-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 32px;
  padding: 50px;
  border: 1px solid rgba(0, 212, 224, 0.2);
  box-shadow: var(--shadow-card);
}

.motif-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.motif-btn {
  background: var(--bg-secondary);
  border: 2px solid rgba(0, 212, 224, 0.2);
  color: var(--white);
  padding: 18px 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.motif-btn .emoji {
  font-size: 28px;
}

.motif-btn:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.motif-btn.active {
  background: var(--gradient-1);
  color: var(--bg-primary);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-secondary);
  border: 2px solid rgba(0, 212, 224, 0.15);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 224, 0.1);
}

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

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .rdv-container { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
}

/* ====== CONTACT ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0, 212, 224, 0.1);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 212, 224, 0.1);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 224, 0.1);
  border: 1px solid rgba(0, 212, 224, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.5;
}

.contact-text a:hover { color: var(--cyan); }

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 224, 0.2);
  min-height: 400px;
  filter: invert(0.9) hue-rotate(180deg) contrast(0.8);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

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

/* ====== FOOTER LUXE ====== */
footer {
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 212, 224, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    var(--bg-secondary);
  padding: 100px 5% 30px;
  border-top: 1px solid rgba(0, 212, 224, 0.2);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: footer-line 3s ease-in-out infinite;
}

@keyframes footer-line {
  0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
  50% { opacity: 1; transform: scaleX(1); }
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Logo footer */
.footer-logo-svg {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo-svg svg, .footer-logo-img {
  width: 100px;
  height: auto;
  max-height: 100px;
  filter: drop-shadow(0 0 25px rgba(0, 212, 224, 0.6));
  flex-shrink: 0;
  transition: transform 0.4s var(--transition);
}

.footer-logo-svg:hover .footer-logo-img {
  transform: rotate(-5deg) scale(1.05);
}

.footer-logo-full {
  width: 320px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 25px rgba(0, 212, 224, 0.4)) brightness(1.1);
  transition: transform 0.4s var(--transition);
}

.footer-logo-full:hover {
  transform: scale(1.03);
}

/* Navbar logo - same blend trick */
.logo-img {
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 12px rgba(0, 212, 224, 0.5)) brightness(1.1);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-logo-text .top {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 0.9;
}

.footer-logo-text .bot {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.footer-logo-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-logo-sub::before, .footer-logo-sub::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--cyan);
  max-width: 30px;
}

.footer-about p {
  color: var(--white);
  opacity: 0.7;
  font-size: 14px;
  margin: 0 0 28px;
  max-width: 380px;
  line-height: 1.7;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 212, 224, 0.08);
  border: 1px solid rgba(0, 212, 224, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.footer-trust-badge .stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  opacity: 0.6;
}

.footer ul { list-style: none; }

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

.footer ul a, .footer ul span {
  color: var(--white);
  opacity: 0.7;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer ul a:hover {
  opacity: 1;
  color: var(--white);
  transform: translateX(5px);
}

.footer ul a::before {
  content: '→';
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.footer ul a:hover::before { opacity: 1; }

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

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 224, 0.1);
  border: 1px solid rgba(0, 212, 224, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 13px;
  color: var(--white);
  line-height: 1.5;
}

.footer-contact-text strong {
  display: block;
  color: var(--white);
  opacity: 0.8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
  font-weight: 700;
}

.footer-contact-text a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-contact-text a:hover {
  color: var(--white);
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  width: 46px;
  height: 46px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 224, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.5s var(--transition);
}

.social-links a:hover::before { transform: scale(2); }

.social-links a span {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.social-links a:hover span { color: var(--bg-primary); }

.social-links a:hover {
  transform: translateY(-4px) rotate(6deg);
  box-shadow: var(--shadow-cyan);
  border-color: var(--cyan);
}

.footer-newsletter {
  margin-top: 24px;
}

.footer-newsletter p {
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  margin-bottom: 12px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 224, 0.2);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--cyan);
}

.footer-newsletter-form button {
  background: var(--gradient-1);
  color: var(--bg-primary);
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  transition: transform 0.3s;
}

.footer-newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-cyan);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 212, 224, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--white);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--white);
  opacity: 1;
  text-decoration: underline;
}

.footer-handles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
}

.footer-handle .label {
  color: var(--white);
  opacity: 0.85;
  font-weight: 700;
}

@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo-svg svg { width: 60px; height: 60px; }
  .footer-logo-text .top { font-size: 28px; }
  .footer-logo-text .bot { font-size: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ====== FLOATING WHATSAPP BTN ====== */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: wa-pulse 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.float-wa:hover { transform: scale(1.15); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====== BOUTIQUE PAGE ====== */
.shop-hero {
  padding: 140px 5% 60px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(0, 212, 224, 0.1);
}

.shop-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.shop-hero p {
  color: var(--gray);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 30px 5%;
  background: var(--bg-primary);
  position: sticky;
  top: 70px;
  z-index: 100;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 224, 0.1);
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 224, 0.2);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 224, 0.1);
}

.filter-btn.active {
  background: var(--gradient-1);
  color: var(--bg-primary);
  border-color: var(--cyan);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding: 50px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 224, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(0, 212, 224, 0.2);
}

.product-img {
  background: var(--gradient-2);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 224, 0.2), transparent 70%);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-1);
  color: var(--bg-primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-info {
  padding: 24px;
}

.product-cat {
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-specs {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
  min-height: 40px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 24px;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-price-old {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 8px;
}

.product-btn {
  background: var(--cyan);
  color: var(--bg-primary);
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.product-btn:hover {
  background: var(--cyan-light);
  transform: scale(1.05);
}

/* ====== SHOP CTA ====== */
.shop-cta {
  background: var(--bg-card);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  margin: 50px 5%;
  border: 1px solid rgba(0, 212, 224, 0.2);
}

.shop-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.shop-cta p {
  color: var(--gray);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.shop-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== MODAL ====== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.95);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.modal.active { display: flex; }

.modal-content {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  border: 1px solid rgba(0, 212, 224, 0.3);
  box-shadow: 0 30px 80px rgba(0, 212, 224, 0.2);
  animation: modal-pop 0.4s var(--transition);
}

@keyframes modal-pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-cyan);
}

.modal-content h3 {
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--gray);
  text-align: center;
  margin-bottom: 28px;
}

.modal-close {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 212, 224, 0.3);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--cyan);
  color: var(--bg-primary);
}
