/* ─── VARIABLES ────────────────────────────────────── */
:root {
  --blue:        #1a7bbf;
  --blue-dark:   #0e5a8a;
  --blue-darker: #0d2a4a;
  --blue-light:  #e8f4fb;
  --blue-border: #b8d9f0;
  --navy:        #0d2240;
  --orange:      #f26522;
  --orange-light:#fff0e8;
  --orange-border:#fdd0b5;
  --green:       #2eab5e;
  --green-light: #eaf7ef;
  --green-border:#a7dfc0;
  --bg:          #f4f7fa;
  --text:        #1a2332;
  --muted:       #4a5568;
  --muted2:      #8a9ab0;
  --border:      #dde4ed;
  --shadow-sm:   0 1px 6px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --radius:      12px;
  --radius-lg:   18px;
}

/* ─── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ───────────────────────────────────── */
.sora { font-family: 'Sora', sans-serif; }
.mono { font-family: 'DM Mono', monospace; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.12;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}
.eyebrow {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.eyebrow.orange { color: var(--orange); }
.eyebrow.green  { color: var(--green); }

/* ─── BADGES ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
}
.badge-blue   { background: var(--blue-light);   color: var(--blue-dark);  border: 1px solid var(--blue-border); }
.badge-green  { background: var(--green-light);  color: var(--green);      border: 1px solid var(--green-border); }
.badge-orange { background: var(--orange-light); color: var(--orange);     border: 1px solid var(--orange-border); }
.badge-white  { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.badge-gold   { background: rgba(255,215,0,.12); color: #ffd166; border: 1px solid rgba(255,215,0,.28); }

/* ─── CONTAINERS ───────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
section {
  padding: 72px 28px;
}
section.alt {
  background: white;
}

/* ─── HEADER & TABS ────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,34,64,.07);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 80px;
}
.header-logo {
  height: 68px;
  width: auto;
  flex-shrink: 0;
}
.header-inner > a:not(.nav-demo-btn) {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.tabs {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
}
.tab-btn:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.tab-btn.active {
  background: var(--blue);
  color: white;
}
.nav-demo-btn {
  flex-shrink: 0;
  margin-left: auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--orange);
  border: none;
  cursor: pointer;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(242,101,34,.30);
}
.nav-demo-btn:hover {
  background: #d9561a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242,101,34,.40);
}
@media (max-width: 768px) {
  .nav-demo-btn { display: none; }
  .header-inner { gap: 16px; }
}

/* ─── TAB SECTIONS ─────────────────────────────────── */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── HERO SECTIONS ────────────────────────────────── */
.page-hero {
  padding: 80px 28px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.04'%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");
}
.page-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 19px;
  color: rgba(255,255,255,.78);
  max-width: 690px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}
.page-hero p strong { color: white; font-weight: 600; }

.hero-blue   { background: linear-gradient(145deg, var(--navy) 0%, var(--blue-dark) 55%, var(--blue) 100%); }
.hero-orange { background: linear-gradient(145deg, #8a3200 0%, #c44d1a 50%, var(--orange) 100%); }
.hero-green  { background: linear-gradient(145deg, #064a2f 0%, #0a6b42 55%, var(--green) 100%); }

/* ─── REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── SHARED CARDS ─────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card.top-blue   { border-top: 3px solid var(--blue); }
.card.top-orange { border-top: 3px solid var(--orange); }
.card.top-green  { border-top: 3px solid var(--green); }
.card.top-red    { border-top: 3px solid #dc2626; }

/* ─── LOGO BANDEAU ─────────────────────────────────── */
.logo-bandeau {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 28px;
  background: white;
  border-top: 1px solid var(--border);
}
.logo-bandeau img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.2s, opacity 0.2s;
}
.logo-bandeau img:hover {
  filter: none;
  opacity: 1;
}
.logo-bandeau-label {
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}

/* ─── KPI BAND ──────────────────────────────────────── */
.kpi-band {
  background: var(--blue-darker);
  padding: 60px 28px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.kpi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.kpi-icon { font-size: 26px; margin-bottom: 10px; }
.kpi-val {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.kpi-label { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.4; }

/* ═══════════════════════════════════════════════════ */
/* TAB ACCUEIL                                         */
/* ═══════════════════════════════════════════════════ */

/* HERO ACCUEIL */
.hero-accueil {
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue-dark) 55%, var(--blue) 100%);
  padding: 80px 28px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-accueil::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.035'%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");
}
.hero-accueil::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-accueil-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.hero-accueil h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-accueil h1 em {
  font-style: normal;
  background: var(--orange);
  padding: 2px 14px 5px;
  border-radius: 10px;
  display: inline-block;
}
.hero-accueil-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(255,255,255,.72);
  max-width: 690px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}
.hero-accueil-sub strong { color: white; font-weight: 600; }

/* HUB */
.hub-section {
  background: linear-gradient(160deg, #f0f7ff 0%, #f4f7fa 100%);
  padding: 64px 28px;
}
.hub-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.hub-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  min-height: 320px;
}
.hub-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}
.hub-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 200px;
  flex-shrink: 0;
  z-index: 2;
}
.hub-pill {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: fadeUp .4s ease both;
}
.hub-pill:nth-child(1){animation-delay:.2s}
.hub-pill:nth-child(2){animation-delay:.35s}
.hub-pill:nth-child(3){animation-delay:.5s}
.hub-pill:nth-child(4){animation-delay:.65s}
.hub-pill:nth-child(5){animation-delay:.8s}
.hub-pill:nth-child(6){animation-delay:.95s}
.hub-pill-name { font-size: 12px; font-weight: 800; color: var(--text); flex: 1; }
.hub-pill-fmt {
  font-size: 9px;
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
}
.fmt-edi   { background: var(--blue-light);   color: var(--blue);   border: 1px solid var(--blue-border); }
.fmt-api   { background: #f0e8fb;              color: #7c3aed;       border: 1px solid #ddc8f3; }
.fmt-email { background: var(--orange-light);  color: var(--orange); border: 1px solid var(--orange-border); }
.fmt-ftp   { background: var(--green-light);   color: var(--green);  border: 1px solid var(--green-border); }

.hub-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  flex: 1;
}
.hub-diamond-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: popIn .6s .5s both;
}
.hub-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(3,121,176,.2);
  animation: hubPulse 2.4s ease-out infinite;
}
.hub-pulse-ring:nth-child(2) { animation-delay: .8s; }
.hub-pulse-ring:nth-child(3) { animation-delay: 1.6s; }
.hub-label { font-size:13px; font-weight:900; color:#0379b0; text-align:center; opacity:0; animation:fadeUp .4s 1s both; }
.hub-sublabel { font-size:10px; font-family:'DM Mono',monospace; color:#8a9ab0; text-align:center; letter-spacing:.08em; opacity:0; animation:fadeUp .4s 1.2s both; }
.hub-count-badge { display:inline-flex; align-items:center; background:#e8f4fb; border:1px solid #c8e4f3; padding:4px 12px; border-radius:20px; font-size:10px; font-family:'DM Mono',monospace; color:#0379b0; font-weight:700; opacity:0; animation:fadeUp .4s 1.4s both; white-space:nowrap; }

.hub-right { width:290px; flex-shrink:0; z-index:2; opacity:0; animation:fadeUp .5s 1.6s both; }
.novae-box { background:#fff; border:2.5px solid #2eab5e; border-radius:14px; overflow:hidden; box-shadow:0 6px 28px rgba(46,171,94,.15); }
.novae-box-header { background:linear-gradient(135deg,#2eab5e,#22c55e); padding:12px 16px; display:flex; flex-direction:column; gap:2px; }
.novae-box-tag { font-family:'DM Mono',monospace; font-size:9px; color:rgba(255,255,255,.75); letter-spacing:.12em; text-transform:uppercase; }
.novae-box-name { font-size:15px; font-weight:900; color:#fff; }
.novae-box-pill { display:inline-flex; align-items:center; gap:4px; background:rgba(255,255,255,.25); border:1px solid rgba(255,255,255,.4); padding:3px 8px; border-radius:12px; font-size:9px; font-family:'DM Mono',monospace; color:#fff; font-weight:700; margin-top:4px; width:fit-content; }
.novae-box-body { padding:14px 16px; display:flex; flex-direction:column; gap:8px; }
.novae-feature { display:flex; align-items:flex-start; gap:7px; font-size:11.5px; font-weight:700; color:#4a5568; line-height:1.3; }
.novae-check { width:16px; height:16px; border-radius:50%; background:#eaf7ef; color:#2eab5e; display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:900; flex-shrink:0; margin-top:1px; }

.hub-editors-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hub-editors-label {
  width: 100%;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 4px;
}
.hub-editors-row img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.2s, opacity 0.2s;
}
.hub-editors-row img:hover { filter: none; opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hubPulse {
  0%   { width:60px;  height:60px;  opacity:.8; }
  100% { width:130px; height:130px; opacity:0;  }
}

/* AUDIENCE CARDS */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.audience-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.audience-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.ac-header { padding: 28px 24px 18px; }
.ac-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.ac-icon.blue   { background: var(--blue-light); }
.ac-icon.orange { background: var(--orange-light); }
.ac-icon.green  { background: var(--green-light); }
.audience-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.audience-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.ac-body {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.ac-body ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ac-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
}
.ac-body li::before { font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.ac-card-blue   .ac-body li::before { content: '✓'; color: var(--blue); }
.ac-card-orange .ac-body li::before { content: '✓'; color: var(--orange); }
.ac-card-green  .ac-body li::before { content: '✓'; color: var(--green); }

/* LABELS BANDEAU */
.labels-section {
  background: white;
  padding: 64px 28px;
  border-top: 1px solid var(--border);
}
.labels-title {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 40px;
}
.labels-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
}
.label-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.label-card:hover { box-shadow: var(--shadow-md); }
.label-card img {
  max-height: 90px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.label-card-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════ */
/* TAB RESTAURATEURS                                    */
/* ═══════════════════════════════════════════════════ */

.frictions-v { display: flex; flex-direction: column; gap: 16px; max-width: 860px; margin: 0 auto; }
.friction-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.friction-row:hover { box-shadow: var(--shadow-md); }
.friction-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fef2f2;
  border: 2px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: #dc2626;
  flex-shrink: 0;
}
.friction-content h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.friction-content p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.friction-who {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dc2626;
  background: #fef2f2;
  padding: 5px 11px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.solution-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.solution-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.solution-step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.solution-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #2a90e8 100%);
}
.sol-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 6px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
}
.solution-step h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.solution-step p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.step-gain {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  border-radius: 6px;
  padding: 5px 11px;
}

/* ═══════════════════════════════════════════════════ */
/* TAB ÉDITEURS                                        */
/* ═══════════════════════════════════════════════════ */

.problem-editeurs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.prob-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid #fecaca;
}
.prob-icon { font-size: 26px; margin-bottom: 12px; }
.prob-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}
.prob-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.prob-cost {
  margin-top: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #dc2626;
  background: #fef2f2;
  padding: 5px 11px;
  border-radius: 6px;
  display: inline-block;
}

.sdk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.sdk-code {
  background: #0d1f35;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}
.sdk-code::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sdk-dots { position: absolute; top: 13px; left: 18px; display: flex; gap: 7px; }
.sdk-dots span { width: 11px; height: 11px; border-radius: 50%; }
.sdk-dots span:nth-child(1) { background: #ff5f56; }
.sdk-dots span:nth-child(2) { background: #ffbd2e; }
.sdk-dots span:nth-child(3) { background: #27c93f; }
.sdk-file-label {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.sdk-code-inner { padding-top: 20px; }
.c-comment { color: #4b6b8a; }
.c-key     { color: #79b8ff; }
.c-string  { color: #9ecbff; }
.c-func    { color: #b392f0; }
.c-val     { color: #85e89d; }

.sdk-benefits { display: flex; flex-direction: column; gap: 14px; }
.sdk-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.sdk-benefit:hover { box-shadow: var(--shadow-md); }
.sdk-benefit-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.sdk-benefit-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.sdk-benefit-text span { font-size: 12px; color: var(--muted); line-height: 1.5; }

.integration-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.integration-steps::before {
  content: '';
  position: absolute;
  left: 20px; top: 24px; bottom: 24px;
  width: 2px;
  background: var(--green-border);
}
.int-step { display: flex; gap: 20px; padding: 0 0 28px; position: relative; }
.int-step:last-child { padding-bottom: 0; }
.int-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px white;
}
.int-content { padding-top: 9px; }
.int-content h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.int-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.int-duration {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 9px;
  border-radius: 6px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════ */
/* TAB FOURNISSEURS                                     */
/* ═══════════════════════════════════════════════════ */

.circuit-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}
.circuit-step {
  flex: 1;
  position: relative;
}
.circuit-step-inner {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.circuit-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fef2f2;
  border: 2px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 12px;
}
.circuit-step .who {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dc2626;
  background: #fef2f2;
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 9px;
  display: inline-block;
}
.circuit-step h3 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.circuit-step p  { font-size: 12px; color: var(--muted); line-height: 1.6; }
.circuit-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  padding-top: 60px;
  font-size: 20px;
  color: #fca5a5;
}

.smart-order-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.so-inputs { display: flex; flex-direction: column; gap: 10px; }
.so-input-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.so-input-item:hover { box-shadow: var(--shadow-md); }
.so-icon { font-size: 24px; flex-shrink: 0; }
.so-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.so-text span { font-size: 12px; color: var(--muted); }
.so-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
}
.so-output {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}
.so-output-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  position: relative;
}
.so-output h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 7px;
  position: relative;
}
.so-output p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
}
.so-tags-out { display: flex; flex-wrap: wrap; gap: 7px; position: relative; }
.so-tag-out {
  background: rgba(242,101,34,.2);
  border: 1px solid rgba(242,101,34,.35);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #f9a87a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.benefit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon { font-size: 28px; margin-bottom: 12px; }
.benefit-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.benefit-card p  { font-size: 15px; color: var(--muted); line-height: 1.6; }
.benefit-kpi {
  margin-top: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 26px;
  font-weight: 500;
  color: var(--orange);
}
.benefit-kpi-label { font-size: 11px; color: var(--muted); font-family: 'DM Sans', sans-serif; }

.sovereignty-box {
  background: var(--blue-darker);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.sovereignty-box h2 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.sovereignty-box p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }
.sov-points { display: flex; flex-direction: column; gap: 12px; }
.sov-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 13px 15px;
}
.sov-icon { font-size: 18px; flex-shrink: 0; }
.sov-text strong { display: block; font-size: 13px; font-weight: 700; color: white; }
.sov-text span { font-size: 12px; color: rgba(255,255,255,.55); }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 800px) {
  .hub-wrap { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .friction-row { grid-template-columns: 50px 1fr; }
  .friction-who { display: none; }
  .solution-steps { grid-template-columns: 1fr; }
  .problem-editeurs { grid-template-columns: 1fr; }
  .sdk-grid { grid-template-columns: 1fr; }
  .circuit-steps { flex-direction: column; }
  .circuit-arrow { transform: rotate(90deg); padding: 8px 0; }
  .smart-order-grid { grid-template-columns: 1fr; }
  .so-arrow-col { transform: rotate(90deg); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .sovereignty-box { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .labels-grid { gap: 28px; }
}
@media (max-width: 540px) {
  section { padding: 48px 16px; }
  .tabs { gap: 2px; }
  .tab-btn { padding: 7px 12px; font-size: 13px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-section {
  background: var(--navy);
  padding: 72px 24px 80px;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .section-title {
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.faq-section .section-sub {
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-bottom: 48px;
}
.faq-group-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 36px 0 12px;
}
.faq-group-label:first-of-type { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.faq-q:hover { color: var(--blue); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, border-color .25s;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--blue);
}
.faq-chevron svg { display: block; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  padding-bottom: 18px;
}

/* ─── REVEAL DELAYS ─────────────────────────────────── */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }

/* ─── CTA BAND ──────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  padding: 72px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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");
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,.70);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
  position: relative;
}
.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-orange {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(242,101,34,.35);
}
.btn-orange:hover {
  background: #d9561a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,101,34,.45);
}
.btn-outline {
  background: rgba(255,255,255,.10);
  color: white;
  border: 1.5px solid rgba(255,255,255,.30);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(26,123,191,.30);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,123,191,.40);
}
.btn-sm { font-size: 14px; padding: 10px 20px; }

/* ─── GRID-3 ─────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ─── CARD ICON ─────────────────────────────────────── */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  background: var(--blue-light);
}
.card-icon.orange { background: var(--orange-light); }
.card-icon.green  { background: var(--green-light); }

/* ─── BADGE AWARD ────────────────────────────────────── */
.badge-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,215,0,.12);
  color: #e8b420;
  border: 1px solid rgba(255,215,0,.30);
}

/* ─── ABOUT PAGE ─────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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");
  pointer-events: none;
}
.about-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.about-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--blue-light);
}
.team-card .team-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}
.team-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.timeline-content {
  flex: 1;
  padding-top: 8px;
}
.timeline-date {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.timeline-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── NEWS / ACTUALITES PAGE ─────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .news-grid { grid-template-columns: 1fr; }
}
.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--blue-light);
}
.card-banner.orange { background: var(--orange-light); }
.card-banner.green  { background: var(--green-light); }
.card-banner.navy   { background: var(--navy); }
.card-banner img {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
}
.card-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue-dark);
}
.card-tag.orange { background: var(--orange-light); color: var(--orange); }
.card-tag.green  { background: var(--green-light);  color: var(--green); }
.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-body .news-date {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 8px;
}
.news-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.news-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.news-card-body .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.linkedin-push {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.linkedin-push h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.linkedin-push p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 490px;
}
.btn-linkedin {
  background: #0A66C2;
  color: white;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: background .18s, transform .18s;
  flex-shrink: 0;
}
.btn-linkedin:hover { background: #0855a8; transform: translateY(-2px); }

/* ─── SITE FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 56px 28px 28px;
}
.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.50);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.50);
  transition: color .18s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.90); }
.footer-bottom {
  max-width: 1040px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.30);
}
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,.30);
  transition: color .18s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.60); }
