/* ================================================================
   ATHLÉTIX Technologies — Light Theme
   Inspired by the web app & brand board: white bg, AX blue accents
   Blue: #034de2  |  Navy: #2d3f63  |  Light bg: #f4f7fc
   ================================================================ */

:root {
  /* === Brand Colors (from SVG / brand board) === */
  --ax-blue:        #034de2;
  --ax-blue-hover:  #0340c5;
  --ax-blue-light:  #2b6bff;
  --ax-blue-soft:   #e8effe;
  --ax-blue-mid:    rgba(3, 77, 226, 0.12);
  --ax-blue-faint:  rgba(3, 77, 226, 0.06);
  --ax-navy:        #2d3f63;
  --ax-navy-dark:   #1e2d4f;

  /* === Backgrounds (light theme, like app) === */
  --bg-page:      #f4f7fc;   /* very light blue-grey page bg  */
  --bg-white:     #ffffff;
  --bg-section:   #f0f4fb;   /* alternating section */
  --bg-card:      #ffffff;
  --bg-card-alt:  #f7f9fd;

  /* === Dark hero (navy, like app sidebar) === */
  --bg-hero:      #1e2d4f;
  --bg-hero-deep: #131e38;

  /* === Borders === */
  --border:       #e0e8f5;
  --border-blue:  rgba(3, 77, 226, 0.2);
  --border-card:  #dde6f5;

  /* === Text (on light background) === */
  --text-h:         #111827;   /* headings */
  --text-body:      #374151;   /* body */
  --text-muted:     #6b7fa3;   /* secondary */
  --text-light:     #9daec8;   /* muted */
  --text-blue:      var(--ax-blue);

  /* === Text (on dark hero) === */
  --text-hero-h:    #ffffff;
  --text-hero-body: rgba(255,255,255,0.72);
  --text-hero-muted:rgba(255,255,255,0.45);

  /* === Fonts === */
  --font-h:    'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;

  /* === Radius === */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* === Transitions === */
  --t:      0.2s cubic-bezier(.4,0,.2,1);
  --t-slow: 0.4s cubic-bezier(.4,0,.2,1);

  /* === Shadows === */
  --shadow-sm:   0 1px 4px rgba(30,45,79,0.07), 0 2px 12px rgba(30,45,79,0.04);
  --shadow-md:   0 4px 20px rgba(30,45,79,0.10), 0 1px 4px rgba(30,45,79,0.06);
  --shadow-lg:   0 12px 48px rgba(30,45,79,0.14), 0 2px 8px rgba(30,45,79,0.06);
  --shadow-blue: 0 8px 32px rgba(3,77,226,0.22);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { background: rgba(3,77,226,0.18); color: var(--ax-blue); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--ax-blue); border-radius: 3px; }

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  background: var(--ax-blue);
  color: #fff;
  font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; border: none; border-radius: var(--r-sm);
  cursor: pointer; white-space: nowrap;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.14) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { background: var(--ax-blue-hover); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  background: transparent; color: var(--ax-navy);
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--border-card);
  border-radius: var(--r-sm); cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.btn-outline:hover { border-color: var(--ax-blue); color: var(--ax-blue); background: var(--ax-blue-faint); }

.btn-full { width: 100%; justify-content: center; padding: 14px 26px; }

/* ── Pill label ──────────────────────────────────── */
.pill {
  display: inline-block; padding: 5px 13px;
  background: var(--ax-blue-soft); border: 1px solid var(--border-blue);
  border-radius: 30px;
  font-family: var(--font-h); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--ax-blue); text-transform: uppercase;
}

/* ── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(30,45,79,0.08);
  backdrop-filter: blur(16px);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 32px;
  display: flex; align-items: center; gap: 36px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 56px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  text-decoration: none; color: var(--text-muted);
  font-family: var(--font-h); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em;
  padding: 8px 15px; border-radius: var(--r-xs);
  transition: color var(--t), background var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--ax-blue); background: var(--ax-blue-faint); }

.nav-cta { flex-shrink: 0; }

/* Language toggle button */
.lang-toggle {
  display: flex; align-items: center; gap: 3px;
  background: none; border: 1.5px solid var(--border-blue);
  border-radius: 20px; padding: 5px 12px;
  cursor: pointer; font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--ax-blue); transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.lang-toggle:hover { background: var(--ax-blue-faint); }
.lang-active { color: var(--ax-blue); }
.lang-sep    { color: var(--text-muted); font-weight: 400; }
.lang-other  { color: var(--text-muted); font-weight: 500; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ax-navy);
  border-radius: 2px; transition: transform var(--t), opacity var(--t); display: block;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 32px 22px;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(30,45,79,0.1);
}
.mobile-link {
  text-decoration: none; color: var(--text-body);
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.mobile-cta { margin-top: 12px; justify-content: center; }
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* ─────────────────────────────────────────────────
   HERO — dark navy, app sidebar feel
───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: linear-gradient(145deg, var(--bg-hero-deep) 0%, var(--bg-hero) 55%, #243558 100%);
  position: relative; overflow: hidden;
}
/* subtle diagonal grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(3,77,226,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,77,226,0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 55% 45%, black 25%, transparent 100%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-container {
  flex: 1; max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 148px 32px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px; margin-bottom: 20px;
  background: rgba(3,77,226,0.15); border: 1px solid rgba(3,77,226,0.3);
  border-radius: 30px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: #8ab4ff;
}
.eyebrow-dot {
  width: 7px; height: 7px; background: var(--ax-blue-light); border-radius: 50%;
  animation: blink 2.2s infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.65)} }

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text-hero-h); margin-bottom: 18px;
}
.hero-title-gradient {
  display: block;
  background: linear-gradient(125deg, #4d8aff 0%, #034de2 60%, #7bb3ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.02rem; color: var(--text-hero-body);
  line-height: 1.8; margin-bottom: 34px; max-width: 490px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }

/* outline btn on dark bg */
.hero .btn-outline {
  color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.22);
}
.hero .btn-outline:hover { color: #fff; border-color: var(--ax-blue-light); background: rgba(3,77,226,0.15); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.65);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.hero-tag:hover { border-color: rgba(3,77,226,0.5); color: #8ab4ff; background: rgba(3,77,226,0.12); }
.tag-icon { width: 14px; height: 14px; color: var(--ax-blue-light); flex-shrink: 0; }

/* Hero product image frame */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-img-frame {
  position: relative; width: 100%; max-width: 640px;
  background: #ffffff;
  border: 1px solid rgba(3,77,226,0.18);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 0 60px rgba(3,77,226,0.15), 0 30px 80px rgba(0,0,0,0.35);
  padding: 12px;
}
.hero-product-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-md);
}

.hero-qc-badge-top {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; margin-bottom: 10px;
  background: rgba(3,77,226,0.12);
  border: 1px solid rgba(3,77,226,0.25);
  border-radius: var(--r-xs);
  font-size: 0.72rem; font-weight: 600; color: #8ab4ff;
  align-self: flex-start;
}
.hero-qc-badge {
  position: absolute; bottom: 18px; left: 18px;
  display: flex; align-items: center; gap: 7px; padding: 7px 13px;
  background: rgba(20,30,60,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(3,77,226,0.3); border-radius: var(--r-xs);
  font-size: 0.72rem; font-weight: 600; color: #8ab4ff;
}
.hero-live-badge {
  position: absolute; top: 18px; right: 18px;
  display: flex; align-items: center; gap: 6px; padding: 5px 11px;
  background: rgba(20,30,60,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(34,197,94,0.3); border-radius: var(--r-xs);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; color: #4ade80;
}
.live-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: blink 1.5s infinite; }

/* Stats bar — white on dark hero */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 32px;
  background: rgba(10,17,40,0.6); backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 0 48px; }
.stat-val { font-family: var(--font-h); font-size: 1.7rem; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; }
.stat-key { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.stat-sep { width: 1px; height: 42px; background: rgba(255,255,255,0.08); }

/* ─────────────────────────────────────────────────
   CONTENT SECTIONS — white bg, blue accents
───────────────────────────────────────────────── */
.product-section { background: var(--bg-white); border-top: 1px solid var(--border); }
.product-section--alt { background: var(--bg-section); }

/* Offset scroll anchors for fixed navbar (~80px) */
#olympix, #podium, #logiciel, #partenaires, #contact {
  scroll-margin-top: 82px;
}

.product-container {
  max-width: 1280px; margin: 0 auto; padding: 36px 32px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: flex-start;
}

.product-content { display: flex; flex-direction: column; gap: 0; }

.product-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900; letter-spacing: -0.02em;
  color: var(--text-h); margin: 14px 0 14px;
}
.product-intro {
  font-size: 1.05rem; font-weight: 500; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 18px;
}
.compat-notice {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  margin-bottom: 28px; background: var(--ax-blue-soft);
  border: 1px solid var(--border-blue); border-radius: var(--r-sm);
  font-size: 0.82rem; color: var(--ax-blue); font-weight: 600; width: fit-content;
}
.compat-notice svg { color: var(--ax-blue); flex-shrink: 0; }

.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.mode-tile {
  display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px;
  background: var(--bg-card-alt); border: 1px solid var(--border-card);
  border-radius: var(--r-sm);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: default;
}
.mode-tile:hover { border-color: var(--ax-blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.mode-tile--highlight { border-color: var(--border-blue); background: var(--ax-blue-soft); }
.mode-label {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--ax-blue); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em; color: #fff;
}
.mode-tile--highlight .mode-label { background: var(--ax-navy); }
.mode-tile strong { display: block; font-size: 0.77rem; font-weight: 700; color: var(--text-h); letter-spacing: 0.04em; margin-bottom: 2px; }
.mode-tile p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

.specs-table { margin-bottom: 28px; border-top: 1px solid var(--border); }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  transition: background var(--t), padding-left var(--t);
}
.spec-row:hover { background: var(--ax-blue-faint); padding-left: 8px; border-radius: 4px; }
.spec-row span { font-size: 0.83rem; color: var(--text-muted); }
.spec-row strong { font-size: 0.9rem; font-weight: 700; color: var(--text-h); font-family: var(--font-h); }

/* Product renders — same size as logiciel screenshots */
.product-render { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; }
.product-render--olympix {
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
}
.render-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
}
/* Zoom OLYMPIX removed — image manually cropped */
.render-glow {
  position: absolute; width: 55%; height: 55%;
  background: radial-gradient(circle, rgba(3,77,226,0.12), transparent 70%);
  filter: blur(48px); pointer-events: none;
}
.render-glow--navy { background: radial-gradient(circle, rgba(45,63,99,0.12), transparent 70%); }

/* PODIUM scene */
.render-scene { width: 100%; }
#podium-render {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────────────────
   LOGICIEL
───────────────────────────────────────────────── */
.logiciel-section { background: var(--bg-white); border-top: 1px solid var(--border); }
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 36px 32px 100px; }

.section-head { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head .btn-primary { margin-left: auto; }
.section-head--center .btn-primary { margin-left: 0; }

.section-title {
  font-family: var(--font-h); font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900; letter-spacing: -0.015em; color: var(--text-h);
}
.section-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 56px; max-width: 680px; }
.section-desc--center { text-align: center; margin-left: auto; margin-right: auto; }

.logiciel-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.logiciel-features { display: flex; flex-direction: column; }
.feat {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
  cursor: default; transition: padding-left var(--t);
}
.feat:first-child { padding-top: 0; }
.feat:last-child { border-bottom: none; }
.feat:hover { padding-left: 8px; }
.feat-n {
  font-family: var(--font-h); font-size: 2rem; font-weight: 900;
  color: var(--ax-blue-soft); line-height: 1; flex-shrink: 0; width: 46px;
  transition: color var(--t);
  -webkit-text-stroke: 2px var(--ax-blue);
}
.feat:hover .feat-n { color: var(--ax-blue-soft); -webkit-text-stroke: 2px var(--ax-blue-hover); }
.feat strong { display: block; font-size: 0.98rem; font-weight: 700; color: var(--text-h); margin-bottom: 4px; }
.feat p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

.logiciel-screens { position: relative; padding-bottom: 50px; }
.screen-main {
  width: 100%; border-radius: var(--r-md);
  border: 1px solid var(--border-card); box-shadow: var(--shadow-lg);
}
.screen-secondary {
  position: absolute; bottom: 0; left: -24px;
  width: 58%; border-radius: var(--r-sm);
  border: 1px solid var(--border-blue); box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────────
   PARTNERS
───────────────────────────────────────────────── */
.partners-section { background: var(--bg-section); border-top: 1px solid var(--border); }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.partner {
  padding: 36px 28px; background: var(--bg-card);
  border: 1px solid var(--border-card); border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.partner:hover { border-color: var(--ax-blue); transform: translateY(-5px); box-shadow: var(--shadow-blue); }

.partner-logo-wrap {
  width: 100%; height: 72px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 0 4px 0;
}
.partner-logo-img {
  max-height: 64px; max-width: 180px;
  width: auto; height: auto;
  object-fit: contain; object-position: center;
  transition: transform var(--t);
}
.partner:hover .partner-logo-img { transform: scale(1.04); }

.partner-tag {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ax-blue);
  padding: 3px 10px; background: var(--ax-blue-soft);
  border: 1px solid var(--border-blue); border-radius: 4px; width: fit-content;
}
.partner h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-h); line-height: 1.4; }
.partner ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.partner ul li { font-size: 0.82rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.partner ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--ax-blue); border-radius: 50%; }

/* ─────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────── */
.contact-section { background: var(--bg-white); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 16px; }
.contact-title { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--text-h); line-height: 1.15; }
.contact-left p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.contact-info-item svg { color: var(--ax-blue); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-card-alt); border: 1.5px solid var(--border-card);
  border-radius: var(--r-sm); padding: 11px 14px;
  color: var(--text-body); font-size: 0.88rem; font-family: var(--font-body);
  outline: none; -webkit-appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--ax-blue); box-shadow: 0 0 0 3px var(--ax-blue-mid); }
.form-field select { cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ─────────────────────────────────────────────────
   FOOTER — navy, like app sidebar
───────────────────────────────────────────────── */
.footer { background: var(--ax-navy-dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 32px 44px;
  display: flex; gap: 80px; align-items: flex-start;
}
.footer-brand { flex: 1; }
.footer-logo { height: 100px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-origin { font-size: 0.78rem; color: rgba(255,255,255,0.32); }
.footer-socials {
  display: flex; gap: 10px; margin-top: 18px;
}
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: rgba(255,255,255,0.55);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--ax-blue);
  border-color: var(--ax-blue);
  color: #fff;
  transform: translateY(-2px);
}
.footer-nav { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 32px; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ─────────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-visual { display: none; }
  .product-container { grid-template-columns: 1fr; }
  .product-container--reverse .product-render { order: -1; }
  .logiciel-grid { grid-template-columns: 1fr; }
  .screen-secondary { display: none; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .stats-bar { flex-wrap: wrap; gap: 20px; }
  .stat { padding: 0 20px; }
}
@media (max-width: 660px) {
  .modes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 28px; }
  .stats-bar { flex-direction: column; gap: 18px; }
  .stat-sep { width: 60px; height: 1px; }
}
