*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0d1b2e;
    --navy-mid: #132236;
    --navy-light: #1a2e47;
    --blue: #1E7FE1;
    --blue-light: #4fa3f7;
    --blue-pale: #e8f3fd;
    --white: #ffffff;
    --off-white: #f7f9fb;
    --text-muted: #8a9bb0;
    --text-body: #2d3e52;
    --radius-pill: 100px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    transition: background 0.3s, backdrop-filter 0.3s;
  }
  nav.scrolled {
    background: rgba(13,27,46,0.92);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--blue);
  }
  .nav-logo span {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: white; }
  .nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    appearance: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* ── HERO ── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/auth-background.webp');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(13,27,46,0.55) 0%,
      rgba(13,27,46,0.45) 50%,
      rgba(13,27,46,0.75) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
  }
  .city-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
  }
  .city-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: #4fc87a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(79,200,122,0.3);
  }
  .hero-title {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .hero-title em {
    font-style: normal;
    color: var(--blue-light);
  }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin-bottom: 36px;
    font-weight: 400;
  }
  .hero-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
  }
  .pill-icon { font-size: 15px; }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    width: 100%;
    max-width: 320px;
  }
  .btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,127,225,0.4);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    max-width: 320px;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); }
  .store-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
  }
  .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .store-btn:hover { background: rgba(255,255,255,0.16); }
  .store-btn svg { width: 18px; height: 18px; fill: white; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--navy);
    padding: 28px 48px;
    display: flex;
    justify-content: center;
    gap: 0;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon {
    width: 40px; height: 40px;
    background: rgba(30,127,225,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .trust-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
  }
  .trust-text span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* ── SECTIONS SHARED ── */
  section { padding: 96px 48px; }
  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .section-title em { font-style: normal; color: var(--blue); }
  .section-sub {
    font-size: 16px;
    color: #6b7e94;
    line-height: 1.7;
    max-width: 520px;
  }
  .container { max-width: 1120px; margin: 0 auto; }

  /* ── CLIENTS ── */
  #clients { background: var(--off-white); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
  .step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13,27,46,0.1);
  }
  .step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(30,127,225,0.08);
    line-height: 1;
    position: absolute;
    top: 20px; right: 24px;
  }
  .step-emoji {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
  }
  .step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .step-card p {
    font-size: 14px;
    color: #6b7e94;
    line-height: 1.65;
  }
  .clients-cta {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 1.5px solid rgba(13,27,46,0.2);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline:hover { border-color: var(--navy); background: rgba(13,27,46,0.04); }

  /* ── WHY US ── */
  #why { background: white; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .why-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .why-card:hover {
    border-color: rgba(30,127,225,0.2);
    box-shadow: 0 4px 20px rgba(30,127,225,0.08);
  }
  .why-icon-wrap {
    width: 52px; height: 52px;
    background: var(--blue-pale);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  .why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .why-card p {
    font-size: 14px;
    color: #6b7e94;
    line-height: 1.65;
  }

  /* ── RESTAURANTS ── */
  #restaurants { background: var(--navy); overflow: hidden; position: relative; }
  #restaurants::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(30,127,225,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .restaurants-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .restaurants-text .section-title { color: white; }
  .restaurants-text .section-sub { color: rgba(255,255,255,0.6); }
  .benefits-list {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
  }
  .check-dot {
    width: 22px; height: 22px;
    background: rgba(30,127,225,0.2);
    border: 1px solid rgba(30,127,225,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: var(--blue-light);
  }
  .restaurants-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .restaurants-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
  }
  .restaurants-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }
  .btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .btn-blue:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(30,127,225,0.35);
  }

  /* ── LIVREURS ── */
  #livreurs { background: var(--off-white); }
  .livreurs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .livreur-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .livreur-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .livreur-step:last-child { border-bottom: none; }
  .livreur-step-num {
    width: 36px; height: 36px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .livreur-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .livreur-step p {
    font-size: 14px;
    color: #6b7e94;
    line-height: 1.6;
  }
  .livreur-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }
  .perk-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
  }
  .perk-pill span { font-size: 20px; }

  /* ── TESTIMONIALS ── */
  #temoignages { background: white; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .testi-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .testi-card:hover { border-color: rgba(30,127,225,0.2); }
  .testi-stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; }
  .testi-quote {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.07);
  }
  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0;
  }
  .testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
  }
  .testi-author span {
    font-size: 12px;
    color: var(--text-muted);
  }
  .testi-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
  }
  .tag-client { background: var(--blue-pale); color: var(--blue); }
  .tag-resto { background: #e8f5e9; color: #2e7d32; }
  .tag-livreur { background: #fff3e0; color: #e65100; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 56px 48px 32px;
  }
  .footer-inner {
    max-width: 1120px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 260px;
  }
  .footer-col h3 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-logo-text {
    font-size: 17px;
    font-weight: 800;
    color: white;
    margin-left: 10px;
  }
  .footer-brand-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .footer-brand-row img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--blue);
  }

  @media (max-width: 1100px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 13px; }
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 68px; left: 0; right: 0;
      background: rgba(13,27,46,0.97);
      backdrop-filter: blur(12px);
      padding: 20px 24px;
      gap: 20px;
    }
    .hamburger { display: flex; }
    section { padding: 64px 20px; }
    .trust-bar { padding: 20px; flex-direction: column; gap: 16px; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 16px; }
    .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .restaurants-inner { grid-template-columns: 1fr; gap: 40px; }
    .livreurs-inner { grid-template-columns: 1fr; gap: 40px; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .livreur-perks { grid-template-columns: 1fr; }
    .store-links { flex-direction: column; align-items: center; }
    .clients-cta { flex-direction: column; align-items: flex-start; }
  }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Respect reduced-motion preferences */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-up { opacity: 1; transform: none; transition: none; }
  }


/* ── INNER PAGES ── */
.page-hero {
  min-height: auto;
  padding: 140px 24px 72px;
}
.page-hero .hero-content { max-width: 720px; }
.nav-links a[aria-current="page"] {
  color: white;
  font-weight: 700;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 56px;
}
.faq-item {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: #6b7e94;
  line-height: 1.65;
}
.page-cta {
  background: var(--navy);
  padding: 72px 48px;
  text-align: center;
}
.page-cta .section-title { color: white; }
.page-cta .section-sub {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 32px;
}
.page-cta .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-row .label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-row a {
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.page-cta .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 56px; }
  .page-cta { padding: 56px 20px; }
}
