/* ==========================================
   S2ACADÉMIE - STYLE NEON RAIN
   Dégradés purple/cyan, effets lumineux, animations
   ========================================== */

/* === VARIABLES COULEURS NEON RAIN === */
:root {
  --purple-neon: #a855f7;
  --cyan-neon: #06b6d4;
  --purple-dark: #7c3aed;
  --cyan-dark: #0891b2;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --text-light: #f1f5f9;
  --text-gray: #94a3b8;
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === DÉGRADÉ HERO (comme Neon Rain) === */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-neon) 0%, var(--cyan-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HEADER / NAVIGATION === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.logo img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 20px var(--purple-neon));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 30px var(--purple-neon));
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-neon), var(--cyan-neon));
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--cyan-neon);
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 250px;
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--cyan-neon);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text .tagline {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* === BOUTONS STYLE NEON RAIN === */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-neon), var(--cyan-neon));
  color: white;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan-neon);
  border: 2px solid var(--cyan-neon);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
  transform: translateY(-3px);
}

/* Effet lumineux sur hover */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* === LOGO PARTICULES === */
#particles-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

/* === SECTIONS === */
section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: var(--cyan-neon);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-neon), var(--cyan-neon));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.5);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.card-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-small {
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
}

/* === FOOTER === */
footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--cyan-neon);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--cyan-neon);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  color: var(--text-gray);
}

.qualiopi-mention {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.qualiopi-mention img {
  width: 150px;
}

/* === ANIMATIONS FADE IN TITRES (2 secondes) === */
.fade-in-title {
  opacity: 0;
  animation: fadeInSlow 2s ease-out forwards;
}

@keyframes fadeInSlow {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Délai progressif pour chaque titre */
.hero-text .fade-in-title { 
  animation-delay: 0.5s; 
}
#methode .section-tag.fade-in-title { 
  animation-delay: 0.3s; 
}
#methode h2.fade-in-title { 
  animation-delay: 0.6s; 
}
#coaching .fade-in-title { 
  animation-delay: 0.3s; 
}
#formations .fade-in-title { 
  animation-delay: 0.3s; 
}
#testimonials .fade-in-title { 
  animation-delay: 0.3s; 
}
#newsletter .fade-in-title { 
  animation-delay: 0.3s; 
}
#social .fade-in-title { 
  animation-delay: 0.3s; 
}

/* === MENU MOBILE === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 30px;
  height: 3px;
  background: var(--cyan-neon);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* === SECTION QUALIOPI CENTRÉE === */
.qualiopi-section {
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 800px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
}

.qualiopi-section img {
  width: 250px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 5px 20px rgba(168, 85, 247, 0.3));
}

.qualiopi-section p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* === RESPONSIVE TABLETTE === */
@media (max-width: 1024px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  #particles-canvas {
    width: 100%;
    height: 40%;
    top: auto;
    bottom: 0;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text .tagline {
    font-size: 1.3rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
  /* Menu mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: rgba(15, 23, 42, 0.6);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  nav {
    padding: 1rem 1rem;
  }

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

  /* Hero section */
  .hero {
    min-height: auto;
    padding: 5rem 1rem 2rem;
  }

  #particles-canvas {
    display: none;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }

  .hero-text .tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 0.5rem;
  }

  /* Boutons */
  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-small {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Sections */
  section {
    padding: 3rem 1rem;
  }

  section[style*="padding-top: 150px"] {
    padding-top: 100px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Titres de sections - CORRECTION PRINCIPALE */
  .section-header {
    padding: 0 0.5rem;
  }

  .section-header h1 {
    font-size: 1.8rem !important;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .section-header h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .section-header p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section-tag {
    font-size: 0.75rem;
  }

  /* Gradient text - correction pour mobile */
  .gradient-text {
    font-size: 1.8rem !important;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* PAGE À PROPOS - CORRECTIONS SPÉCIALES */
  
  /* H1 principal page à propos */
  h1[style*="font-size: 4rem"] {
    font-size: 1.8rem !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
  }

  /* H2 sections à propos */
  h2[style*="font-size: 2.5rem"] {
    font-size: 1.5rem !important;
    padding: 0 0.5rem !important;
  }

  /* Divs avec backgrounds gradients (sections à propos) */
  div[style*="background: linear-gradient"][style*="padding: 4rem"] {
    padding: 2rem 1rem !important;
    margin-bottom: 2rem !important;
  }

  /* Grids à 2 colonnes (certification + mot dirigeant) */
  div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"],
  div[style*="display: grid"][style*="grid-template-columns: 1fr 2fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  /* Citation Ziglar */
  div[style*="text-align: center"][style*="border-left: 4px solid"] {
    padding: 1.5rem 1rem !important;
    margin-top: 2rem !important;
  }

  div[style*="text-align: center"][style*="border-left: 4px solid"] p {
    font-size: 1rem !important;
  }

  /* Mot du dirigeant - encadré citation */
  div[style*="padding: 2rem"][style*="border-left: 4px solid"] {
    padding: 1.5rem 1rem !important;
  }

  div[style*="padding: 2rem"][style*="border-left: 4px solid"] p {
    font-size: 1rem !important;
  }

  /* Images page à propos */
  img[style*="max-width: 300px"] {
    max-width: 200px !important;
    width: 100% !important;
  }

  /* Paragraphes longs */
  p[style*="font-size: 1.2rem"] {
    font-size: 1rem !important;
  }

  p[style*="font-size: 1.3rem"] {
    font-size: 1rem !important;
  }

  p[style*="font-size: 1.5rem"] {
    font-size: 1.1rem !important;
  }

  /* Cards grid */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
    margin: 0;
  }

  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .card h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .card h4 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .card-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  /* Citation (Ziglar) */
  blockquote,
  p[style*="font-style: italic"][style*="border-left"] {
    font-size: 0.95rem !important;
    padding: 1rem !important;
    margin: 1rem 0 !important;
    border-left-width: 3px !important;
  }

  /* Mot du dirigeant */
  div[style*="display: flex"][style*="gap"] {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  div[style*="display: flex"][style*="gap"] img {
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto 1rem !important;
  }

  /* Images de profil/témoignages */
  img[style*="border-radius: 50%"] {
    max-width: 80px !important;
    max-height: 80px !important;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    padding: 0 0.5rem;
  }

  .newsletter-form input {
    font-size: 0.95rem;
    padding: 0.9rem;
  }

  /* Qualiopi */
  .qualiopi-section {
    padding: 2rem 1rem;
    margin: 2rem 0.5rem;
  }

  .qualiopi-section img {
    width: 200px;
  }

  .qualiopi-section p {
    font-size: 0.95rem;
  }

  /* Social icons */
  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Blog - titres articles */
  .card h3 {
    font-size: 1.3rem !important;
    line-height: 1.4;
  }

  /* Iframes (Fillout) */
  iframe {
    width: 100% !important;
    max-width: 100%;
  }

  /* Pages de coaching/formations - titres */
  h1[style*="font-size: 3.5rem"],
  h1[style*="font-size: 3rem"] {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    padding: 0 0.5rem !important;
  }

  h2[style*="font-size: 2.5rem"],
  h2[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  /* Listes avec checkmarks */
  ul li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Padding général pour éviter débordement */
  * {
    max-width: 100%;
  }
}

/* === RESPONSIVE TRÈS PETIT MOBILE === */
@media (max-width: 480px) {
  nav {
    padding: 1rem 0.8rem;
  }

  .hero {
    padding: 4.5rem 0.8rem 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    padding: 0 0.3rem;
  }

  .hero-text .tagline {
    font-size: 0.95rem;
    padding: 0 0.3rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
  }

  .btn-small {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }

  section {
    padding: 2.5rem 0.8rem;
  }

  .section-header h1,
  .gradient-text {
    font-size: 1.5rem !important;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .card {
    padding: 1.2rem;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .qualiopi-section {
    padding: 1.5rem 0.8rem;
  }

  .qualiopi-section img {
    width: 150px;
  }

  .footer-section {
    padding: 0 0.5rem;
  }
}

/* === STYLES ARTICLES BLOG === */
.article-container {
  padding-top: 120px;  /* ← MODIFIÉ (était 0) pour éviter chevauchement navbar */
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
}

.article-header {
  margin-bottom: 3rem;
  padding-top: 1rem;
  position: relative !important;  /* ← AJOUTÉ pour forcer */
}

.article-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative !important;  /* ← AJOUTÉ pour forcer */
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  align-items: center;
}

.article-category {
  background: rgba(6, 182, 212, 0.2);
  color: var(--cyan-neon);
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.article-intro {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-style: italic;
}

.article-image-placeholder {
  margin: 3rem 0;
  text-align: center;
}

.article-image-placeholder > div {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.2));
  padding: 4rem 2rem;
  border-radius: 16px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
}

.article-body h2 {
  color: var(--cyan-neon);
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul {
  margin: 2rem 0;
  padding-left: 2rem;
}

.article-body ul li {
  margin-bottom: 1rem;
}

.article-callout {
  background: rgba(168, 85, 247, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--purple-neon);
  border-radius: 8px;
  margin: 2rem 0;
}

.article-tip {
  background: rgba(6, 182, 212, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--cyan-neon);
  border-radius: 8px;
  margin: 2rem 0;
}

.article-comparison {
  background: rgba(15, 23, 42, 0.6);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.article-comparison p {
  margin-bottom: 1rem;
}

.article-cta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(6, 182, 212, 0.1));
  border: 2px solid var(--purple-neon);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.article-cta h3 {
  color: var(--cyan-neon);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.article-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.article-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.article-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.article-related h3 {
  color: var(--cyan-neon);
  margin-bottom: 2rem;
}

.article-related ul {
  list-style: none;
  padding: 0;
}

.article-related ul li {
  margin-bottom: 1rem;
}

.article-related ul li a {
  color: var(--cyan-neon);
  font-size: 1.05rem;
}

.article-author {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.article-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-neon), var(--cyan-neon));
  flex-shrink: 0;
}

.article-author-info p:first-child {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.article-author-info p:last-child {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Breadcrumb article */
.article-breadcrumb {
  padding: 120px 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
  list-style: none;
  padding: 0;
}

.article-breadcrumb a {
  color: var(--cyan-neon);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE ARTICLES BLOG === */
@media (max-width: 768px) {
  .article-container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
  }

  .article-breadcrumb {
    padding-top: 100px;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .article-breadcrumb ol {
    font-size: 0.8rem;
  }

  .article-header {
    margin-bottom: 2rem;
  }

  .article-title {
    font-size: 1.6rem !important;
    margin-bottom: 1rem !important;
  }

  .article-meta {
    gap: 0.8rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .article-intro {
    font-size: 1rem;
  }

  .article-image-placeholder > div {
    padding: 2rem 1rem;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-body h2 {
    font-size: 1.4rem !important;
  }

  .article-callout,
  .article-tip {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .article-comparison {
    padding: 1.5rem 1rem;
  }

  .article-cta {
    padding: 2rem 1rem;
  }

  .article-cta h3 {
    font-size: 1.3rem;
  }

  .article-cta p {
    font-size: 1rem;
  }

  .article-cta-buttons {
    flex-direction: column;
  }

  .article-author-card {
    flex-direction: column;
    text-align: center;
  }

  .article-author-avatar {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 1.4rem !important;
  }

  .article-body h2 {
    font-size: 1.2rem !important;
  }

  .article-cta h3 {
    font-size: 1.1rem;
  }
}

/* === NEWSLETTER === */
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-light);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--purple-neon);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

/* === SOCIAL ICONS === */
.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-neon), var(--cyan-neon));
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}
