/* ==============================================
   THEME 6 - DARK SAAS
   Landing page sombre, accents néon, typographie Inter
   ============================================== */

/* ==============================================
   FONT FACES
   ============================================== */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('https://seovarna.fr/theme-4/fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('https://seovarna.fr/theme-4/fonts/inter/inter-v20-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('https://seovarna.fr/theme-4/fonts/inter/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('https://seovarna.fr/theme-4/fonts/inter/inter-v20-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('https://seovarna.fr/theme-4/fonts/inter/inter-v20-latin-800.woff2') format('woff2');
}

/* ==============================================
   VARIABLES & RESET
   ============================================== */
:root {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --primary-text: #B9BAC4;
  --article-width: 900px;
  --page-width: 1200px;
}

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

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, #0B0B0F 0%, #141424 100%);
  color: #FDFDFD;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==============================================
   TITRES FLUIDES
   ============================================== */
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

h5 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

h6 {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */
section {
  width: 100%;
  padding: 80px 0;
}

.gradient-text {
  background: linear-gradient(90deg, #2AF3FF, #8859FF);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================================
   NAVIGATION
   ============================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(12, 12, 18, 0.85);
  backdrop-filter: blur(10px);
  z-index: 998;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 95px;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #FDFDFD;
}

.nav-right {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-desktop a {
  color: var(--primary-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #B58AFF;
  transition: width 0.3s ease;
}

.nav-desktop a:hover {
  color: #B58AFF;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a:last-child {
  display: inline-flex;
  justify-content: center;
  background: #D9FF4B;
  color: #0B0B0F;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 32px;
  transition: all 0.3s ease;
}

.nav-desktop a:last-child::after {
  display: none;
}

.nav-desktop a:last-child:hover {
  background: #F0FF6E;
  color: #0B0B0F;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 255, 75, 0.4);
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1105;
  background: none;
  border: none;
  padding: 5px;
  position: fixed;
  right: 2rem;
  top: 1.5rem;
}

.burger-menu span {
  width: 28px;
  height: 3px;
  background-color: #FDFDFD;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Sidebar Mobile */
.sidebar-mobile {
  display: none;
}

/* Overlay */
.nav-overlay {
  display: none;
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  background: #D9FF4B;
  color: #0B0B0F;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 35px;
  border-radius: 32px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #F0FF6E;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 255, 75, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

header .btn-primary {
  padding: 12px 24px !important;
  font-size: 16px;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 28px;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: #8859FF;
  color: #B58AFF;
  transform: translateY(-2px);
}

.btn-submit {
  background: #D9FF4B;
  color: #0B0B0F;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 32px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  background: #F0FF6E;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 255, 75, 0.4);
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: #0B0B0F;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-subtitle {
  max-width: 300px;
  color: var(--primary-text);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  cursor: pointer;
}

.links-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FDFDFD;
}

.footer-links a {
  display: block;
  color: var(--primary-text);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #B58AFF;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--primary-text);
  font-size: 14px;
}

/* ==============================================
   ANIMATIONS
   ============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   MAIN CONTENT
   ============================================== */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ==============================================
   ARTICLE & PAGE STRUCTURES
   ============================================== */
.page .content {
  width: 100%;
  max-width: var(--page-width);
  text-align: start;
  margin: 0 auto;
}

.post {
  margin-top: 95px;
  width: 100%;
}

.post header, .page header {
  position: relative;
  z-index: 1;
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.post header {
  height: 400px;
}

.featured-image, .hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.featured-image img, .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post header::before, .page header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.post header::before {
  background: rgba(0, 0, 0, 0.50);
}

.post header > *:not(.featured-image), .page header > *:not(.hero-image) {
  position: relative;
  z-index: 3;
}

.meta {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
}

.page {
  text-align: center;
  width: 100%;
  padding: 150px 24px;
}

.page h1 {
  display: inline-block;
  margin: 0 auto 2rem auto;
  border-bottom: 1px solid #E1E1E1;
}

.post h1 {
  max-width: var(--article-width);
}

/* ==============================================
   ARTICLE TYPOGRAPHY
   ============================================== */
.post .content {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

article p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

article a {
  color: #D9FF4B;
  text-decoration: underline;
}

article a:hover {
  color: #B58AFF;
}

.post .content ul,
.post .content ol,
.page .content ul,
.page .content ol,
article .content ul,
article .content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post .content li,
.page .content li,
article .content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  position: relative;
  padding-left: 0.5rem;
}

.post .content ul li::before,
.page .content ul li::before,
article .content ul li::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 0.65em;
  width: 0.5rem;
  height: 0.5rem;
  background: #D9FF4B;
  border-radius: 50%;
}

/* ==============================================
   BLOG LISTING
   ============================================== */
.blog-listing {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.blog-listing a {
  border-bottom: none !important;
  text-decoration: none;
  display: block;
}

.blog-card {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-height: 350px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover::after {
  transform: scale(1.05);
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover::before {
  background: rgba(0, 0, 0, 0.65);
}

.blog-card > * {
  position: relative;
  z-index: 3;
}

.blog-card-date {
  margin: 0 0 0.8rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-date {
  transform: translateY(-5px);
}

.blog-card-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-title {
  transform: translateY(-5px);
}

.blog-card-excerpt {
  margin: 1.2rem auto 0 auto;
  line-height: 1.6;
  color: #f5f5f5;
  font-size: 0.95rem;
  max-width: 90%;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .blog-card-excerpt {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   TABLES
   ============================================== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #1A1A28;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

table thead {
  background: #D9FF4B;
  color: black;
}

table tbody {
  background: #1A1A28;
}

table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody tr:hover {
  background: rgba(136, 89, 255, 0.1);
}

table tbody td {
  padding: 1rem;
  color: #FDFDFD;
}

/* ==============================================
   IMAGES & FIGURES
   ============================================== */
figure {
  margin: 2.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

figure img {
  width: 100%;
  display: block;
  margin: 0;
  border-radius: 0;
}

figcaption {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
  background: #1A1A28;
  color: var(--primary-text);
}

/* Breadcrumb caché (SEO) */
.breadcrumb {
  display: none;
}

/* ==============================================
   HOME: HERO
   ============================================== */
.hero {
  padding: 210px 0 150px;
  background: linear-gradient(135deg, #0F0222 0%, #241654 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-blur {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-bg-blur:nth-child(1) {
  background: linear-gradient(135deg, #8859FF, #2AF3FF);
  top: 10%;
  left: 10%;
}

.hero-bg-blur:nth-child(2) {
  background: linear-gradient(135deg, #D9FF4B, #8859FF);
  bottom: 10%;
  right: 10%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  color: var(--primary-text);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================
   HOME: LOGO STRIP
   ============================================== */
.logo-strip {
  background: linear-gradient(180deg, #F9F9FB 0%, #EEE5FF 100%);
  padding: 60px 0;
}

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

.logo-item {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-text);
  font-style: italic;
}

/* ==============================================
   HOME: SECTION BACKGROUNDS
   ============================================== */
.section-dark {
  background: linear-gradient(180deg, #0B0B0F 0%, #141424 100%);
}

.section-darker {
  background: #0B0B0F;
}

.section-purple {
  background: linear-gradient(135deg, #1A0B2E 0%, #2D1654 100%);
}

/* ==============================================
   HOME: SECTION HEADERS
   ============================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--primary-text);
  max-width: 700px;
  margin: 0 auto;
}

/* ==============================================
   HOME: CARDS
   ============================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card:hover {
  border-color: #8859FF;
  box-shadow: 0 8px 32px rgba(136, 89, 255, 0.3);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2654 100%);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(136, 89, 255, 0.3), transparent);
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FDFDFD;
}

.card p {
  color: var(--primary-text);
  line-height: 1.6;
}

/* ==============================================
   HOME: SPLIT SECTION
   ============================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.split-content p {
  font-size: 18px;
  color: var(--primary-text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.split-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2654 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.split-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(136, 89, 255, 0.4), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(42, 243, 255, 0.3), transparent 60%);
}

/* ==============================================
   HOME: PRICING
   ============================================== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #111122;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 48px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: #8859FF;
  box-shadow: 0 0 0 1px rgba(136, 89, 255, 0.2), 0 20px 60px rgba(136, 89, 255, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #8859FF, #2AF3FF);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 56px;
  font-weight: 800;
  margin: 20px 0;
}

.pricing-price span {
  font-size: 20px;
  color: var(--primary-text);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 32px 0;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--primary-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '✓';
  color: #D9FF4B;
  font-weight: 700;
  font-size: 18px;
}

/* ==============================================
   HOME: FEATURES GRID
   ============================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #8859FF;
  box-shadow: 0 8px 32px rgba(136, 89, 255, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8859FF, #2AF3FF);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--primary-text);
  line-height: 1.6;
}

/* ==============================================
   HOME: FAQ
   ============================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #B58AFF;
}

.faq-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--primary-text);
  line-height: 1.7;
}

/* ==============================================
   HOME: REVIEWS
   ============================================== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s ease;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8859FF, #2AF3FF);
}

.review-author {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-stars {
  color: #D9FF4B;
  font-size: 14px;
}

.review-text {
  color: var(--primary-text);
  line-height: 1.7;
}

/* ==============================================
   HOME: ABOUT
   ============================================== */
.about-section {
  background: linear-gradient(135deg, #1A0B2E 0%, #2D1654 100%);
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-section {
  background: linear-gradient(180deg, #0B0B0F 0%, #141424 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #B9BAC4;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #1A1A28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #FDFDFD;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8859FF;
  box-shadow: 0 0 0 3px rgba(136, 89, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  color: #B9BAC4;
  margin: 0;
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 15px;
}

.alert-success {
  background: rgba(42, 243, 255, 0.15);
  border: 1px solid rgba(42, 243, 255, 0.4);
  color: #2AF3FF;
}

.alert-error {
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid rgba(255, 59, 48, 0.4);
  color: #FF3B30;
}

.alert ul {
  margin: 8px 0 0 20px;
  list-style-type: disc;
}

.alert li {
  margin: 4px 0;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-info p {
  color: #B9BAC4;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-item {
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-item:hover {
  border-color: #8859FF;
  box-shadow: 0 8px 24px rgba(136, 89, 255, 0.2);
}

.info-item-title {
  font-size: 16px !important;
  font-weight: 700;
  margin-bottom: 8px !important;
  color: #FDFDFD !important;
}

.info-item p,
.info-item a {
  color: #B9BAC4;
  font-size: 15px;
  text-decoration: none;
}

.info-item a:hover {
  color: #B58AFF;
}

.info-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* ==============================================
   RECIPE VOTE BOX
   ============================================== */
.recipe-vote-wrap {
  max-width: var(--article-width);
  width: calc(100% - 2rem);
  margin: 0 auto 2rem;
  padding: 2rem 2.5rem;
  background: #0B0B0F;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.recipe-vote-wrap .rv-left {
  flex: 0.5;
  text-align: center;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.recipe-vote-wrap .rv-score {
  font-size: 3rem;
  font-weight: 700;
  color: #FDFDFD;
  line-height: 1;
  letter-spacing: -0.03em;
}

.recipe-vote-wrap .rv-stars-row {
  font-size: 1.3rem;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0.4rem 0 0.25rem;
}

.rv-icon--filled { color: #D9FF4B; }
.rv-icon--partial {
  background: linear-gradient(90deg, #D9FF4B 50%, #444 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rv-icon--blank { color: #444; }

.recipe-vote-wrap .rv-total {
  font-size: 0.78rem;
  color: var(--primary-text);
}

.recipe-vote-wrap .rv-right {
  flex: 1;
  text-align: center;
}

.recipe-vote-wrap .rv-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FDFDFD;
  margin: 0 0 0.2rem;
}

.recipe-vote-wrap .rv-subheading {
  font-size: 0.82rem;
  color: var(--primary-text);
  margin: 0 0 1.2rem;
}

.recipe-vote-wrap .rv-picker {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  direction: rtl;
}

.recipe-vote-wrap .rv-picker input { display: none; }

.recipe-vote-wrap .rv-picker label {
  font-size: 2.2rem;
  color: #444;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.recipe-vote-wrap .rv-picker label:hover,
.recipe-vote-wrap .rv-picker label:hover ~ label,
.recipe-vote-wrap .rv-picker input:checked ~ label {
  color: #D9FF4B;
}

.recipe-vote-wrap .rv-picker label:hover { transform: scale(1.2); }

.recipe-vote-wrap .rv-send {
  --rv-accent: #D9FF4B;
  --rv-accent-soft: rgba(217, 255, 75, 0.15);
  --rv-muted: #444;
  display: inline-block;
  padding: 0.65rem 2.2rem;
  background: #D9FF4B;
  color: #0B0B0F;
  border: none;
  border-radius: 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.recipe-vote-wrap .rv-send:hover {
  background: #F0FF6E;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 255, 75, 0.4);
}

.recipe-vote-wrap .rv-send:active { transform: translateY(0); }

@media (max-width: 640px) {
  .recipe-vote-wrap {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
    text-align: center;
    margin: 0 auto 2rem;
  }
  .recipe-vote-wrap .rv-left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .recipe-vote-wrap .rv-picker label { font-size: 1.8rem; }
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
  }
}

/* ==============================================
   RESPONSIVE — 1024px
   ============================================== */
@media (max-width: 1024px) {
  .blog-listing {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================================
   RESPONSIVE — 768px
   ============================================== */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .sidebar-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(12, 12, 18, 0.98);
    backdrop-filter: blur(10px);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    overflow-y: auto;
  }

  .sidebar-mobile.active {
    right: 0;
  }

  .sidebar-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .sidebar-mobile a {
    display: block;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .sidebar-mobile a:hover {
    color: #B58AFF;
  }

  .sidebar-mobile a:last-child {
    display: inline-flex;
    justify-content: center;
    background: #D9FF4B;
    color: #0B0B0F;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 32px;
    margin-top: 1rem;
    transition: all 0.3s ease;
  }

  .sidebar-mobile a:last-child:hover {
    background: #F0FF6E;
    color: #0B0B0F;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217, 255, 75, 0.4);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 15px;
  }

  .blog-listing {
    grid-template-columns: 1fr;
  }

  /* Home */
  .hero {
    padding: 150px 0 100px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-content h2 {
    font-size: 32px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .logos {
    gap: 40px;
  }

  .logo-item {
    font-size: 20px;
  }

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

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-buttons {
    flex-direction: column;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 32px 24px;
  }
}

/* ==============================================
   RESPONSIVE — 480px
   ============================================== */
@media (max-width: 480px) {
  .nav-content {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 18px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* =============================================
   AUTHOR BOX
   ============================================= */
.author-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--article-width);
    width: calc(100% - 2rem);
    margin: 0 auto 2rem;
    padding: 2rem 2.5rem;
    background: #0B0B0F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.author-box-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.author-box-info {
    flex: 1;
    min-width: 0;
}
.author-box-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text, #1F2937);
    margin-bottom: 0.25rem;
}
.author-box-bio {
    font-size: 0.875rem;
    color: var(--text-light, #6B7280);
    line-height: 1.5;
    margin: 0;
}




/* ── Lazarre : badge catégorie + ligne méta article ── */
.blog-card { position: relative; }
.blog-card-cover { position: absolute; inset: 0; z-index: 4; }
.blog-card-category { position: absolute; top: 1rem; left: 1rem; z-index: 5; display: inline-block; padding: 0.34em 0.85em; line-height: 1.4; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; text-decoration: none; border-radius: 999px; background: var(--bg-beige, var(--bg-soft, var(--panel, var(--color-white, var(--white, #fff))))); color: var(--color-dark, var(--ink, #1a1a1a)); box-shadow: 0 2px 8px rgba(0,0,0,0.18); transition: opacity 0.2s ease, transform 0.2s ease; }
.blog-card-category:hover { transform: translateY(-1px); opacity: 0.9; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; margin: 0.5rem 0 0; font-size: 0.9rem; }
.article-meta-sep { opacity: 0.45; }
.article-meta a { color: inherit; text-decoration: none; font-weight: 600; transition: opacity 0.2s ease; }
.article-meta a:hover { opacity: 0.72; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a.author-box-name { color: inherit; text-decoration: none; }
a.author-box-name:hover { text-decoration: underline; text-underline-offset: 2px; }
