/* ============================================
   TWELVE — Design System
   www.twelve-finance.fr
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ————— Variables ————— */
:root {
  --navy:       #001847;
  --navy-light: #0a2560;
  --navy-mid:   #082070;
  --blue:       #22B3EA;
  --blue-dark:  #1899cc;
  --blue-pale:  #e8f6fd;
  --white:      #FFFFFF;
  --off-white:  #F5F8FA;
  --text:       #0A1628;
  --muted:      #5a6e82;
  --border:     #dde5ee;

  --font: 'Ubuntu Sans', sans-serif;

  --shadow-sm:  0 2px 12px rgba(0,24,71,0.07);
  --shadow:     0 4px 28px rgba(0,24,71,0.10);
  --shadow-lg:  0 12px 52px rgba(0,24,71,0.16);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s var(--ease);

  --max-w: 1180px;
  --pad-x: clamp(20px, 5vw, 80px);
}

/* ————— Reset ————— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ————— Scrollbar ————— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  background: #f6f8fa;
  transition: box-shadow var(--t), padding var(--t);
}

.nav.scrolled {
  background: rgba(224, 228, 234, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px var(--pad-x);
}

.nav.dark {
  background: #f6f8fa;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img.logo-symbol {
  height: 36px;
  width: auto;
  transition: opacity var(--t);
}

.nav-logo img.logo-text {
  height: 22px;
  width: auto;
  filter: none;
  transition: filter var(--t);
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--t);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--t), transform var(--t) !important;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile menu button */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}

/* Mobile menu open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 99;
}
.nav-links.open a { color: var(--white); font-size: 20px; }
.nav-links.open a.active { color: var(--blue); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: 100px 0;
}

.section-sm { padding: 70px 0; }
.section-lg { padding: 140px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.section-subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; max-width: 640px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,179,234,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 16px;
}

.btn svg {
  width: 18px; height: 18px;
  transition: transform var(--t);
}
.btn:hover svg { transform: translateX(3px); }

/* ============================================
   HERO — HOMEPAGE
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}

/* Hexagon grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='80' viewBox='0 0 70 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='35,4 66,21 66,56 35,74 4,56 4,21' fill='none' stroke='%2322B3EA' stroke-width='0.6' stroke-opacity='0.10'/%3E%3C/svg%3E");
  background-size: 70px 80px;
  opacity: 1;
}

/* Glowing radial accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(34,179,234,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  padding-top: 180px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,179,234,0.12);
  border: 1px solid rgba(34,179,234,0.25);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 36px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-title .blue { color: var(--blue); }

.hero-subtitle {
  font-size: clamp(17px, 1.8vw, 21px);
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}

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

.hero-location {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
}

.hero-location svg {
  width: 16px; height: 16px;
  color: var(--blue);
}

/* Large decorative hexagon symbol top-right */
.hero-hex-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

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

/* ============================================
   HERO — INNER PAGES
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 160px var(--pad-x) 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='80' viewBox='0 0 70 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='35,4 66,21 66,56 35,74 4,56 4,21' fill='none' stroke='%2322B3EA' stroke-width='0.6' stroke-opacity='0.08'/%3E%3C/svg%3E");
  background-size: 70px 80px;
}

.page-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  max-width: 680px;
}

.page-hero p {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy-light);
  padding: 28px 0;
  border-top: 1px solid rgba(34,179,234,0.15);
}

.stats-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.stat-item .stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(34,179,234,0.2);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  transition: all var(--t);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.service-card:hover {
  border-color: rgba(34,179,234,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 26px; height: 26px;
  color: var(--blue);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.service-card-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--blue-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9l3 3 5-5' stroke='%2322B3EA' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* ============================================
   MANTRA / VALUES SECTION
   ============================================ */
.mantra-section {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.mantra-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='80' viewBox='0 0 70 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='35,4 66,21 66,56 35,74 4,56 4,21' fill='none' stroke='%2322B3EA' stroke-width='0.5' stroke-opacity='0.07'/%3E%3C/svg%3E");
  background-size: 70px 80px;
}

.mantra-quote {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.mantra-quote::before {
  content: '"';
  font-size: 120px;
  color: rgba(34,179,234,0.12);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.mantra-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.mantra-phase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(34,179,234,0.12);
  padding: 40px 36px;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  cursor: default;
}

.mantra-phase:hover {
  background: rgba(34,179,234,0.11);
  border-color: rgba(34,179,234,0.45);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

/* Centered variant (about page) */
.mantra-phase-centered {
  text-align: center;
}

.mantra-phase-centered .mantra-phase-tag {
  display: inline-block;
}

.mantra-phase-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.mantra-phase-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.mantra-phase-words {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.mantra-phase-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(34,179,234,0.1);
  border: 1px solid rgba(34,179,234,0.2);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ============================================
   DIFFERENTIATORS SECTION
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.diff-card {
  padding: 36px 30px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: all var(--t);
}

.diff-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.diff-card-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
}

.diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='80' viewBox='0 0 70 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='35,4 66,21 66,56 35,74 4,56 4,21' fill='none' stroke='%2322B3EA' stroke-width='0.5' stroke-opacity='0.07'/%3E%3C/svg%3E");
  background-size: 70px 80px;
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   PROFILE / ABOUT
   ============================================ */
.profile-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.profile-photo-wrap {
  position: sticky;
  top: 120px;
}

.profile-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-lg);
}

.profile-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-badge-icon svg {
  width: 22px; height: 22px;
  color: var(--blue);
}

.profile-badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.profile-badge-text span {
  font-size: 13px;
  color: var(--muted);
}

.profile-info h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}

.profile-info .profile-role {
  font-size: 17px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 28px;
}

.profile-info .profile-bio {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.profile-info .profile-bio strong {
  color: var(--text);
  font-weight: 600;
}

/* Experience timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  padding-left: 56px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px; height: 18px;
  background: var(--white);
  border: 2.5px solid var(--blue);
  border-radius: 50%;
  transition: background var(--t);
}

.timeline-item:hover .timeline-dot {
  background: var(--blue);
}

.timeline-period {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.timeline-role {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-company {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  transition: all var(--t);
  overflow: hidden;
}

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

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pricing-card.featured::after {
  content: 'Recommandé';
  position: absolute;
  top: 24px; right: 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 50px;
}

.pricing-type {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-type { color: var(--blue); }

.pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-price sup {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-price sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  vertical-align: sub;
}

.pricing-card.featured .pricing-price sub { color: rgba(255,255,255,0.5); }

.pricing-from {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.pricing-card.featured .pricing-from { color: rgba(255,255,255,0.5); }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' fill='%2322B3EA' fill-opacity='0.12'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2322B3EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.pricing-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
  text-align: center;
}

.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.4); }

/* ============================================
   CAS D'USAGE
   ============================================ */
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
}

.case-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}

.case-item:hover {
  border-color: rgba(34,179,234,0.3);
  box-shadow: var(--shadow);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  cursor: pointer;
}

.case-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  flex-shrink: 0;
  width: 32px;
}

.case-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-icon svg { width: 24px; height: 24px; color: var(--blue); }

.case-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.case-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.case-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.case-block {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}

.case-block:last-child { border-right: none; }

.case-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.case-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.case-block strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

input, textarea, select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34,179,234,0.12);
}

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

input::placeholder, textarea::placeholder { color: #b0bec8; }

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='80' viewBox='0 0 70 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='35,4 66,21 66,56 35,74 4,56 4,21' fill='none' stroke='%2322B3EA' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 70px 80px;
}

.contact-card > * { position: relative; z-index: 1; }

.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.6;
}

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

.contact-item:last-of-type { margin-bottom: 0; }

.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(34,179,234,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; color: var(--blue); }

.contact-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}

.contact-item-text span, .contact-item-text a {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

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

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 32px 0;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-track-wrapper {
  overflow: hidden;
  margin-top: 60px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: testi-scroll 38s linear infinite;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testi-card--navy {
  background: var(--navy);
  border-color: var(--navy);
}
.testi-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.25;
  font-family: Georgia, serif;
  position: absolute;
  top: 20px;
  left: 28px;
}
.testi-quote--navy {
  opacity: 0.4;
}
.testi-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 20px;
  flex: 1;
}
.testi-card--navy p {
  color: rgba(255,255,255,0.75);
}
.testi-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card--navy .testi-author {
  border-top-color: rgba(255,255,255,0.1);
}
.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.testi-card--navy .testi-author img {
  border: 2px solid rgba(255,255,255,0.2);
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.testi-card--navy .testi-author strong {
  color: var(--white);
}
.testi-author span {
  font-size: 13px;
  color: var(--muted);
}
.testi-card--navy .testi-author span {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   LOGO MARQUEE
   ============================================ */
.marquee-section {
  background: var(--off-white);
  padding: 60px 0;
  overflow: hidden;
}
.marquee-header {
  text-align: center;
  margin-bottom: 48px;
}
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  flex-shrink: 0;
}
.marquee-logo-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.3s ease;
}
.marquee-logo-item img:hover {
  filter: grayscale(0) opacity(1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #f7f8fa;
  padding: 72px 0 36px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,24,71,0.15), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--t);
  font-weight: 400;
}

.footer-col ul li a:hover { color: var(--blue); }

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

.footer-copyright {
  font-size: 13px;
  color: var(--muted);
}

.footer-logo img.logo-text-footer {
  height: 16px;
  width: auto;
  filter: none;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .mantra-phases { grid-template-columns: 1fr; gap: 16px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo-wrap { position: static; }
  .profile-photo { max-width: 380px; aspect-ratio: 4/5; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-hex-deco { display: none; }
  .stats-bar-inner { gap: 32px; }
  .stat-divider { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .case-body { grid-template-columns: 1fr; }
  .case-block { border-right: none; border-bottom: 1px solid var(--border); }
  .case-block:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .pricing-card { padding: 36px 28px; }
  .pricing-card.featured::after { display: none; }
}
