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

:root {
  --teal:       #5f9481;
  --teal-light: #9aa39d;
  --teal-dark:  #3d7562;
  --teal-bg:    rgba(95, 148, 129, 0.10);
  --dark:       #1d2a26;
  --dark-mid:   #2d3f38;
  --gray:       #6d7a72;
  --light:      #f4f1ea;
  --white:      #ffffff;
  --border:     #e4ece8;
  --shadow:     0 2px 16px rgba(29, 42, 38, 0.06);
  --shadow-md:  0 6px 28px rgba(29, 42, 38, 0.10);
  --shadow-lg:  0 14px 50px rgba(29, 42, 38, 0.14);
  --radius:     18px;
  --radius-sm:  11px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ───────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.logo-svg { height: 68px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.1px;
}
.nav-link:hover { color: var(--teal); }

.lang-btn {
  background: var(--teal);
  color: white;
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.5px;
}
.lang-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 28px 20px;
  gap: 2px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  text-decoration: none;
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.lang-btn-mobile { margin-top: 16px; align-self: flex-start; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.1px;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95, 148, 129, 0.35);
}
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark);
  text-decoration: none;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative background element */
.hero-bg-deco {
  position: absolute;
  bottom: 8%;
  right: -5%;
  width: 55%;
  opacity: 0.045;
  pointer-events: none;
  transform: scale(1.2);
}

.hero-content { flex: 1; max-width: 560px; position: relative; z-index: 1; }

/* Hero brand label */
.hero-brand-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}
.hero-brand-label span {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.2px;
}
.hbl-sep { color: var(--teal-light) !important; font-weight: 400 !important; }
.hbl-tag {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--teal-dark) !important;
  background: var(--teal-bg);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.htrust-item { display: flex; flex-direction: column; gap: 2px; }
.htrust-val  { font-size: 13px; font-weight: 700; color: var(--dark); font-family: 'Space Grotesk', sans-serif; }
.htrust-lbl  { font-size: 11.5px; color: var(--gray); }
.htrust-sep  { width: 1px; height: 32px; background: var(--border); margin-top: 4px; }

h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}
.stat-icon { font-size: 14px; }
.hero-stat-sep { width: 1px; height: 16px; background: var(--border); }

/* Hero visual — split card (colored top + white body) */
.hero-visual {
  flex-shrink: 0;
  width: 300px;
  z-index: 1;
}

.hv-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 28px 70px rgba(29,42,38,0.16), 0 6px 20px rgba(29,42,38,0.08);
}

/* ── Top coloré ── */
.hv-top {
  background: #4a9178;
  padding: 24px 22px 22px;
  position: relative;
  overflow: hidden;
}

.hv-top-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.hv-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.hv-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.hv-dot {
  width: 6px; height: 6px;
  background: #a8f0c6;
  border-radius: 50%;
  flex-shrink: 0;
}

.hv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.28;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.hv-chips span {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.90);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── Body blanc ── */
.hv-body {
  background: #ffffff;
  padding: 6px 0 0;
}

.hv-service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.hv-service-row:last-child { border-bottom: none; }

.hv-sr-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-sr-a { background: rgba(95,148,129,0.12); color: var(--teal); }
.hv-sr-b { background: rgba(61,117,98,0.10);  color: var(--teal-dark); }
.hv-sr-c { background: rgba(95,148,129,0.08); color: var(--teal); }

.hv-sr-text { flex: 1; min-width: 0; }
.hv-sr-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.hv-sr-sub {
  font-size: 11px;
  color: var(--teal-light);
  margin-top: 2px;
}

.hv-arrow { flex-shrink: 0; opacity: 0.5; }

/* ── Section base ──────────────────────────────────────────────────────────── */
section:not(#hero) { padding: 100px 28px; }

.section-inner { max-width: 1120px; margin: 0 auto; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
}

.section-header p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

/* ── Intro ─────────────────────────────────────────────────────────────────── */
#intro { background: var(--white); }

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text h2 { text-align: left; margin-bottom: 20px; }
.intro-text p  { color: var(--gray); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.intro-text p:last-child { margin-bottom: 0; }
.intro-text .section-tag { text-align: left; margin-bottom: 12px; }

.intro-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-val {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.intro-val-icon {
  width: 44px; height: 44px;
  background: var(--teal-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.intro-val-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.intro-val-text {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── Services ──────────────────────────────────────────────────────────────── */
#services { background: var(--light); }
#services .section-tag { color: var(--teal-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(95, 148, 129, 0.15);
}
.service-card:hover::before { opacity: 1; }

.service-card-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }

.service-icon--mobile  { background: rgba(95, 148, 129, 0.12); color: var(--teal); }
.service-icon--web     { background: rgba(61, 117, 98, 0.10);  color: var(--teal-dark); }
.service-icon--webapp  { background: rgba(95, 148, 129, 0.12); color: var(--teal); }
.service-icon--software{ background: rgba(61, 117, 98, 0.10);  color: var(--teal-dark); }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
}
.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-features li {
  font-size: 13.5px;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.service-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Approche ──────────────────────────────────────────────────────────────── */
#approche { background: var(--white); }

.approche-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.approche-step {
  flex: 1;
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.approche-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.step-badge {
  width: 52px; height: 52px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(95, 148, 129, 0.3);
}

.step-icon-wrap {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.approche-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
}
.approche-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

.approche-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  flex-shrink: 0;
  margin-top: 26px;
  color: var(--teal);
  opacity: 0.5;
}

/* ── Apps ──────────────────────────────────────────────────────────────────── */
#apps { background: var(--dark); }

#apps .section-tag { color: rgba(154, 163, 157, 0.9); }
#apps h2 { color: white; }

.apps-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.apps-text { flex: 1; }
.apps-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }

.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 14px 22px;
  color: white;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}
.badge:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
.badge svg { flex-shrink: 0; opacity: 0.6; }
.badge-label { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.badge-store { display: block; font-size: 15px; font-weight: 600; }

/* Phone mockup */
.apps-visual { flex-shrink: 0; }

.phone-outer {
  position: relative;
  display: inline-block;
}

.phone-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 40px;
  background: var(--teal);
  filter: blur(24px);
  opacity: 0.25;
  border-radius: 50%;
}

.phone-mockup {
  width: 176px; height: 320px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 20px 16px;
  position: relative;
}

.phone-notch {
  width: 50px; height: 6px;
  background: rgba(255,255,255,0.10);
  border-radius: 3px;
  margin: 0 auto 18px;
}

.phone-screen { display: flex; flex-direction: column; gap: 10px; }

.screen-header { display: flex; gap: 10px; align-items: center; margin-bottom: 2px; }
.screen-avatar {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.55;
  flex-shrink: 0;
}
.screen-header-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.screen-line {
  height: 7px;
  background: rgba(255,255,255,0.11);
  border-radius: 4px;
}
.w80 { width: 80%; }
.w55 { width: 55%; }
.w70 { width: 70%; }
.w45 { width: 45%; }

.screen-card {
  height: 74px;
  background: rgba(95, 148, 129, 0.15);
  border-radius: 10px;
}
.screen-card.short { height: 46px; }

.screen-row { display: flex; gap: 6px; }
.screen-chip {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
}

/* ── Contact ───────────────────────────────────────────────────────────────── */
#contact { background: var(--light); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-icon {
  width: 36px; height: 36px;
  background: var(--teal-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-light);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
}
a.contact-value:hover { color: var(--teal); }

/* Form */
form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }

input, textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input::placeholder, textarea::placeholder { color: #b0bab3; }
input:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(95, 148, 129, 0.14);
}
textarea { resize: vertical; min-height: 130px; }

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}
.form-message.success { background: rgba(95,148,129,0.10); color: var(--teal-dark); }
.form-message.error   { background: rgba(220,53,69,0.08);  color: #c0392b; }

/* ── Stack technique ───────────────────────────────────────────────────────── */
#stack {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
}

.stack-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stack-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-chips span {
  font-size: 0.72rem;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── FAQ ────────────────────────────────────────────────────────────────────── */
#faq { background: var(--light); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 18px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-answer a { color: var(--teal); }

/* ── Cookie Banner ─────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cookie-text strong { color: #fff; font-size: 0.9rem; }
.cookie-text span   { color: rgba(255,255,255,0.65); font-size: 0.8rem; line-height: 1.5; }
.cookie-link {
  background: none; border: none; padding: 0;
  color: var(--teal); font-size: 0.8rem;
  cursor: pointer; text-decoration: underline;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-refuse {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.cookie-btn-refuse:hover { border-color: rgba(255,255,255,0.5); }
.cookie-btn-accept {
  padding: 8px 20px;
  background: var(--teal);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--teal-dark); }

/* ── Modals ────────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(29,42,38,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 18px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  overflow: hidden;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--gray);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.modal-close:hover { background: var(--border); }
.modal-body {
  overflow-y: auto;
  padding: 24px 28px 28px;
  flex: 1;
}
.modal-body h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin: 24px 0 8px;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p {
  font-size: 0.88rem;
  color: var(--dark-mid);
  line-height: 1.7;
  margin: 0 0 4px;
}
.modal-body a { color: var(--teal); text-decoration: underline; }

/* ── Footer legal links ─────────────────────────────────────────────────────── */
.footer-legal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-legal-link {
  background: none;
  border: none;
  color: rgba(244,241,234,0.4);
  font-size: 0.72rem;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s;
  font-family: inherit;
}
.footer-legal-link:hover { color: rgba(244,241,234,0.75); }
.footer-legal-sep { color: rgba(244,241,234,0.25); font-size: 0.72rem; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 44px 28px; }

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-path { width: 120px; height: auto; display: block; }

.footer-brand-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  width: 120px;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #f4f1ea;
  text-align: center;
  display: block;
  width: 100%;
}

.footer-brand-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: rgba(244, 241, 234, 0.4);
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
}

.footer-copy { color: rgba(255,255,255,0.32); font-size: 13px; }

.footer-email {
  color: rgba(154, 163, 157, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-email:hover { color: white; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .approche-grid { flex-direction: column; }
  .approche-connector { transform: rotate(90deg); margin: 0 auto; }
  .apps-visual { display: none; }
  .apps-inner  { flex-direction: column; gap: 40px; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    padding: 100px 24px 64px;
    min-height: auto;
    gap: 48px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-sub     { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta     { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-visual  { display: none; }
  .hero-trust   { gap: 14px; }
  .htrust-sep   { display: none; }

  .nav-links { display: none; }
  .burger    { display: flex; }

  section:not(#hero) { padding: 72px 24px; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .form-row        { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .store-badges { flex-direction: column; }
  .hero-bg-deco { display: none; }
}
