/* ==========================================================================
   94 Secondes — site corporate
   Charte reprise de l'app : Nunito Black, cyan #2BE0FF, boutons cartoon
   (dégradé vertical clair→foncé, bord blanc, base 3D), fond gris clair.
   ========================================================================== */

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-Variable.ttf') format('truetype-variations');
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  /* Cyan / aqua */
  --aqua-top: #2be0ff;
  --aqua-bottom: #24c8fd;
  --aqua-dark: #12a8dc;
  --field-top: #05a1d9;

  /* Lime */
  --lime-top: #ddf666;
  --lime-bottom: #a8dc18;
  --lime-dark: #8ab300;

  /* Tangerine */
  --tangerine-top: #ffa63a;
  --tangerine-bottom: #ff7e2d;
  --tangerine-dark: #e85c12;

  /* Neutres */
  --bg-top: #f6f6f6;
  --bg-mid: #eaeaea;
  --bg-bottom: #bebebe;
  --ink: #332f2a;
  --ink-soft: #6b6b7a;
  --muted: #a4a4a4;
  --deep: #006b8a;

  --radius: 22px;
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.08);
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 58.65%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--field-top);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   En-tête courbe cyan (rappel du CurvedHeader de l'app)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: linear-gradient(179.3deg, var(--aqua-top) 0%, var(--field-top) 92%);
  padding: 28px 0 132px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* Arc blanc du bas, comme la courbe de l'en-tête in-app. */
.hero::after {
  content: '';
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -110px;
  height: 220px;
  background: var(--bg-top);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -8px 0 rgba(255, 255, 255, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
}

/* Sélecteur de langue — EN | FR */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.lang-switch a,
.lang-switch span {
  padding: 4px 11px;
  border-radius: 999px;
  color: #fff;
}

.lang-switch a:hover {
  background: rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.lang-switch .current {
  background: #fff;
  color: var(--field-top);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 48px;
}

.hero h1 {
  margin: 0;
  font-weight: 1000;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero h1 .lime {
  color: var(--lime-top);
}

.pill {
  display: inline-block;
  margin: 26px auto 0;
  padding: 12px 26px;
  background: #fff;
  color: var(--field-top);
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(15px, 2vw, 19px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.hero-sub {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* --------------------------------------------------------------------------
   Boutons cartoon
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  border: 3px solid #fff;
  border-radius: 18px;
  font-family: inherit;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 currentColor;
}

.btn-lime {
  background: linear-gradient(180deg, var(--lime-top), var(--lime-bottom));
  box-shadow: 0 6px 0 var(--lime-dark), 0 12px 20px rgba(0, 0, 0, 0.16);
}

.btn-aqua {
  background: linear-gradient(180deg, var(--aqua-top), var(--aqua-bottom));
  box-shadow: 0 6px 0 var(--aqua-dark), 0 12px 20px rgba(0, 0, 0, 0.16);
}

.btn-tangerine {
  background: linear-gradient(180deg, var(--tangerine-top), var(--tangerine-bottom));
  box-shadow: 0 6px 0 var(--tangerine-dark), 0 12px 20px rgba(0, 0, 0, 0.16);
}

.btn-dark {
  background: linear-gradient(180deg, #3a3a52, #23233a);
  box-shadow: 0 6px 0 #14142a, 0 12px 20px rgba(0, 0, 0, 0.16);
}

.btn svg {
  width: 26px;
  height: 26px;
  flex: none;
  fill: currentColor;
}

.btn small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.btn-store {
  text-align: left;
  padding: 13px 26px;
}

.btn-store span {
  line-height: 1.1;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 34px;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

section {
  padding: 76px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}

h2 {
  margin: 0 0 12px;
  font-weight: 1000;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9);
}

h2 .aqua {
  color: var(--field-top);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

/* Chiffres clés */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

.stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat b {
  display: block;
  font-size: 34px;
  font-weight: 1000;
  color: var(--field-top);
  line-height: 1;
}

.stat span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Cartes features */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}

.card .ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 16px;
  border: 3px solid #fff;
}

.ico.lime {
  background: linear-gradient(180deg, var(--lime-top), var(--lime-bottom));
  box-shadow: 0 4px 0 var(--lime-dark);
}

.ico.aqua {
  background: linear-gradient(180deg, var(--aqua-top), var(--aqua-bottom));
  box-shadow: 0 4px 0 var(--aqua-dark);
}

.ico.tangerine {
  background: linear-gradient(180deg, var(--tangerine-top), var(--tangerine-bottom));
  box-shadow: 0 4px 0 var(--tangerine-dark);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* Captures d'écran */
.shots {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 10px 24px 26px;
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
}

.shots::-webkit-scrollbar {
  height: 8px;
}

.shots::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}

.phone {
  flex: none;
  width: 250px;
  scroll-snap-align: center;
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(180deg, #43435c, #1d1d2e);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.phone img {
  border-radius: 27px;
}

/* Bandeau CTA final */
.cta {
  text-align: center;
  background: linear-gradient(180deg, var(--aqua-top), var(--field-top));
  color: #fff;
  border-radius: 32px;
  padding: 54px 26px;
  margin: 0 24px 80px;
  max-width: calc(var(--maxw) - 48px);
  box-shadow: 0 18px 40px rgba(5, 161, 217, 0.32);
}

@media (min-width: 1128px) {
  .cta {
    margin: 0 auto 80px;
  }
}

.cta h2 {
  color: #fff;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.14);
}

.cta p {
  margin: 0 auto 8px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.94);
}

/* --------------------------------------------------------------------------
   Pages légales
   -------------------------------------------------------------------------- */

.legal-hero {
  padding-bottom: 118px;
}

.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
}

.legal {
  max-width: 800px;
  margin: -46px auto 90px;
  background: #fff;
  border-radius: var(--radius);
  padding: 46px 42px;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 3;
  font-weight: 500;
  color: #3a3a48;
}

.legal .updated {
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.legal h2 {
  font-size: 21px;
  margin: 38px 0 10px;
  text-shadow: none;
  color: var(--field-top);
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 22px 0 6px;
}

.legal p,
.legal li {
  font-size: 15.5px;
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 6px;
}

.legal address {
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.legal .box {
  background: var(--bg-mid);
  border-left: 5px solid var(--aqua-bottom);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
  font-size: 15px;
}

/* Valeur à confirmer avant publication */
.todo {
  background: #fff3c4;
  border-bottom: 2px dotted #d0a000;
  padding: 0 4px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 620px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-bottom: 96px;
  }

  .hero-inner {
    padding-top: 30px;
  }

  .stores .btn {
    width: 100%;
    max-width: 300px;
  }

  section {
    padding: 54px 0;
  }

  .legal {
    padding: 30px 22px;
    border-radius: 18px;
    margin-inline: 14px;
  }

  .cta {
    padding: 38px 20px;
    border-radius: 24px;
  }

  .foot-legal {
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

footer {
  background: #1b1b30;
  color: #b9b9d0;
  padding: 52px 0 34px;
  font-size: 14.5px;
  font-weight: 600;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

@media (max-width: 720px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

footer a {
  color: #b9b9d0;
}

footer a:hover {
  color: var(--aqua-top);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

.foot-brand img {
  width: 36px;
  height: 36px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer li {
  margin-bottom: 9px;
}

.foot-legal {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 13px;
  color: #7b7b96;
}
