/* ═══════════════════════════════════════════════════════════════
   TakTak – Design System
   Couleur principale : #00ABE3  |  Jaune : #F5E642
   Police titres : Nunito 900    |  Corps : Plus Jakarta Sans
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables globales ─────────────────────────────────────── */
:root {
  --blue:        #00ABE3;
  --blue-dark:   #008EC0;
  --blue-navy:   #0D4F6B;
  --yellow:      #F5E642;
  --yellow-mid:  #F0DC1E;
  --dark:        #1A2B3C;
  --gray:        #6B7280;
  --gray-light:  #F5F5F5;
  --gray-border: #E0E0E0;
  --white:       #FFFFFF;
  --radius:      16px;
  --radius-sm:   10px;

  /* Alias rétrocompatibles */
  --cyan:      var(--blue);
  --cyan-dark: var(--blue-dark);
  --cyan-navy: var(--blue-navy);
}

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

html  { scroll-behavior: smooth; }
body  {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Nunito', sans-serif; font-weight: 900; }

/* ── Animation fade-in (IntersectionObserver) ─────────────── */
.fade-in         { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }


/* ══════════════════════════════════════════════════════
   NAVBAR – fond bleu, logo horizontal, liens blancs
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: var(--blue);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.18); }

/* Logo horizontal : icône SVG + texte */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text {
  font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900;
  color: white; letter-spacing: -.3px; line-height: 1;
}
.nav-logo:hover .nav-logo-text { opacity: .88; }

/* Liens nav – blancs sur fond bleu */
.nav-links { display: flex; gap: 28px; list-style: none; font-size: 13px; font-weight: 600; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
/* Soulignement actif */
.nav-links a.active { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px; }

/* Bouton CTA Contactez nous – outline blanc */
.nav-cta {
  background: white; color: var(--blue);
  border: 2px solid white; border-radius: 50px;
  padding: 9px 22px; font-size: 13px; font-weight: 700;
  font-family: inherit; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, transform .1s;
}
.nav-cta:hover { background: transparent; color: white; transform: translateY(-1px); }
.nav-cta-outline { background: white; color: var(--blue); border-color: white; }
.nav-cta-outline:hover { background: transparent; color: white; }

/* Burger mobile – blanc */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }

/* Groupe droite navbar (switcher + CTA) */
.nav-right { display: flex; align-items: center; gap: 12px; }

/* ══════════════════════════════════════════════════════
   SÉLECTEUR DE LANGUE
   ══════════════════════════════════════════════════════ */
.lang-switcher { position: relative; }

/* Bouton déclencheur */
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.40); border-radius: 8px;
  padding: 7px 11px; font-size: 13px; font-weight: 700; color: white;
  cursor: pointer; font-family: inherit;
  transition: background .2s, border-color .2s;
}
.lang-btn:hover,
.lang-switcher.open .lang-btn {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}
.lang-flag  { font-size: 16px; line-height: 1; }
.lang-label { letter-spacing: .3px; }
.lang-arrow { flex-shrink: 0; color: rgba(255,255,255,.8); transition: transform .2s; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

/* Menu déroulant */
.lang-list {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 150px; list-style: none;
  background: white; border-radius: 10px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  overflow: hidden; z-index: 500;
  animation: langDrop .15s ease;
}
.lang-switcher.open .lang-list { display: block; }

@keyframes langDrop {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Chaque option */
.lang-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; text-decoration: none;
  font-size: 14px; font-weight: 500; color: var(--dark);
  transition: background .12s;
}
.lang-item:hover         { background: #f5f9fa; }
.lang-item--active       { background: #edf8fd; font-weight: 700; color: var(--blue); }
.lang-item--active svg   { margin-left: auto; color: var(--blue); flex-shrink: 0; }
.lang-full               { flex: 1; }


/* ══════════════════════════════════════════════════════
   SECTION HERO – fond bleu, 2 colonnes : texte + phones
   ══════════════════════════════════════════════════════ */
.hero {
  min-height: 720px;
  padding: 96px 80px 0;
  margin-top: 64px;
  background: var(--blue);
  display: flex; align-items: flex-end; justify-content: space-between;
  position: relative; overflow: hidden;
}

/* Diamants décoratifs (centre-gauche, entre texte et phones) */
.hero-deco-1, .hero-deco-2 {
  position: absolute;
  border-radius: 20px;
  background: rgba(0,120,180,.28);
  pointer-events: none;
}
.hero-deco-1 { width: 240px; height: 240px; left: 38%; bottom: 70px;  transform: rotate(45deg); }
.hero-deco-2 { width: 155px; height: 155px; left: 44%; bottom: 230px; transform: rotate(45deg); opacity: .5; }

/* Texte gauche */
.hero-content { flex: 0 0 450px; z-index: 2; padding-bottom: 72px; }

.hero h1        { font-size: 46px; color: white; line-height: 1.12; margin-bottom: 20px; }
.hero h1 em     { font-style: italic; color: var(--yellow); }
.hero-sub       { color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.65; margin-bottom: 32px; max-width: 400px; }

/* Boutons store */
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: #111; color: white; border-radius: 12px; padding: 10px 18px;
  text-decoration: none; border: 1px solid rgba(255,255,255,.08);
  transition: background .2s, transform .15s;
}
.store-btn:hover    { background: #1f1f1f; transform: translateY(-2px); }
.store-btn svg      { flex-shrink: 0; width: 22px; height: 22px; fill: white; }
.store-btn-text     { display: flex; flex-direction: column; }
.store-btn-label    { font-size: 9.5px; color: rgba(255,255,255,.65); line-height: 1; }
.store-btn-name     { font-size: 13px; font-weight: 700; line-height: 1.4; }

/* Phones hero */
.hero-phones {
  flex: 1;
  display: flex; align-items: flex-end; justify-content: flex-end;
  position: relative; z-index: 3;
  padding-right: 40px;
}

.hero-phone { position: relative; flex-shrink: 0; }

/* Cadre physique commun */
.phone-frame {
  width: 240px;
  background: #111;
  border-radius: 50px;
  padding: 13px;
  box-shadow:
    0 50px 100px rgba(0,0,0,.55),
    0 0 0 1.5px rgba(255,255,255,.07),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* Écran */
.phone-screen {
  background: #f4f6f8;
  border-radius: 38px;
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 470px;
}

/* Dynamic Island */
.phone-notch {
  width: 100px; height: 28px;
  background: #111; border-radius: 20px;
  margin: 8px auto 2px;
  flex-shrink: 0; align-self: center; z-index: 10;
}

/* Phone arrière – Reporting */
.hero-phone--back {
  transform: rotate(8deg) translate(36px, 4px);
  z-index: 1;
}
.hero-phone--back .phone-frame  { width: 218px; box-shadow: 0 30px 60px rgba(0,0,0,.35), 0 0 0 1.5px rgba(255,255,255,.06); }
.hero-phone--back .phone-screen { height: 435px; background: #f0f2f5; }

/* Phone avant – Wallet */
.hero-phone--front { transform: rotate(-3deg); z-index: 2; }


/* ── Écran Reporting ─────────────────────────────────────── */
.ps-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 3px 12px 2px; background: #f4f6f8;
  font-size: 8px; font-weight: 700; color: #222; flex-shrink: 0;
}
.ps-icons { font-size: 7px; letter-spacing: .5px; }

.ps-header {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; background: white; border-bottom: 1px solid #eee; flex-shrink: 0;
}
.ps-back           { font-size: 16px; color: #444; line-height: 1; }
.ps-title          { flex: 1; font-size: 11.5px; font-weight: 800; color: #111; }
.ps-header-icons   { display: flex; gap: 5px; }
.ps-icon-btn       { width: 24px; height: 24px; border-radius: 7px; background: #f0f4f8; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #555; }
.ps-icon-filter    { background: var(--blue); color: white; }

.ps-search-bar {
  margin: 8px 12px 0; background: white; border-radius: 9px;
  padding: 7px 10px; font-size: 9.5px; color: #bbb;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid #e5e7eb; flex-shrink: 0;
}
.ps-search-arrow {
  width: 22px; height: 22px; background: var(--blue); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 10px; font-weight: 700; flex-shrink: 0;
}

.ps-stats-row  { display: flex; gap: 7px; padding: 8px 12px; flex-shrink: 0; }
.ps-stat-card  { flex: 1; background: white; border-radius: 10px; padding: 8px 9px; box-shadow: 0 1px 5px rgba(0,0,0,.07); }
.ps-stat-dot   { width: 8px; height: 8px; border-radius: 50%; margin-bottom: 3px; }
.ps-dot-orange { background: #F97316; }
.ps-dot-green  { background: #22C55E; }
.ps-stat-label { font-size: 7.5px; color: #999; margin-bottom: 2px; line-height: 1.2; }
.ps-stat-val   { font-size: 13.5px; font-weight: 900; color: #111; line-height: 1; }
.ps-stat-sub   { font-size: 7px; color: #bbb; margin-top: 2px; }

.ps-chart-area  { flex: 1; padding: 6px 12px 10px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.ps-chart-bars  { display: flex; align-items: flex-end; gap: 7px; height: 64px; }
.ps-bar         { flex: 1; border-radius: 4px 4px 0 0; }
.ps-chart-labels { display: flex; justify-content: space-between; margin-top: 5px; font-size: 6.5px; color: #bbb; }
.ps-chart-labels span { flex: 1; text-align: center; }
.ps-legend      { font-size: 7px; color: #ccc; margin-top: 4px; display: flex; align-items: center; gap: 3px; }
.ps-legend-dot  { width: 6px; height: 6px; border-radius: 50%; background: #ccc; display: inline-block; }

.ps-bottom-nav  { display: flex; justify-content: space-around; align-items: center; padding: 8px 12px; background: white; border-top: 1px solid #eee; flex-shrink: 0; }
.ps-nav-item    { font-size: 14px; color: #ccc; }
.ps-nav-active  { color: var(--blue); }


/* ── Écran Wallet ─────────────────────────────────────────── */
.pw-top-bar   { display: flex; align-items: center; justify-content: space-between; padding: 6px 12px 7px; background: white; flex-shrink: 0; }
.pw-greeting  { display: flex; align-items: center; gap: 7px; }
.pw-flag      { font-size: 16px; line-height: 1; }
.pw-hello     { font-size: 8px; color: #aaa; line-height: 1.2; }
.pw-name      { font-size: 10.5px; font-weight: 800; color: #111; }

.pw-top-icons   { display: flex; gap: 5px; }
.pw-icon-circle {
  width: 26px; height: 26px; border-radius: 50%;
  background: #f0f4f8; display: flex; align-items: center; justify-content: center;
  font-size: 11px; position: relative; cursor: pointer;
}
.pw-notif { background: #fff8f0; }
.pw-badge {
  position: absolute; top: -2px; right: -2px;
  width: 13px; height: 13px; border-radius: 50%;
  background: #F97316; color: white; font-size: 6.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid white;
}

/* Carte solde */
.pw-card {
  margin: 6px 10px;
  background: white;
  border-radius: 16px; padding: 11px 12px;
  border: 1px solid #e8eaed; flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.pw-card-top     { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 7px; }
.pw-logo-x svg   { width: 24px; height: 24px; }
.pw-qr           { background: white; border-radius: 7px; padding: 4px; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.pw-qr-grid      { display: grid; grid-template-columns: repeat(3, 9px); gap: 1.5px; }
.pw-qr-cell      { width: 9px; height: 9px; border-radius: 1.5px; background: #dde3ea; }
.pw-qr-dark      { background: #1a1a1a; }
.pw-label        { font-size: 8.5px; color: #6b7280; margin-bottom: 4px; }
.pw-balance-row  { display: flex; align-items: center; gap: 7px; }
.pw-balance      { font-size: 18px; font-weight: 900; color: #111; letter-spacing: -.3px; }
.pw-eye          { font-size: 12px; color: #9ca3af; cursor: pointer; }

/* Boutons action */
.pw-actions  { display: flex; gap: 6px; padding: 0 10px 8px; flex-shrink: 0; }
.pw-btn {
  flex: 1; border: none; border-radius: 24px; padding: 9px 4px;
  font-size: 8.5px; font-weight: 700; cursor: pointer; color: white;
  font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 3px;
}
.pw-btn-cyan   { background: var(--blue); }
.pw-btn-orange { background: #F59E0B; }

/* Transactions */
.pw-txs-header { display: flex; justify-content: space-between; align-items: center; padding: 0 12px 6px; font-size: 9.5px; font-weight: 700; color: #111; flex-shrink: 0; }
.pw-voir-tout  { font-size: 8px; color: var(--blue); font-weight: 600; }

.pw-txs { flex: 1; overflow: hidden; padding: 0 10px 10px; display: flex; flex-direction: column; gap: 5px; }
.pw-tx  { display: flex; align-items: center; gap: 7px; background: white; border-radius: 9px; padding: 6px 8px; flex-shrink: 0; }
.pw-tx-arrow { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.pw-tx-out   { background: #fee2e2; color: #EF4444; }
.pw-tx-in    { background: #dcfce7; color: #16a34a; }
.pw-tx-info  { flex: 1; min-width: 0; }
.pw-tx-name  { font-size: 8px; color: #6b7280; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pw-tx-name strong { color: #111; font-weight: 700; }
.pw-tx-flag  { font-size: 7px; color: #bbb; margin-top: 1px; }
.tx-plus     { color: #16a34a; font-weight: 800; font-size: 9px; white-space: nowrap; flex-shrink: 0; }
.tx-minus    { color: #EF4444; font-weight: 800; font-size: 9px; white-space: nowrap; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════
   SECTION À PROPOS
   ══════════════════════════════════════════════════════ */
section#about {
  min-height: 720px;
  display: flex; align-items: center;
}

.section-intro {
  padding: 80px 60px;
  display: flex; align-items: center; gap: 80px;
  max-width: 1100px; margin: 0 auto;
  position: relative; width: 100%;
}

/* Flèches décoratives jaunes (droite) */
.deco-arrows-right {
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 5px;
}
.deco-arr { width: 0; height: 0; border-top: 16px solid transparent; border-bottom: 16px solid transparent; border-left: 26px solid var(--yellow-mid); border-radius: 2px; }
.deco-arr:nth-child(2) { opacity: .55; }
.deco-arr:nth-child(3) { opacity: .25; }

/* Placeholder image */
.intro-placeholder {
  flex: 0 0 260px; height: 250px;
  border: 2.5px solid var(--blue); border-radius: 12px;
  background: #f7f7f7;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 12px;
}

/* Texte */
.intro-text     { flex: 1; }
.intro-text h2  { font-size: 24px; font-weight: 800; line-height: 1.35; margin-bottom: 14px; color: var(--dark); }
.intro-text p   { color: var(--gray); line-height: 1.75; font-size: 13.5px; }


/* ══════════════════════════════════════════════════════
   SECTION FEATURES – fond jaune
   ══════════════════════════════════════════════════════ */
.features-section {
  min-height: 720px;
  background: var(--yellow); padding: 70px 60px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.features-section h2 { font-size: 28px; margin-bottom: 36px; color: var(--dark); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 860px; margin: 0 auto; }

.feature-card { background: white; border-radius: 14px; padding: 22px 18px; text-align: left; transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.feature-icon-wrap { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.feature-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 7px; color: var(--dark); }
.feature-card p  { font-size: 12px; color: var(--gray); line-height: 1.6; }


/* ══════════════════════════════════════════════════════
   SECTION LOCAL & INTERNATIONAL
   ══════════════════════════════════════════════════════ */
section#local {
  min-height: 720px;
  display: flex; align-items: center;
}

.local-section {
  padding: 80px 60px; display: flex; align-items: center; gap: 80px;
  max-width: 1100px; margin: 0 auto; position: relative; width: 100%;
}

/* Flèches décoratives bleues claires (gauche) */
.deco-arrows-left {
  position: absolute; left: -20px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 5px;
}
.deco-arr-blue { width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 22px solid #B2EBF2; border-radius: 2px; }
.deco-arr-blue:nth-child(2) { opacity: .5; }
.deco-arr-blue:nth-child(3) { opacity: .25; }

.local-text     { flex: 1; }
.local-text h2  { font-size: 26px; line-height: 1.25; margin-bottom: 14px; color: var(--dark); }
.local-text p   { color: var(--gray); line-height: 1.75; font-size: 13.5px; margin-bottom: 10px; }

.local-placeholder {
  flex: 0 0 280px; height: 260px; border-radius: 12px;
  background: var(--gray-light); border: 1.5px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 12px;
}


/* ══════════════════════════════════════════════════════
   SECTION SYCAPAY – fond photo simulé + phone blanc centré
   ══════════════════════════════════════════════════════ */
.sycapay-section {
  min-height: 720px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
}

/* Fond CSS simulant un bureau avec documents */
.sycapay-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 52% 38%, #c8a87a 0%, #a07a50 30%, #6b4e30 60%, #3a2a18 100%),
    #2a1a0e;
}
.sycapay-bg::before {
  content: ''; position: absolute;
  top: 28%; left: 8%; width: 38%; height: 28%;
  background: rgba(255,248,230,.13); border-radius: 3px;
  transform: rotate(-4deg); box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.sycapay-bg::after {
  content: ''; position: absolute;
  top: 35%; right: 10%; width: 30%; height: 22%;
  background: rgba(255,240,200,.10); border-radius: 3px;
  transform: rotate(3deg); box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* Vignette sombre sur les bords */
.sycapay-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, transparent 30%, rgba(0,0,0,.45) 100%);
}

/* Overlay bleu translucide */
.sycapay-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(0,130,165,.54);
}

/* Phone blanc centré */
.syca-phone-wrap {
  position: absolute; top: 44px; left: 50%; transform: translateX(-50%); z-index: 4;
}
.syca-phone-frame {
  width: 256px; background: #f0f0f0; border-radius: 46px; padding: 11px;
  box-shadow: 0 100px 220px rgba(0,0,0,.75), 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.7);
}
.syca-phone-screen {
  background: #f5f7fa; border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column; height: 510px;
}

.syca-notch { width: 84px; height: 20px; background: #d8d8d8; border-radius: 0 0 14px 14px; margin: 0 auto; flex-shrink: 0; }

.syca-status-bar { display: flex; justify-content: space-between; padding: 3px 12px 2px; background: #f5f7fa; font-size: 8px; font-weight: 700; color: #333; flex-shrink: 0; }
.syca-status-icons { font-size: 7px; }

.syca-topbar  { display: flex; align-items: center; justify-content: space-between; padding: 6px 11px; background: white; flex-shrink: 0; }
.syca-greeting { display: flex; align-items: center; gap: 6px; }
.syca-flag    { font-size: 14px; }
.syca-hello   { font-size: 7.5px; color: #aaa; }
.syca-name    { font-size: 10px; font-weight: 800; color: #111; }
.syca-icons   { display: flex; gap: 4px; }
.syca-icon-btn { width: 24px; height: 24px; border-radius: 50%; background: #f0f4f8; display: flex; align-items: center; justify-content: center; font-size: 10px; position: relative; }
.syca-notif-btn { background: #fff8f0; }
.syca-badge { position: absolute; top: -2px; right: -2px; width: 12px; height: 12px; border-radius: 50%; background: #F97316; color: white; font-size: 6px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 1.5px solid white; }

.syca-card { margin: 5px 9px; background: linear-gradient(145deg, #ddf0f5, #c5e8f2); border-radius: 14px; padding: 10px 11px; border: 1px solid rgba(0,188,212,.18); flex-shrink: 0; }
.syca-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.syca-qr { background: white; border-radius: 6px; padding: 3px; }
.syca-qr-grid { display: grid; grid-template-columns: repeat(3, 9px); gap: 1.5px; }
.syca-qr-c { width: 9px; height: 9px; border-radius: 1.5px; background: #dde3ea; }
.syca-qr-d { background: #1a1a1a; }
.syca-card-lbl { font-size: 8px; color: #6b7280; margin-bottom: 3px; }
.syca-card-bal { font-size: 17px; font-weight: 900; color: #111; display: flex; align-items: center; gap: 6px; }
.syca-eye { font-size: 11px; color: #9ca3af; }

.syca-actions { display: flex; gap: 5px; padding: 0 9px 7px; flex-shrink: 0; }
.syca-btn { flex: 1; border: none; border-radius: 8px; padding: 7px 3px; font-size: 8px; font-weight: 700; color: white; cursor: pointer; font-family: inherit; }
.syca-btn-c { background: var(--blue); }
.syca-btn-o { background: #F59E0B; }

.syca-tx-header { display: flex; justify-content: space-between; align-items: center; padding: 0 11px 5px; font-size: 9px; font-weight: 700; color: #111; flex-shrink: 0; }
.syca-voir { font-size: 7.5px; color: var(--blue); font-weight: 600; }
.syca-txs { flex: 1; overflow: hidden; padding: 0 9px; display: flex; flex-direction: column; gap: 4px; }
.syca-tx { display: flex; align-items: center; gap: 6px; background: white; border-radius: 8px; padding: 5px 7px; flex-shrink: 0; }
.syca-tx-dot { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.syca-tx-out { background: #fee2e2; color: #EF4444; }
.syca-tx-in  { background: #dcfce7; color: #16a34a; }
.syca-tx-info { flex: 1; min-width: 0; }
.syca-tx-label { font-size: 7.5px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.syca-tx-label strong { color: #111; }
.syca-tx-date { font-size: 6.5px; color: #bbb; margin-top: 1px; }
.syca-tx-pos { color: #16a34a; font-weight: 800; font-size: 8px; white-space: nowrap; flex-shrink: 0; }
.syca-tx-neg { color: #EF4444; font-weight: 800; font-size: 8px; white-space: nowrap; flex-shrink: 0; }

.syca-bottom-nav { display: flex; justify-content: space-around; align-items: center; padding: 7px 8px; background: white; border-top: 1px solid #f0f0f0; flex-shrink: 0; }
.syca-nav-item { text-align: center; font-size: 6px; color: #bbb; cursor: pointer; }
.syca-nav-icon { font-size: 14px; margin-bottom: 2px; }
.syca-nav-act  { color: var(--blue); }

/* Texte bas-gauche */
.syca-text { position: relative; z-index: 4; padding: 40px 80px 56px; max-width: 640px; align-self: flex-start; }
.syca-text h2 { font-size: 32px; color: white; margin-bottom: 14px; line-height: 1.25; }
.syca-text p  { color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.75; margin-bottom: 10px; }


/* ══════════════════════════════════════════════════════
   SECTION PARTENAIRES
   ══════════════════════════════════════════════════════ */
.partners-section {
  min-height: 720px;
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.partners-section h2 { font-size: 28px; margin-bottom: 56px; color: var(--dark); }

/* Groupe par pays */
.partner-country { width: 100%; max-width: 1000px; margin-bottom: 48px; }
.partner-country:last-child { margin-bottom: 0; }
.partner-country-name {
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--gray); letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.partner-country-name::before,
.partner-country-name::after {
  content: ''; flex: 1; max-width: 100px;
  height: 1px; background: var(--gray-border);
}

/* Grille des logos */
.partner-logos-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px;
}

.partner-logo-item {
  display: flex; align-items: center; justify-content: center;
  width: 100px; height: 60px;
  background: white; border-radius: 12px;
  border: 1.5px solid var(--gray-border);
  padding: 8px 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.partner-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  border-color: var(--blue);
}
.partner-logo-item img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  display: block;
}


/* ══════════════════════════════════════════════════════
   SECTION DOWNLOAD – fond jaune + card cyan + phone droit
   ══════════════════════════════════════════════════════ */
.dl-wrap {
  min-height: 720px;
  background: var(--yellow);
  display: flex; align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: visible; /* le phone dépasse verticalement */
}

/* Card cyan */
.dl-card {
  flex: 1;
  min-height: 480px;
  background: var(--blue);
  border-radius: 28px;
  padding: 64px 60px;
  display: flex; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}

/* Formes géométriques fond card */
.dl-card-geo { position: absolute; }
.dl-geo-1    { top: 0; right: 0; bottom: 0; width: 52%; background: rgba(0,160,195,.22); clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%); }
.dl-geo-2    { top: 0; right: 0; bottom: 0; width: 38%; background: rgba(0,175,210,.18); clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%); }

/* Texte card */
.dl-card-text { flex: 1; z-index: 2; max-width: 520px; }
.dl-card-text h2 { font-size: 38px; color: white; line-height: 1.18; margin-bottom: 18px; }
.dl-card-text p  { color: rgba(255,255,255,.90); font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.dl-store-row    { display: flex; gap: 12px; }

/* Chevrons verts */
.dl-chevrons { display: flex; align-items: center; z-index: 2; flex-shrink: 0; margin-right: -16px; }
.dl-chev     { width: 88px; height: 220px; background: #8DC63F; clip-path: polygon(0 0, 58% 0, 100% 50%, 58% 100%, 0 100%, 42% 50%); }
.dl-chev-2   { margin-left: -28px; opacity: .58; }

/* Colonne phone – desktop : le phone déborde au-dessus et en dessous de la card */
.dl-phone-col {
  flex: 0 0 300px;
  position: relative;
  /* overflow visible pour que le phone dépasse la card */
}
.dl-phone-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}

/* Cadre téléphone (Dynamic Island) */
.dl-phone-frame {
  width: 252px; background: #111; border-radius: 50px; padding: 0 12px 14px;
  box-shadow: 0 60px 120px rgba(0,0,0,.60), 0 20px 50px rgba(0,0,0,.40), 0 0 0 1.5px rgba(255,255,255,.07), inset 0 1px 0 rgba(255,255,255,.05);
}
.dl-island { width: 108px; height: 30px; background: #111; border-radius: 20px; margin: 12px auto 0; flex-shrink: 0; z-index: 10; }

.dl-phone-screen { background: #f5f7fa; border-radius: 38px; overflow: hidden; display: flex; flex-direction: column; height: 530px; }

.dl-status   { display: flex; justify-content: space-between; align-items: center; padding: 3px 12px 1px; background: #f5f7fa; font-size: 8px; font-weight: 700; color: #222; flex-shrink: 0; }
.dl-status-r { font-size: 7px; }

.dl-topbar   { display: flex; align-items: center; justify-content: space-between; padding: 6px 11px; background: white; flex-shrink: 0; }
.dl-greeting { display: flex; align-items: center; gap: 6px; }
.dl-flag     { font-size: 14px; }
.dl-hello    { font-size: 7.5px; color: #aaa; line-height: 1.2; }
.dl-uname    { font-size: 10px; font-weight: 800; color: #111; }
.dl-icons    { display: flex; gap: 4px; }
.dl-icon-c   { width: 24px; height: 24px; border-radius: 50%; background: #f0f4f8; display: flex; align-items: center; justify-content: center; font-size: 10px; position: relative; }
.dl-notif-c  { background: #fff8f0; }
.dl-badge    { position: absolute; top: -2px; right: -2px; width: 12px; height: 12px; border-radius: 50%; background: #F97316; color: white; font-size: 6px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 1.5px solid white; }

.dl-bal-card { margin: 5px 9px; background: linear-gradient(145deg, #ddf0f5, #c5e8f2); border-radius: 14px; padding: 10px 11px; border: 1px solid rgba(0,188,212,.18); flex-shrink: 0; }
.dl-bc-top   { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 5px; }
.dl-qr-mini  { background: white; border-radius: 6px; padding: 3px; }
.dl-qr-g     { display: grid; grid-template-columns: repeat(3, 9px); gap: 1.5px; }
.dl-qr-c     { width: 9px; height: 9px; border-radius: 1.5px; background: #dde3ea; }
.dl-qr-d     { background: #1a1a1a; }
.dl-bc-lbl   { font-size: 8px; color: #6b7280; margin-bottom: 3px; }
.dl-bc-amt   { font-size: 17px; font-weight: 900; color: #111; display: flex; align-items: center; gap: 5px; }
.dl-eye      { font-size: 10px; color: #9ca3af; }

.dl-btns  { display: flex; gap: 5px; padding: 0 9px 7px; flex-shrink: 0; }
.dl-btn   { flex: 1; border: none; border-radius: 8px; padding: 7px 3px; font-size: 8px; font-weight: 700; color: white; cursor: pointer; font-family: inherit; }
.dl-btn-c { background: var(--blue); }
.dl-btn-o { background: #F59E0B; }

.dl-tx-hdr { display: flex; justify-content: space-between; align-items: center; padding: 0 11px 5px; font-size: 9px; font-weight: 700; color: #111; flex-shrink: 0; }
.dl-voir   { font-size: 7.5px; color: var(--blue); font-weight: 600; }
.dl-txs { flex: 1; overflow: hidden; padding: 0 9px; display: flex; flex-direction: column; gap: 4px; }
.dl-tx  { display: flex; align-items: center; gap: 6px; background: white; border-radius: 8px; padding: 5px 7px; flex-shrink: 0; }
.dl-ta  { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.dl-ta-o { background: #fee2e2; color: #EF4444; }
.dl-ta-i { background: #dcfce7; color: #16a34a; }
.dl-ti   { flex: 1; min-width: 0; }
.dl-tn   { font-size: 7.5px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dl-tn strong { color: #111; }
.dl-td   { font-size: 6.5px; color: #bbb; margin-top: 1px; }
.dl-pos  { color: #16a34a; font-weight: 800; font-size: 8px; white-space: nowrap; flex-shrink: 0; }
.dl-neg  { color: #EF4444; font-weight: 800; font-size: 8px; white-space: nowrap; flex-shrink: 0; }

.dl-bnav { display: flex; justify-content: space-around; align-items: center; padding: 7px 8px; background: white; border-top: 1px solid #f0f0f0; flex-shrink: 0; margin-top: auto; }
.dl-ni   { text-align: center; font-size: 6px; color: #bbb; cursor: pointer; line-height: 1.4; }
.dl-ni div:first-child { font-size: 14px; }
.dl-ni-act { color: var(--blue); }


/* ══════════════════════════════════════════════════════
   SECTION POINTS TAKTAK – fond bleu avec motif + pin
   ══════════════════════════════════════════════════════ */
.points-section {
  min-height: 720px;
  background-color: var(--blue);
  background-image: radial-gradient(rgba(255,255,255,.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 60px;
}

.pts-inner { display: flex; align-items: center; gap: 52px; max-width: 1000px; width: 100%; }

/* Icône composée : pin jaune + cercle blanc */
.pts-icon-wrap  { position: relative; width: 200px; height: 220px; flex-shrink: 0; }
.pts-pin-svg    { position: absolute; bottom: 0; left: 0; width: 136px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.20)); }
.pts-logo-circle {
  position: absolute; top: 0; right: 0;
  width: 118px; height: 118px; border-radius: 50%;
  background: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.22); z-index: 2;
}

/* Texte */
.pts-text    { flex: 1; text-align: center; }
.pts-text h2 { font-size: 42px; color: white; line-height: 1.15; margin-bottom: 14px; }
.pts-text p  { color: rgba(255,255,255,.90); font-size: 16px; line-height: 1.75; }


/* ══════════════════════════════════════════════════════
   SECTION AGENT – fond blanc, formulaire épuré
   ══════════════════════════════════════════════════════ */
section#agent {
  min-height: 720px;
  background: white;
  display: flex; align-items: center;
}

.agent-section {
  padding: 80px 100px;
  display: flex; align-items: center; gap: 100px;
  max-width: 1300px; margin: 0 auto; width: 100%;
}

/* Texte gauche */
.agent-text     { flex: 1; }
.agent-text h2  { font-size: 56px; color: #111; line-height: 1.08; margin-bottom: 24px; }
.agent-text > p { font-size: 16px; color: #444; line-height: 1.75; max-width: 440px; }

/* Formulaire droit */
.agent-form { flex: 0 0 520px; }

/* Champ avec placeholder custom coloré */
.agf-group { position: relative; margin-bottom: 16px; }
.agf-input {
  width: 100%; height: 62px;
  border: 1.5px solid #d1d5db; border-radius: 8px;
  padding: 0 18px; font-size: 15px; font-family: inherit;
  color: #111; background: white; outline: none;
  transition: border-color .2s;
}
.agf-input:focus { border-color: var(--blue); }

/* Label flottant (placeholder coloré) */
.agf-lbl { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #b0b0b0; font-size: 15px; pointer-events: none; user-select: none; transition: opacity .15s; }
.agf-star { color: #EF4444; font-weight: 700; }
.agf-input:not(:placeholder-shown) + .agf-lbl,
.agf-input:focus + .agf-lbl { opacity: 0; }

/* Bouton submit */
.agf-submit {
  width: 100%; height: 62px; margin-top: 4px;
  background: var(--blue); color: white; border: none; border-radius: 8px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  letter-spacing: 2px; cursor: pointer; transition: background .2s;
}
.agf-submit:hover    { background: var(--blue-dark); }
.agf-submit:disabled { opacity: .65; cursor: not-allowed; }

/* Alertes */
.alert         { padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.alert-success { background: #D1FAE5; color: #065F46; }
.alert-error   { background: #FEE2E2; color: #991B1B; }
.field-error   { font-size: 11px; color: #EF4444; margin-top: 3px; display: block; }


/* ══════════════════════════════════════════════════════
   FOOTER – 2 lignes : logo / nav + contacts
   ══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--blue);
  padding: 28px 60px 24px;
  display: flex; flex-direction: column; gap: 14px;
}

/* Ligne 1 : logo footer horizontal */
.ft-logo-row { display: flex; align-items: center; }
.ft-logo     { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.ft-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.ft-logo-text {
  font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900;
  color: white; letter-spacing: -.3px; line-height: 1;
}
.ft-logo:hover .ft-logo-text { opacity: .85; }

/* Ligne 2 : nav + contacts */
.ft-nav-row  { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.20); padding-top: 16px; }
.ft-nav      { display: flex; align-items: center; gap: 32px; }
.ft-link     { color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.ft-link:hover { color: white; }
.ft-link-active { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px; }

.ft-contacts     { display: flex; align-items: center; gap: 36px; }
.ft-contact-item { display: flex; align-items: center; gap: 12px; }
.ft-contact-icon { flex-shrink: 0; }
.ft-contact-label { font-size: 13px; font-weight: 700; color: white; line-height: 1.3; }
.ft-contact-val   { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.3; }

/* Barre de copyright */
.footer-bottom { background: #0097B2; padding: 12px 60px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.65); }
.footer-copy-links   { display: flex; gap: 20px; }
.footer-copy-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 12px; transition: color .2s; }
.footer-copy-links a:hover { color: white; }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════

   Breakpoints :
     ≤ 1100px  – tablette large / petits desktops
     ≤  900px  – tablette portrait / phablet
     ≤  600px  – mobile
     ≤  400px  – petit mobile
   ══════════════════════════════════════════════════════ */

/* ── Tablette large (≤ 1100px) ──────────────────────── */
@media (max-width: 1100px) {

  /* Download : réduire les marges desktop */
  .dl-wrap  { padding: 60px 40px; }
  .dl-card  { padding: 52px 44px; }
  .dl-phone-frame { width: 230px; }
  .dl-phone-screen { height: 490px; }
  .dl-phone-col { flex: 0 0 260px; }

  /* Agent */
  .agent-section { padding: 80px 60px; gap: 60px; }
  .agent-form    { flex: 0 0 460px; }
}

/* ── Tablette portrait / phablet (≤ 900px) ────────────── */
@media (max-width: 900px) {

  /* ── Navbar ── */
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column;
    background: var(--blue); position: absolute; top: 64px; left: 0; right: 0;
    padding: 16px 20px; gap: 12px;
    border-top: 1px solid rgba(255,255,255,.20);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-right .nav-cta { display: none; }

  /* ── min-height annulé sur mobile ── */
  section#about, section#local, section#agent,
  .features-section, .sycapay-section, .partners-section,
  .dl-wrap, .points-section { min-height: auto; }

  /* ── Hero ── */
  .hero {
    flex-direction: column; align-items: flex-start;
    padding: 56px 24px 0; min-height: auto;
  }
  .hero h1 { font-size: 32px; }
  .hero-content { flex: none; padding-bottom: 32px; }
  .hero-phones  { width: 100%; justify-content: center; padding-right: 0; }
  .hero-phone--back { width: 150px; transform: rotate(5deg) translateX(18px); }
  .phone-frame  { width: 200px; }
  .phone-screen { height: 390px; }

  /* ── À propos & Local ── */
  .section-intro, .local-section { flex-direction: column; padding: 48px 24px; gap: 32px; }
  .intro-placeholder, .local-placeholder { flex: none; width: 100%; height: 200px; }
  .deco-arrows-right, .deco-arrows-left { display: none; }

  /* ── Features ── */
  .features-section { padding: 52px 24px; }
  .features-grid    { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* ── SycaPay ── */
  .sycapay-section  { min-height: 500px; }
  .syca-phone-wrap  { position: static; transform: none; margin: 32px auto 0; }
  .syca-phone-frame { width: 220px; }
  .syca-phone-screen { height: 440px; }
  .syca-text { padding: 28px 24px 44px; }
  .syca-text h2 { font-size: 24px; }

  /* ── Partenaires ── */
  .partners-section { padding: 52px 20px; }
  .partner-logos-row { gap: 10px; }
  .partner-logo-item { width: 80px; height: 50px; padding: 6px 8px; }

  /* ── Download ── */
  .dl-wrap {
    flex-direction: column;
    padding: 32px 20px 48px;
    gap: 0;
    align-items: stretch;
  }
  .dl-card {
    border-radius: 20px 20px 0 0; /* angles bas plats : le phone est juste en dessous */
    padding: 44px 28px 48px;
    min-height: auto;
    gap: 24px;
  }
  .dl-card-text h2 { font-size: 28px; }
  .dl-card-text p  { font-size: 14px; }
  .dl-chevrons     { display: none; }
  .dl-store-row    { flex-wrap: wrap; gap: 10px; }

  /* Phone centré sous la card, même fond jaune */
  .dl-phone-col {
    flex: none; width: 100%;
    position: static; height: auto;
    display: flex; justify-content: center;
    background: var(--yellow);
    padding: 0 0 32px;
    border-radius: 0 0 20px 20px;
  }
  .dl-phone-wrap {
    position: static;
    transform: none;
    margin: 0;
  }
  .dl-phone-frame  { width: 230px; }
  .dl-phone-screen { height: 460px; }

  /* ── Points TakTak ── */
  .points-section  { padding: 56px 24px; }
  .pts-inner       { flex-direction: column; gap: 28px; text-align: center; }
  .pts-icon-wrap   { width: 180px; height: 200px; margin: 0 auto; }
  .pts-pin-svg     { width: 120px; }
  .pts-logo-circle { width: 106px; height: 106px; }
  .pts-text h2     { font-size: 30px; }

  /* ── Agent ── */
  .agent-section { flex-direction: column; padding: 52px 24px; gap: 40px; }
  .agent-text h2 { font-size: 40px; }
  .agent-text > p { max-width: 100%; }
  .agent-form    { flex: none; width: 100%; }

  /* ── Footer ── */
  .site-footer   { padding: 28px 24px 20px; }
  .ft-nav-row    { flex-direction: column; gap: 20px; align-items: flex-start; }
  .ft-nav        { flex-wrap: wrap; gap: 14px; }
  .ft-contacts   { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 12px 20px; text-align: center; }
  .footer-copy-links { justify-content: center; }
}

/* ── Mobile (≤ 600px) ──────────────────────────────── */
@media (max-width: 600px) {

  /* Navbar */
  .nav-right { gap: 8px; }
  .lang-btn  { padding: 5px 8px; font-size: 12px; }

  /* Hero */
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 14px; }
  .phone-frame  { width: 175px; }
  .phone-screen { height: 340px; }
  .hero-phone--back .phone-frame { width: 160px; }
  .hero-phone--back .phone-screen { height: 310px; }

  /* Features : 1 colonne */
  .features-grid { grid-template-columns: 1fr; }

  /* Download */
  .dl-card       { padding: 36px 20px 40px; }
  .dl-card-text h2 { font-size: 24px; }
  .dl-phone-frame  { width: 210px; }
  .dl-phone-screen { height: 420px; }
  .dl-store-row  { flex-direction: column; }
  .store-btn     { justify-content: center; }

  /* Agent */
  .agent-text h2 { font-size: 32px; }
  .agf-input     { height: 54px; font-size: 14px; }
  .agf-submit    { height: 54px; font-size: 14px; }

  /* Points */
  .pts-text h2 { font-size: 26px; }

  /* Footer */
  .ft-nav { gap: 10px; }
  .ft-link { font-size: 13px; }
}

/* ── Petit mobile (≤ 400px) ────────────────────────── */
@media (max-width: 400px) {
  .hero h1    { font-size: 22px; }
  .hero-phones { min-height: 260px; }
  .phone-frame  { width: 155px; }
  .phone-screen { height: 300px; }

  .dl-phone-frame  { width: 190px; }
  .dl-phone-screen { height: 380px; }

  .agent-text h2 { font-size: 28px; }
  .pts-text h2   { font-size: 22px; }
}
