/*
Theme Name: NovaLove 229
Theme URI: https://novalove229.com
Author: NovaLove Team
Description: Thème officiel NovaLove 229 – Des rencontres sérieuses au Bénin
Version: 1.0.0
Text Domain: novalove229
Tags: dating, benin, responsive, modern
*/

/* ==============================
   VARIABLES & RESET
============================== */
:root {
  --nova-red:    #E84C3D;
  --nova-orange: #F39C12;
  --nova-blue:   #2980B9;
  --nova-dark:   #1a1a2e;
  --nova-darker: #12122a;
  --nova-light:  #f8f9fa;
  --nova-gray:   #6c757d;
  --nova-white:  #ffffff;
  --font-main:   'Poppins', sans-serif;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 50px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --transition:  all 0.25s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ==============================
   UTILITAIRES
============================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.section-tag {
  display: inline-block;
  background: rgba(232,76,61,0.10);
  color: var(--nova-red);
  border: 1px solid rgba(232,76,61,0.25);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-title span,
.section-title .accent { color: var(--nova-red); }

.section-sub {
  font-size: 16px;
  color: var(--nova-gray);
  max-width: 520px;
  margin: 0 auto 48px;
}

/* ==============================
   BOUTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,76,61,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,76,61,0.45);
}

.btn-secondary {
  background: var(--nova-white);
  color: var(--nova-red);
  border: 2px solid var(--nova-red);
}
.btn-secondary:hover {
  background: var(--nova-red);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-sm {
  font-size: 13px;
  padding: 8px 18px;
}

.btn-lg {
  font-size: 17px;
  padding: 16px 36px;
}

.btn-block { width: 100%; }

/* ==============================
   NAVIGATION
============================== */
#nova-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

#nova-header.scrolled {
  background: var(--nova-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.nav-logo-text span { color: var(--nova-orange); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nova-orange);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
  color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .login-link {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}
.nav-actions .login-link:hover { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==============================
   HERO
============================== */
.hero-section {
  min-height: 100vh;
  background: var(--nova-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232,76,61,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(41,128,185,0.12) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(243,156,18,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* ==============================
   FEATURES
============================== */
.features-section {
  padding: 96px 0;
  background: var(--nova-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,76,61,0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

.fi-red    { background: rgba(232,76,61,0.10); }
.fi-orange { background: rgba(243,156,18,0.10); }
.fi-blue   { background: rgba(41,128,185,0.10); }
.fi-green  { background: rgba(39,174,96,0.10); }
.fi-purple { background: rgba(142,68,173,0.10); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--nova-gray);
  line-height: 1.7;
}

/* ==============================
   PROFILS
============================== */
.profiles-section {
  padding: 96px 0;
  background: #fff;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.profile-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(232,76,61,0.2);
}

.member-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 3px solid rgba(232,76,61,0.2);
}

.member-avatar img { width: 100%; height: 100%; object-fit: cover; }

.avatar-initials {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 14px;
}

.member-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.member-info {
  font-size: 12px;
  color: var(--nova-gray);
  margin-bottom: 10px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(39,174,96,0.10);
  color: #27AE60;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ==============================
   ÉTAPES
============================== */
.steps-section {
  padding: 96px 0;
  background: var(--nova-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(232,76,61,0.3);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--nova-gray);
  line-height: 1.7;
}

/* ==============================
   PRICING
============================== */
.pricing-section {
  padding: 96px 0;
  background: var(--nova-dark);
}

.pricing-section .section-title { color: #fff; }
.pricing-section .section-sub { color: rgba(255,255,255,0.5); }

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nova-red), var(--nova-orange));
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-wrap {
  margin-bottom: 8px;
}

.price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--nova-orange);
  vertical-align: super;
  line-height: 1;
}

.price-amount {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.price-features {
  margin-bottom: 36px;
  text-align: left;
}

.price-features li {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
}

/* ==============================
   TESTIMONIALS
============================== */
.testimonials-section {
  padding: 96px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--nova-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 4px solid var(--nova-red);
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.author-city {
  font-size: 12px;
  color: var(--nova-gray);
}

/* ==============================
   CTA SECTION
============================== */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--nova-red) 0%, var(--nova-orange) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

/* ==============================
   FOOTER
============================== */
#nova-footer {
  background: var(--nova-darker);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .logo-text span { color: var(--nova-orange); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--nova-red);
  border-color: var(--nova-red);
  color: #fff;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--nova-orange);
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links a:hover { color: var(--nova-orange); }

/* ==============================
   ALERTES ABONNEMENT
============================== */
.nova-alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid;
}
.nova-alert-icon { font-size: 20px; flex-shrink: 0; }

.nova-alert.danger {
  background: #fef2f2;
  border-color: var(--nova-red);
  color: #991b1b;
}
.nova-alert.warning {
  background: #fffbeb;
  border-color: var(--nova-orange);
  color: #92400e;
}
.nova-alert.info {
  background: #eff6ff;
  border-color: var(--nova-blue);
  color: #1e40af;
}

/* ==============================
   FORMULAIRE INSCRIPTION
============================== */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 15px;
  color: #111;
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--nova-red);
  box-shadow: 0 0 0 3px rgba(232,76,61,0.1);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ==============================
   CARDS MEMBRES (DASHBOARD)
============================== */
.dashboard-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.dashboard-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

/* ==============================
   AUTH PAGES (inscription / connexion)
============================== */
.auth-page { min-height: 100vh; display: flex; }
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; width: 100%; }
.auth-visual { background: var(--nova-dark); padding: 48px 40px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.auth-visual::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; background:rgba(232,76,61,.1); top:-80px; left:-80px; pointer-events:none; }
.auth-visual-inner { position: relative; z-index: 1; max-width: 360px; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; text-decoration: none; }
.auth-logo-mark { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--nova-red), var(--nova-orange)); display: flex; align-items: center; justify-content: center; }
.auth-logo span { font-size: 20px; font-weight: 700; color: #fff; }
.auth-logo em { font-style: normal; color: var(--nova-orange); }
.auth-visual h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.auth-visual p { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.8; margin-bottom: 32px; }
.auth-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.auth-feat { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 14px; }
.auth-visual-footer { color: rgba(255,255,255,.4); font-size: 14px; }
.auth-visual-footer a { color: var(--nova-orange); font-weight: 600; text-decoration: none; }
.auth-form-wrap { background: #fff; display: flex; align-items: center; justify-content: center; padding: 48px 40px; overflow-y: auto; }
.auth-form-inner { width: 100%; max-width: 460px; }
.auth-form-head { margin-bottom: 28px; }
.auth-form-head h1 { font-size: 26px; font-weight: 800; color: #111; margin-bottom: 6px; }
.auth-form-head p { font-size: 14px; color: var(--nova-gray); }
.auth-login-link { text-align: center; font-size: 14px; color: var(--nova-gray); margin-top: 18px; }
.auth-login-link a { color: var(--nova-red); font-weight: 600; text-decoration: none; }
.auth-support { margin-top: 28px; padding-top: 20px; border-top: 1px solid #eee; text-align: center; }
.auth-support p { font-size: 13px; color: var(--nova-gray); margin-bottom: 10px; }

/* Formulaires */
.nova-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nova-form .form-group { margin-bottom: 18px; }
.form-label { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-label-link { font-size: 12px; color: var(--nova-red); font-weight: 500; text-decoration: none; }
.req { color: var(--nova-red); }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .nova-icon { position: absolute; left: 12px; pointer-events: none; flex-shrink: 0; }
.input-wrap .form-control { padding-left: 40px; }
.input-wrap .pwd-toggle { position: absolute; right: 10px; background: none; border: none; cursor: pointer; display: flex; align-items: center; padding: 4px; color: var(--nova-gray); }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid #e5e7eb; border-radius: var(--radius-sm); font-family: var(--font-main); font-size: 14px; color: #111; background: #fff; outline: none; transition: var(--transition); }
.form-control:focus { border-color: var(--nova-red); box-shadow: 0 0 0 3px rgba(232,76,61,.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; font-size: 13px; color: #374151; }
.form-check input[type=checkbox] { margin-top: 2px; accent-color: var(--nova-red); width: 16px; height: 16px; flex-shrink: 0; }
.form-check a { color: var(--nova-red); }
.form-hint { font-size: 12px; color: var(--nova-gray); margin-top: 4px; display: block; }

/* ==============================
   PROFILS PAGE
============================== */
.members-page { padding: 96px 0 60px; }
.page-hero { margin-bottom: 32px; }
.page-hero h1 { font-size: 30px; font-weight: 800; color: #111; }
.page-hero p { color: var(--nova-gray); font-size: 15px; margin-top: 4px; }
.filters-bar { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 32px; }
.filters-form { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 8px; }
.filter-group label { font-size: 13px; font-weight: 600; color: var(--nova-gray); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.filter-select { padding: 8px 32px 8px 12px; border: 1.5px solid #e5e7eb; border-radius: var(--radius-sm); font-size: 13px; font-family: var(--font-main); background: #fff; color: #111; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; cursor: pointer; outline: none; }
.filter-select:focus { border-color: var(--nova-red); }
.profiles-grid--large { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.profile-card--large { display: flex; flex-direction: column; }
.profile-photo-wrap { position: relative; margin: 0 auto 14px; }
.profile-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(232,76,61,.2); display: block; }
.avatar-initials--lg { width: 80px; height: 80px; font-size: 28px; }
.online-dot { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; background: #22c55e; border-radius: 50%; border: 2px solid #fff; }
.profile-body { flex: 1; padding-bottom: 12px; }
.profile-name-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.member-since { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--nova-gray); margin-top: 6px; }
.profile-footer { margin-top: auto; }
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: #111; margin: 16px 0 8px; }
.empty-state p { color: var(--nova-gray); margin-bottom: 20px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.page-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #e5e7eb; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #374151; text-decoration: none; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--nova-red); border-color: var(--nova-red); color: #fff; }

/* ==============================
   DASHBOARD
============================== */
.dashboard-page { padding: 96px 0 60px; }
.dashboard-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.dashboard-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.dashboard-card { background: #fff; border: 1px solid #e5e7eb; border-radius: var(--radius-md); padding: 20px 22px; }
.card-title { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.card-section-title { font-size: 13px; font-weight: 700; color: var(--nova-gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.profile-summary { text-align: center; }
.profile-avatar-wrap { margin: 0 auto 12px; display: inline-block; }
.profile-avatar-img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(232,76,61,.2); }
.avatar-initials--xl { width: 72px; height: 72px; font-size: 26px; }
.profile-summary-name { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 4px; }
.profile-summary-city { font-size: 13px; color: var(--nova-gray); display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 10px; }
.profile-status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.sub-info { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f3f4f6; }
.sub-label { font-size: 12px; color: var(--nova-gray); }
.sub-value { font-size: 14px; font-weight: 700; color: #111; }
.progress-bar-wrap { height: 4px; background: #f3f4f6; border-radius: 2px; margin-top: 10px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: 2px; transition: width .3s; }
.sub-pending { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--nova-gray); padding: 8px 0; }
.sub-pending p { margin: 0; }
.dash-nav { display: flex; flex-direction: column; gap: 4px; }
.dash-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: #374151; text-decoration: none; transition: var(--transition); position: relative; }
.dash-nav-link:hover { background: #fef2f2; color: var(--nova-red); }
.dash-nav-link.disabled { opacity: .5; pointer-events: none; }
.dash-nav-link--logout { color: #dc2626; margin-top: 8px; border-top: 1px solid #f3f4f6; padding-top: 14px; }
.lock-badge { margin-left: auto; color: var(--nova-gray); }
.payment-instructions { border: 2px dashed rgba(232,76,61,.3); background: #fff9f9; }
.payment-steps { display: flex; flex-direction: column; gap: 20px; }
.payment-step { display: flex; align-items: flex-start; gap: 14px; }
.payment-step-num { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--nova-red), var(--nova-orange)); color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.payment-step strong { display: block; font-size: 14px; font-weight: 700; color: #111; margin-bottom: 4px; }
.payment-step p { font-size: 13px; color: var(--nova-gray); margin: 0; }
.payment-number { font-size: 22px; font-weight: 800; color: var(--nova-red); margin: 6px 0; letter-spacing: 1px; }
.payment-networks { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.payment-networks span { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--nova-gray); background: #f3f4f6; padding: 3px 10px; border-radius: 20px; }

/* ==============================
   PRICING PAGE
============================== */
.pricing-page { }
.pricing-hero { padding: 100px 0 48px; background: var(--nova-dark); }
.pricing-hero .section-title { color: #fff; }
.pricing-hero .section-sub { color: rgba(255,255,255,.5); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.pricing-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 36px 32px; }
.pricing-card--featured { background: var(--nova-dark); border-color: rgba(255,255,255,.1); position: relative; overflow: hidden; }
.pricing-card--featured::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--nova-red),var(--nova-orange)); }
.pricing-card-header { text-align: center; margin-bottom: 28px; }
.pricing-card--featured .price-cur { color: var(--nova-orange); }
.pricing-card--featured .price-amount { color: #fff; }
.pricing-card--featured .price-period { color: rgba(255,255,255,.4); }
.pricing-card--featured .price-features li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.06); }
.pcheck { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pricing-current { display: flex; align-items: center; gap: 8px; background: rgba(22,163,74,.1); color: #16a34a; border: 1px solid rgba(22,163,74,.2); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; margin-bottom: 16px; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid #e5e7eb; border-radius: var(--radius-md); padding: 20px; }
.faq-q { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.faq-q strong { font-size: 14px; font-weight: 700; color: #111; line-height: 1.4; }
.faq-a { font-size: 13px; color: var(--nova-gray); line-height: 1.7; padding-left: 24px; }

/* ==============================
   SUPPORT PAGE
============================== */
.support-page { }
.page-hero-simple { padding: 100px 0 48px; background: var(--nova-dark); }
.page-hero-simple .section-title { color: #fff; }
.page-hero-simple .section-sub { color: rgba(255,255,255,.5); }
.support-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.support-form-wrap { }
.support-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.contact-items { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius-md); text-decoration: none; transition: var(--transition); }
.contact-item--wa { background: #25D366; color: #fff; }
.contact-item--wa:hover { background: #1da851; }
.contact-item--mail { background: #f9fafb; border: 1px solid #e5e7eb; color: #111; }
.contact-item--mail:hover { border-color: var(--nova-red); background: #fef2f2; }
.contact-item div { flex: 1; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; }
.contact-item span { display: block; font-size: 13px; opacity: .8; }
.contact-item small { display: block; font-size: 11px; opacity: .6; margin-top: 2px; }
.hours-list { }
.hours-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f3f4f6; font-size: 13px; color: #374151; }
.hours-time { font-weight: 700; color: var(--nova-red); }
.hours-note { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--nova-gray); margin-top: 10px; }
.useful-links { list-style: none; }
.useful-links li { margin-bottom: 8px; }
.useful-links a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; text-decoration: none; transition: var(--transition); }
.useful-links a:hover { color: var(--nova-red); padding-left: 4px; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-form-wrap { padding: 40px 24px; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .support-layout { grid-template-columns: 1fr; }
  .support-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; position: fixed; inset: 72px 0 0; background: var(--nova-dark); padding: 32px 24px; gap: 24px; z-index: 999; }
  .hero-title { font-size: 30px; }
  .hero-desc  { font-size: 15px; }
  .hero-stats { gap: 24px; }
  .section-title { font-size: 24px; }
  .nova-form .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .profiles-grid--large { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ==============================
   CORRECTIONS PRICING HOMEPAGE
============================== */

/* Carte pricing sur fond sombre */
.pricing-section .pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 44px 36px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-section .pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nova-red), var(--nova-orange));
}

/* Badge */
.pricing-section .pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Montant */
.pricing-section .price-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--nova-orange);
    vertical-align: super;
    line-height: 1;
}

.pricing-section .price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pricing-section .price-period {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 6px 0 28px;
}

/* Liste avantages */
.pricing-section .price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-section .price-features li {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-section .price-features li:last-child {
    border-bottom: none;
}

/* Bouton pleine largeur */
.pricing-section .btn-block {
    width: 100%;
    justify-content: center;
}

/* ==============================
   CORRECTIONS HEADER
============================== */

/* S'assurer que le header reste visible au scroll */
#nova-header {
    background: var(--nova-dark);
}

/* Logo icône */
.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Menu nav liens */
.nav-menu li { list-style: none; }
.nav-menu a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-menu a:hover { color: #fff; }

/* ==============================
   CORRECTIONS SECTIONS HOMEPAGE
============================== */

/* S'assurer que les sections ont le bon fond */
.features-section  { background: #f9fafb; }
.profiles-section  { background: #ffffff; }
.steps-section     { background: #f9fafb; }
.pricing-section   { background: var(--nova-dark); padding: 80px 0; }
.cta-section       { padding: 80px 0; }

/* Icône check dans pricing */
.price-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Boutons CTA section */
.btn-w {
    background: #fff;
    color: var(--nova-red);
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-w:hover { background: #f9fafb; }

.btn-ow {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-ow:hover { border-color: rgba(255,255,255,0.7); }

/* ==============================
   MESSAGERIE PRIVÉE
============================== */

.messagerie-page { background: #f9fafb; min-height: 100vh; }

.msg-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    height: calc(100vh - 128px);
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Sidebar conversations */
.msg-sidebar {
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.msg-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.msg-sidebar-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.msg-empty-conv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--nova-gray);
    gap: 10px;
    flex: 1;
}

.msg-empty-conv p { font-size: 14px; }
.msg-empty-conv a { color: var(--nova-red); font-size: 13px; font-weight: 600; }

.conv-list {
    overflow-y: auto;
    flex: 1;
    list-style: none;
}

.conv-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
    cursor: pointer;
}

.conv-item:hover { background: #fef2f2; }
.conv-item.active { background: #fef2f2; border-left: 3px solid var(--nova-red); }

.conv-avatar {
    position: relative;
    flex-shrink: 0;
}

.conv-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.conv-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--nova-red);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.conv-info { flex: 1; min-width: 0; }

.conv-name {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conv-name.unread { font-weight: 700; }

.conv-preview {
    font-size: 12px;
    color: var(--nova-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.conv-time {
    font-size: 11px;
    color: var(--nova-gray);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Zone principale */
.msg-main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.msg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.msg-header-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.msg-header-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.msg-header-info {
    font-size: 12px;
    color: var(--nova-gray);
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

/* Corps messages */
.msg-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #f9fafb;
}

.msg-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    color: var(--nova-gray);
    gap: 12px;
    padding: 40px;
}

.msg-start p { font-size: 14px; }

.msg-date-sep {
    text-align: center;
    margin: 12px 0;
}

.msg-date-sep span {
    background: #e5e7eb;
    color: var(--nova-gray);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
}

.msg-bubble-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
}

.msg-bubble-wrap.mine { align-items: flex-end; }
.msg-bubble-wrap.theirs { align-items: flex-start; }

.msg-bubble {
    max-width: 68%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.msg-bubble-wrap.mine .msg-bubble {
    background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
    color: #fff;
    border-bottom-right-radius: 4px;
}

.msg-bubble-wrap.theirs .msg-bubble {
    background: #fff;
    color: #111;
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 4px;
}

.msg-time {
    font-size: 11px;
    color: var(--nova-gray);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 4px;
}

/* Formulaire envoi */
.msg-footer {
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.msg-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.msg-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 14px;
    color: #111;
    outline: none;
    resize: none;
    min-height: 40px;
    max-height: 120px;
    transition: border-color 0.2s;
    line-height: 1.5;
}

.msg-input:focus { border-color: var(--nova-red); }

.msg-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nova-red), var(--nova-orange));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s;
}

.msg-send-btn:hover { transform: scale(1.08); }

/* Aucune conversation sélectionnée */
.msg-no-conv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    padding: 40px;
    gap: 14px;
}

.msg-no-conv h3 { font-size: 20px; font-weight: 700; color: #111; }
.msg-no-conv p  { font-size: 14px; color: var(--nova-gray); }

/* Responsive */
@media (max-width: 768px) {
    .msg-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .msg-sidebar {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        max-height: 280px;
    }
    .msg-main { min-height: 400px; }
    .msg-bubble { max-width: 85%; }
}

/* ============================================
   RESPONSIVE MOBILE COMPLET — NovaLove 229
   Remplace les anciennes media queries
   ============================================ */

/* ---- TABLETTE (max 1024px) ---- */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .dashboard-layout { grid-template-columns: 240px 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .support-layout { grid-template-columns: 1fr 300px; }
}

/* ---- MOBILE LARGE (max 768px) ---- */
@media (max-width: 768px) {

  /* Navigation */
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--nova-dark);
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open li { width: 100%; }
  .nav-menu.open a {
    font-size: 17px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
    width: 100%;
  }
  .nav-actions .login-link { display: none; }

  /* Hero */
  .hero-section { padding-top: 72px; }
  .hero-content { padding: 48px 16px; }
  .hero-title { font-size: 28px; line-height: 1.2; }
  .hero-desc { font-size: 15px; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .hero-stats { gap: 20px; padding-top: 28px; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 11px; }

  /* Sections */
  .section-title { font-size: 22px; }
  .section-sub { font-size: 14px; margin-bottom: 28px; }
  .sec { padding: 52px 16px; }
  .features-section, .profiles-section, .steps-section { padding: 52px 0; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 14px; }
  .feature-icon { width: 48px; height: 48px; }
  .feature-card h3 { font-size: 14px; }
  .feature-card p { font-size: 12px; }

  /* Profils homepage */
  .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .profile-card { padding: 16px 10px; }
  .avatar-initials { width: 56px; height: 56px; font-size: 20px; }

  /* Étapes */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-number { width: 48px; height: 48px; font-size: 18px; }
  .step-card h3 { font-size: 14px; }
  .step-card p { font-size: 12px; }

  /* Pricing homepage */
  .pricing-section { padding: 52px 16px; }

  /* CTA */
  .cta-section { padding: 52px 16px; }
  .cta-section h2 { font-size: 24px; }
  .cta-section p { font-size: 14px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #nova-footer { padding: 40px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { justify-content: center; }
  .social-links { justify-content: flex-start; }

  /* Auth pages */
  .auth-split { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-form-wrap { padding: 32px 20px; min-height: 100vh; }
  .auth-form-head h1 { font-size: 22px; }
  .nova-form .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Profils page */
  .members-page { padding: 80px 0 40px; }
  .page-hero h1 { font-size: 22px; }
  .filters-form { flex-direction: column; align-items: flex-start; gap: 10px; }
  .filter-group { width: 100%; }
  .filter-select { width: 100%; }
  .profiles-grid--large { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Dashboard */
  .dashboard-page { padding: 80px 0 40px; }
  .dashboard-layout { grid-template-columns: 1fr; gap: 16px; }
  .dashboard-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .dashboard-sidebar > .dashboard-card { flex: 1; min-width: 240px; }
  .dashboard-main { order: -1; }

  /* Pricing page */
  .pricing-hero { padding: 80px 16px 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }
  .price-amount { font-size: 44px; }
  .faq-grid { grid-template-columns: 1fr; }

  /* Support page */
  .page-hero-simple { padding: 80px 16px 32px; }
  .support-layout { grid-template-columns: 1fr; }
  .support-sidebar { position: static; }

  /* Messagerie */
  .msg-container { padding: 10px; height: calc(100vh - 82px); }
  .msg-wrap { grid-template-columns: 1fr; border-radius: 10px; }
  .msg-sb { max-height: 45vh; border-right: none; border-bottom: 1px solid #e9edef; }
  .msg-bubble { max-width: 85%; }
  .msg-contact-name { font-size: 14px; }

  /* Mon profil */
  .profil-cover-wrap { height: 180px; }
  .profil-avatar-zone { padding: 0 12px; margin-top: -48px; gap: 12px; }
  .profil-av { width: 88px; height: 88px; font-size: 32px; }
  .profil-av-name { font-size: 18px; }
  .profil-tabs { margin: 16px 12px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .profil-tab { padding: 10px 14px; font-size: 13px; white-space: nowrap; }
  .profil-content { padding: 16px 12px; }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .save-bar { padding: 12px 16px; margin: 0 -12px; }

  /* Profil public */
  .pub-cover { height: 180px; }
  .pub-header { padding: 0 14px; }
  .pub-av-zone { margin-top: -52px; gap: 12px; }
  .pub-av { width: 96px; height: 96px; font-size: 34px; }
  .pub-name { font-size: 18px; }
  .pub-actions { flex-direction: column; gap: 8px; }
  .pub-body { grid-template-columns: 1fr; padding: 14px; gap: 14px; }
  .pub-galerie { grid-template-columns: repeat(3, 1fr); gap: 4px; }

  /* Pages légales */
  .legal-hero { padding: 80px 16px 32px; }
  .legal-hero h1 { font-size: 24px; }
  .legal-body { padding: 24px 14px 40px; }
  .legal-card { padding: 20px 16px; }
  .interdit-grid { grid-template-columns: 1fr; }
  .legal-table { font-size: 12px; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}

/* ---- MOBILE PETIT (max 480px) ---- */
@media (max-width: 480px) {

  /* Hero */
  .hero-title { font-size: 24px; }
  .hero-badge { font-size: 12px; padding: 5px 12px; }

  /* Nav */
  .nav-logo-text { font-size: 16px; }
  .nav-logo-icon { width: 32px; height: 32px; }
  .btn-sm { font-size: 12px; padding: 7px 14px; }

  /* Profils */
  .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .profiles-grid--large { grid-template-columns: repeat(2, 1fr); }
  .member-name { font-size: 13px; }
  .member-info { font-size: 11px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Dashboard sidebar */
  .dashboard-sidebar { flex-direction: column; }
  .dashboard-sidebar > .dashboard-card { min-width: unset; width: 100%; }

  /* Messagerie */
  .msg-sb-title h2 { font-size: 16px; }
  .conv-item { padding: 10px 12px; }
  .conv-av img, .conv-av .av-init { width: 42px; height: 42px; font-size: 16px; }
  .msg-main-top { padding: 10px 14px; }
  .msg-body { padding: 12px; }
  .msg-footer { padding: 8px 10px; }
  .msg-bubble { max-width: 90%; font-size: 13px; }

  /* Galerie profil */
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-galerie { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .price-amount { font-size: 38px; }
  .price-features li { font-size: 13px; }

  /* Footer */
  .footer-col ul li a { font-size: 13px; }

  /* Boutons */
  .btn-lg { font-size: 15px; padding: 13px 22px; }
  .btn { font-size: 14px; }
}

/* ---- TRÈS PETIT (max 360px — Galaxy S series) ---- */
@media (max-width: 360px) {
  .hero-title { font-size: 21px; }
  .section-title { font-size: 19px; }
  .nav-logo-text { font-size: 15px; }
  .auth-form-wrap { padding: 24px 14px; }
  .profil-av { width: 72px; height: 72px; font-size: 26px; }
  .pub-av { width: 80px; height: 80px; font-size: 28px; }
  .msg-bubble { max-width: 95%; }
}

/* ---- UTILITAIRES MOBILE ---- */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  .text-center-mobile { text-align: center !important; }
  .full-width-mobile { width: 100% !important; }
}

/* ---- AMÉLIORATIONS TACTILES ---- */
@media (hover: none) and (pointer: coarse) {
  /* Zones de tap plus grandes sur mobile */
  .btn { min-height: 44px; }
  .form-control { min-height: 44px; font-size: 16px; } /* évite zoom iOS */
  .nav-menu.open a { min-height: 48px; display: flex; align-items: center; }
  .conv-item { min-height: 60px; }
  .dash-nav-link { min-height: 44px; }
  .page-btn { width: 40px; height: 40px; }
  .msg-send-btn { width: 46px; height: 46px; }

  /* Désactiver hover sur mobile */
  .feature-card:hover,
  .profile-card:hover,
  .btn-primary:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ---- SCROLL FLUIDE ---- */
html { -webkit-overflow-scrolling: touch; }
.conv-list, .msg-body { -webkit-overflow-scrolling: touch; }

/* ---- HEADER FIXE MOBILE ---- */
#nova-header {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* ---- SAFE AREA iOS (notch) ---- */
@supports (padding: env(safe-area-inset-bottom)) {
  .msg-footer { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
  #nova-footer { padding-bottom: env(safe-area-inset-bottom); }
}