/* ==========================================================================
   SANASSURE - Ultra-Premium Fintech & Brokerage Design System
   Inspired by bespoke modern European finance & insurance leaders (Alan, Stripe, Qonto)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand Core - Refined Luxury Emerald & Rich Teal */
  --brand: #00594f;
  --brand-dark: #003d36;
  --brand-deep: #022420;
  --brand-hover: #00473f;
  --brand-active: #00332d;
  --brand-light: #0d8274;
  --brand-bright: #10b981;
  --brand-soft: #e6f6f3;
  --brand-tint: #f0faf8;
  --brand-border: rgba(0, 89, 79, 0.16);
  --brand-border-strong: rgba(0, 89, 79, 0.32);
  --brand-glow: rgba(0, 89, 79, 0.25);

  /* Gold / Amber Accents from Sanassure Logo */
  --gold: #d97706;
  --gold-hover: #b45309;
  --gold-light: #f59e0b;
  --gold-soft: #fef3c7;
  --gold-tint: #fffbeb;
  --gold-border: rgba(217, 119, 6, 0.28);
  --gold-glow: rgba(245, 158, 11, 0.35);

  /* Typography & Ink Colors */
  --ink-900: #051a17;
  --ink-800: #0d2622;
  --ink-700: #1a3833;
  --ink-600: #335952;
  --ink-500: #557973;
  --ink-400: #82a39d;
  --ink-300: #b5ccc8;
  --ink-100: #eaf2f0;

  /* Surfaces & Backgrounds */
  --bg: #ffffff;
  --bg-subtle: #f4f8f7;
  --bg-card: #ffffff;
  --bg-accent: #edf7f5;
  --surface-border: rgba(13, 40, 36, 0.08);
  --surface-border-light: rgba(13, 40, 36, 0.05);

  /* Feedback Colors */
  --success: #059669;
  --success-soft: #ecfdf5;
  --danger: #dc2626;
  --danger-soft: #fef2f2;

  /* Layout & Sizing */
  --container: min(1720px, 95vw);
  --header-h: 84px;
  
  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 9999px;

  /* Elevation & Shadows */
  --shadow-xs: 0 1px 2px rgba(5, 26, 23, 0.04);
  --shadow-sm: 0 2px 6px rgba(5, 26, 23, 0.05), 0 1px 2px rgba(5, 26, 23, 0.03);
  --shadow-md: 0 8px 24px -4px rgba(5, 26, 23, 0.08), 0 3px 6px -1px rgba(5, 26, 23, 0.04);
  --shadow-lg: 0 18px 40px -6px rgba(5, 26, 23, 0.1), 0 6px 14px -2px rgba(5, 26, 23, 0.05);
  --shadow-xl: 0 30px 64px -10px rgba(5, 26, 23, 0.14), 0 10px 22px -5px rgba(5, 26, 23, 0.06);
  --shadow-card: 0 0 0 1px var(--surface-border), 0 6px 24px -2px rgba(5, 26, 23, 0.06);
  --shadow-card-hover: 0 0 0 1px var(--brand-border-strong), 0 20px 44px -6px rgba(0, 89, 79, 0.18);
  --shadow-glow: 0 12px 32px -4px rgba(0, 89, 79, 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--ink-700);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink-900);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.4vw, 2.3rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1rem + 0.5vw, 1.45rem); font-weight: 700; }

p { margin: 0 0 1.1rem; line-height: 1.65; color: var(--ink-600); }
a { color: var(--brand); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--brand-hover); }
strong { color: var(--ink-900); font-weight: 700; }

.container-custom {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 32px);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 26, 23, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-bottom-color: rgba(8, 26, 23, 0.09);
}

.header-container {
  max-width: var(--container);
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 32px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.header-logo:hover {
  transform: scale(1.02);
}

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(4px, 0.6vw, 10px);
  margin-left: auto;
  margin-right: 8px;
  flex-shrink: 1;
}

.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: var(--r-full);
  color: var(--ink-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.header-nav-link i {
  font-size: 0.88rem;
  flex-shrink: 0;
}

.header-nav-link:hover {
  color: var(--brand);
  background: var(--brand-tint);
}

.header-nav-link.accent-pill {
  background: rgba(0, 89, 79, 0.05);
  color: var(--brand);
}

.header-nav-link.accent-pill:hover {
  background: var(--brand-soft);
}

.header-nav-link.active:not(.accent-pill) {
  color: var(--brand);
  background: var(--brand-tint);
}

/* Navigation Dropdown (Nos Solutions) */
.header-nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-nav-item-dropdown > .header-nav-link {
  cursor: pointer;
}

.header-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: 0 20px 45px -10px rgba(0, 30, 25, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid var(--surface-border);
  border-top: 1px solid var(--surface-border);
}

.header-nav-item-dropdown:hover .header-dropdown-menu,
.header-nav-item-dropdown.open .header-dropdown-menu,
.header-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.header-dropdown-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.header-dropdown-link div > div {
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.25;
}

.header-dropdown-link div > small {
  font-size: 0.78rem;
  color: var(--ink-500);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

.header-dropdown-link:hover {
  background: var(--brand-tint);
  color: var(--brand);
}

.header-dropdown-link:hover i {
  background: var(--brand);
  color: #ffffff;
  transform: scale(1.05);
}

.header-dropdown-link:hover div > div {
  color: var(--brand);
}

.header-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-full);
  background: #ffffff;
  color: var(--ink-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.header-phone-badge i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.header-phone-badge:hover {
  border-color: var(--brand-border-strong);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cta-btn:hover {
  background: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -4px rgba(0, 89, 79, 0.38);
}

.mobile-header-controls {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--brand-border);
  transition: all 0.2s ease;
}

.mobile-phone-btn:hover, .mobile-phone-btn:active {
  background: var(--brand);
  color: #ffffff;
}

.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-sm);
  background: #ffffff;
  color: var(--ink-900);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-burger:hover, .header-burger:active {
  background: var(--brand-tint);
  color: var(--brand);
  border-color: var(--brand-border);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  background: #ffffff;
  border-top: 1px solid var(--surface-border);
  border-bottom: 2px solid rgba(0, 89, 79, 0.12);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.16);
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  z-index: 999;
}

.mobile-nav.open {
  max-height: calc(100vh - var(--header-h, 72px));
  padding: 16px 20px 32px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  color: var(--ink-800);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-item i {
  font-size: 1.05rem;
  width: 24px;
  text-align: center;
  color: var(--brand);
}

.mobile-nav-item:hover, .mobile-nav-item:active {
  background: var(--brand-tint);
  color: var(--brand);
  transform: translateX(4px);
}

.mobile-nav-submenu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 8px;
  margin-bottom: 6px;
}

.mobile-nav-subitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  color: var(--ink-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-subitem i {
  font-size: 0.95rem;
  width: 22px;
  text-align: center;
  color: var(--brand);
}

.mobile-nav-subitem:hover,
.mobile-nav-subitem:active {
  background: var(--brand-tint);
  color: var(--brand);
  padding-left: 16px;
}

.mobile-nav-drawer-cta {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--surface-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 1180px) {
  .header-actions, .header-nav { display: none !important; }
  .mobile-header-controls { display: flex !important; }
  .header-burger { display: inline-flex !important; }
}

/* ==========================================================================
   Hero Section & Animated Mesh Background
   ========================================================================== */

.hero-section {
  position: relative;
  padding: calc(var(--header-h) + 42px) 20px 64px;
  background: 
    radial-gradient(120% 90% at 50% -15%, rgba(0, 89, 79, 0.18) 0%, rgba(13, 130, 116, 0.08) 40%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(65% 55% at 88% 22%, rgba(245, 158, 11, 0.14) 0%, rgba(255, 255, 255, 0) 65%),
    radial-gradient(55% 45% at 12% 85%, rgba(0, 89, 79, 0.10) 0%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(180deg, #edf7f5 0%, #f4faf8 45%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 89, 79, 0.12);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 89, 79, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 89, 79, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, black 35%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-orb.orb-1 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(0, 89, 79, 0.38) 0%, rgba(13, 148, 136, 0.18) 50%, transparent 75%);
  top: -140px;
  right: -80px;
  animation: orbFloat1 13s ease-in-out infinite alternate;
}

.hero-bg-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, rgba(251, 191, 36, 0.1) 55%, transparent 80%);
  bottom: -80px;
  left: -90px;
  animation: orbFloat2 16s ease-in-out infinite alternate;
}

.hero-bg-orb.orb-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(45, 212, 191, 0.06) 60%, transparent 80%);
  top: 25%;
  left: 20%;
  animation: orbFloat3 11s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
  100% { transform: translate(30px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.92); }
}

@keyframes orbFloat3 {
  0% { transform: translate(0, 0) scale(0.9); }
  50% { transform: translate(-30px, -30px) scale(1.15); }
  100% { transform: translate(40px, 20px) scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  grid-column-gap: 40px;
  column-gap: 40px;
  grid-row-gap: 28px;
  row-gap: 28px;
  align-items: start;
}

.hero-intro { grid-column: 1; grid-row: 1; }
.hero-form-wrapper { grid-column: 2; grid-row: 1 / span 2; }
.hero-extras { grid-column: 1; grid-row: 2; }

.badge-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid var(--brand-border-strong);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(0, 89, 79, 0.08);
}

.badge-trust-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.25);
  display: inline-block;
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 1.45rem + 1.8vw, 3.1rem);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

.hero-title-gradient {
  background: linear-gradient(135deg, #00594f 0%, #0d9488 42%, #d97706 82%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-lead {
  max-width: 100%;
  margin: 0 0 24px;
  color: var(--ink-600);
  font-size: clamp(1.02rem, 0.96rem + 0.25vw, 1.18rem);
  line-height: 1.65;
  font-weight: 500;
}

.hero-checklist {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-800);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
}

.hero-checklist .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-soft) 0%, #ffffff 100%);
  color: var(--brand);
  font-size: 0.85rem;
  border: 1.5px solid var(--brand-border-strong);
  box-shadow: 0 3px 8px rgba(0, 89, 79, 0.12);
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-stat-card {
  padding: 20px 22px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 89, 79, 0.14);
  box-shadow: 0 8px 24px -4px rgba(0, 89, 79, 0.08), 0 2px 6px rgba(0, 89, 79, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 50%, var(--gold) 100%);
  opacity: 0.9;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border-strong);
  box-shadow: 0 18px 40px -6px rgba(0, 89, 79, 0.18);
  background: #ffffff;
}

.hero-stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink-900);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-stat-num.highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 65%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-desc {
  display: block;
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    row-gap: 28px;
  }
  .hero-intro, .hero-form-wrapper, .hero-extras {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .hero-stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: calc(var(--header-h) + 24px) 20px 60px;
  }
  .hero-stats-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Solutions & Product Pillars Section
   ========================================================================== */

.solutions-section {
  padding: 60px 20px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--surface-border);
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--ink-500);
  font-size: 1.12rem;
  line-height: 1.65;
}

.pillar-card {
  height: 100%;
  padding: 44px 38px;
  border-radius: var(--r-xl);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  box-shadow: 0 6px 24px -2px rgba(5, 26, 23, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 50%, var(--gold) 100%);
  opacity: 0.7;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -8px rgba(0, 89, 79, 0.16);
  border-color: var(--brand-border-strong);
}

.pillar-card:hover::before {
  opacity: 1;
  height: 4.5px;
}

.pillar-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.7rem;
  margin-bottom: 24px;
  border: 1px solid var(--brand-border);
}

.pillar-card.gold-theme .pillar-icon-wrap {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: var(--gold-border);
}

.pillar-card.gold-theme::before {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.pillar-features {
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.5;
}

.pillar-features li i {
  color: var(--success);
  margin-top: 4px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.btn-pillar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--r-full);
  border: 2px solid var(--brand);
  background: #ffffff;
  color: var(--brand);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-pillar-action:hover {
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   How It Works (Process Steps)
   ========================================================================== */

.process-section {
  padding: 60px 20px;
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.process-card {
  position: relative;
  padding: 38px 32px;
  border-radius: var(--r-lg);
  background: var(--bg-subtle);
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.process-step-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0, 89, 79, 0.08);
  line-height: 1;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: #ffffff;
  color: var(--brand);
  font-size: 1.45rem;
  margin-bottom: 22px;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-xs);
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.process-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.96rem;
}

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

/* ==========================================================================
   Why Choose SANASSURE (Value Props)
   ========================================================================== */

.value-section {
  padding: 96px 36px;
  background: var(--bg-subtle);
  border-block: 1px solid var(--surface-border);
}

.stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.stat-counter-box {
  padding: 36px 28px;
  border-radius: var(--r-lg);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-counter-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 1.6rem + 1.4vw, 3rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat-counter-label {
  display: block;
  margin-top: 8px;
  color: var(--ink-600);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}

.values-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-box {
  padding: 30px 24px;
  border-radius: var(--r-lg);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-xs);
  transition: all 0.25s ease;
}

.value-box:hover {
  transform: translateY(-3px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-md);
}

.value-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.value-box h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.value-box p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-500);
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .stats-counter-strip { grid-template-columns: 1fr; }
  .values-grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Partners Marquee Carousel
   ========================================================================== */

.partners-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marqueeInfinite 34s linear infinite;
}

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

.partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 92px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-xs);
  transition: all 0.25s ease;
}

.partner-badge:hover {
  transform: translateY(-2px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-sm);
}

.partner-badge img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.25s ease;
}

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

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

/* ==========================================================================
   Call To Action (CTA Band)
   ========================================================================== */

.cta-mesh-banner {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand) 55%, var(--brand-light) 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-mesh-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin: 0 auto;
}

.cta-mesh-banner h2 {
  color: #ffffff;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-mesh-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-button-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: var(--r-full);
  background: #ffffff;
  color: var(--brand-hover) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta-button-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  color: var(--brand) !important;
}

/* ==========================================================================
   Testimonials / Avis Clients Section
   ========================================================================== */

.testimonials-section {
  padding: 100px 36px;
  background: var(--bg-subtle);
}

.trust-score-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 48px auto 56px;
  padding: 28px 40px;
  max-width: 680px;
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}

.trust-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-score-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1.15rem;
}

.trust-score-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink-900);
}

.trust-score-source {
  font-size: 0.82rem;
  color: var(--ink-500);
  font-weight: 500;
}

.trust-score-divider {
  width: 1px;
  height: 64px;
  background: var(--surface-border);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-900);
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-top: 2px;
}

.tag-sante {
  background: var(--brand-soft);
  color: var(--brand);
}

.tag-decennale {
  background: var(--gold-soft);
  color: var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
}

.testimonial-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-700);
  flex-grow: 1;
}

.testimonial-text strong {
  color: var(--ink-900);
}

.testimonial-date {
  font-size: 0.78rem;
  color: var(--ink-400);
  font-weight: 500;
}

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

@media (max-width: 640px) {
  .testimonials-section { padding: 72px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-score-banner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }
  .trust-score-divider {
    width: 80px;
    height: 1px;
  }
}

/* ==========================================================================
   Comparison Table / Tableau Comparatif
   ========================================================================== */

.compare-section {
  padding: 60px 20px;
  background: var(--bg);
}

.compare-toggle-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 40px auto 48px;
  background: var(--bg-subtle);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-full);
  padding: 5px;
  width: fit-content;
}

.compare-toggle-btn {
  padding: 12px 28px;
  border: none;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--ink-500);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.compare-toggle-btn.active {
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.compare-toggle-btn:hover:not(.active) {
  color: var(--ink-800);
  background: rgba(0, 89, 79, 0.06);
}

.compare-table-wrap {
  display: none;
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  animation: fadeInTable 0.35s ease;
}

.compare-table-wrap.active {
  display: block;
}

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

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table thead th {
  padding: 24px 20px 20px;
  text-align: center;
  vertical-align: top;
  background: var(--bg-subtle);
  border-bottom: 2px solid var(--surface-border);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-700);
}

.compare-table thead th:first-child {
  text-align: left;
  width: 240px;
  min-width: 180px;
}

.compare-tier-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.compare-tier-price {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-500);
}

.compare-tier-price strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand);
}

.compare-tier-highlight {
  position: relative;
  background: var(--brand-tint) !important;
  border-left: 2px solid var(--brand-border-strong);
  border-right: 2px solid var(--brand-border-strong);
}

.compare-popular-badge {
  display: inline-block;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.compare-table tbody td {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-700);
  border-bottom: 1px solid var(--surface-border-light);
  transition: background 0.15s ease;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink-800);
}

.compare-table tbody tr:hover td {
  background: rgba(0, 89, 79, 0.02);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Highlight column body cells */
.compare-table tbody td:nth-child(3) {
  background: rgba(0, 89, 79, 0.015);
  border-left: 2px solid var(--brand-border-strong);
  border-right: 2px solid var(--brand-border-strong);
}

.compare-table tbody tr:hover td:nth-child(3) {
  background: rgba(0, 89, 79, 0.04);
}

.compare-yes {
  color: var(--success);
  font-size: 1.1rem;
}

.compare-no {
  color: var(--ink-300);
  font-size: 0.9rem;
}

.compare-table tfoot td {
  padding: 20px;
  text-align: center;
  border-top: 2px solid var(--surface-border);
  background: var(--bg-subtle);
}

.compare-table tfoot td:nth-child(3) {
  border-left: 2px solid var(--brand-border-strong);
  border-right: 2px solid var(--brand-border-strong);
}

.compare-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: all 0.2s ease;
}

.compare-cta-link:hover {
  gap: 10px;
  color: var(--brand-hover);
}

.compare-cta-link.highlight {
  background: var(--brand);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
}

.compare-cta-link.highlight:hover {
  background: var(--brand-hover);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .compare-section { padding: 72px 16px; }
  .compare-toggle-row {
    flex-direction: column;
    border-radius: var(--r-md);
    width: 100%;
    max-width: 360px;
  }
  .compare-toggle-btn { justify-content: center; }
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th { padding: 16px 10px; }
  .compare-table tbody td { padding: 12px 10px; }
  .compare-tier-label { font-size: 0.92rem; }
  .compare-tier-price strong { font-size: 1rem; }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-section {
  padding: 60px 20px;
  background: var(--bg-subtle);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 40px auto 0;
}

.faq-column-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brand-border);
}

.faq-column-title i {
  color: var(--brand);
  font-size: 1.1rem;
}

.faq-item {
  border: 1px solid var(--surface-border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.faq-item.open {
  border-color: var(--brand-border-strong);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-800);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--brand);
}

.faq-chevron {
  font-size: 0.75rem;
  color: var(--ink-400);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-600);
}

.faq-answer strong {
  color: var(--ink-800);
}

@media (max-width: 768px) {
  .faq-section { padding: 72px 20px; }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: linear-gradient(180deg, #05211c 0%, #031411 100%);
  color: var(--ink-300);
  border-top: 1px solid rgba(0, 89, 79, 0.25);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-light) 50%, var(--gold) 85%, transparent 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 44px;
}

.footer-brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  padding: 8px 18px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-tagline {
  max-width: 26rem;
  color: var(--ink-400);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-tagline strong {
  color: inherit;
  font-weight: 600;
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-300);
  font-size: 0.95rem;
}

.footer-contact-list i {
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--ink-300);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-300);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 89, 79, 0.4);
}

.footer-column h3 {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-column a {
  color: var(--ink-400);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 54px 24px 40px;
  }
}

/* ==========================================================================
   Floating Callback Button & Modal
   ========================================================================== */

.floating-callback-trigger {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border: none;
  border-radius: var(--r-full);
  background: var(--brand);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.floating-callback-trigger:hover {
  background: var(--brand-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 89, 79, 0.4);
}

.floating-callback-panel {
  display: none;
  position: fixed;
  right: 28px;
  bottom: 96px;
  z-index: 901;
  width: min(360px, calc(100vw - 36px));
  padding: 26px;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  background: #ffffff;
  box-shadow: var(--shadow-xl);
  animation: panelSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelSlideUp {
  0% { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.floating-callback-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--ink-500);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.floating-callback-close:hover {
  background: var(--ink-100);
  color: var(--ink-900);
}

.floating-callback-title {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.floating-callback-subtitle {
  margin: 0 0 20px;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.floating-callback-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-800);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.floating-callback-input {
  width: 100%;
  min-height: 48px;
  margin-bottom: 14px;
  padding: 12px 16px;
  border: 1.5px solid var(--surface-border);
  border-radius: var(--r-md);
  background: var(--bg-subtle);
  color: var(--ink-900);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.floating-callback-input:focus {
  outline: none;
  border-color: var(--brand);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--brand-glow);
}

.floating-callback-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  padding: 14px 20px;
  border: none;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.floating-callback-submit:hover:not(:disabled) {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.floating-callback-done-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   Pages Layout
   ========================================================================== */

.page-content-wrapper {
  padding: calc(var(--header-h) + 48px) 36px 96px;
  max-width: 980px;
  margin: 0 auto;
}

.page-content-wrapper h1 {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 2rem;
}

.page-content-wrapper h2 {
  margin-top: 2.8rem;
}

.page-content-wrapper .card-info-box {
  background: var(--bg-subtle);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
}

/* ==========================================================================
   Cookie Consent Banner (RGPD - Dark Emerald Luxury Glassmorphic Theme)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 820px;
  margin: 0 auto;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(8, 26, 23, 0.96) 0%, rgba(13, 44, 38, 0.94) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(0, 168, 143, 0.32);
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: slideUpCookie 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 26px;
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.cookie-banner-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.cookie-banner-text h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.cookie-banner-text a {
  color: #34d399;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #6ee7b7;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-primary {
  padding: 11px 22px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #00897b 0%, #00a88f 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 168, 143, 0.35);
}

.btn-cookie-primary:hover {
  background: linear-gradient(135deg, #009688 0%, #0fbca2 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 168, 143, 0.5);
}

.btn-cookie-secondary {
  padding: 10px 18px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
  color: var(--ink-900);
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }
  .cookie-banner-actions {
    flex-direction: row;
    width: 100%;
  }
  .cookie-banner-actions button {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   Mobile & Responsive Polish (Header, Hero, Touch Elements, Floating Widget)
   ========================================================================== */

.header-burger {
  cursor: pointer;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-sm);
  background: #ffffff;
  color: var(--ink-800);
  font-size: 1.25rem;
  padding: 8px 12px;
  transition: all 0.2s ease;
}

.header-burger:hover {
  background: var(--bg-subtle);
  border-color: var(--brand-border);
  color: var(--brand);
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .site-header .header-container {
    padding: 0 16px;
    height: var(--header-h);
  }

  .header-logo img {
    height: 38px;
  }

  .hero-section {
    padding: calc(var(--header-h) + 16px) 14px 48px;
  }

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

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-checklist {
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-checklist li {
    font-size: 0.92rem;
    gap: 10px;
  }

  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stat-card {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero-stat-num {
    font-size: 1.35rem;
  }

  .hero-stat-desc {
    margin-top: 0;
    font-size: 0.82rem;
  }

  .solutions-section,
  .compare-section,
  .process-section,
  .value-section,
  .testimonials-section,
  .faq-section {
    padding: 56px 16px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .pillar-card {
    padding: 28px 20px;
  }

  .floating-callback-trigger {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .floating-callback-panel {
    right: 12px;
    left: 12px;
    bottom: 74px;
    width: auto;
    max-width: 100%;
    padding: 20px 18px;
  }

  .footer-inner {
    padding: 44px 16px 32px;
    gap: 32px;
  }

  .footer-bottom {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  
  .badge-trust-pill {
    font-size: 0.78rem;
    padding: 6px 14px;
  }
}

/* ==========================================================================
   Micro-Animations & Number Counter Styles
   ========================================================================== */

.stat-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease;
}

.hero-stat-card:hover .stat-counter,
.trust-score-item:hover .stat-counter {
  transform: scale(1.06);
}

.badge-trust-pill {
  animation: floatGentle 4s ease-in-out infinite;
}

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

.header-cta-btn {
  position: relative;
  overflow: hidden;
}

.header-cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-cta-btn:hover::after {
  left: 130%;
}

/* ==========================================================================
   Top Flash Action Bar (Conversion FOMO Banner)
   ========================================================================== */

.top-flash-bar {
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 50%, #d97706 100%);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
  color: #0b1f1b;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1001;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.flash-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.flame-pulse {
  animation: flameBounce 1.2s infinite;
}

@keyframes flameBounce {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(220, 38, 38, 0.6)); }
  50% { transform: scale(1.25) rotate(-5deg); filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.9)); }
}

.flash-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #081a17;
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.flash-cta-pill:hover {
  background: #00594f;
  transform: translateY(-1px);
}

/* ==========================================================================
   Live Active Experts Radar Indicator
   ========================================================================== */

.header-live-experts {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
}

.pulse-radar-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
  display: inline-block;
}

.pulse-radar-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #059669;
  animation: radarPing 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes radarPing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ==========================================================================
   Hero Trust Badges & Attestation Box
   ========================================================================== */

.hero-google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-xs);
  font-size: 0.85rem;
  color: var(--ink-800);
}

.hero-google-trust-badge .stars-row {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  font-size: 0.85rem;
}

.hero-attestation-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 245, 0.8) 100%);
  border: 1px solid rgba(0, 89, 79, 0.15);
  box-shadow: var(--shadow-sm);
}

.attestation-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero-attestation-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 3px;
  color: var(--ink-900);
}

.hero-attestation-card p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--ink-500);
  line-height: 1.4;
}

.form-header-badge-row {
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
}

.form-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #00594f 0%, #0d8274 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 18px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 14px rgba(0, 89, 79, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: floatGentle 3s ease-in-out infinite;
}

/* ==========================================================================
   Distinct Section Colors & High-Contrast Visual Separation
   ========================================================================== */

/* 1. Hero Section: Soft Mint Mesh with Animated Orbs */
.hero-section {
  background: #f2f8f6 !important;
  border-bottom: 2px solid #dbe8e4 !important;
}

/* 2. Solutions Pôles: Crisp Pure White */
.solutions-section {
  background: #ffffff !important;
  border-bottom: 2px solid #e2e8f0 !important;
  padding: 68px 20px !important;
}

/* 3. Partenaires Assureurs: Soft Sage Emerald */
.partners-section {
  background: #e9f3f0 !important;
  border-top: 1px solid #d2e4de !important;
  border-bottom: 2px solid #d2e4de !important;
  padding: 56px 20px !important;
}

/* 4. Tableau Comparatif: Pure White with Shadow Elevation */
.compare-section {
  background: #ffffff !important;
  border-bottom: 2px solid #e2e8f0 !important;
  padding: 68px 20px !important;
}

/* 5. Comment Ça Marche: Warm Soft Champagne Cream */
.process-section {
  background: #fcf8ee !important;
  border-top: 1px solid #f1e6cc !important;
  border-bottom: 2px solid #f1e6cc !important;
  padding: 68px 20px !important;
}

.process-card {
  background: #ffffff !important;
  border: 1px solid #ede3cb !important;
  box-shadow: 0 8px 20px rgba(180, 140, 60, 0.08) !important;
}

/* 6. Pourquoi SANASSURE: Crisp Pure White */
.value-section {
  background: #ffffff !important;
  border-bottom: 2px solid #e2e8f0 !important;
  padding: 68px 20px !important;
}

/* 7. Avis Clients: Soft Ice Sky Cyan */
.testimonials-section {
  background: #edf6fb !important;
  border-top: 1px solid #d3e7f4 !important;
  border-bottom: 2px solid #d3e7f4 !important;
  padding: 68px 20px !important;
}

.testimonial-card {
  background: #ffffff !important;
  border: 1px solid #dcebf5 !important;
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.08) !important;
}

/* 8. FAQ Section: Crisp Pure White */
.faq-section {
  background: #ffffff !important;
  border-bottom: 2px solid #e2e8f0 !important;
  padding: 68px 20px !important;
}

.faq-item {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

.faq-item.active {
  background: #ffffff !important;
  border-color: var(--brand) !important;
  box-shadow: 0 4px 16px rgba(0, 89, 79, 0.1) !important;
}


/* ==========================================================================
   WhatsApp Floating Support Widget & Tooltip
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 990;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  left: 64px;
  background: #081a17;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   Hero Urgency Pill & Amber Pulsing Dot
   ========================================================================== */

.hero-urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 243, 199, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #92400e;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pulse-dot-amber {
  position: relative;
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  display: inline-block;
}

.pulse-dot-amber::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #f59e0b;
  animation: radarPing 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

/* ==========================================================================
   Floating 3D Glass Badges (Hero Form)
   ========================================================================== */

.float-glass-badge {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 89, 79, 0.15);
  padding: 8px 14px;
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(8, 26, 23, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-800);
  font-family: 'Plus Jakarta Sans', sans-serif;
  pointer-events: none;
}

.badge-top-left {
  top: -18px;
  left: -20px;
  animation: floatGentle 3.5s ease-in-out infinite;
}

.badge-bottom-right {
  bottom: -18px;
  right: -20px;
  animation: floatGentle 4s ease-in-out infinite 0.5s;
}

@media (max-width: 1200px) {
  .float-glass-badge {
    display: none;
  }
}

/* ==========================================================================
   Interactive Ambient Cursor Glow
   ========================================================================== */

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 89, 79, 0.08) 0%, rgba(0, 89, 79, 0) 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    opacity: 1;
  }
}

/* ==========================================================================
   Internal Pages Design System (Solutions, FAQ, Contact, Portal, Legal)
   ========================================================================== */

/* Page Header Hero Banner */
.page-header-section {
  position: relative;
  padding: calc(var(--header-h) + 48px) 20px 52px;
  background: radial-gradient(circle at 50% 10%, rgba(0, 89, 79, 0.09) 0%, rgba(242, 248, 246, 0.98) 70%, #ffffff 100%);
  border-bottom: 1px solid var(--surface-border);
  overflow: hidden;
}

.page-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 89, 79, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: var(--brand-soft);
  color: var(--brand);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border: 1px solid var(--brand-border);
}

.section-tag.gold-tag {
  background: var(--gold-soft);
  color: #b45309;
  border-color: var(--gold-border);
}

.page-title {
  font-size: clamp(2.2rem, 1.8rem + 1.8vw, 3.2rem);
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.page-subtitle {
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.25rem);
  color: var(--ink-600);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 28px;
}

.header-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Custom Buttons */
.btn-cta-primary,
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 89, 79, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-cta-primary:hover,
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 89, 79, 0.38);
}

.btn-cta-secondary,
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  background: #ffffff;
  color: var(--ink-900) !important;
  border: 1.5px solid var(--surface-border);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-cta-secondary:hover,
.btn-outline-custom:hover {
  border-color: var(--brand);
  color: var(--brand) !important;
  background: var(--brand-tint);
  transform: translateY(-2px);
}

/* Page Section Common Styles */
.page-section {
  padding: 72px 20px;
  position: relative;
}

.page-section.bg-subtle {
  background: var(--bg-subtle);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.page-section.bg-tint {
  background: #f0f7f5;
  border-top: 1px solid #d5e5e0;
  border-bottom: 1px solid #d5e5e0;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-500);
  margin-top: 8px;
}

/* Grids & Cards */
.values-grid,
.values-grid-3,
.values-grid-4 {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.values-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.values-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.value-box {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.value-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.value-box:hover {
  transform: translateY(-5px);
  border-color: var(--brand-border-strong);
  box-shadow: var(--shadow-card-hover);
}

.value-box:hover::before {
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.value-icon,
.value-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}

.value-box:hover .value-icon,
.value-box:hover .value-icon-badge {
  transform: scale(1.08);
}

.value-box.gold-accent .value-icon {
  background: var(--gold-soft);
  color: var(--gold);
}

.value-title,
.value-box h3,
.value-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.value-text,
.value-box p {
  font-size: 0.95rem;
  color: var(--ink-600);
  line-height: 1.65;
  margin: 0;
}

/* Trades Grid */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.trade-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}

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

.trade-card i {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.trade-card:hover i {
  transform: scale(1.15);
}

.trade-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink-900);
}

.trade-card p {
  font-size: 0.9rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
}

/* Guarantee / Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  margin: 36px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--surface-border);
  font-size: 0.95rem;
}

.comparison-table th {
  background: var(--bg-subtle);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--ink-900);
  font-size: 1.05rem;
}

.comparison-table th.highlight-col {
  background: var(--brand-soft);
  color: var(--brand);
  border-left: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
}

.comparison-table td.highlight-col {
  background: rgba(0, 89, 79, 0.02);
  border-left: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.badge-plan {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.badge-plan.badge-popular {
  background: var(--brand);
  color: #ffffff;
}

.check-green {
  color: var(--success);
  font-weight: 700;
}

/* Checklist Row */
.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink-700);
}

.feature-check-list li i {
  color: var(--brand);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Partners Page Specific */
.partner-card-item {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}

.partner-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-card-hover);
}

.partner-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
}

.partners-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Legal Pages */
.legal-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  max-width: 960px;
  margin: 0 auto;
}

.legal-card h3 {
  color: var(--brand);
  font-size: 1.35rem;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--surface-border);
}

.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-700);
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info-subtitle {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink-400);
  margin-bottom: 3px;
}

.info-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-900);
  text-decoration: none;
}

.info-val:hover {
  color: var(--brand);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-row-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row-custom {
    grid-template-columns: 1fr;
  }
}

.input-group-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label-custom {
  color: var(--ink-800);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.form-input-custom,
.form-select-custom {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1.5px solid var(--surface-border);
  border-radius: var(--r-md);
  background: var(--bg-subtle, #f8fafc);
  color: var(--ink-900);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-input-custom::placeholder {
  color: var(--ink-400);
}

.form-input-custom:focus,
.form-select-custom:focus {
  outline: none;
  border-color: var(--brand);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--brand-glow);
}

.form-select-custom,
select.form-input-custom {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bg-subtle, #f8fafc);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23194B40'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  padding-right: 44px;
  cursor: pointer;
  line-height: 1.5;
}

select.form-select-custom option {
  background: #ffffff;
  color: var(--ink-900);
  padding: 10px;
}

/* FAQ Filter Tabs */
.faq-category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-cat-btn {
  padding: 10px 22px;
  border-radius: var(--r-full);
  background: #ffffff;
  border: 1.5px solid var(--surface-border);
  color: var(--ink-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-cat-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-tint);
}

.faq-cat-btn.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(0, 89, 79, 0.25);
}

/* Portal Tabs (Espace Gestion) */
.portal-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.portal-tab-btn {
  padding: 14px 28px;
  border-radius: var(--r-full);
  background: #ffffff;
  border: 2px solid var(--surface-border);
  color: var(--ink-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.portal-tab-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 89, 79, 0.3);
}

.portal-content-panel {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.portal-content-panel.active {
  display: block;
}

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

.extranet-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.extranet-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}

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

.extranet-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.extranet-card-left i {
  font-size: 1.5rem;
  color: var(--brand);
}

.extranet-card h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--ink-900);
}

.extranet-card p {
  font-size: 0.8rem;
  color: var(--ink-500);
  margin: 2px 0 0;
}

.extranet-card .arrow-icon {
  color: var(--ink-400);
  font-size: 0.9rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.extranet-card:hover .arrow-icon {
  transform: translateX(4px);
  color: var(--brand);
}

/* Header Dropdown Menu for Solutions */
.header-nav-item-dropdown {
  position: relative;
}

.header-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 10px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-nav-item-dropdown:hover .header-dropdown-menu,
.header-nav-item-dropdown:focus-within .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
}

.header-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  color: var(--ink-800);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.header-dropdown-link i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.header-dropdown-link:hover {
  background: var(--brand-tint);
  color: var(--brand);
}

.header-dropdown-link:hover i {
  background: var(--brand);
  color: #ffffff;
}

/* Mobile dropdown adjustments */
.mobile-nav-submenu {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 12px;
}

.mobile-nav-subitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-nav-subitem i {
  color: var(--brand);
  font-size: 0.85rem;
}

.mobile-nav-subitem:hover {
  background: var(--brand-tint);
  color: var(--brand);
}

/* Responsive tweaks for internal pages */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .portal-tabs-nav {
    flex-direction: column;
  }
  .page-header-section {
    padding: calc(var(--header-h) + 28px) 16px 40px;
  }
  .legal-card {
    padding: 28px 20px;
  }
}

/* ==========================================================
   BREADCRUMBS & GEO (Generative Engine Optimization) STYLES
   ========================================================== */
.breadcrumb-bar {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--surface-border);
  padding: 12px 0;
  font-size: 0.88rem;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-500);
}
.breadcrumb-item a {
  color: var(--ink-600);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
  color: var(--brand);
}
.breadcrumb-item.active span,
.breadcrumb-item span[aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
}
.breadcrumb-sep {
  font-size: 0.7rem;
  color: var(--ink-400);
}

/* GEO Direct Answer Box (Optimized for AI Overviews, Gemini, Perplexity) */
.geo-direct-answer-box {
  background: linear-gradient(135deg, rgba(0, 89, 79, 0.04) 0%, rgba(16, 185, 129, 0.06) 100%);
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 20px 0 28px;
}
.geo-direct-answer-box .geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  margin-bottom: 8px;
}
.geo-direct-answer-box p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-800);
  font-weight: 500;
  margin: 0;
}

/* Metier Hub & Trade Cards Grid */
.metiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.metier-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xs);
}
.metier-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: var(--shadow-card-hover);
}
.metier-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}
.metier-card:hover .metier-card-icon {
  transform: scale(1.08);
  background: var(--brand);
  color: #ffffff;
}
.metier-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.metier-card p {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 16px;
}
.metier-card-action {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   MOBILE FULL-WIDTH RESPONSIVE — 100% stacking on phone screens
   ========================================================================== */

@media (max-width: 768px) {
  /* Hero: single column stacked layout */
  .hero-inner {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 24px !important;
  }
  .hero-intro,
  .hero-form-wrapper,
  .hero-extras {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-form-wrapper {
    order: 2;
  }
  .hero-extras {
    order: 3;
  }
  .hero-title {
    font-size: 1.9rem !important;
  }

  /* Questionnaire BTP grid → single column */
  .btp-grid-options {
    grid-template-columns: 1fr !important;
  }
  .field-row-2 {
    grid-template-columns: 1fr !important;
  }

  /* Métiers BTP Grid → single column */
  .metiers-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Values/Regulatory Grid → single column */
  .values-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Pillar Cards → single column */
  .solutions-grid,
  .pillars-grid {
    grid-template-columns: 1fr !important;
  }

  /* Compare Table → horizontal scroll */
  .compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Process Steps → single column */
  .process-steps {
    grid-template-columns: 1fr !important;
  }

  /* FAQ Grid → single column */
  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer → single column */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Hero Trust Badge → full width */
  .hero-trust-badge-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-google-trust-badge {
    width: 100%;
  }

  /* Hero Stats Strip → single column */
  .hero-stats-strip {
    grid-template-columns: 1fr !important;
  }

  /* Section padding tighter on mobile */
  .page-section {
    padding: 48px 16px !important;
  }

  /* Container custom full width */
  .container-custom {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Header CTA group → stack */
  .header-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .header-cta-group .btn-cta-primary,
  .header-cta-group .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Attestation card → stack */
  .hero-attestation-card {
    flex-direction: column !important;
    text-align: center;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem !important;
    line-height: 1.18 !important;
  }
  .hero-lead {
    font-size: 0.92rem !important;
  }
  .hero-checklist li {
    font-size: 0.88rem !important;
  }
  .section-title {
    font-size: 1.5rem !important;
  }
  .section-subtitle {
    font-size: 0.88rem !important;
  }
  .metier-card {
    padding: 18px !important;
  }
  .value-box {
    padding: 20px !important;
  }
}
