/* =============================================
   ADMIN SERVICE — Global Stylesheet
   VB Conseils × NEOS Formations
   ============================================= */

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

/* ─── Variables ─────────────────────────────── */
:root {
  --navy:        #1B2B72;
  --blue:        #2557A7;
  --blue-light:  #3B82F6;
  --green:       #059669;
  --green-light: #10B981;
  --green-pale:  #D1FAE5;
  --lime:        #C1FF72;
  --lime-dark:   #96e63e;
  --lime-pale:   #edffd4;
  --cedre:      #375F14;
  --cedre-deep: #264410;
  --cedre-pale: #e8f4e0;
  --partner:     #A7E5FF;
  --partner-dark:#5bc4f0;
  --partner-pale:#e8f8ff;
  --orange:      #FF914D;
  --orange-dark: #e6722e;
  --blue-pale:   #DBEAFE;
  --blue-50:     #EFF6FF;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --text:        #0F172A;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(27,43,114,.10);
  --shadow-lg:   0 10px 40px rgba(27,43,114,.15);
  --shadow-xl:   0 20px 60px rgba(27,43,114,.20);

  --radius:      14px;
  --radius-lg:   22px;
  --radius-full: 999px;

  --font-title:  'Cormorant SC', 'Georgia', serif;
  --font-sub:    'DM Sans', system-ui, sans-serif;
  --font-body:   'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;

  --transition:  all .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Typography ────────────────────────────── */

/* Titres — Cormorant SC (serif élégant, petites capitales) */
h1, h2 {
  font-family: var(--font-title);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }

/* Sous-titres — DM Sans */
h3, h4, h5 {
  font-family: var(--font-sub);
  line-height: 1.2;
  font-weight: 700;
}
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
h5 { font-size: .9rem; }

/* Corps — Helvetica Neue */
p  { font-family: var(--font-body); line-height: 1.75; color: var(--gray-600); font-size: .975rem; }

/* ─── Layout ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 600; font-family: var(--font-sub);
  transition: var(--transition); letter-spacing: .04em; white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 16px rgba(27,43,114,.30);
}
.btn-primary:hover {
  background: var(--blue); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,43,114,.40);
}
.btn-green {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 16px rgba(5,150,105,.30);
}
.btn-green:hover {
  background: #047857; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5,150,105,.40);
}
.btn-lime {
  background: var(--lime); color: var(--navy);
  box-shadow: 0 4px 16px rgba(193,255,114,.40);
  font-weight: 800;
}
.btn-lime:hover {
  background: var(--lime-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193,255,114,.55);
}
.btn-partner {
  background: var(--partner); color: var(--navy);
  box-shadow: 0 4px 16px rgba(167,229,255,.45);
  font-weight: 800;
}
.btn-partner:hover {
  background: var(--partner-dark); color: var(--white); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(167,229,255,.55);
}
.btn-orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(255,145,77,.4);
  font-weight: 800;
}
.btn-orange:hover {
  background: var(--orange-dark); color: var(--white); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,145,77,.5);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--navy);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ─── Badge / Tag ────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.badge-blue  { background: var(--blue-pale); color: var(--blue); }
.badge-green  { background: var(--green-pale); color: var(--green); }
.badge-cedre { background: var(--cedre-pale); color: var(--cedre); }
.badge-navy  { background: rgba(27,43,114,.1); color: var(--navy); }

/* ─── Cards ──────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.card-icon-blue  { background: var(--blue-pale); color: var(--blue); }
.card-icon-green { background: var(--green-pale); color: var(--green); }
.card-icon-navy  { background: rgba(27,43,114,.1); color: var(--navy); }

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: .88rem; font-weight: 500; color: var(--gray-600);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy); background: var(--blue-50);
}
.nav-links a.active { color: var(--navy); }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-btn-etab {
  background: var(--orange); color: var(--white);
  padding: 9px 20px; border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; transition: var(--transition);
}
.nav-btn-etab:hover { background: var(--orange-dark); color: var(--white); }
.nav-btn-sec {
  background: var(--lime); color: var(--navy);
  padding: 9px 20px; border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; transition: var(--transition);
}
.nav-btn-sec:hover { background: var(--lime-dark); }
.nav-mobile { display: none; }

/* ─── Hamburger ──────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 76px 0 0 0;
  background: var(--white); z-index: 99; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
  border-top: 1px solid var(--gray-200);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 20px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { text-align: center; justify-content: center; margin-top: 8px; }

/* ─── Hero ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3fa0 50%, #2557A7 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
  isolation: isolate;
}
/* Hero two-column layout — text overlaps photo */
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 72%;
  padding-right: 40px;
}

/* Decorative shapes behind hero image */
.hero-visual {
  position: absolute;
  right: 0;
  top: -60px;
  bottom: -60px;
  width: 62%;
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(
    to bottom, transparent 0%, black 5%, black 88%, transparent 100%
  ),
  linear-gradient(
    to right, transparent 0%, black 25%, black 100%
  );
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(
    to bottom, transparent 0%, black 5%, black 88%, transparent 100%
  ),
  linear-gradient(
    to right, transparent 0%, black 25%, black 100%
  );
  mask-composite: intersect;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25); margin-bottom: 28px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: #7DD3FC; }
.hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 600px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Audience cards on hero ─────────────────── */
.hero-audience {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 60px;
}
.audience-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); padding: 28px;
  backdrop-filter: blur(8px); transition: var(--transition);
}
.audience-card:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-4px);
}
.audience-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.audience-card p  { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 18px; }
.audience-card .ac-icon {
  font-size: 2rem; margin-bottom: 14px;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.audience-card.blue-card .ac-icon { background: rgba(37,87,167,.5); }
.audience-card.green-card .ac-icon { background: rgba(5,150,105,.4); }

/* ─── Stats bar ──────────────────────────────── */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: -40px; position: relative; z-index: 10;
}
.stat-item {
  text-align: center; padding: 8px 16px;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-title); font-size: 2.2rem;
  font-weight: 800; color: var(--navy); line-height: 1;
}
.stat-num span { color: var(--green); }
.stat-label { font-size: .8rem; color: var(--gray-400); font-weight: 600; margin-top: 6px; text-transform: uppercase; letter-spacing: .05em; }

/* ─── Section header ─────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; color: var(--text); }
.section-header p { font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Stats label */
.stat-label { font-family: var(--font-sub); }
.stat-num   { font-family: var(--font-title); }

/* Feature & step headings */
.feature h3, .step h3, .eco-node h4 { font-family: var(--font-sub); }
.footer-col h5 { font-family: var(--font-sub); }

/* ─── Steps ──────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step {
  text-align: center; padding: 40px 28px;
  background: var(--gray-50); border-radius: var(--radius-lg);
  position: relative; border: 1px solid var(--gray-200);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-title); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.step::after {
  content: '→'; position: absolute; right: -24px; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--gray-400);
}
.step:last-child::after { display: none; }

/* ─── Partners ───────────────────────────────── */
.partners {
  background: var(--navy);
  border-top: none; border-bottom: none;
}
.partners-inner {
  display: flex; align-items: center; justify-content: center; gap: 60px;
  flex-wrap: wrap; padding: 44px 0;
}
.partner-item {
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
}
.partner-item:hover { transform: translateY(-2px); }
.partner-logo {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--partner); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 900; font-size: .8rem;
  font-family: var(--font-title); letter-spacing: .03em;
  box-shadow: 0 4px 14px rgba(167,229,255,.35);
}
.partner-logo.second { background: var(--partner); }
.partner-name { font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.85); }
.partners-separator { width: 1px; height: 36px; background: rgba(167,229,255,.25); }
.partners-label { font-size: .75rem; font-weight: 700; color: rgba(167,229,255,.6); text-transform: uppercase; letter-spacing: .1em; }

/* ─── CTA Section ────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── Testimonials ───────────────────────────── */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-section .section-header { position: relative; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .25s ease, background .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.13);
}
.testimonial-stars { color: var(--lime); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime); color: var(--navy);
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-role { color: white; font-weight: 600; font-size: .9rem; }
.testimonial-org { color: rgba(255,255,255,.55); font-size: .8rem; margin-top: 2px; }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── Forms ──────────────────────────────────── */
.form-section { background: var(--gray-50); }
.form-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block; font-size: .8rem; font-weight: 600;
  font-family: var(--font-sub);
  color: var(--gray-800); margin-bottom: 8px; letter-spacing: .05em; text-transform: uppercase;
}
label .required { color: var(--green); }
input[type=text], input[type=email], input[type=tel],
input[type=number], select, textarea {
  width: 100%; padding: 13px 16px; font-size: .93rem; font-family: var(--font-body);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  background: var(--gray-50); color: var(--text);
  transition: var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 4px rgba(37,87,167,.1);
}
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: .8rem; color: var(--gray-400); text-align: center; margin-top: 14px; }
.form-success {
  display: none; text-align: center; padding: 40px;
  background: var(--green-pale); border-radius: var(--radius-lg);
  border: 1.5px solid var(--green);
}
.form-success h3 { color: var(--green); margin-bottom: 8px; }

/* ─── Feature list ───────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.feature:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-3px); }
.feature .f-icon {
  font-size: 1.6rem; margin-bottom: 16px;
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.feature h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.feature p  { font-size: .88rem; line-height: 1.65; }

/* ─── Check list ──────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.check-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900;
}
.check-icon-blue  { background: var(--blue-pale); color: var(--blue); }
.check-icon-green { background: var(--green-pale); color: var(--green); }
.check-icon-lime  { background: rgba(193,255,114,.2); color: var(--navy); }
.check-item p { font-size: .95rem; margin: 0; }

/* ─── Two-col layout ─────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse .col-visual { order: -1; }

/* ─── Visual block ────────────────────────────── */
.visual-block {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
}
.visual-block .vb-icon { font-size: 5rem; opacity: .3; }
.visual-block .vb-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.95); border-radius: var(--radius);
  padding: 16px 20px; display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow-md);
}

/* ─── Carousel ───────────────────────────────── */
.visual-carousel { position: relative; }
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}
.carousel-slide.active  { opacity: 1; z-index: 1; }
.carousel-slide.leaving { opacity: 0; z-index: 2; transition: opacity 1.1s ease-in-out; }
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.vb-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 4px; }
.vb-badge-text h4 { font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.vb-badge-text p  { font-size: .78rem; margin: 0; }

/* ─── Audience hero ──────────────────────────── */
.audience-hero {
  padding: 72px 0 56px;
}
.audience-hero.blue-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3fa0 60%, var(--blue) 100%);
}
.audience-hero.green-hero {
  background: linear-gradient(135deg, var(--cedre-deep) 0%, var(--cedre) 60%, #4a7d1c 100%);
}
.audience-hero h1 { color: var(--white); }
.audience-hero p { color: rgba(255,255,255,.8); max-width: 620px; font-size: 1.1rem; }
.audience-hero .badge { margin-bottom: 20px; }
.audience-hero .badge.blue-hero-badge { background: rgba(255,255,255,.2); color: var(--white); border: 1px solid rgba(255,255,255,.3); }

/* ─── Concept diagram ────────────────────────── */
.ecosystem {
  display: flex; align-items: center; justify-content: center; gap: 0;
  padding: 48px 0; flex-wrap: wrap;
}
.eco-node {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow-md); border: 2px solid var(--gray-200);
  min-width: 160px; transition: var(--transition);
}
.eco-node:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.eco-node.center-node { border-color: var(--blue); background: var(--navy); color: var(--white); transform: scale(1.08); }
.eco-node.center-node:hover { transform: scale(1.08) translateY(-4px); }
.eco-node .eco-icon { font-size: 2rem; margin-bottom: 10px; }
.eco-node h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.eco-node p  { font-size: .75rem; margin: 0; }
.eco-node.center-node h4 { color: var(--white); }
.eco-node.center-node p  { color: rgba(255,255,255,.7); }
.eco-arrow {
  font-size: 2rem; color: var(--gray-400); padding: 0 16px;
  font-weight: 300;
}

/* ─── Footer ─────────────────────────────────── */
footer {
  background: var(--navy); color: var(--white); padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-partners { display: flex; gap: 20px; align-items: center; }
.fp { font-size: .78rem; color: rgba(255,255,255,.4); font-weight: 600; }
.fp span { color: rgba(255,255,255,.65); }

/* ─── Lime accent underline ──────────────────────── */
.lime-line {
  position: relative; display: inline;
}
.lime-line::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--lime);
  border-radius: 2px;
}
/* Lime accent on section stat numbers */
.stat-num.lime { color: var(--lime); }

/* ─── SVG icons in containers ───────────────────── */
.f-icon svg, .ac-icon svg { display: block; }
.eco-icon svg { width: 28px; height: 28px; display: block; }
.check-icon svg { display: block; }
.vb-icon { min-height: 48px; }

/* ─── Animations ──────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* ─── Success / Error states ─────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .9rem; font-weight: 500; margin-bottom: 16px; }
.alert-success { background: var(--green-pale); color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ─── Hero typography overrides ─────────────────── */
.hero h1        { color: var(--white); letter-spacing: .02em; }
.hero p         { font-family: var(--font-body); font-size: 1.1rem; }
.hero-badge     { font-family: var(--font-sub); }
.audience-card h3, .vb-badge-text h4 { font-family: var(--font-sub); }
.partner-name   { font-family: var(--font-sub); }
.form-note      { font-family: var(--font-body); }
.check-item p   { font-family: var(--font-body); }

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .features    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-audience { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .steps { grid-template-columns: 1fr; }
  .step::after { content: '↓'; right: 50%; top: auto; bottom: -28px; transform: translateX(50%); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-visual { order: 0; }
  .features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ecosystem { flex-direction: column; }
  .eco-arrow { transform: rotate(90deg); }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 24px; }
  .hero { padding: 72px 0 60px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
