/* ==========================================================
   TOFTAP — Global Stylesheet
   www.toftap.com | Premium NFC Business Cards
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ----------------------------------------------------------
   1. CSS VARIABLES — Design Tokens
   ---------------------------------------------------------- */
:root {
  --noir:         #0A0A0A;
  --noir2:        #111111;
  --noir3:        #141414;
  --noir4:        #1a1a1a;
  --or:           #C9A84C;
  --or-light:     #E8C97A;
  --or-dark:      #A8873C;
  --or-glow:      rgba(201, 168, 76, 0.25);
  --or-bg:        rgba(201, 168, 76, 0.08);
  --or-border:    rgba(201, 168, 76, 0.2);
  --blanc-casse:  #F5F0E8;
  --gris-clair:   #F2F2F2;
  --gris:         #999999;
  --gris-dark:    #555555;
  --blanc:        #FFFFFF;
  --success:      #4ade80;
  --error:        #ef4444;

  --font:         'Inter', sans-serif;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --transition:   all 0.3s ease;
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-gold:  0 8px 32px rgba(201, 168, 76, 0.2);

  --max-w:        1200px;
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--noir);
  color: var(--blanc-casse);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: var(--font); }

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gris); line-height: 1.8; }

.text-gold  { color: var(--or); }
.text-white { color: var(--blanc-casse); }
.text-muted { color: var(--gris); }

.text-gradient {
  background: linear-gradient(135deg, var(--or), var(--or-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}

/* ----------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

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

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 16px; }

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--or);
  color: var(--noir);
}
.btn-primary:hover {
  background: var(--or-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--or);
  border: 1.5px solid var(--or);
}
.btn-secondary:hover {
  background: var(--or);
  color: var(--noir);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--blanc-casse);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--or);
  color: var(--or);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ----------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--or-border);
  padding: 12px 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--or);
  text-decoration: none;
  letter-spacing: 3px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--or); }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blanc-casse);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--blanc-casse);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--or); }
.mobile-menu .btn { font-size: 1rem; padding: 16px 40px; margin-top: 12px; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--blanc-casse);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-close:hover { color: var(--or); }

/* ----------------------------------------------------------
   7. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--or-border);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--or);
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--or); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gris);
  margin-bottom: 10px;
}
.footer-contact-item span:first-child { color: var(--or); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gris-dark); }
.footer-bottom a { color: var(--gris); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--or); }

/* Social links */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--or-bg);
  border: 1px solid var(--or-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}

/* ----------------------------------------------------------
   8. TICKER / BANDEAU ANIMÉ
   ---------------------------------------------------------- */
.ticker-section {
  background: var(--or);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--noir);
  white-space: nowrap;
  padding: 0 40px;
}
.ticker-item::after {
  content: '◆';
  margin-left: 40px;
  opacity: 0.5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------
   9. SCROLL ANIMATIONS
   ---------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.slide-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------
   10. FLOATING BUTTONS
   ---------------------------------------------------------- */
/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 88px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--or);
  color: var(--noir);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--or-light); transform: translateY(-3px); }

/* ----------------------------------------------------------
   11. COOKIE BANNER
   ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0d0d0d;
  border-top: 1px solid var(--or-border);
  padding: 20px 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  font-size: 0.85rem;
  flex: 1;
  min-width: 240px;
  color: var(--gris);
}
.cookie-banner p a { color: var(--or); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept {
  background: var(--or); color: var(--noir);
  border: none; padding: 10px 22px;
  border-radius: 6px; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.cookie-accept:hover { background: var(--or-light); }
.cookie-refuse {
  background: transparent; color: var(--gris);
  border: 1px solid #333; padding: 10px 22px;
  border-radius: 6px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.cookie-refuse:hover { border-color: var(--gris); color: var(--blanc-casse); }
.cookie-settings {
  background: transparent; color: var(--or);
  border: 1px solid var(--or-border); padding: 10px 22px;
  border-radius: 6px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.cookie-settings:hover { background: var(--or-bg); }

/* ----------------------------------------------------------
   12. CARDS — Generic
   ---------------------------------------------------------- */
.card {
  background: var(--noir3);
  border: 1px solid var(--or-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--or);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--or-bg);
  border: 1px solid var(--or-border);
  color: var(--or);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-success {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
  color: var(--success);
}

/* ----------------------------------------------------------
   13. PRODUCT CARDS
   ---------------------------------------------------------- */
.product-card {
  background: var(--noir3);
  border: 1px solid var(--or-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--or);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.18);
}
.product-card.featured {
  border-color: var(--or);
  position: relative;
}
.product-card.featured::before {
  content: 'Éco-Responsable';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--success);
  color: #0A0A0A;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-img {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: var(--noir4);
  font-size: 0.8rem;
  color: var(--gris-dark);
  font-style: italic;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.product-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name { font-size: 1.2rem; margin-bottom: 8px; }

.product-desc {
  font-size: 0.88rem;
  color: var(--gris);
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--or);
  margin: 8px 0 4px;
  line-height: 1;
}
.product-price-note {
  font-size: 0.8rem;
  color: var(--gris-dark);
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gris);
  margin-bottom: 10px;
}
.product-features li::before {
  content: '✓';
  color: var(--or);
  font-weight: 700;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   14. FAQ ACCORDION
   ---------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--or-border); }

.faq-item { border-bottom: 1px solid var(--or-border); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  color: var(--blanc-casse);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font);
  transition: color 0.3s;
  gap: 16px;
}
.faq-btn:hover { color: var(--or); }
.faq-btn .faq-icon {
  font-size: 1.4rem;
  color: var(--or);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-btn.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 22px;
}
.faq-answer-inner p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gris);
}

/* ----------------------------------------------------------
   15. PHONE MOCKUP
   ---------------------------------------------------------- */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 260px;
  background: var(--noir4);
  border-radius: 38px;
  border: 7px solid #2a2a2a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), inset 0 0 0 1px #3a3a3a;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  min-height: 520px;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1412 100%);
  padding: 40px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-profile-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or-dark), var(--or-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 12px;
  border: 2px solid var(--or);
}

.phone-name { font-size: 1.1rem; font-weight: 700; text-align: center; margin-bottom: 4px; color: var(--blanc-casse); }
.phone-title { font-size: 0.75rem; color: var(--or); text-align: center; margin-bottom: 20px; letter-spacing: 1px; }

.phone-divider { width: 100%; height: 1px; background: var(--or-border); margin-bottom: 16px; }

.phone-btn {
  width: 100%;
  background: var(--or-bg);
  border: 1px solid var(--or-border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: var(--blanc-casse);
}
.phone-btn-icon { font-size: 1rem; flex-shrink: 0; }
.phone-btn-label { font-size: 0.65rem; color: var(--or); text-transform: uppercase; letter-spacing: 1px; display: block; }
.phone-btn-value { font-size: 0.78rem; color: var(--blanc-casse); }

/* ----------------------------------------------------------
   16. COMPARISON TABLE
   ---------------------------------------------------------- */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
}
.compare-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or);
  background: var(--or-bg);
  border-bottom: 1px solid var(--or-border);
}
.compare-table td { color: var(--gris); }
.compare-table tr:hover td { background: rgba(255,255,255,0.015); }
.check-yes { color: var(--or); font-size: 1.1rem; font-weight: 700; }
.check-no  { color: var(--gris-dark); }

/* ----------------------------------------------------------
   17. STEP CARDS
   ---------------------------------------------------------- */
.step-number {
  width: 52px; height: 52px;
  background: var(--or-bg);
  border: 1px solid var(--or-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--or);
  flex-shrink: 0;
  margin-bottom: 20px;
}

.step-card {
  background: var(--noir3);
  border: 1px solid var(--or-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--or); transform: translateY(-4px); }

/* ----------------------------------------------------------
   18. TESTIMONIAL CARDS
   ---------------------------------------------------------- */
.testimonial-card {
  background: var(--noir3);
  border: 1px solid var(--or-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.stars { color: var(--or); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.93rem; line-height: 1.85; color: var(--gris); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or-dark), var(--or));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  color: var(--noir);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--blanc-casse); }
.author-role { font-size: 0.78rem; color: var(--gris); }

/* ----------------------------------------------------------
   19. FORMS
   ---------------------------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--noir4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--blanc-casse);
  font-size: 0.93rem;
  font-family: var(--font);
  transition: var(--transition);
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gris-dark); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-input.error { border-color: var(--error); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-error { display: none; font-size: 0.78rem; color: var(--error); margin-top: 6px; }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--or-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--or-bg);
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--or);
  background: rgba(201, 168, 76, 0.1);
}
.upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.upload-zone p { color: var(--gris); font-size: 0.9rem; margin-bottom: 8px; }
.upload-zone small { font-size: 0.78rem; color: var(--gris-dark); }

/* ----------------------------------------------------------
   20. PLACEHOLDERS (images / vidéos)
   ---------------------------------------------------------- */
.img-ph {
  background: var(--noir4);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gris-dark);
  font-size: 0.82rem;
  font-style: italic;
  padding: 24px;
  gap: 8px;
}
.img-ph-icon { font-size: 2rem; opacity: 0.4; }

.video-ph {
  background: var(--noir4);
  border: 2px dashed rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
  padding: 48px 32px;
  gap: 12px;
}
.video-ph-icon { font-size: 3rem; opacity: 0.4; }

/* ----------------------------------------------------------
   21. MISC / UTILITY
   ---------------------------------------------------------- */
.divider {
  width: 60px; height: 2px;
  background: var(--or);
  margin: 24px 0;
}
.divider-center { margin-left: auto; margin-right: auto; }

.highlight-box {
  background: var(--or-bg);
  border: 1px solid var(--or-border);
  border-left: 3px solid var(--or);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.highlight-box p { color: var(--blanc-casse); font-size: 0.9rem; }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }

/* Advantages grid */
.adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.adv-icon {
  width: 44px; height: 44px;
  background: var(--or-bg);
  border: 1px solid var(--or-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.adv-icon-lg {
  width: 64px; height: 64px;
  font-size: 1.8rem;
  border-radius: 16px;
}

/* Stats */
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--or);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--gris); margin-top: 4px; }

/* Legal page styles */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; color: var(--or); margin: 40px 0 16px; }
.legal-content h3 { font-size: 1.05rem; margin: 28px 0 12px; }
.legal-content p, .legal-content li { font-size: 0.93rem; color: var(--gris); line-height: 1.9; }
.legal-content ul { padding-left: 20px; margin: 12px 0; }
.legal-content li { margin-bottom: 8px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.legal-content th, .legal-content td { padding: 12px 16px; border: 1px solid rgba(255,255,255,0.07); font-size: 0.88rem; }
.legal-content th { background: var(--or-bg); color: var(--or); font-weight: 600; }
.legal-content td { color: var(--gris); }

/* Page hero (inner pages) */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--or-border);
}

/* Filter buttons */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--or-border);
  color: var(--gris);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}

/* ----------------------------------------------------------
   22. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { padding: 16px 28px; font-size: 0.95rem; }
}

/* ----------------------------------------------------------
   SECURE BADGE — sous les boutons Stripe
   ---------------------------------------------------------- */
.secure-badge {
  font-size: 0.72rem;
  color: var(--gris);
  text-align: center;
  margin-top: 8px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------
   TRUST BAND — bandeau footer
   ---------------------------------------------------------- */
.trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 32px;
  padding: 20px 0;
  border-top: 1px solid var(--or-border);
  margin-top: 32px;
  font-size: 0.78rem;
  color: var(--blanc-casse);
}
.trust-band-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.trust-band-item .ti {
  color: var(--or);
  font-size: 1rem;
}
@media (max-width: 600px) {
  .trust-band { gap: 12px 20px; font-size: 0.72rem; }
}
