/*
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;
  padding-top: 74px;
}

/* Ajustement barre admin WP */
.admin-bar body { padding-top: 104px; }
.admin-bar #nova-header { top: 32px; }

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: var(--nova-dark);
  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; }
}

/* Overlay sombre derrière le menu mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  /* Menu caché hors-écran à droite */
  .nav-menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--nova-dark);
    padding: 84px 28px 40px;
    gap: 8px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
  }

  /* Menu ouvert — glisse depuis la droite */
  .nav-menu.open { transform: translateX(0); }

  /* Items du menu mobile */
  .nav-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu a, .nav-menu span {
    display: block;
    font-size: 16px !important;
    padding: 14px 0;
    font-weight: 500;
  }

  /* Bouton fermer (×) en haut du panneau */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border: none;
    line-height: 1;
  }
  .nav-close:hover { background: rgba(255,255,255,0.2); }
  .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; }
}