/* ============================================================
   Canada Horizon 3000 — main.css
   Design System · Corporate Moderne · Nunito
   ============================================================ */

/* TOKENS */
:root {
  --navy:       #0D2137;
  --navy-2:     #122843;
  --navy-3:     #1A3860;
  --blue:       #1565C0;
  --blue-2:     #1976D2;
  --blue-light: #E3F0FF;
  --gold:       #C9971D;
  --gold-2:     #E4B030;
  --gold-light: #FFF8E7;
  --white:      #FFFFFF;
  --off:        #F6F8FB;
  --gray-1:     #EDF0F5;
  --gray-2:     #C8D0DC;
  --gray-3:     #8898AA;
  --gray-4:     #475569;
  --text:       #0D2137;
  --r:          6px;
  --r2:         14px;
  --shadow:     0 4px 24px rgba(13,33,55,.09);
  --shadow-lg:  0 12px 48px rgba(13,33,55,.15);
  --transition: .25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* TOPBAR */
.topbar {
  background: var(--navy);
  padding: .45rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--gray-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-socials { display: flex; gap: 1rem; }
.topbar-socials a { color: var(--gray-2); transition: color var(--transition); font-weight: 600; }
.topbar-socials a:hover { color: var(--gold-2); }

/* NAVBAR */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--gray-1);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(13,33,55,.14); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-img { height: 42px; width: auto; }
.nav-logo-text { font-weight: 900; font-size: 1.05rem; color: var(--navy); }
.nav-logo-text em { color: var(--gold); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  font-size: .88rem; font-weight: 700; color: var(--gray-4);
  padding: .5rem .9rem; border-radius: var(--r);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-links .nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: .55rem 1.3rem; margin-left: .4rem;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-links .nav-cta:hover { background: var(--navy) !important; transform: translateY(-1px); }
.nav-links .nav-cta.active { background: var(--navy) !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* MOBILE MENU */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 290;
  background: rgba(0,0,0,.5);
}
.mobile-overlay.open { display: block; }
.mobile-menu {
  position: fixed; top: 0; right: -100%; z-index: 300;
  width: min(320px, 85vw); height: 100%;
  background: var(--navy);
  display: flex; flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 1.25rem;
  transition: right .35s ease;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; color: var(--white);
  font-size: 1.5rem;
}
.mobile-menu a { font-size: 1.15rem; font-weight: 700; color: rgba(255,255,255,.8); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--gold-2); }
.mobile-menu .mobile-cta {
  margin-top: .5rem; background: var(--gold); color: var(--navy) !important;
  padding: .85rem 1.5rem; border-radius: var(--r); text-align: center;
  font-weight: 800;
}

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section    { padding: 88px 5%; }
.section-sm { padding: 56px 5%; }
.section-xs { padding: 40px 5%; }

/* LABELS & TYPOGRAPHY */
.label {
  display: inline-block;
  font-size: .73rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: .6rem;
}
.label-gold  { color: var(--gold); }
.label-white { color: rgba(255,255,255,.55); }

.title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900; line-height: 1.1;
  color: var(--navy); letter-spacing: -.022em; margin-bottom: 1rem;
}
.title span  { color: var(--blue); }
.title-white { color: var(--white); }
.title-white span { color: var(--gold-2); }

.subtitle { font-size: 1.05rem; color: var(--gray-3); max-width: 580px; line-height: 1.75; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .95rem;
  padding: .8rem 1.8rem; border-radius: var(--r); border: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn-blue   { background: var(--blue); color: var(--white); }
.btn-blue:hover  { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover  { background: var(--blue); transform: translateY(-2px); }
.btn-gold   { background: var(--gold); color: var(--white); }
.btn-gold:hover  { background: var(--gold-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--gray-2); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-sm  { padding: .55rem 1.2rem; font-size: .85rem; }
.btn-lg  { padding: .95rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* HERO (accueil) */
.hero {
  background: var(--navy);
  min-height: 92vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; opacity: .035; z-index: 1;
  background-image: linear-gradient(var(--blue-2) 1px, transparent 1px), linear-gradient(90deg, var(--blue-2) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,.22) 0%, transparent 65%);
  top: -120px; left: -80px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 5% 80px 6%;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(201,151,29,.15); border: 1px solid rgba(201,151,29,.35);
  color: var(--gold-2); font-size: .75rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 1.75rem; width: fit-content;
  animation: fadeUp .6s .1s both;
}
.hero-badge::before { content:'●'; font-size: .4rem; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -.03em; line-height: 1.07; margin-bottom: 1.4rem;
  animation: fadeUp .7s .25s both;
}
.hero-title .accent  { color: var(--gold-2); }
.hero-title .outline { -webkit-text-stroke: 2px rgba(255,255,255,.22); color: transparent; display: block; }

.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.68); max-width: 520px;
  line-height: 1.75; margin-bottom: 2.25rem;
  animation: fadeUp .7s .4s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .7s .55s both; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .7s .7s both;
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num em { color: var(--gold-2); font-style: normal; }
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.4); letter-spacing: .04em; margin-top: .2rem; }

.hero-image-col { position: relative; overflow: hidden; }
.hero-image-col img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-col::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--navy) 0%, rgba(13,33,55,.4) 40%, rgba(13,33,55,.1) 100%);
}
.hero-image-col::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,33,55,.5) 0%, transparent 50%);
}

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }

/* PAGE HERO (pages internes) */
.page-hero {
  background: var(--navy); padding: 72px 5% 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,.25) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); letter-spacing: -.025em; margin-bottom: .75rem; }
.page-hero p  { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 560px; }

.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }

/* CARDS */
.card {
  background: var(--white); border-radius: var(--r2);
  border: 1px solid var(--gray-1); box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.svc-card {
  padding: 2.25rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.svc-card:hover { border-color: var(--blue); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.svc-icon.gold { background: var(--gold-light); }
.svc-icon.green { background: #E6F5EE; }
.svc-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.svc-desc  { font-size: .9rem; color: var(--gray-3); line-height: 1.65; margin-bottom: 1.25rem; }
.svc-link  { font-size: .85rem; font-weight: 800; color: var(--blue); display: inline-flex; align-items: center; gap: .35rem; transition: gap var(--transition); }
.svc-link:hover { gap: .6rem; }

/* VENTURES STRIP */
.ventures-strip { background: var(--navy); padding: 80px 5%; }
.ventures-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.vent-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r2); padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.vent-card:hover { background: rgba(255,255,255,.09); border-color: rgba(201,151,29,.4); transform: translateY(-4px); }
.vent-tag { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .75rem; border-radius: 100px; display: inline-block; margin-bottom: 1rem; }
.vent-tag.blue  { background: rgba(21,101,192,.2);  color: #7BB6FF; }
.vent-tag.green { background: rgba(13,110,79,.2);   color: #5FD4A4; }
.vent-tag.gold  { background: rgba(201,151,29,.2);  color: var(--gold-2); }
.vent-tag.gray  { background: rgba(255,255,255,.1); color: var(--gray-2); }
.vent-name { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: .5rem; }
.vent-desc { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.25rem; }
.vent-link { font-size: .82rem; font-weight: 700; color: var(--gold-2); display: inline-flex; align-items: center; gap: .35rem; transition: gap var(--transition); }
.vent-link:hover { gap: .6rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card { padding: 2rem; }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1rem; }
.testi-text  { font-size: .92rem; color: var(--gray-4); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.testi-name { font-weight: 800; font-size: .9rem; color: var(--navy); }
.testi-role { font-size: .78rem; color: var(--gray-3); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: var(--r2); padding: 3.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content:''; position: absolute; top:-60px; right:-60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,.25) 0%, transparent 65%);
}
.cta-banner-text h3 { font-size: 1.7rem; font-weight: 900; color: var(--white); margin-bottom: .4rem; }
.cta-banner-text p  { font-size: 1rem; color: rgba(255,255,255,.6); }
.cta-banner-actions { position: relative; z-index: 2; display: flex; gap: 1rem; flex-wrap: wrap; }

/* DIVIDER */
.divider { height: 1px; background: var(--gray-1); }

/* SECTION DETAIL SERVICES */
.services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.svc-detail-card { border-radius: var(--r2); border: 1px solid var(--gray-1); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.svc-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-detail-header { padding: 2.25rem 2.25rem 1.75rem; border-bottom: 1px solid var(--gray-1); }
.svc-detail-header.dark  { background: var(--navy); }
.svc-detail-header.light { background: var(--off); }
.svc-detail-icon  { font-size: 2.2rem; margin-bottom: 1rem; }
.svc-detail-title { font-size: 1.3rem; font-weight: 900; margin-bottom: .4rem; }
.svc-detail-header.dark  .svc-detail-title { color: var(--white); }
.svc-detail-header.light .svc-detail-title { color: var(--navy); }
.svc-detail-tagline { font-size: .88rem; }
.svc-detail-header.dark  .svc-detail-tagline { color: rgba(255,255,255,.55); }
.svc-detail-header.light .svc-detail-tagline { color: var(--gray-3); }
.svc-detail-body { padding: 2rem 2.25rem; background: var(--white); }
.svc-features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.svc-feature { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--gray-4); }
.svc-feature::before { content:'✓'; color: var(--blue); font-weight: 900; flex-shrink: 0; background: var(--blue-light); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; margin-top: .15rem; }

/* MVP */
.mvp-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%); border-radius: var(--r2); padding: 3.5rem; position: relative; overflow: hidden; margin-bottom: 2.5rem; }
.mvp-band::before { content:''; position: absolute; top:-80px; right:-80px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(201,151,29,.18) 0%,transparent 65%); }
.mvp-band-content { position: relative; z-index: 2; }
.mvp-band h3 { font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: .6rem; }
.mvp-band p  { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 560px; margin-bottom: 1.75rem; }

.process-row { display: grid; grid-template-columns: repeat(4,1fr); border-radius: var(--r2); overflow: hidden; border: 1px solid var(--gray-1); margin-bottom: 2.5rem; }
.process-step { padding: 2rem 1.5rem; border-right: 1px solid var(--gray-1); background: var(--white); transition: background var(--transition); }
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--blue-light); }
.ps-num  { font-size: .7rem; font-weight: 900; letter-spacing: .1em; color: var(--blue); margin-bottom: .75rem; }
.ps-icon { font-size: 1.6rem; margin-bottom: .75rem; display: block; }
.ps-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.ps-desc  { font-size: .83rem; color: var(--gray-3); line-height: 1.6; }

.mvp-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tier { background: var(--white); border-radius: var(--r2); border: 1px solid var(--gray-1); padding: 2.5rem 2rem; position: relative; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier.featured { border: 2px solid var(--blue); }
.tier-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: .25rem 1rem; border-radius: 100px; white-space: nowrap; }
.tier-name       { font-size: 1.25rem; font-weight: 900; color: var(--navy); margin-bottom: .3rem; }
.tier-price      { font-size: 2.2rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: .2rem; }
.tier-price-note { font-size: .78rem; color: var(--gray-3); margin-bottom: 1rem; }
.tier-desc       { font-size: .88rem; color: var(--gray-3); line-height: 1.65; margin-bottom: 1.5rem; }
.tier-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.tier-list li { font-size: .87rem; color: var(--gray-4); display: flex; align-items: flex-start; gap: .6rem; padding-bottom: .6rem; border-bottom: 1px solid var(--gray-1); }
.tier-list li:last-child { border-bottom: none; }
.tier-list li::before { content:'✓'; color: var(--blue); font-weight: 900; flex-shrink: 0; font-size: .85rem; }

/* PROJECTS GRID */
.projects-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.project-card { border-radius: var(--r2); overflow: hidden; border: 1px solid var(--gray-1); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.project-body { padding: 1.75rem; }
.project-tag   { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .7rem; border-radius: 100px; background: var(--blue-light); color: var(--blue); display: inline-block; margin-bottom: .75rem; }
.project-title { font-size: 1.25rem; font-weight: 900; color: var(--navy); margin-bottom: .5rem; }
.project-desc  { font-size: .9rem; color: var(--gray-3); line-height: 1.65; margin-bottom: 1.25rem; }
.project-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.tech-pills { display: flex; gap: .4rem; flex-wrap: wrap; }
.tech-pill  { font-size: .7rem; font-weight: 600; color: var(--gray-4); background: var(--gray-1); border-radius: 100px; padding: .2rem .65rem; }

/* VENTURES FULL */
.ventures-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.venture-full { border-radius: var(--r2); overflow: hidden; border: 1px solid var(--gray-1); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.venture-full:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.venture-header { padding: 2.25rem; }
.venture-header.stellynx { background: linear-gradient(135deg, #0D2137 0%, #1A3860 100%); }
.venture-header.micelio  { background: linear-gradient(135deg, #0A2E1F 0%, #0D5535 100%); }
.venture-header.papoum   { background: linear-gradient(135deg, #3D2000 0%, #7A4500 100%); }
.venture-header.coeleco  { background: linear-gradient(135deg, #1C1040 0%, #2D1866 100%); }
.venture-logo-area { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.venture-icon-big { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.venture-title { font-size: 1.55rem; font-weight: 900; color: var(--white); }
.venture-tag2  { font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: .2rem .75rem; border-radius: 100px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.8); display: inline-block; }
.venture-desc  { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; margin: 1rem 0; }
.venture-body  { padding: 2rem 2.25rem; background: var(--white); }
.venture-pills-row { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.about-visual { background: var(--navy); border-radius: var(--r2); padding: 2.75rem; position: relative; }
.about-visual::before { content:''; position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--gold),var(--blue-2));border-radius:var(--r2) var(--r2) 0 0; }
.founder-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%); border: 3px solid rgba(201,151,29,.4); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 1.5rem; }
.founder-name { font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: .2rem; }
.founder-role { font-size: .85rem; color: var(--gold-2); margin-bottom: 1.5rem; }
.founder-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.founder-tag  { font-size: .73rem; font-weight: 700; background: rgba(255,255,255,.09); color: rgba(255,255,255,.75); border-radius: 100px; padding: .28rem .75rem; }
.about-float-badge { position: absolute; bottom: -1.25rem; right: -1.25rem; background: var(--gold); border-radius: var(--r2); padding: 1.1rem 1.5rem; box-shadow: 0 8px 32px rgba(201,151,29,.35); }
.afb-num { font-size: 1.9rem; font-weight: 900; color: var(--navy); line-height: 1; }
.afb-lbl { font-size: .72rem; font-weight: 700; color: var(--navy-2); }
.about-text { font-size: 1rem; color: var(--gray-4); line-height: 1.8; margin-bottom: 1.25rem; }

.skills-2col { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .8rem; margin: 1.5rem 0 2.25rem; }
.skill-row   { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--gray-4); }
.skill-dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.value-card  { padding: 1.75rem; transition: transform var(--transition); }
.value-card:hover { transform: translateY(-4px); }
.value-icon  { font-size: 1.75rem; margin-bottom: .75rem; }
.value-name  { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.value-desc  { font-size: .83rem; color: var(--gray-3); line-height: 1.6; }

.timeline { position: relative; margin-top: 3rem; }
.timeline::before { content:''; position:absolute; left:12px; top:0; bottom:0; width:2px; background:var(--gray-1); }
.tl-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; }
.tl-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--white); border: 2px solid var(--blue); flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.tl-dot span { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.tl-year { font-size: .78rem; font-weight: 800; color: var(--blue); margin-bottom: .25rem; }
.tl-text { font-size: .92rem; color: var(--gray-4); }

.partners-row { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; background: var(--off); border-radius: var(--r2); padding: 2.25rem; margin-top: 3rem; }
.partner-img  { height: 32px; width: auto; opacity: .6; filter: grayscale(1); transition: opacity var(--transition), filter var(--transition); }
.partner-img:hover { opacity: 1; filter: none; }
.partner-lbl  { font-size: .85rem; font-weight: 700; color: var(--gray-3); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--r2); margin-bottom: .75rem; box-shadow: var(--shadow); }
.ci-icon  { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-label { font-size: .75rem; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem; }
.ci-value { font-size: .92rem; font-weight: 600; color: var(--navy); }
.contact-form { background: var(--white); border-radius: var(--r2); border: 1px solid var(--gray-1); padding: 2.75rem; box-shadow: var(--shadow-lg); }
.contact-form h3 { font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: .35rem; }
.contact-form .form-sub { font-size: .9rem; color: var(--gray-3); margin-bottom: 2rem; }

/* FORMS */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 800; letter-spacing: .04em; color: var(--navy); margin-bottom: .45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; font-family: 'Nunito', sans-serif; font-size: .93rem; color: var(--navy);
  background: var(--off); border: 1.5px solid var(--gray-1); border-radius: var(--r);
  padding: .72rem 1rem; outline: none; transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-message { padding: .75rem 1rem; border-radius: var(--r); font-size: .9rem; font-weight: 600; margin-top: 1rem; display: none; }
.form-message.success { background: #E6F5EE; color: #1A7A5A; border: 1px solid #A0D9BC; display: block; }
.form-message.error   { background: #FDEEEE; color: #C0392B; border: 1px solid #F5AEAE; display: block; }

/* CAREERS */
.careers-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.job-card { background: var(--white); border-radius: var(--r2); border: 1px solid var(--gray-1); padding: 1.75rem 2rem; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.job-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.job-meta  { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.job-tag   { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .65rem; border-radius: 100px; }
.job-tag.blue   { background: var(--blue-light); color: var(--blue); }
.job-tag.green  { background: #E6F7F0; color: #1A7A5A; }
.job-tag.orange { background: #FFF3E0; color: #E07A00; }
.job-loc   { font-size: .8rem; color: var(--gray-3); }
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.perk-card  { padding: 1.75rem; text-align: center; transition: transform var(--transition); }
.perk-card:hover { transform: translateY(-4px); }
.perk-icon  { font-size: 2rem; margin-bottom: .75rem; }
.perk-title { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.perk-desc  { font-size: .83rem; color: var(--gray-3); line-height: 1.6; }

/* FOOTER */
.footer { background: var(--navy); border-top: 3px solid var(--gold); padding: 4rem 5% 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2rem; }
.footer-logo { height: 38px; margin-bottom: 1rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; }
.fsocial { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 700; transition: background var(--transition), color var(--transition); }
.fsocial:hover { background: var(--gold); color: var(--navy); }
.footer-col-title { font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .8rem; color: rgba(255,255,255,.3); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* FLASH MESSAGES */
.flash { padding: 1rem 1.5rem; border-radius: var(--r); font-weight: 600; font-size: .92rem; margin-bottom: 1.5rem; }
.flash.success { background: #E6F5EE; color: #1A7A5A; border: 1px solid #A0D9BC; }
.flash.error   { background: #FDEEEE; color: #C0392B; border: 1px solid #F5AEAE; }
.flash.info    { background: var(--blue-light); color: var(--blue); border: 1px solid #90CAF9; }

/* 404 */
.not-found { text-align: center; padding: 120px 5%; }
.not-found .num { font-size: 8rem; font-weight: 900; color: var(--gray-1); line-height: 1; }
.not-found h2   { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 1rem; }
.not-found p    { color: var(--gray-3); margin-bottom: 2rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { height: 340px; order: -1; }
  .hero-image-col::before { background: linear-gradient(to bottom, transparent 0%, rgba(13,33,55,.85) 100%); }
  .hero-content { padding: 60px 5%; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-float-badge { bottom: -1rem; right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .careers-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .ventures-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mvp-tiers { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .topbar { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .cta-banner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .perks-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 60px 5%; }
  .process-row { grid-template-columns: 1fr; }
  .skills-2col { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.2rem; }
  .cta-banner { padding: 2.5rem 1.75rem; }
}

/* ============================================================
   GALERIE / CARROUSEL PROJETS
   ============================================================ */
.proj-img-wrap { position:relative; overflow:hidden; aspect-ratio:16/9; background:var(--navy); }
.proj-slide { width:100%; height:100%; object-fit:cover; display:block; }

/* ============================================================
   PAGE SOUMISSION
   ============================================================ */
.type-option { transition:all .15s; }
.type-option:hover { border-color:var(--blue) !important; background:var(--blue-l) !important; }

/* ============================================================
   PAGE OBJETS CONNECTÉS — process row 5 colonnes
   ============================================================ */
@media (max-width:900px) {
  .process-row { grid-template-columns:repeat(2,1fr) !important; }
}
@media (max-width:540px) {
  .process-row { grid-template-columns:1fr !important; }
}

/* ============================================================
   PAGE MERCI — next steps grid
   ============================================================ */
@media (max-width:640px) {
  .next-steps-grid { grid-template-columns:1fr !important; }
}

/* ============================================================
   PAGINATION (publique)
   ============================================================ */
.pagination { display:flex; gap:.35rem; flex-wrap:wrap; align-items:center; }
.page-btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:34px; height:34px; padding:0 .65rem;
  border:1.5px solid var(--gray-1); border-radius:var(--r);
  font-size:.82rem; font-weight:700; color:var(--gray-4);
  text-decoration:none; background:var(--white); transition:all .2s;
}
.page-btn:hover { border-color:var(--blue); color:var(--blue); }
.page-btn.active { background:var(--navy); color:#fff; border-color:var(--navy); }
