/* ==========================================================================
   Tokoss — Design System
   Marketplace beauté pour l'Afrique
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Reset + Custom Properties
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  html { scroll-behavior: smooth; }
}

:root {
  /* Colors */
  --bg: #F2E4D9;
  --bg-dark: #1A1A2E;
  --card: #FFFFFF;
  --primary: #8B6952;
  --primary-dark: #6B4D3A;
  --primary-light: #CA987E;
  --primary-ghost: rgba(139, 105, 82, 0.10);
  --accent: #5B21B6;
  --terracotta: #7C4D3E;
  --text: #1A1A2E;
  --text-secondary: #4A4A4A;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --border: rgba(0, 0, 0, 0.10);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);

  /* Layout */
  --max-width: 1200px;
  --gutter: 20px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

.micro-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease-out, background-color 200ms ease, border-color 200ms ease, color 200ms ease;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
  }
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
  .btn-accent:hover {
    opacity: 0.9;
  }
}

.btn-white {
  background-color: var(--white);
  color: var(--bg-dark);
  border-color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.dark .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .dark .btn-outline:hover {
    background-color: var(--white);
    color: var(--bg-dark);
  }
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--white);
}

.section-beige {
  background-color: var(--bg);
}

.section-white {
  background-color: var(--white);
}

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

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

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background-color: var(--card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease;
}

.card:active {
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
  }
}

/* --------------------------------------------------------------------------
   Scroll Reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal.active,
.gsap-reveal {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.25s ease-out, padding 0.25s ease-out, box-shadow 0.25s ease-out;
  padding: 20px 0;
}

.nav.scrolled {
  background-color: var(--bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav.scrolled .nav__logo {
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover {
    color: var(--white);
  }
}

.nav.scrolled .nav__links a {
  color: var(--text-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .nav.scrolled .nav__links a:hover {
    color: var(--text);
  }
}

.nav__cta {
  font-size: 14px !important;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  color: var(--bg-dark) !important;
  font-weight: 600 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.nav.scrolled .nav__cta {
  background-color: var(--primary);
  color: var(--white) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav.scrolled .nav__hamburger span {
  background-color: var(--text);
}

.nav__mobile {
  position: fixed;
  inset: 0;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  line-height: 1.6;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
}

.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .footer__links a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__socials a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .footer__socials a:hover {
    color: var(--white);
  }
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 24px 0;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark) url('../images/hero-home.webp') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 46, 0.55);
  z-index: 1;
}

.hero--clientes .hero__overlay {
  background-color: rgba(139, 105, 82, 0.50);
}

.hero--prestataires .hero__overlay {
  background-color: rgba(91, 33, 182, 0.45);
}

.hero--about {
  background: var(--bg-dark) url('../images/hero-home.webp') center/cover no-repeat;
  min-height: 70vh;
}

.hero--about .hero__overlay {
  background-color: rgba(26, 26, 46, 0.65);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 var(--gutter);
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */

.trust {
  padding: 60px 0;
}

.trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust__svg {
  color: var(--primary);
  margin-bottom: 4px;
}

.trust__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.trust__suffix {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
}

.trust__icon {
  font-size: 2rem;
  color: var(--accent);
}

.trust__label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   How It Works
   -------------------------------------------------------------------------- */

.how__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--terracotta);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Categories
   -------------------------------------------------------------------------- */

.categories__card {
  display: block;
  background-color: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .categories__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
  }

  .categories__card:hover .categories__img {
    transform: scale(1.04);
  }
}

.categories__card:active {
  transform: scale(0.98);
}

.categories__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.categories__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.categories__card h3 {
  padding: 16px 16px 4px;
}

.categories__card p {
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   AI Beauty Section
   -------------------------------------------------------------------------- */

.ai {
  padding: 100px 0;
}

.ai__grid {
  align-items: center;
}

.ai__features {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}

.ai__features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.ai__features li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--primary-light);
}

.ai__screenshot {
  border-radius: 28px;
  max-width: 320px;
  margin: 0 auto;
  overflow: hidden;
  font-size: 14px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonials__name {
  font-weight: 600;
  font-size: 14px;
}

.testimonials__city {
  font-size: 13px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Dual CTA
   -------------------------------------------------------------------------- */

.dual-cta__split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 400px;
}

.dual-cta__left,
.dual-cta__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
}

.dual-cta__left {
  background: linear-gradient(135deg, var(--bg) 0%, rgba(124, 77, 62, 0.12) 100%);
}

.dual-cta__right {
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(91, 33, 182, 0.25) 100%);
  color: var(--white);
}

.dual-cta__left h2,
.dual-cta__right h2 {
  margin-bottom: 12px;
}

.dual-cta__left p,
.dual-cta__right p {
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.dual-cta__right p {
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Cities
   -------------------------------------------------------------------------- */

.cities__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cities__pill {
  padding: 10px 24px;
  background-color: var(--bg);
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.cities__soon {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Preview / Mockups
   -------------------------------------------------------------------------- */

.preview__mockups {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.preview__phone {
  width: 240px;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  transition: transform 0.3s ease;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.preview__phone::-webkit-scrollbar {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .preview__phone:hover {
    transform: translateY(-6px);
  }
}

.section-dark .preview__phone {
  border-color: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   Utility classes (extracted from inline styles)
   -------------------------------------------------------------------------- */

.mt-section { margin-top: 48px; }
.card-overflow { overflow: hidden; }

.category-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 12px;
}

.ai-face-image {
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 0 auto;
  display: block;
}

.testimonials__avatar--terra { background: #8B6952; color: white; }
.testimonials__avatar--purple { background: #5B21B6; color: white; }
.testimonials__avatar--brown { background: #7C4D3E; color: white; }

/* --------------------------------------------------------------------------
   Responsive — 1200px
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Responsive — 768px (Mobile)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  :root {
    --gutter: 16px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* Trust */
  .trust {
    padding: 40px 0;
  }

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

  .trust__item {
    flex-direction: column;
  }

  .trust__number {
    font-size: 2rem !important;
  }

  .trust__svg {
    width: 20px;
    height: 20px;
  }

  /* How it works */
  .how__number {
    width: 52px;
    height: 52px;
    font-size: 2.2rem;
  }

  /* Categories */
  .categories__card {
    text-align: left;
  }

  .categories__img {
    aspect-ratio: 16 / 9;
  }

  /* AI section */
  .ai__grid {
    gap: 32px;
  }

  .ai__features {
    font-size: 14px;
  }

  .ai__screenshot {
    max-width: 280px;
  }

  /* Dual CTA */
  .dual-cta__split {
    grid-template-columns: 1fr;
  }

  .dual-cta__left,
  .dual-cta__right {
    padding: 48px 24px;
    text-align: center;
  }

  /* Cities */
  .cities__pills {
    gap: 8px;
  }

  .cities__pill {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* Preview */
  .preview__mockups {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .preview__phone {
    width: 280px;
    max-height: 440px;
  }

  /* Testimonials */
  .testimonials__quote {
    font-size: 16px;
  }

  /* Utility overrides */
  .mt-section { margin-top: 32px; }
  .category-card-img { height: auto; aspect-ratio: 16/9; }

  /* Lookbook (clientes) */
  .lookbook__grid {
    gap: 32px;
  }

  /* Requests (prestataires) */
  .requests__grid {
    gap: 32px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   Responsive — 480px (Small mobile)
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  /* Utility overrides */
  .mt-section { margin-top: 24px; }
  .ai-face-image { max-width: 100%; border-radius: 16px; }
  .category-card-img { aspect-ratio: 3/2; }

  /* Trust as vertical stack */
  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust__number {
    font-size: 1.6rem !important;
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }

  .card {
    padding: 24px;
  }

  /* Preview phones full width */
  .preview__phone {
    width: 100%;
    max-width: 300px;
    max-height: 460px;
  }

  /* Dual CTA */
  .dual-cta__left,
  .dual-cta__right {
    padding: 40px 20px;
  }

  .dual-cta__left h2,
  .dual-cta__right h2 {
    font-size: 1.4rem;
  }

  /* Footer single column */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    margin-top: 24px;
    padding: 16px 0;
  }

  /* Features grid prestataires */
  .features__grid {
    gap: 16px;
  }

  /* Buttons */
  .btn {
    font-size: 14px;
    padding: 14px 24px;
    min-height: 44px;
  }

  /* Nav logo */
  .nav__logo {
    font-size: 20px;
  }

  /* Micro label */
  .micro-label {
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* Subcategories */
  .subcategories {
    gap: 4px;
  }

  .subcategories span {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* Grid gaps */
  .grid-2, .grid-3 {
    gap: 16px;
  }

  /* Final CTA */
  .final-cta {
    padding: 40px 0;
  }

  .final-cta .btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* --------------------------------------------------------------------------
   Clientes page
   -------------------------------------------------------------------------- */

.hero--clientes {
  background: var(--bg-dark) url('../images/hero-clientes.webp') center/cover no-repeat;
}

.advantages__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.subcategories span {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.lookbook__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lookbook__text h2 {
  margin-bottom: 16px;
}

.final-cta {
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  margin-bottom: 24px;
}

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

  .final-cta {
    padding: 60px 0;
  }

  .final-cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* --------------------------------------------------------------------------
   Prestataires page
   -------------------------------------------------------------------------- */

.hero--prestataires {
  background: var(--bg-dark) url('../images/hero-prestataires.webp') center/cover no-repeat;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.features__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.requests__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1200px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .requests__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Responsive — 375px (Ultra small mobile)
   -------------------------------------------------------------------------- */

@media (max-width: 375px) {
  h1 { font-size: clamp(2rem, 4vw, 3rem); }
  h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
  .section { padding: 40px 0; }
  .card { padding: 20px; }
  .dual-cta__left, .dual-cta__right { padding: 32px 16px; }
  .dual-cta__left h2, .dual-cta__right h2 { font-size: 1.2rem; }
  .preview__phone { width: 85%; max-width: 240px; max-height: 380px; }
}

/* --------------------------------------------------------------------------
   Cookie Banner
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  background: rgba(58, 34, 40, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cookie-content {
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p {
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 250px;
}
.cookie-content a {
  color: #CA987E;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-accept {
  background: #8B6952;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover {
  background: #6B4D3A;
}
.cookie-link {
  color: rgba(255,255,255,0.6) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .cookie-banner { padding: 12px 12px; }
  .cookie-content { flex-direction: column; gap: 10px; }
  .cookie-content p { min-width: 100%; font-size: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-accept { flex: 1; padding: 10px 16px; }
  .cookie-link { font-size: 11px; }
}
