/* =============================================
   HERO SECTION - Type Tomorro
   Dispr Website - January 2026
============================================== */

/* Design Tokens - Based on DISPR Logo */
:root {
  /* Backgrounds */
  --bg: #051F1B;
  --bg2: #0A3830;
  --bg3: #0E5A4F;
  
  /* Accent Colors - DISPR Brand */
  --accent: #1FAF8A;
  --accent2: #28C99A;
  --accent-glow: rgba(31, 175, 138, 0.15);
  --accent-glow-strong: rgba(31, 175, 138, 0.25);
  
  /* Text */
  --text: #EAF2EC;
  --text-secondary: #B8C9BE;
  --muted: rgba(234,242,236,.65);
  
  /* Cards & Borders */
  --card: rgba(255,255,255,.04);
  --card-hover: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.08);
  --stroke-hover: rgba(255,255,255,.15);
  
  /* Shadows */
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
  --shadow-glow: 0 0 40px rgba(31, 175, 138, 0.15);
  
  /* Radius */
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 32px;
  
  /* Typography */
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   GLOBAL STYLES - Typography & Base Elements
============================================== */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Better font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Global heading styles - Default to Montserrat */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Recoleta — titres qui gardent explicitement la classe */
h1.font-recoleta,
h2.font-recoleta {
  font-family: 'Recoleta', serif;
  font-weight: 700;
}

/* Hero & statement — Montserrat comme .fhero__title (feature-template) */
.hero-title,
.statement__title {
  font-family: var(--font-headings);
  font-weight: 900;
}

.hero-title .fw-thin,
.statement__title .fw-thin {
  font-weight: 200;
}

/* Accent text highlight */
.accent,
.text-accent {
  color: var(--accent);
}

/* Consistent paragraph spacing */
p {
  line-height: 1.7;
}

/* Section spacing consistency */
section {
  position: relative;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Selection color */
::selection {
  background: rgba(31, 175, 138, 0.3);
  color: var(--text);
}

/* Link hover transition */
a {
  transition: color 0.2s var(--ease-smooth);
}

/* =============================================
   HERO SECTION
============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: 
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(31, 175, 138, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 30% 80%, rgba(14, 90, 79, 0.8) 0%, transparent 50%),
    linear-gradient(180deg, #062F2B 0%, var(--bg) 20%, var(--bg2) 80%, #062F2B 100%);
  padding: 200px 32px 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Prevent horizontal scroll caused by hero elements */
body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* =============================================
   HEADER SCROLL EFFECT
============================================== */
/* État par défaut : TRANSPARENT */
.theme-main-menu.sticky-menu.theme-menu-six.bg-none {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* État scrollé : VISIBLE avec fond, bordure et ombre */
.theme-main-menu.sticky-menu.theme-menu-six.bg-none.is-scrolled,
.theme-main-menu.sticky-menu.theme-menu-six.bg-none.fixed,
.theme-main-menu.sticky-menu.fixed {
  background: rgba(6, 47, 43, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  z-index: 9999;
}

/* Orb / Sphère Background - Style Tomorro (desktop uniquement) */
.orb {
  display: none; /* Masqué par défaut, affiché uniquement en desktop */
  position: absolute;
  top: 50%;
  right: -25%;
  transform: translateY(-50%);
  width: 1200px;
  height: 1200px;
  min-width: 1200px;
  min-height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(31, 175, 138, 0.25), rgba(14, 90, 79, 0.4) 45%, rgba(5, 31, 27, 0.8) 70%, rgba(3, 20, 18, 0.95) 100%);
  box-shadow: 0 0 120px rgba(31, 175, 138, 0.15), 0 0 200px rgba(14, 90, 79, 0.08), inset 0 0 80px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 0;
}

/* Reflet lumineux sur la sphère */
.orb::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 35%;
  height: 25%;
  background: radial-gradient(ellipse, rgba(94, 224, 182, 0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(12px);
}

/* Texture grain forte sur la sphère */
.orb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 80px;
}

@media (min-width: 992px) {
  .hero .orb {
    display: block;
  }
}

/* Hero Content */
.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0 auto 28px;
  max-width: 16ch;
  text-transform: uppercase;
}

/* Gradient text - Fintech style */
.hero-title .text-gradient-hero,
.text-gradient-hero {
  display: inline;
  background: linear-gradient(
    135deg,
    #5EE0B6 0%,
    #1FAF8A 25%,
    #28C99A 50%,
    #5EE0B6 75%,
    #1FAF8A 100%
  ) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 auto 40px;
  max-width: 600px;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  color: var(--bg) !important;
  background: var(--accent) !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  box-shadow: 0 8px 24px rgba(31, 175, 138, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: var(--accent2) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 175, 138, 0.4);
}

.btn-secondary {
  color: var(--text);
  background: var(--card);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: var(--bg2);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.play-icon {
  transition: transform 0.3s ease;
}

.btn-secondary:hover .play-icon {
  transform: scale(1.2);
}

/* Social Proof */
.hero-proof {
  margin-bottom: 32px;
}

/* Users avatars + count */
.hero-users {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-users__avatars {
  display: flex;
  align-items: center;
}

.hero-users__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  object-fit: cover;
  margin-left: -14px;
  transition: transform 0.3s ease;
}

.hero-users__avatar:first-child {
  margin-left: 0;
}

.hero-users__avatar:hover {
  transform: scale(1.1);
  z-index: 2;
}

.hero-users__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-users__count {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.hero-users__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.proof-text {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Logo Row */
.hero-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-logos.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-item {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.logo-item:hover {
  opacity: 1;
  color: var(--text);
}

/* =============================================
   HERO VISUAL - Cards & Floating Elements
============================================== */
.hero-visual {
  position: relative;
  margin: 80px auto 0;
  max-width: 1000px;
  min-height: 500px;
  opacity: 1; /* Start visible for animation showcase */
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero-visual.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HERO ANIMATION - Demo Showcase
============================================== */
.hero-animation {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

/* Main Demo Card */
.demo-card {
  position: absolute;
  width: 400px;
  max-width: 90%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(31, 175, 138, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 10;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-card.shrink {
  transform: scale(0.85) translateY(-20px);
  opacity: 0.9;
}

.demo-card.fade-out {
  transform: scale(0.9) translateY(-30px);
  opacity: 0;
}

.demo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.demo-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 200, 61, 0.15);
  color: #FFC83D;
  border: 1px solid rgba(255, 200, 61, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
}

.demo-badge.analyzing {
  background: rgba(100, 180, 255, 0.15);
  color: #64B4FF;
  border-color: rgba(100, 180, 255, 0.3);
  animation: pulse-badge 1.5s ease-in-out infinite;
}

.demo-badge.sent {
  background: rgba(31, 175, 138, 0.15);
  color: var(--accent);
  border-color: rgba(31, 175, 138, 0.3);
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(100, 180, 255, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(100, 180, 255, 0); }
}

.demo-date {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.8;
}

.demo-card-body {
  min-height: 160px;
}

.demo-company {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  min-height: 30px;
  overflow: hidden;
}

.demo-type {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 20px;
}

.demo-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-label {
  font-size: 13px;
  color: var(--muted);
}

.demo-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  min-width: 100px;
  text-align: right;
}

.demo-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.demo-progress.active {
  opacity: 1;
}

.demo-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
  background-size: 200% 100%;
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: shimmer-progress 1.5s linear infinite;
  box-shadow: 0 0 15px rgba(31, 175, 138, 0.4);
}

@keyframes shimmer-progress {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.demo-progress-text {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-progress.active .demo-progress-text {
  opacity: 1;
}

/* =============================================
   BANK SCROLL ANIMATION (Inside Card)
============================================== */
.demo-bank-scroll {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-bank-scroll.active {
  opacity: 1;
  max-height: 120px;
}

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

.bank-scroll-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.bank-scroll-track {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bank-scroll-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bank-scroll-item.active {
  opacity: 1;
  transform: translateX(0);
}

.bank-scroll-item.exit {
  opacity: 0;
  transform: translateX(-100%);
}

.bank-scroll-item img {
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(1.3) saturate(0.9);
  transition: all 0.3s ease;
}

/* Typing Cursor Effect */
.demo-company::after,
.demo-type::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  animation: blink-cursor 0.8s infinite;
  vertical-align: text-bottom;
  opacity: 0;
}

.demo-company.typing::after,
.demo-type.typing::after {
  opacity: 1;
}

@keyframes blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


/* =============================================
   RESPONSE CARDS (Bank Responses)
============================================== */
.response-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.response-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(31, 175, 138, 0.05);
  z-index: 15;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

.response-card.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.response-card.visible:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(31, 175, 138, 0.1);
}

/* Position response cards around the main card */
.rc-1 {
  top: 30px;
  right: 5%;
  animation-delay: 0s;
}

.rc-2 {
  bottom: 60px;
  left: 3%;
  animation-delay: 0.2s;
}

.rc-3 {
  top: 60px;
  left: 5%;
  animation-delay: 0.4s;
}

.rc-4 {
  bottom: 30px;
  right: 8%;
  animation-delay: 0.6s;
}

.response-card.visible {
  animation: float-response 4s ease-in-out infinite;
}

.rc-1.visible { animation-delay: 0s; }
.rc-2.visible { animation-delay: 1s; }
.rc-3.visible { animation-delay: 2s; }
.rc-4.visible { animation-delay: 1.5s; }

@keyframes float-response {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1) translateY(-8px); }
}

.rc-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  flex-shrink: 0;
}

.rc-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.2);
}

.rc-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100px;
}

.rc-bank {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.rc-status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rc-status.success {
  color: var(--accent);
}

.rc-status.pending {
  color: #FFC83D;
}

.rc-status.rejected {
  color: #FF6B6B;
}

.rc-amount {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.rc-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--bg);
  flex-shrink: 0;
}

/* =============================================
   ANIMATION STATES
============================================== */
.hero-animation.phase-typing .demo-card {
  transform: scale(1) rotateY(0deg);
}

.hero-animation.phase-analyzing .demo-card {
  transform: scale(0.85) translateY(-30px) rotateX(10deg);
  opacity: 0.7;
}

.hero-animation.phase-results .demo-card {
  transform: scale(0.75) translateY(-40px);
  opacity: 0.5;
}

.hero-animation.phase-reset .demo-card {
  transform: scale(0.9);
  opacity: 0;
}

/* =============================================
   LEGACY STYLES (keeping for compatibility)
============================================== */

/* Card Deck */
.deck {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1200px;
}

.mock-card {
  position: absolute;
  width: 420px;
  max-width: 90%;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-7deg);
  z-index: 3;
}

.card-2 {
  top: 60px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 2;
}

.card-3 {
  top: 120px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 1;
}

.mock-card:hover {
  transform: translateX(-50%) rotate(0deg) translateY(-10px) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

/* Card Content */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(31, 175, 138, 0.15);
  color: var(--accent);
  border: 1px solid rgba(31, 175, 138, 0.3);
}

.card-badge.success {
  background: rgba(31, 175, 138, 0.2);
  color: var(--accent);
  border-color: var(--accent);
}

.card-badge.warning {
  background: rgba(255, 200, 61, 0.15);
  color: #FFC83D;
  border-color: rgba(255, 200, 61, 0.3);
}

.card-date {
  font-size: 13px;
  color: var(--muted);
}

.card-body {
  margin-bottom: 20px;
}

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

.card-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.card-dot {
  opacity: 0.5;
}

/* Card Graph */
.card-graph {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 60px;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}

.graph-bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent2));
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.mock-card:hover .graph-bar {
  opacity: 1;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.fc-1 {
  top: 80px;
  right: 10%;
  animation-delay: 0s;
}

.fc-2 {
  bottom: 100px;
  left: 8%;
  animation-delay: 1.5s;
}

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

.fc-icon {
  font-size: 20px;
}

.fc-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.fc-status {
  font-size: 11px;
  color: var(--muted);
}

/* =============================================
   HERO SHELF (bottom separator)
============================================== */
.hero-shelf {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, 
    rgba(11, 35, 24, 0.5) 0%,
    transparent 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 0;
}

/* =============================================
   RESPONSIVE - TABLET
============================================== */
@media (max-width: 1024px) {
  .hero {
    padding: 140px 24px 80px;
  }

  .hero-title {
    font-size: clamp(36px, 6vw, 60px);
  }

  .deck {
    height: 450px;
  }

  .mock-card {
    width: 360px;
  }

  .floating-card {
    display: none;
  }

  /* Hero Animation - Tablet */
  .hero-animation {
    height: 450px;
  }

  .demo-card {
    width: 360px;
    padding: 24px;
  }

  .demo-company {
    font-size: 20px;
  }

  .bank-analysis {
    width: 420px;
    padding: 28px;
  }

  .bank-logo-item {
    width: 70px;
    height: 45px;
  }

  .response-card {
    padding: 12px 16px;
  }

  .rc-logo {
    width: 40px;
    height: 40px;
  }

  .rc-bank {
    font-size: 13px;
  }

  .rc-1 { right: 2%; }
  .rc-2 { left: 0%; }
  .rc-3 { left: 2%; }
  .rc-4 { right: 2%; }
}

/* =============================================
   RESPONSIVE - MOBILE
============================================== */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-logos {
    gap: 24px;
  }

  .logo-item {
    font-size: 14px;
  }

  .hero-visual {
    margin-top: 60px;
    min-height: 400px;
  }

  .deck {
    height: 380px;
  }

  .mock-card {
    width: 320px;
    padding: 20px;
  }

  .card-1 {
    transform: translateX(-50%) rotate(-5deg);
  }

  .card-2 {
    top: 50px;
    transform: translateX(-50%) rotate(-3deg);
  }

  .card-3 {
    top: 100px;
    transform: translateX(-50%) rotate(0deg);
  }

  .card-amount {
    font-size: 24px;
  }

  .hero .orb {
    display: none !important;
  }

  /* Hero Animation - Mobile */
  .hero-animation {
    height: 380px;
  }

  .demo-card {
    width: 300px;
    padding: 20px;
    border-radius: 20px;
  }

  .demo-card-header {
    margin-bottom: 16px;
  }

  .demo-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .demo-company {
    font-size: 18px;
  }

  .demo-type {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .demo-detail-row {
    padding: 10px 12px;
  }

  .demo-label {
    font-size: 12px;
  }

  .demo-value {
    font-size: 14px;
    min-width: 80px;
  }

  .demo-card-footer {
    margin-top: 16px;
    padding-top: 14px;
  }

  /* Bank Analysis - Mobile */
  .bank-analysis {
    width: 95%;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .bank-analysis-title {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .bank-logo-item {
    width: 60px;
    height: 40px;
    padding: 8px;
  }

  /* Response Cards - Mobile */
  .response-cards {
    display: none; /* Hide on mobile for cleaner experience */
  }
}

/* =============================================
   ACCESSIBILITY - prefers-reduced-motion
============================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .orb {
    animation: none;
  }

  .floating-card {
    animation: none;
  }

  .hero-content,
  .hero-logos,
  .hero-visual,
  .statement__inner,
  .positioning__wrapper {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =============================================
   FOCUS STYLES - Accessibility
============================================== */

/* Remove default focus outline and use focus-visible instead */
a:focus,
button:focus,
a:active,
button:active {
  outline: none;
}

/* Custom focus styles for keyboard navigation only */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* =============================================
   SECTION 2 - BIG STATEMENT
============================================== */
.statement {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(31, 175, 138, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(14, 90, 79, 0.6) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #0A3830 30%, #0E5A4F 70%, var(--bg) 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background with grain texture */
.statement__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.statement__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-repeat: repeat;
  background-size: 150px 150px;
}

.statement__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(7, 22, 15, 0.4) 70%);
}

/* Futuristic Circle - Organic liquid style with asymmetric rings */
.statement__orb {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 60px auto;
  border-radius: 48% 52% 51% 49% / 50% 48% 52% 50%;
  /* Simplified gradient - single bright ring */
  background: 
    radial-gradient(ellipse 52% 48% at 48% 52%,
      /* Core - dark center */
      #041A17 0%,
      #041A17 28%,
      /* Bright green ring */
      #168A72 32%,
      #28C99A 35%,
      #1FAF8A 37%,
      #28C99A 39%,
      #168A72 42%,
      /* Fade to dark */
      #041A17 50%,
      #031513 70%,
      transparent 100%
    );
  box-shadow: 
    /* Inner glow - asymmetric */
    inset 3px -2px 60px rgba(31, 175, 138, 0.3),
    inset -5px 3px 80px rgba(14, 90, 79, 0.2),
    /* Outer glow */
    0 0 80px rgba(31, 175, 138, 0.2),
    0 0 120px rgba(14, 90, 79, 0.12);
  pointer-events: none;
  z-index: 1;
  animation: 
    statement-orb-organic 18s ease-in-out infinite,
    statement-orb-breathe 10s ease-in-out infinite;
  will-change: border-radius, transform, box-shadow;
}

/* Inner bright ring - slightly off-center */
.statement__orb::before {
  content: '';
  position: absolute;
  top: 49%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: 76%;
  height: 74%;
  border-radius: 51% 49% 48% 52% / 49% 51% 49% 51%;
  background: 
    radial-gradient(ellipse 54% 50% at 46% 52%,
      #031513 0%,
      #031513 40%,
      rgba(40, 201, 154, 0.25) 50%,
      rgba(31, 175, 138, 0.3) 52%,
      rgba(40, 201, 154, 0.25) 54%,
      #031513 65%,
      transparent 100%
    );
  animation: statement-orb-inner 22s ease-in-out infinite reverse;
  will-change: border-radius, transform;
}

/* Grain texture overlay */
.statement__orb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 80px;
  z-index: 10;
}

/* Main organic morphing animation - slow living blob */
@keyframes statement-orb-organic {
  0%, 100% {
    border-radius: 46% 54% 53% 47% / 52% 48% 54% 46%;
    transform: scale(1) rotate(0deg);
  }
  13% {
    border-radius: 54% 46% 47% 53% / 47% 53% 46% 54%;
    transform: scale(1.03) rotate(2deg);
  }
  27% {
    border-radius: 48% 52% 55% 45% / 54% 46% 48% 52%;
    transform: scale(0.97) rotate(-1.5deg);
  }
  41% {
    border-radius: 53% 47% 46% 54% / 45% 55% 53% 47%;
    transform: scale(1.04) rotate(3deg);
  }
  55% {
    border-radius: 45% 55% 52% 48% / 53% 47% 46% 54%;
    transform: scale(0.98) rotate(-2deg);
  }
  69% {
    border-radius: 55% 45% 48% 52% / 46% 54% 55% 45%;
    transform: scale(1.02) rotate(1.5deg);
  }
  83% {
    border-radius: 47% 53% 54% 46% / 55% 45% 47% 53%;
    transform: scale(0.99) rotate(-1deg);
  }
}

/* Breathing glow animation - gentle pulsing */
@keyframes statement-orb-breathe {
  0%, 100% {
    box-shadow: 
      inset 3px -2px 60px rgba(31, 175, 138, 0.3),
      inset -5px 3px 80px rgba(14, 90, 79, 0.2),
      0 0 80px rgba(31, 175, 138, 0.2),
      0 0 120px rgba(14, 90, 79, 0.12);
  }
  50% {
    box-shadow: 
      inset 3px -2px 75px rgba(31, 175, 138, 0.4),
      inset -5px 3px 95px rgba(14, 90, 79, 0.28),
      0 0 110px rgba(31, 175, 138, 0.3),
      0 0 160px rgba(14, 90, 79, 0.2);
  }
}

/* Inner ring organic movement - slow flowing blob */
@keyframes statement-orb-inner {
  0%, 100% {
    border-radius: 52% 48% 47% 53% / 48% 52% 47% 53%;
    transform: translate(-50%, -50%) scale(1);
  }
  17% {
    border-radius: 47% 53% 54% 46% / 53% 47% 52% 48%;
    transform: translate(-53%, -47%) scale(1.05);
  }
  33% {
    border-radius: 54% 46% 48% 52% / 46% 54% 48% 52%;
    transform: translate(-47%, -53%) scale(0.95);
  }
  50% {
    border-radius: 48% 52% 52% 48% / 52% 48% 54% 46%;
    transform: translate(-52%, -48%) scale(1.03);
  }
  67% {
    border-radius: 53% 47% 46% 54% / 47% 53% 48% 52%;
    transform: translate(-48%, -52%) scale(0.97);
  }
  83% {
    border-radius: 46% 54% 53% 47% / 54% 46% 52% 48%;
    transform: translate(-51%, -49%) scale(1.02);
  }
}

/* Core subtle breathing - more visible pulsing */
@keyframes statement-orb-core {
  0%, 100% {
    border-radius: 53% 47% 49% 51% / 47% 53% 46% 54%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  33% {
    border-radius: 46% 54% 53% 47% / 54% 46% 51% 49%;
    transform: translate(-52%, -48%) scale(1.04);
    opacity: 1;
  }
  66% {
    border-radius: 50% 50% 46% 54% / 49% 51% 54% 46%;
    transform: translate(-48%, -52%) scale(0.96);
    opacity: 0.85;
  }
}

/* Container */
.statement__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.statement__inner.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Title */
.statement__title {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.statement__title .accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(31, 175, 138, 0.4);
}

/* Lead text */
.statement__lead {
  font-size: clamp(16px, 2vw, 20px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.statement__lead .accent {
  color: var(--accent);
  font-weight: 600;
}

/* =============================================
   SECTION 3 - POSITIONNEMENT DISPR
============================================== */
.positioning {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(135deg, #0A3830 0%, #062F2B 55%, #051F1B 100%);
  overflow: hidden;
}

/* Background with grain */
.positioning__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  background-repeat: repeat;
  background-size: 150px 150px;
}

/* Container */
.positioning .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Wrapper - 2 columns layout */
.positioning__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Left Column: Visual Mockup */
.positioning__visual {
  position: relative;
}

.positioning__mockup {
  position: relative;
  padding: 20px;
}

.mockup-window {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mockup-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) {
  background: rgba(255, 95, 86, 0.8);
}

.mockup-dots span:nth-child(2) {
  background: rgba(255, 189, 46, 0.8);
}

.mockup-dots span:nth-child(3) {
  background: rgba(39, 201, 63, 0.8);
}

.mockup-title {
  margin-left: 16px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.mockup-content {
  display: flex;
  height: 400px;
}

.mockup-sidebar {
  width: 80px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-item {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mockup-item.active {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(31, 175, 138, 0.3);
}

.mockup-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Screens container for animated mockup */
.mockup-screens-container {
  flex: 1;
  position: relative;
  min-height: 350px;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.mockup-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(31, 175, 138, 0.2);
  transform: translateY(-2px);
}

.mockup-card-header {
  width: 60%;
  height: 20px;
  background: linear-gradient(90deg, 
    rgba(31, 175, 138, 0.2) 0%, 
    rgba(31, 175, 138, 0.05) 100%);
  border-radius: 6px;
  margin-bottom: 16px;
}

.mockup-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-line {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.mockup-line.long {
  width: 90%;
}

.mockup-line.medium {
  width: 70%;
}

.mockup-line.short {
  width: 50%;
}

/* =============================================
   MOCKUP SCREENS - Animated Platform Demo
============================================== */

/* Sidebar with icons */
.mockup-sidebar .mockup-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.mockup-sidebar .mockup-item.active {
  color: var(--bg);
}

.mockup-sidebar .mockup-item svg {
  width: 18px;
  height: 18px;
}

/* Screen transitions */
.mockup-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  overflow: hidden;
}

.mockup-screen.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.mockup-screen-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Screen 1: Client Info */
.mockup-client-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.client-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
}

.client-info {
  flex: 1;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.client-type {
  font-size: 11px;
  color: var(--muted);
}

.client-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.client-badge.active {
  background: rgba(31, 175, 138, 0.15);
  color: var(--accent);
}

.mockup-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.info-item {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
  display: block;
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.info-value {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.info-value.highlight {
  color: var(--accent);
  font-size: 16px;
}

/* Screen 2: Requests */
.mockup-request-card {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
  flex-shrink: 0;
}

.request-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.request-bank-logo {
  width: 32px;
  height: 24px;
  object-fit: contain;
  filter: brightness(1.2);
}

.request-info {
  flex: 1;
}

.request-ref {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.request-date {
  font-size: 10px;
  color: var(--muted);
}

.request-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}

.request-status.pending {
  background: rgba(255, 200, 61, 0.15);
  color: #FFC83D;
}

.request-status.success {
  background: rgba(31, 175, 138, 0.15);
  color: var(--accent);
}

.request-details {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.request-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.request-duration {
  font-size: 12px;
  color: var(--muted);
  align-self: center;
}

/* Screen 3: Contracts */
.mockup-contract-card {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.contract-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.contract-bank-logo {
  width: 60px;
  height: 28px;
  object-fit: contain;
  filter: brightness(1.2);
}

.contract-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}

.contract-status.active {
  background: rgba(31, 175, 138, 0.15);
  color: var(--accent);
}

.contract-body {
  padding-top: 10px;
}

.contract-ref {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}

.contract-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.contract-detail {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

.detail-label {
  display: block;
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.detail-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.contract-progress {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.contract-progress .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  transition: width 1s var(--ease-smooth);
}

.progress-label {
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 10px;
  color: var(--muted);
}

.mockup-contract-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-logo {
  width: 40px;
  height: 20px;
  object-fit: contain;
  filter: brightness(1.1);
  opacity: 0.8;
}

.mini-ref {
  flex: 1;
  font-size: 11px;
  color: var(--muted);
}

.mini-status {
  font-size: 10px;
  color: var(--text);
  font-weight: 500;
}

/* Screen 4: Performance */
.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.stat-box {
  text-align: center;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  min-width: 0;
}

/* Mockup stat numbers - compact size for dashboard preview */
.mockup-stats-row .stat-number {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.2;
}

.mockup-stats-row .stat-desc {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-chart {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.chart-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.chart-area {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.chart-bar-mock {
  flex: 1;
  background: rgba(31, 175, 138, 0.25);
  border-radius: 4px 4px 0 0;
  height: var(--h);
  transition: height 0.6s var(--ease-smooth);
}

.chart-bar-mock.highlight {
  background: var(--accent);
}

/* Right Column: Content */
.positioning__content {
  padding: 0 20px;
}

.positioning__title {
  font-size: clamp(28px, 4vw, 48px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}

.positioning__text {
  margin-bottom: 40px;
}

.positioning__text p {
  font-size: clamp(16px, 1.8vw, 19px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.positioning__text p:last-child {
  margin-bottom: 0;
}

/* CTA Buttons */
.positioning__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.positioning__cta .btn-primary,
.positioning__cta .btn-secondary {
  flex-shrink: 0;
}

/* =============================================
   SECTION 4 - FONCTIONNALITÉS + CHIFFRES
============================================== */
.features-stats {
  position: relative;
  padding: clamp(80px, 10vw, 110px) 0;
  background: linear-gradient(135deg, #051F1B 0%, #062F2B 55%, #0A3830 100%);
  overflow: hidden;
}

/* Background with grain + vignette */
.features-stats__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  background-repeat: repeat;
  background-size: 150px 150px;
}

/* Vignette effect */
.features-stats__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

/* Container */
.features-stats .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Grid: 2 columns */
.features-stats__wrapper {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(40px, 5vw, 60px);
  margin-bottom: 40px;
}

/* ===== LEFT COLUMN ===== */
.features-stats__left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Badge Pills (shared style) */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(31, 175, 138, 0.6);
}

/* Features Block */
.features-block {
  display: flex;
  flex-direction: column;
}

.features-title {
  font-size: clamp(34px, 5vw, 52px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.features-text {
  font-size: clamp(16px, 1.8vw, 18px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: rgba(234, 242, 236, 0.70);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

/* Stats Block */
.stats-block {
  display: flex;
  flex-direction: column;
}

.stats-separator {
  width: 100%;
  height: 1px;
  background: var(--stroke);
  margin: 20px 0 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.stats-block .stat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.stat-value {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-legend {
  font-size: clamp(13px, 1.2vw, 14px);
  color: rgba(234, 242, 236, 0.70);
  line-height: 1.5;
}

/* ===== RIGHT COLUMN ===== */
.features-stats__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 60px; /* Align pills with title */
}

/* Pills Cloud */
.pills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(234, 242, 236, 0.85);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}

.pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.pill-dot.accent {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(31, 175, 138, 0.5);
}

/* Note */
.features-note {
  font-size: 11px;
  color: rgba(234, 242, 236, 0.55);
  line-height: 1.5;
  text-align: right;
  margin: 0;
  max-width: 320px;
  padding-top: 20px;
}

/* ===== BOTTOM CTAs (centered) ===== */
.features-stats__ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* Rounded button variant */
.btn-primary.rounded,
.btn-secondary.rounded {
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
}

.btn-primary.rounded {
  background: var(--accent) !important;
  color: #062F2B !important;
  border: none;
  box-shadow: 0 4px 16px rgba(31, 175, 138, 0.3);
}

.btn-primary.rounded:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(31, 175, 138, 0.4);
}

.btn-secondary.rounded {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  color: var(--text);
}

.btn-secondary.rounded:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}

/* =============================================
   SECTION 5 - FEATURE CARD
============================================== */
.feature-card {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
  overflow: hidden;
}

.feature-card * {
  cursor: default !important;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

.feature-card .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Feature Card */
.fc {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

/* FORCER l'absence totale d'effets */
.fc,
.fc *,
.fc:hover,
.fc:hover *,
.fc:active,
.fc:active *,
.fc:focus,
.fc:focus * {
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

/* Card Header */
.fc__head {
  margin-bottom: 32px;
}

.fc__head .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.fc__head .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(31, 175, 138, 0.6);
}

.fc__title {
  font-size: clamp(28px, 4vw, 42px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Card Panel (White Background) */
.fc__panel {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(32px, 4vw, 40px);
  display: flex;
  gap: clamp(32px, 4vw, 48px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Reversed Layout - Image on left, text on right */
.fc--reversed .fc__panel {
  flex-direction: row-reverse;
}

/* ===== LEFT COLUMN: Accordion ===== */
.fc__left {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

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

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer !important; /* Exception: keep pointer cursor for accordion */
  text-align: left;
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

/* Removed hover effect */

.accordion-header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}

.accordion-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.ai-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #0f172a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}

.accordion-chevron {
  flex-shrink: 0;
  color: #475569;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.accordion-content[aria-hidden="false"] {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 20px;
}

.accordion-content p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Learn More Button */
.btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--accent);
  color: #062F2B;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease !important; /* Exception: keep animation for this button only */
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(31, 175, 138, 0.3);
  cursor: pointer !important; /* Exception: keep pointer cursor */
}

.btn-learn-more:hover {
  transform: translateY(-2px) !important; /* Exception: keep hover effect */
  box-shadow: 0 6px 20px rgba(31, 175, 138, 0.4);
  background: var(--accent2);
}

/* ===== RIGHT COLUMN: Product Image ===== */
.fc__right {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.product-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  object-fit: contain;
  background: transparent; /* ✅ Pas de fond */
}

/* =============================================
   SECTION 7 - STATISTIQUES CLÉS
============================================== */
.stats-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(135deg, #0A3830 0%, #062F2B 55%, #051F1B 100%);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 60px);
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: clamp(32px, 4vw, 40px) clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: none !important;
  transform: none !important;
  animation: none !important;
  cursor: default !important;
}

/* Disable all animations/transitions on stats */
.stats-section * {
  transition: none !important;
  animation: none !important;
  transform: none !important;
  cursor: default !important;
}

/* Stats section - large numbers (do not affect mockup .stat-box) */
.stats-section .stat-number {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.stat-unit {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: var(--accent);
  margin-left: 4px;
}

.stat-label {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* =============================================
   VISUAL EFFECTS - SaaS Premium Background
============================================== */

/* 1. Grain Effect - Texture visible sur fonds/dégradés */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.18;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
  background-repeat: repeat;
  background-size: 150px 150px;
}

/* 2. Grid Pattern - Only on specific sections via class */
.has-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(31, 175, 138, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 175, 138, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 10%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 10%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* 3. Radial Glow - Top ambient light (stronger) */
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 70%;
  background: radial-gradient(
    ellipse at center, 
    rgba(31, 175, 138, 0.12) 0%, 
    rgba(31, 175, 138, 0.04) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}


/* 5. Liquid Glass Card Effect - Reusable class */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* 6. Gradient Border Effect */
.gradient-border {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(31, 175, 138, 0.3) 0%, transparent 50%, rgba(31, 175, 138, 0.1) 100%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* 7. Floating Orbs - Ambient decoration */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}

.floating-orb--primary {
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
}

.floating-orb--secondary {
  background: radial-gradient(circle, rgba(45, 180, 100, 0.15) 0%, transparent 70%);
}

/* =============================================
   ANIMATIONS - Liquid Glass & Futuristic Effects
============================================== */

/* Keyframes */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(31, 175, 138, 0.3); }
  50% { box-shadow: 0 0 35px rgba(31, 175, 138, 0.5); }
}

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

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Button hover animations - Liquid glass effect */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.6s var(--ease-smooth);
}

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

.btn-primary:hover {
  box-shadow: 
    0 15px 40px rgba(31, 175, 138, 0.4),
    0 0 30px rgba(31, 175, 138, 0.2);
}

/* Secondary button glow */
.btn-secondary {
  transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
  border-color: var(--accent);
  box-shadow: 
    0 0 20px rgba(31, 175, 138, 0.15),
    inset 0 0 20px rgba(31, 175, 138, 0.05);
}

/* Partner logos - Color reveal on hover */
.partner-logo {
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.partner-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 175, 138, 0.1) 0%,
    transparent 50%,
    rgba(31, 175, 138, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  border-radius: inherit;
}

.partner-logo:hover::before {
  opacity: 1;
}

.partner-logo img {
  transition: all 0.5s var(--ease-smooth);
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
}

.partner-logo:hover {
  border-color: rgba(31, 175, 138, 0.25);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(31, 175, 138, 0.1);
}

/* Sector cards hover */
.sector-card {
  transition: all 0.4s var(--ease-smooth);
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(31, 175, 138, 0.08);
}

.sector-card__image img {
  transition: transform 0.6s var(--ease-smooth);
}

.sector-card:hover .sector-card__image img {
  transform: scale(1.05);
}

.sector-card__title {
  transition: color 0.3s var(--ease-smooth);
}

.sector-card:hover .sector-card__title {
  color: var(--accent);
}

/* Title text shimmer effect on hover - optional class */
.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--text) 0%,
    var(--text) 40%,
    var(--accent) 50%,
    var(--text) 60%,
    var(--text) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Badge pill subtle pulse */
.badge-pill {
  transition: all 0.3s var(--ease-smooth);
}

.badge-pill:hover {
  border-color: rgba(31, 175, 138, 0.3);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(31, 175, 138, 0.1);
}

.badge-dot {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Accent text glow on hover */
.accent {
  transition: text-shadow 0.3s var(--ease-smooth);
}

.accent:hover {
  text-shadow: 0 0 20px rgba(31, 175, 138, 0.5);
}

/* Learn more button animation */
.btn-learn-more {
  position: relative;
  overflow: hidden;
}

.btn-learn-more::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s var(--ease-smooth);
}

.btn-learn-more:hover::before {
  width: 300px;
  height: 300px;
}

/* Stats number subtle glow */
.stat-number,
.stat-value {
  transition: text-shadow 0.3s var(--ease-smooth);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-value {
  text-shadow: 0 0 30px rgba(31, 175, 138, 0.3);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   RESPONSIVE - Statement Section
============================================== */
@media (max-width: 1024px) {
  .statement {
    padding: clamp(60px, 7vw, 100px) 0;
    min-height: 380px;
  }

  .statement__orb {
    width: 220px;
    height: 220px;
    margin-bottom: 40px;
  }

  .statement__title {
    font-size: clamp(28px, 5vw, 52px);
  }

  .statement__lead {
    font-size: clamp(15px, 1.8vw, 18px);
  }

  /* Positioning Section - Tablet */
  .positioning {
    padding: clamp(60px, 8vw, 100px) 0;
  }

  .positioning .container {
    padding: 0 32px;
  }

  .positioning__wrapper {
    gap: 50px;
  }

  .mockup-content {
    height: 350px;
  }

  .positioning__title {
    font-size: clamp(26px, 4.5vw, 42px);
  }

  .positioning__text p {
    font-size: clamp(15px, 2vw, 17px);
  }
}

@media (max-width: 768px) {
  .statement {
    padding: clamp(48px, 6vw, 80px) 20px;
    min-height: 320px;
  }

  .statement__inner {
    padding: 0 20px;
  }

  .statement__orb {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
  }

  .statement__title {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 24px;
  }

  .statement__lead {
    font-size: 15px;
  }

  .statement__lead br {
    display: none;
  }

  /* Positioning Section - Mobile */
  .positioning {
    padding: clamp(48px, 7vw, 80px) 0;
  }

  .positioning .container {
    padding: 0 20px;
  }

  .positioning__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Visual first on mobile */
  .positioning__visual {
    order: -1;
  }

  .positioning__content {
    padding: 0;
  }

  .mockup-content {
    height: 300px;
  }

  .mockup-sidebar {
    width: 60px;
    padding: 16px 8px;
  }

  .mockup-item {
    height: 32px;
  }

  .mockup-main {
    padding: 16px;
  }

  .mockup-card {
    padding: 16px;
  }

  .positioning__title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 24px;
  }

  .positioning__text {
    margin-bottom: 32px;
  }

  .positioning__text p {
    font-size: 15px;
  }

  .positioning__cta {
    flex-direction: column;
  }

  .positioning__cta .btn-primary,
  .positioning__cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Features-Stats Section - Tablet */
  .features-stats {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .features-stats .container {
    padding: 0 32px;
  }

  .features-stats__wrapper {
    gap: 40px;
  }

  .features-stats__left {
    gap: 50px;
  }

  .features-title {
    font-size: clamp(32px, 5vw, 46px);
  }

  .features-text {
    font-size: clamp(15px, 2vw, 17px);
  }

  .stat-value {
    font-size: clamp(36px, 5vw, 48px);
  }

  .features-stats__ctas {
    margin-top: 50px;
  }

  /* Feature Card Section - Tablet */
  .feature-card {
    padding: clamp(60px, 8vw, 100px) 0;
  }

  .feature-card .container {
    padding: 0 32px;
  }

  .fc {
    padding: clamp(28px, 4vw, 40px);
  }

  .fc__title {
    font-size: clamp(26px, 4vw, 38px);
  }

  .fc__panel {
    gap: 32px;
    padding: 32px;
  }

  .fc__left {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .fc__right {
    flex: 0 0 55%;
    max-width: 55%;
  }

  /* Stats Section - Tablet */
  .stats-section {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-item {
    padding: 28px 20px;
  }

  .stats-section .stat-number {
    font-size: clamp(42px, 6vw, 60px);
    margin-bottom: 12px;
  }

  .stat-unit {
    font-size: clamp(32px, 4.5vw, 48px);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 160px 20px 80px;
    min-height: auto;
  }

  .hero-content {
    padding: 0;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 42px);
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-logos {
    margin-top: 40px;
  }

  .hero-visual {
    margin-top: 60px;
    padding: 0 10px;
  }

  .hero .orb {
    display: none !important;
  }

  .statement {
    padding: clamp(48px, 6vw, 80px) 20px;
    min-height: 320px;
  }

  .statement__inner {
    padding: 0 20px;
  }

  .statement__orb {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
  }

  .statement__title {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 24px;
  }

  .statement__lead {
    font-size: 15px;
  }

  .statement__lead br {
    display: none;
  }

  /* Positioning Section - Mobile */
  .positioning {
    padding: clamp(48px, 7vw, 80px) 0;
  }

  .positioning .container {
    padding: 0 20px;
  }

  .positioning__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Visual first on mobile */
  .positioning__visual {
    order: -1;
  }

  .positioning__content {
    padding: 0;
  }

  .mockup-content {
    height: 300px;
  }

  .mockup-sidebar {
    width: 60px;
    padding: 16px 8px;
  }

  .mockup-item {
    height: 32px;
  }

  .mockup-main {
    padding: 16px;
  }

  .mockup-card {
    padding: 16px;
  }

  .positioning__title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 24px;
  }

  .positioning__text {
    margin-bottom: 32px;
  }

  .positioning__text p {
    font-size: 15px;
  }

  .positioning__cta {
    flex-direction: column;
  }

  .positioning__cta .btn-primary,
  .positioning__cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Features-Stats Section - Mobile */
  .features-stats {
    padding: clamp(48px, 7vw, 80px) 0;
  }

  .features-stats .container {
    padding: 0 20px;
  }

  .features-stats__wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-stats__left {
    gap: 40px;
  }

  .features-title {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 20px;
  }

  .features-title br {
    display: none;
  }

  .features-text {
    font-size: 15px;
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-value {
    font-size: clamp(32px, 8vw, 44px);
  }

  .stat-legend {
    font-size: 13px;
  }

  .features-stats__right {
    align-items: flex-start;
    padding-top: 0;
  }

  .pills-cloud {
    justify-content: flex-start;
  }

  .features-note {
    text-align: left;
    max-width: 100%;
  }

  .features-stats__ctas {
    flex-direction: column;
    margin-top: 40px;
  }

  .btn-primary.rounded,
  .btn-secondary.rounded {
    width: 100%;
    justify-content: center;
  }

  /* Feature Card Section - Mobile */
  .feature-card {
    padding: clamp(48px, 7vw, 80px) 0;
  }

  .feature-card .container {
    padding: 0 20px;
  }

  .fc {
    padding: 24px;
    border-radius: 20px;
  }

  .fc__title {
    font-size: clamp(24px, 6vw, 34px);
  }

  .fc__panel {
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    border-radius: 16px;
  }

  .fc--reversed .fc__panel {
    flex-direction: column;
  }

  .fc__left {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }

  .fc__right {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }

  .accordion-title {
    font-size: 16px;
  }

  .accordion-content p {
    font-size: 13px;
  }

  .btn-learn-more {
    width: 100%;
    justify-content: center;
  }

  /* Stats Section - Mobile */
  .stats-section {
    padding: clamp(50px, 10vw, 80px) 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }

  .stat-item {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .stats-section .stat-number {
    font-size: clamp(40px, 10vw, 56px);
    margin-bottom: 10px;
  }

  .stat-unit {
    font-size: clamp(30px, 8vw, 42px);
  }

  .stat-label {
    font-size: 14px;
    line-height: 1.6;
  }
}


/* =============================================
   SECTION 8 - NOTRE VISION
============================================== */
.vision-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(180deg, #062F2B 0%, #0A3830 100%);
  overflow: hidden;
}

.vision-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.vision-header .badge-pill {
  margin: 0 auto 24px;
}

.vision-title {
  font-size: clamp(32px, 5vw, 52px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.vision-title .accent {
  color: var(--accent);
}

.vision-content {
  text-align: center;
}

.vision-content p {
  font-size: clamp(16px, 1.8vw, 18px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.vision-content p:last-child {
  margin-bottom: 0;
}


/* =============================================
   SECTION 9 - BANNIÈRE IA (NAO)
============================================== */
.ai-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
  overflow: hidden;
}

.ai-banner__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  padding: clamp(40px, 5vw, 60px);
  background: linear-gradient(
    135deg,
    rgba(31, 175, 138, 0.1) 0%, 
    rgba(31, 175, 138, 0.03) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(31, 175, 138, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(31, 175, 138, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-banner__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}

/* Fix: Smaller button for AI banner */
.ai-banner__content .btn-primary {
  padding: 14px 28px;
  font-size: 15px;
  width: fit-content;
}

.badge-pill--accent {
  background: rgba(31, 175, 138, 0.12);
  border-color: rgba(31, 175, 138, 0.25);
}

.ai-banner__title {
  font-size: clamp(28px, 4vw, 42px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.ai-banner__text {
  font-size: clamp(15px, 1.6vw, 17px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.ai-banner__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.ai-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31, 175, 138, 0.25) 0%, rgba(31, 175, 138, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}


/* =============================================
   SECTION 10 - PARTENAIRES BANCAIRES
============================================== */
.partners-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}

.partners-header .badge-pill {
  margin: 0 auto 24px;
}

.partners-title {
  font-size: clamp(32px, 5vw, 48px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.partners-title .accent {
  color: var(--accent);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
  max-width: 100px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.7;
}


/* =============================================
   SECTION 11 - SECTEURS D'ACTIVITÉ
============================================== */
.sectors-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0A3830 100%);
  overflow: hidden;
}

.sectors-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 70px);
}

.sectors-header .badge-pill {
  margin: 0 auto 24px;
}

.sectors-title {
  font-size: clamp(32px, 5vw, 48px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.sector-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.sector-card:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-color: rgba(31, 175, 138, 0.2);
}

.sector-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.sector-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-card__content {
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sector-card__tag {
  font-size: clamp(11px, 1vw, 12px);
  color: var(--muted);
  line-height: 1.4;
}

.sector-card__title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}


/* =============================================
   SECTION 12 - CTA FINAL
============================================== */
.cta-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(31, 175, 138, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0A3830 0%, var(--bg) 50%, #062F2B 100%);
  overflow: hidden;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 60px);
  background: linear-gradient(
    135deg,
    rgba(31, 175, 138, 0.08) 0%, 
    rgba(31, 175, 138, 0.03) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(31, 175, 138, 0.18);
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(31, 175, 138, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* CTA card subtle glow effect */
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(31, 175, 138, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.cta-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

.cta-subtitle strong {
  color: var(--accent);
  font-weight: 600;
}

.cta-actions {
  margin-bottom: 24px;
}

.btn-primary--large {
  padding: 16px 32px;
  font-size: 17px;
}

.cta-note {
  font-size: clamp(13px, 1.2vw, 14px);
  color: rgba(234, 242, 236, 0.55);
  margin: 0;
}


/* =============================================
   SECTIONS 8-12 - RESPONSIVE TABLET
============================================== */
@media (max-width: 1024px) {
  /* Vision Section */
  .vision-section {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  /* AI Banner */
  .ai-banner__card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-banner__visual {
    min-height: 150px;
  }

  .ai-orb {
    width: 200px;
    height: 200px;
  }

  /* Partners Section */
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Sectors Section */
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}


/* =============================================
   SECTION - TARGETS TABS (Cibles)
============================================== */
.targets-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: 
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(31, 175, 138, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #062F2B 0%, #0A3830 50%, #062F2B 100%);
  overflow: hidden;
}

.targets-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.targets-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.targets-header .badge-pill {
  margin: 0 auto 24px;
}

.targets-title {
  font-size: clamp(28px, 4vw, 42px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

/* Tabs Navigation */
.targets-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(40px, 5vw, 60px);
  flex-wrap: wrap;
}

.target-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.target-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.target-tab.active {
  background: rgba(31, 175, 138, 0.12);
  border-color: rgba(31, 175, 138, 0.3);
  color: var(--accent);
}

.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.target-tab.active .tab-icon {
  opacity: 1;
}

.tab-icon svg {
  stroke: currentColor;
}

/* Tab Panels */
.targets-content {
  position: relative;
}

.target-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-smooth);
}

.target-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Grid Layout */
.target-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
}

/* Animation Column */
.target-animation {
  position: relative;
  min-height: 450px;
}

.target-anim-container {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

/* Main Card Styling */
.target-card {
  position: absolute;
  width: 340px;
  max-width: 90%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(31, 175, 138, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.target-card-main {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.target-card-dashboard {
  width: 480px;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.target-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.target-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(31, 175, 138, 0.15);
  color: var(--accent);
  border: 1px solid rgba(31, 175, 138, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.target-badge.sent {
  background: rgba(100, 180, 255, 0.15);
  color: #64B4FF;
  border-color: rgba(100, 180, 255, 0.3);
}

.target-date {
  font-size: 12px;
  color: var(--muted);
}

.target-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.target-company {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.target-type {
  font-size: 13px;
  color: var(--muted);
}

.target-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  margin-top: 8px;
}

.amount-label {
  font-size: 13px;
  color: var(--muted);
}

.amount-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* Banks Section */
.target-banks-section {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
}

.target-banks-section.active {
  opacity: 1;
  max-height: 100px;
}

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

.banks-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.banks-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.banks-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  transition: width 2s var(--ease-smooth);
}

/* Response Cards */
.target-responses {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

.target-response {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s var(--ease-bounce);
}

.target-response.visible {
  opacity: 1;
  transform: translateX(0);
}

.target-response.visible:hover {
  transform: translateX(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tr-logo {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px;
}

.tr-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.2);
}

.tr-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 90px;
}

.tr-bank {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.tr-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tr-status.success {
  color: var(--accent);
}

.tr-status.rejected {
  color: #FF6B6B;
}

.tr-rate {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* Stats Card */
.target-stats-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  padding: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 5;
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: all 0.6s var(--ease-smooth);
}

.target-stats-card.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.stats-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.stats-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.stats-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.stats-label {
  font-size: 11px;
  color: var(--muted);
}

.stats-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
}

.stats-bar {
  flex: 1;
  background: rgba(31, 175, 138, 0.3);
  border-radius: 3px 3px 0 0;
  height: var(--height);
  transition: height 0.5s var(--ease-smooth);
}

.stats-bar.highlight {
  background: var(--accent);
}

/* Documents Card (Backoffice) */
.target-docs-card {
  position: absolute;
  right: 8%;
  top: 30px;
  width: 220px;
  padding: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  z-index: 12;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-smooth) 0.2s;
}

.target-docs-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.docs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.docs-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.docs-count {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.doc-item.received {
  border-color: rgba(31, 175, 138, 0.2);
}

.doc-icon {
  font-size: 14px;
}

.doc-name {
  flex: 1;
  font-size: 12px;
  color: var(--text);
}

.doc-status {
  font-size: 12px;
  color: var(--accent);
}

.doc-status.pending {
  color: var(--muted);
}

/* Signature Section */
.target-signature {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.signature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.signature-icon.pending {
  color: var(--muted);
}

.signature-label {
  flex: 1;
  font-size: 13px;
  color: var(--text);
}

.signature-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.signature-status.signed {
  color: var(--accent);
}

/* Payment Card */
.target-payment-card {
  position: absolute;
  right: 8%;
  bottom: 40px;
  width: 220px;
  padding: 16px;
  background: linear-gradient(
    145deg,
    rgba(31, 175, 138, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(31, 175, 138, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  z-index: 12;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-smooth) 0.4s;
}

.target-payment-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.payment-header {
  margin-bottom: 12px;
}

.payment-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.payment-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icon {
  color: var(--accent);
}

.payment-label {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
}

.payment-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.payment-badge.paid {
  background: rgba(31, 175, 138, 0.2);
  color: var(--accent);
}

/* Dashboard Content (Direction) */
.dashboard-content {
  margin-top: 16px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.kpi-item {
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.kpi-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.kpi-label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
}

.kpi-trend {
  font-size: 11px;
  font-weight: 600;
}

.kpi-trend.up {
  color: var(--accent);
}

.dashboard-chart {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.chart-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.chart-bar {
  flex: 1;
  background: rgba(31, 175, 138, 0.25);
  border-radius: 4px 4px 0 0;
  height: var(--height);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: height 0.5s var(--ease-smooth), background 0.3s ease;
}

.chart-bar span {
  font-size: 9px;
  color: var(--muted);
  padding-bottom: 4px;
}

.chart-bar.highlight {
  background: var(--accent);
}

.chart-bar:hover {
  background: rgba(31, 175, 138, 0.5);
}

/* Contracts Card */
.target-contracts-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  padding: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  z-index: 12;
  opacity: 0;
  transform: translateY(-50%) translateX(30px);
  transition: all 0.5s var(--ease-smooth) 0.3s;
}

.target-contracts-card.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.contracts-header {
  margin-bottom: 14px;
}

.contracts-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.contracts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contract-client {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.contract-end {
  font-size: 11px;
  color: var(--muted);
}

.contract-action {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  padding: 3px 8px;
  background: rgba(31, 175, 138, 0.1);
  border-radius: 4px;
}

/* Text Column */
.target-text {
  padding: 20px 0;
}

h3.target-text-title,
.target-text-title {
  font-size: clamp(24px, 3vw, 32px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 16px;
}

.target-text-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.target-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.target-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.target-benefits li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(31, 175, 138, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #1FAF8A;
  line-height: 1;
}

/* =============================================
   TARGETS SECTION - RESPONSIVE
============================================== */
@media (max-width: 1024px) {
  .targets-section {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .targets-section .container {
    padding: 0 32px;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .target-animation {
    order: 1;
    min-height: 400px;
  }

  .target-text {
    order: 2;
    text-align: center;
  }

  .target-benefits {
    align-items: center;
  }

  .target-anim-container {
    height: 400px;
  }

  .target-card-main {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .target-card-dashboard {
    width: 400px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .target-responses {
    right: 10%;
  }

  .target-stats-card {
    bottom: 10px;
    width: 280px;
  }

  .target-docs-card,
  .target-payment-card {
    right: 5%;
    width: 200px;
  }

  .target-contracts-card {
    right: 5%;
    width: 240px;
  }
}

@media (max-width: 768px) {
  .targets-section {
    padding: clamp(50px, 10vw, 70px) 0;
  }

  .targets-section .container {
    padding: 0 20px;
  }

  .targets-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .targets-tabs {
    gap: 8px;
  }

  .target-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .tab-label {
    display: none;
  }

  .target-tab.active .tab-label {
    display: inline;
  }

  .target-anim-container {
    height: 350px;
    transform: scale(0.85);
    transform-origin: center center;
  }

  .target-card {
    width: 300px;
    padding: 20px;
  }

  .target-card-dashboard {
    width: 320px;
  }

  .target-responses {
    display: none;
  }

  .target-stats-card {
    display: none;
  }

  .target-docs-card,
  .target-payment-card,
  .target-contracts-card {
    display: none;
  }

  .target-text-title {
    font-size: clamp(22px, 5vw, 28px);
  }

  .target-text-desc {
    font-size: 15px;
  }
}

/* =============================================
   SECTIONS 8-12 - RESPONSIVE MOBILE
============================================== */
@media (max-width: 768px) {
  /* Vision Section */
  .vision-section {
    padding: clamp(50px, 10vw, 70px) 0;
  }

  .vision-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .vision-content p {
    font-size: 15px;
    text-align: left;
  }

  /* AI Banner */
  .ai-banner {
    padding: clamp(40px, 8vw, 60px) 0;
  }

  .ai-banner__card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .ai-banner__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .ai-banner__visual {
    display: none;
  }

  /* Partners Section */
  .partners-section {
    padding: clamp(60px, 10vw, 80px) 0;
  }

  .partners-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-logo {
    padding: 20px;
    border-radius: 12px;
  }

  .partner-logo img {
    max-width: 80px;
    max-height: 40px;
  }

  /* Sectors Section */
  .sectors-section {
    padding: clamp(60px, 10vw, 80px) 0;
  }

  .sectors-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sector-card {
    border-radius: 16px;
  }

  .sector-card__content {
    padding: 16px;
  }

  /* CTA Section */
  .cta-section {
    padding: clamp(60px, 10vw, 80px) 0;
  }

  .cta-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .cta-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .btn-primary--large {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  /* Sectors - Single column on very small screens */
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sector-card {
    flex-direction: row;
    align-items: center;
  }

  .sector-card__image {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 1;
  }

  .sector-card__content {
    flex: 1;
  }
}

/* =============================================
   SECTION TESTIMONIALS (Homepage)
   ============================================== */
.pricing-testimonials {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(135deg, #051F1B 0%, #062F2B 55%, #0A3830 100%);
  overflow: hidden;
}

.pricing-testimonials__header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 72px);
}

.pricing-testimonials__title {
  font-family: var(--font-headings);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}

.pricing-testimonials__title .fw-thin {
  font-weight: 200;
}

.pricing-testimonials__title .fw-bold {
  font-weight: 800;
}

.pricing-testimonials__title .accent-emoji {
  display: inline-block;
  font-size: 0.85em;
}

.pricing-testimonials__title .accent-bubble {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 0.1em 0.5em;
  border-radius: 999px;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(31, 175, 138, 0.3);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  color: var(--bg);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .testimonial-card {
    padding: 28px 24px;
  }
}

/* =============================================
   POSITIONING - LIGHT VARIANT (Test)
   ============================================== */
.positioning--light {
  background: linear-gradient(180deg, #F8F9FA 0%, #EEF0F2 100%);
}

.positioning--light .positioning__bg {
  opacity: 0.03;
}

.positioning--light .positioning__title {
  color: #1A2B2A;
}

.positioning--light .positioning__title .fw-thin {
  color: #3D5A58;
}

.positioning--light .positioning__title .fw-bold {
  color: #0E5A4F;
}

.positioning--light .positioning__text p {
  color: #4A5A59;
}

/* Mockup window - light variant */
.positioning--light .mockup-window {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.02) inset;
}

.positioning--light .mockup-header {
  background: #F5F6F7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.positioning--light .mockup-title {
  color: #5A6A69;
}

.positioning--light .mockup-sidebar {
  background: #F0F2F3;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.positioning--light .mockup-item {
  background: rgba(0, 0, 0, 0.06);
}

.positioning--light .mockup-item.active {
  background: var(--accent);
}

/* Sidebar icons - dark color for light bg */
.positioning--light .mockup-sidebar .mockup-item {
  color: #5A6A69;
}

.positioning--light .mockup-sidebar .mockup-item.active {
  color: #fff;
}

.positioning--light .mockup-sidebar .mockup-item svg {
  stroke: currentColor;
}

/* Screen content */
.positioning--light .mockup-screen-title {
  color: #1A2B2A;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Client card */
.positioning--light .mockup-client-card {
  background: #F5F7F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.positioning--light .client-name {
  color: #1A2B2A;
}

.positioning--light .client-type {
  color: #6B7A79;
}

.positioning--light .client-badge.active {
  background: rgba(31, 175, 138, 0.12);
  color: #0E5A4F;
}

/* Info grid */
.positioning--light .mockup-info-grid {
  background: transparent;
}

.positioning--light .info-item {
  background: #F5F7F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.positioning--light .info-label {
  color: #6B7A79;
}

.positioning--light .info-value {
  color: #2D3E3D;
}

.positioning--light .info-value.highlight {
  color: var(--accent);
}

/* Request cards */
.positioning--light .mockup-request-card {
  background: #F5F7F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.positioning--light .request-ref {
  color: #2D3E3D;
}

.positioning--light .request-date {
  color: #6B7A79;
}

.positioning--light .request-details {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.positioning--light .request-amount {
  color: var(--accent);
}

.positioning--light .request-duration {
  color: #5A6A69;
}

/* Bank logos - no filter for light bg */
.positioning--light .request-bank-logo,
.positioning--light .contract-bank-logo,
.positioning--light .mini-logo {
  filter: none;
}

/* Contract cards */
.positioning--light .mockup-contract-card {
  background: #F5F7F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.positioning--light .contract-status.active {
  background: rgba(31, 175, 138, 0.12);
  color: #0E5A4F;
}

.positioning--light .contract-ref {
  color: #6B7A79;
}

.positioning--light .contract-detail {
  background: rgba(0, 0, 0, 0.03);
}

.positioning--light .detail-label {
  color: #6B7A79;
}

.positioning--light .detail-value {
  color: #2D3E3D;
}

.positioning--light .contract-progress {
  background: rgba(0, 0, 0, 0.08);
}

.positioning--light .contract-progress .progress-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.positioning--light .progress-label {
  color: #6B7A79;
}

.positioning--light .mockup-contract-mini {
  background: #F5F7F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.positioning--light .mini-ref {
  color: #5A6A69;
}

.positioning--light .mini-status {
  color: #2D3E3D;
}

/* Stats boxes */
.positioning--light .stat-box {
  background: #F5F7F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.positioning--light .mockup-stats-row .stat-number {
  color: #1A2B2A;
}

.positioning--light .mockup-stats-row .stat-desc {
  color: #6B7A79;
}

/* Chart */
.positioning--light .mockup-chart {
  background: #F5F7F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.positioning--light .chart-label {
  color: #6B7A79;
}

.positioning--light .chart-bar-mock {
  background: rgba(31, 175, 138, 0.2);
}

.positioning--light .chart-bar-mock.highlight {
  background: var(--accent);
}

/* Buttons in light variant */
.positioning--light .btn-primary {
  background: var(--accent);
  color: #fff;
}

.positioning--light .btn-primary:hover {
  background: var(--accent2);
}

.positioning--light .btn-secondary {
  background: transparent;
  color: #1A2B2A;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
}

.positioning--light .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.3);
}

/* =============================================
   SUBMISSION MOCKUP - Animated Demo (Light)
   Feature Card Animation for Pilotage Section
   ============================================== */
.submission-mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.submission-mockup__window {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.submission-mockup__header {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: #FAFBFC;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.submission-mockup__dots {
  display: flex;
  gap: 6px;
}

.submission-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.submission-mockup__dots span:nth-child(1) {
  background: #FF5F56;
}

.submission-mockup__dots span:nth-child(2) {
  background: #FFBD2E;
}

.submission-mockup__dots span:nth-child(3) {
  background: #27C93F;
}

.submission-mockup__title {
  margin-left: 14px;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 600;
  color: #3D4A49;
}

.submission-mockup__content {
  padding: 20px;
  position: relative;
}

/* Request Header */
.submission-mockup__request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.submission-mockup__request-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submission-mockup__client {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: #1A2B2A;
}

.submission-mockup__amount {
  font-family: var(--font-body);
  font-size: 13px;
  color: #6B7A79;
}

.submission-mockup__submit-all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submission-mockup__submit-all:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.submission-mockup__submit-all svg {
  flex-shrink: 0;
}

/* Partners List */
.submission-mockup__partners {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.submission-mockup__partner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #F8F9FA;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.submission-mockup__partner:hover {
  background: #F0F2F3;
  border-color: rgba(0, 0, 0, 0.08);
}

.submission-mockup__partner-logo {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  overflow: hidden;
}

.submission-mockup__partner-logo img {
  width: 32px;
  height: auto;
  object-fit: contain;
}

.submission-mockup__partner-info {
  flex: 1;
  min-width: 0;
}

.submission-mockup__partner-name {
  display: block;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 600;
  color: #1A2B2A;
  margin-bottom: 2px;
}

.submission-mockup__partner-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.submission-mockup__partner-status.success {
  background: rgba(31, 175, 138, 0.12);
  color: #0E5A4F;
}

.submission-mockup__partner-status.waiting {
  background: transparent;
  color: #9AA5A4;
  padding: 3px 0;
}

.submission-mockup__partner-status.review {
  background: rgba(0, 0, 0, 0.06);
  color: #5A6A69;
}

.submission-mockup__partner-amount {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 600;
  color: #5A6A69;
  min-width: 70px;
  text-align: right;
}

.submission-mockup__action-btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.submission-mockup__action-btn.view {
  background: var(--accent);
  color: #fff;
}

.submission-mockup__action-btn.view:hover {
  background: var(--accent2);
}

.submission-mockup__action-btn.submit {
  background: var(--accent);
  color: #fff;
}

.submission-mockup__action-btn.submit:hover {
  background: var(--accent2);
}

/* Send Animation */
.submission-mockup__send-animation {
  position: absolute;
  bottom: 10px;
  right: 10px;
  pointer-events: none;
}

.submission-mockup__paper-plane {
  animation: floatPlane 4s ease-in-out infinite;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(31, 175, 138, 0.3));
}

@keyframes floatPlane {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5px, -8px) rotate(-5deg);
  }
  50% {
    transform: translate(0, -12px) rotate(0deg);
  }
  75% {
    transform: translate(-5px, -6px) rotate(5deg);
  }
}

/* Decorative Path */
.submission-mockup__path {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 200px;
  height: 120px;
  z-index: 1;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .submission-mockup {
    max-width: 100%;
  }
  
  .submission-mockup__partner {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .submission-mockup__partner-amount {
    order: 4;
    min-width: auto;
    flex: 1;
    text-align: left;
  }
  
  .submission-mockup__action-btn {
    order: 5;
  }
}

@media (max-width: 480px) {
  .submission-mockup__submit-all span {
    display: none;
  }
  
  .submission-mockup__submit-all {
    padding: 10px;
  }
  
  .submission-mockup__partner-logo {
    width: 36px;
    height: 36px;
  }
  
  .submission-mockup__partner-logo img {
    width: 24px;
  }
}

/* =============================================
   DASHBOARD MOCKUP - Animated Performance Dashboard
   Feature Card Animation for Control Section
   ============================================== */
.dashboard-mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 20px;
}

.dashboard-mockup__window {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.04);
  overflow: visible;
  position: relative;
  z-index: 2;
}

.dashboard-mockup__header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #FAFBFC;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px 16px 0 0;
}

.dashboard-mockup__dots {
  display: flex;
  gap: 6px;
}

.dashboard-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-mockup__dots span:nth-child(1) { background: #FF5F56; }
.dashboard-mockup__dots span:nth-child(2) { background: #FFBD2E; }
.dashboard-mockup__dots span:nth-child(3) { background: #27C93F; }

.dashboard-mockup__title {
  margin-left: 14px;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 600;
  color: #3D4A49;
  flex: 1;
}

.dashboard-mockup__period {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 500;
  color: #5A6A69;
}

.dashboard-mockup__period svg {
  opacity: 0.6;
}

.dashboard-mockup__content {
  padding: 16px;
}

/* KPI Cards - 3 columns */
.dashboard-mockup__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-mockup__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px 8px;
  background: #F8F9FA;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.dashboard-mockup__kpi:hover {
  background: #F0F2F3;
  transform: translateY(-2px);
}

.dashboard-mockup__kpi-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-mockup__kpi-icon svg {
  width: 16px;
  height: 16px;
}

.dashboard-mockup__kpi-icon.green {
  background: rgba(31, 175, 138, 0.12);
  color: #0E5A4F;
}

.dashboard-mockup__kpi-icon.blue {
  background: rgba(59, 130, 246, 0.12);
  color: #1E40AF;
}

.dashboard-mockup__kpi-icon.purple {
  background: rgba(139, 92, 246, 0.12);
  color: #5B21B6;
}

.dashboard-mockup__kpi-content {
  min-width: 0;
}

.dashboard-mockup__kpi-value {
  display: block;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: #1A2B2A;
  margin-bottom: 2px;
}

.dashboard-mockup__kpi-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  color: #6B7A79;
}

.dashboard-mockup__kpi-trend {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 20px;
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 600;
}

.dashboard-mockup__kpi-trend svg {
  width: 10px;
  height: 10px;
}

.dashboard-mockup__kpi-trend.up {
  background: rgba(31, 175, 138, 0.1);
  color: #0E5A4F;
}

.dashboard-mockup__kpi-trend.down {
  background: rgba(239, 68, 68, 0.1);
  color: #B91C1C;
}

.dashboard-mockup__kpi-trend.neutral {
  background: rgba(0, 0, 0, 0.05);
  color: #6B7A79;
}

/* Chart Section */
.dashboard-mockup__chart-section {
  background: #F8F9FA;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dashboard-mockup__chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dashboard-mockup__chart-title {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 600;
  color: #1A2B2A;
}

.dashboard-mockup__chart-legend {
  display: flex;
  gap: 10px;
}

.dashboard-mockup__legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 9px;
  color: #6B7A79;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.legend-dot.green { background: var(--accent); }
.legend-dot.blue { background: #3B82F6; }

.dashboard-mockup__chart {
  height: 80px;
  position: relative;
}

.dashboard-mockup__chart-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 60px;
  padding-bottom: 20px;
  position: relative;
}

.dashboard-mockup__bar-group {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  position: relative;
  height: 100%;
  flex: 1;
  justify-content: center;
}

.dashboard-mockup__bar-group.highlight .dashboard-mockup__bar {
  animation: barPulse 2s ease-in-out infinite;
}

@keyframes barPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.dashboard-mockup__bar {
  width: 14px;
  border-radius: 3px 3px 0 0;
  transition: height 0.6s ease;
  min-height: 4px;
}

.dashboard-mockup__bar.green { 
  background: var(--accent);
  height: 45%;
}

.dashboard-mockup__bar.blue { 
  background: #3B82F6;
  height: 60%;
}

/* Specific bar heights via nth-child */
.dashboard-mockup__bar-group:nth-child(1) .dashboard-mockup__bar.green { height: 45%; }
.dashboard-mockup__bar-group:nth-child(1) .dashboard-mockup__bar.blue { height: 60%; }
.dashboard-mockup__bar-group:nth-child(2) .dashboard-mockup__bar.green { height: 55%; }
.dashboard-mockup__bar-group:nth-child(2) .dashboard-mockup__bar.blue { height: 50%; }
.dashboard-mockup__bar-group:nth-child(3) .dashboard-mockup__bar.green { height: 70%; }
.dashboard-mockup__bar-group:nth-child(3) .dashboard-mockup__bar.blue { height: 75%; }
.dashboard-mockup__bar-group:nth-child(4) .dashboard-mockup__bar.green { height: 85%; }
.dashboard-mockup__bar-group:nth-child(4) .dashboard-mockup__bar.blue { height: 90%; }

.dashboard-mockup__bar-label {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 9px;
  color: #9AA5A4;
}

/* Progress Section */
.dashboard-mockup__progress-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dashboard-mockup__progress-item {
  padding: 10px 12px;
  background: #F8F9FA;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dashboard-mockup__progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  color: #5A6A69;
}

.dashboard-mockup__progress-value {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 11px;
  color: #1A2B2A;
}

.dashboard-mockup__progress-value.success {
  color: var(--accent);
}

.dashboard-mockup__progress-bar {
  height: 5px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.dashboard-mockup__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  transition: width 1s ease;
}

.dashboard-mockup__progress-fill.success {
  background: linear-gradient(90deg, #10B981, #34D399);
}

/* Progress fill widths */
.dashboard-mockup__progress-item:nth-child(1) .dashboard-mockup__progress-fill { width: 78%; }
.dashboard-mockup__progress-item:nth-child(2) .dashboard-mockup__progress-fill { width: 92%; }

/* Floating Badge */
.dashboard-mockup__floating-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(31, 175, 138, 0.3);
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.dashboard-mockup__floating-badge svg {
  width: 14px;
  height: 14px;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-mockup {
    max-width: 100%;
    padding: 15px;
  }
  
  .dashboard-mockup__kpis {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .dashboard-mockup__kpi {
    padding: 10px 6px;
  }
  
  .dashboard-mockup__kpi-value {
    font-size: 12px;
  }
  
  .dashboard-mockup__bar {
    width: 10px;
  }
}

@media (max-width: 480px) {
  .dashboard-mockup__kpi-icon {
    width: 28px;
    height: 28px;
  }
  
  .dashboard-mockup__kpi-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .dashboard-mockup__floating-badge {
    display: none;
  }
  
  .dashboard-mockup__period {
    display: none;
  }
  
  .dashboard-mockup__kpi-trend {
    display: none;
  }
}

