/* ============================================
   ARTICLE PAGE STYLES
   Individual blog post/resource page
   ============================================ */

/* Article Container */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 80px;
}

/* Article Header */
.article-header {
  margin-bottom: 48px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.article-breadcrumb a {
  color: var(--grey-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: var(--orange-500);
}

.article-breadcrumb span {
  color: var(--grey-400);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.article-date {
  font-size: 14px;
  color: var(--orange-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-date::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--orange-500);
  border-radius: 50%;
}

.article-category {
  display: inline-block;
  font-size: 12px;
  color: var(--grey-600);
  background: var(--grey-100);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-reparations {
  background: rgba(255, 107, 74, 0.1);
  color: var(--orange-600);
}

.category-tech {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.category-entreprise {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.category-conseils {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.article-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.article-excerpt {
  font-size: 20px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 32px;
}

/* Article Featured Image */
.article-featured-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--grey-200);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Content */
.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--grey-900);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--grey-900);
  margin: 64px 0 24px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding-top: 48px;
  border-top: 1px solid var(--grey-200);
  position: relative;
}

.article-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.article-content h2::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--orange-500);
}

.article-content h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--grey-900);
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.article-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-900);
  margin: 24px 0 12px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 24px;
  padding-left: 28px;
}

.article-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.article-content ul li::marker {
  color: var(--orange-500);
}

.article-content ol li::marker {
  color: var(--orange-500);
  font-weight: 600;
}

.article-content blockquote {
  border-left: 4px solid var(--orange-500);
  padding: 24px 32px;
  margin: 32px 0;
  background: var(--grey-50);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--grey-700);
}

.article-content blockquote p {
  margin-bottom: 0;
}

.article-content strong {
  font-weight: 600;
  color: var(--grey-900);
}

.article-content a {
  color: var(--orange-500);
  text-decoration: none;
  border-bottom: 1px solid var(--orange-500);
  transition: all 0.2s ease;
}

.article-content a:hover {
  color: var(--orange-600);
  border-bottom-color: var(--orange-600);
}

.article-content code {
  font-family: 'Monaco', 'Consolas', monospace;
  background: var(--grey-100);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--grey-800);
}

.article-content pre {
  background: var(--grey-900);
  color: var(--grey-100);
  padding: 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.article-content pre code {
  background: transparent;
  padding: 0;
  color: var(--grey-100);
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
  border: 1px solid var(--grey-200);
}

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  overflow: hidden;
}

.article-content thead {
  background: var(--grey-50);
}

.article-content th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--grey-900);
  border-bottom: 2px solid var(--grey-200);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-content td {
  padding: 16px;
  border-bottom: 1px solid var(--grey-200);
  color: var(--grey-700);
}

.article-content tbody tr:last-child td {
  border-bottom: none;
}

.article-content tbody tr:hover {
  background: var(--grey-50);
}

/* FAQ Items */
.article-content .faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.article-content .faq-item:hover {
  border-color: var(--orange-500);
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.1);
}

.article-content .faq-question {
  padding: 20px 56px 20px 24px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-900);
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: all 0.2s ease;
}

/* Old ::after icons removed - now using SVG .faq-icon */

.article-content .faq-item.active .faq-question {
  color: var(--orange-500);
}

.article-content .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.article-content .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.article-content .faq-answer p {
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-content .faq-answer p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CONTENT CARDS - Tips, Warnings, Info
   ============================================ */

/* Base card style */
.article-content .content-card {
  border-radius: 16px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.article-content .content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.article-content .content-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.article-content .content-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-content .content-card p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.article-content .content-card p:last-child {
  margin-bottom: 0;
}

.article-content .content-card ul,
.article-content .content-card ol {
  margin: 16px 0 0;
  padding-left: 20px;
}

.article-content .content-card li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Tip Card - Green */
.article-content .tip-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.article-content .tip-card::before {
  background: #10b981;
}

.article-content .tip-card .content-card-title {
  color: #059669;
}

.article-content .tip-card li::marker {
  color: #10b981;
}

/* Warning Card - Orange/Red */
.article-content .warning-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.article-content .warning-card::before {
  background: #ef4444;
}

.article-content .warning-card .content-card-title {
  color: #dc2626;
}

.article-content .warning-card li::marker {
  color: #ef4444;
}

/* Info Card - Blue */
.article-content .info-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.article-content .info-card::before {
  background: #3b82f6;
}

.article-content .info-card .content-card-title {
  color: #2563eb;
}

.article-content .info-card li::marker {
  color: #3b82f6;
}

/* Pro Tip Card - Orange/Brand */
.article-content .pro-tip-card {
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.08) 0%, rgba(255, 107, 74, 0.03) 100%);
  border: 1px solid rgba(255, 107, 74, 0.2);
}

.article-content .pro-tip-card::before {
  background: var(--orange-500);
}

.article-content .pro-tip-card .content-card-title {
  color: var(--orange-600);
}

.article-content .pro-tip-card li::marker {
  color: var(--orange-500);
}

/* Feature List Card - for listing multiple items with icons */
.article-content .feature-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.article-content .feature-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--grey-50);
  border-radius: 12px;
  border: 1px solid var(--grey-200);
  transition: all 0.2s ease;
}

.article-content .feature-item:hover {
  border-color: var(--orange-300);
  background: var(--white);
  transform: translateX(4px);
}

/* Standalone feature items (not in grid) */
.article-content .feature-item.standalone {
  margin: 20px 0;
}

/* Keyword/Search Terms List */
.article-content .keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.article-content .keyword-list li {
  display: inline-flex;
  align-items: center;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--grey-700);
  font-family: 'Monaco', 'Consolas', monospace;
  transition: all 0.2s ease;
  margin: 0;
}

.article-content .keyword-list li:hover {
  background: rgba(255, 107, 74, 0.08);
  border-color: var(--orange-300);
  color: var(--orange-600);
}

.article-content .keyword-list li::before {
  content: '🔍';
  margin-right: 8px;
  font-size: 12px;
}

/* Search query style (with quotes) */
.article-content .keyword-list.search-queries li {
  background: var(--grey-900);
  border-color: var(--grey-900);
  color: var(--grey-100);
  font-style: italic;
}

.article-content .keyword-list.search-queries li:hover {
  background: var(--grey-800);
  border-color: var(--orange-500);
}

.article-content .keyword-list.search-queries li::before {
  content: '>';
  color: var(--orange-500);
  font-style: normal;
  font-weight: bold;
}

/* Category Card - Bold header + list items */
.article-content .category-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
  margin: 16px 0;
  transition: all 0.2s ease;
}

.article-content .category-card:hover {
  border-color: var(--orange-300);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.article-content .category-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-500);
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-content .category-card-title::before {
  content: '📂';
  font-size: 18px;
}

.article-content .category-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.article-content .category-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 15px;
  color: var(--grey-700);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.article-content .category-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-content .category-card li::before {
  content: '→';
  color: var(--orange-500);
  font-weight: 600;
}

/* Category cards in a grid when multiple */
.article-content .category-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.article-content .category-cards-grid .category-card {
  margin: 0;
}

/* Contextual Card - intro sentence with list */
.article-content .contextual-card {
  background: linear-gradient(135deg, var(--grey-50) 0%, #fff 100%);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.article-content .contextual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
}

.article-content .contextual-card-intro {
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 16px;
  line-height: 1.5;
  padding-left: 8px;
}

.article-content .contextual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-content .contextual-list li {
  position: relative;
  padding: 10px 12px 10px 28px;
  margin: 8px 0;
  background: white;
  border-radius: 8px;
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.article-content .contextual-list li:hover {
  background: var(--grey-50);
  transform: translateX(4px);
}

.article-content .contextual-list li::before {
  content: '→';
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--orange-500);
  font-weight: 600;
}

/* URL/Route List - code style */
.article-content .url-list {
  background: var(--grey-900);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  list-style: none;
}

.article-content .url-list li {
  font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
  font-size: 14px;
  color: #a5f3fc;
  padding: 8px 12px;
  margin: 6px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--orange-500);
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-content .url-list li::before {
  content: '📄';
  font-size: 14px;
}

.article-content .url-list li:first-child {
  background: rgba(255, 107, 74, 0.15);
  color: #fcd34d;
}

.article-content .url-list li:first-child::before {
  content: '🏠';
}

/* Annotation in URL list */
.article-content .url-list .url-note {
  color: var(--grey-400);
  font-size: 12px;
  font-style: italic;
  margin-left: auto;
}

/* Do/Don't List - with ✓ and ✗ */
.article-content .do-dont-list {
  background: var(--grey-50);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  list-style: none;
  border: 1px solid var(--grey-200);
}

.article-content .do-dont-list li {
  padding: 12px 16px;
  margin: 8px 0;
  border-radius: 8px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.article-content .do-dont-list li.do-item {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--grey-800);
}

.article-content .do-dont-list li.do-item::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.article-content .do-dont-list li.dont-item {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--grey-800);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
}

.article-content .do-dont-list li.dont-item::before {
  content: '✗';
  color: #ef4444;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* Numbered Steps List */
.article-content .steps-list {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 32px;
  margin: 28px 0;
  counter-reset: step-counter;
  list-style: none;
}

.article-content .steps-list li {
  position: relative;
  padding: 16px 16px 16px 64px;
  margin: 0;
  counter-increment: step-counter;
  border-bottom: 1px solid var(--grey-100);
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-700);
}

.article-content .steps-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-content .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.3);
}

/* Steps list with title */
.article-content .steps-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 32px;
  margin: 28px 0;
}

.article-content .steps-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-content .steps-card-title::before {
  content: '📋';
  font-size: 20px;
}

.article-content .steps-card .steps-list {
  border: none;
  padding: 0;
  margin: 0;
}

.article-content .feature-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 107, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.article-content .feature-item-content {
  flex: 1;
}

.article-content .feature-item-title {
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 4px;
  font-size: 16px;
}

.article-content .feature-item-desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0;
}

/* Stats/Highlight Card */
.article-content .stat-highlight {
  background: var(--grey-900);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
}

.article-content .stat-highlight-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
}

.article-content .stat-highlight-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Quote/Testimonial Card */
.article-content .quote-card {
  background: var(--grey-50);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
  position: relative;
  border: 1px solid var(--grey-200);
}

.article-content .quote-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: var(--orange-500);
  opacity: 0.3;
  line-height: 1;
}

.article-content .quote-card p {
  font-size: 18px;
  font-style: italic;
  color: var(--grey-700);
  line-height: 1.7;
  margin: 0;
  padding-left: 40px;
}

/* Legacy Callout Boxes */
.article-content .callout {
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  border-left: 4px solid;
}

.article-content .callout-info {
  background: rgba(59, 130, 246, 0.05);
  border-color: #3b82f6;
}

.article-content .callout-warning {
  background: rgba(245, 158, 11, 0.05);
  border-color: #f59e0b;
}

.article-content .callout-success {
  background: rgba(16, 185, 129, 0.05);
  border-color: #10b981;
}

.article-content .callout p {
  margin-bottom: 0;
}

/* CTA Box */
.article-content .cta-box {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 16px;
  padding: 48px 32px;
  margin: 48px 0;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.2);
}

.article-content .cta-box h3 {
  color: var(--white);
  margin: 0 0 16px 0;
  font-size: 28px;
}

.article-content .cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 17px;
}

.article-content .cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange-500);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: none;
  transition: all 0.2s ease;
}

.article-content .cta-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 23, 23, 0.15);
}

/* CTA Section - Match article-cta styling */
.article-content .cta-section {
  text-align: center;
  padding: 48px 32px;
  background: var(--grey-50);
  border-radius: 12px;
  border: 1px solid var(--grey-200);
  margin: 48px 0;
}

.article-content .cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--grey-900);
  margin: 0 0 16px 0;
  border-top: none;
  padding-top: 0;
}

.article-content .cta-section h2::before {
  display: none;
}

.article-content .cta-section p {
  font-size: 16px;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.article-content .cta-section p:last-child {
  margin-bottom: 0;
}

.article-content .cta-section a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: none;
  transition: all 0.2s ease;
}

.article-content .cta-section a:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.2);
}

/* Primary Button (CTA links) */
.article-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: none;
  transition: all 0.2s ease;
}

.article-content .btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

/* Info Box */
.info-box {
  background: rgba(255, 107, 74, 0.05);
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.info-box-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange-600);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-700);
}

/* Article Footer */
.article-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.article-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--grey-50);
  border-radius: 12px;
  border: 1px solid var(--grey-200);
}

.article-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 16px;
}

.article-cta-text {
  font-size: 16px;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.article-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
}

.article-cta-button:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.2);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  transition: all 0.2s ease;
}

.back-to-blog::before {
  content: '←';
  transition: transform 0.2s ease;
}

.back-to-blog:hover {
  color: var(--orange-500);
}

.back-to-blog:hover::before {
  transform: translateX(-4px);
}

/* ============================================
   FAQ ACCORDION SECTION
   ============================================ */
.faq-section {
  margin: 64px 0;
  background: var(--grey-50);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--grey-200);
}

.faq-section > h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--grey-900);
  margin: 0 0 32px 0;
  text-align: center;
  border-top: none;
  padding-top: 0;
}

.faq-section > h2::before {
  display: none;
}

.faq-accordion {
  max-width: 700px;
  margin: 0 auto;
}

.faq-accordion .faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-accordion .faq-item:hover {
  border-color: var(--orange-300);
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.08);
}

.faq-accordion .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-900);
  line-height: 1.4;
  transition: all 0.2s ease;
}

.faq-accordion .faq-question:hover {
  color: var(--orange-600);
}

.faq-accordion .faq-question span {
  flex: 1;
  padding-right: 16px;
}

.faq-accordion .faq-icon {
  flex-shrink: 0;
  color: var(--orange-500);
  transition: transform 0.3s ease;
}

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

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

.faq-accordion .faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-accordion .faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-600);
}

/* ============================================
   CTA SECTION (End of Article)
   White card with gradient mesh + shimmer title
   ============================================ */

/* Override article-content styles for CTA section */
.article-content .article-cta-section {
  margin: 80px 0 48px;
}

.article-content .article-cta-section .cta-box {
  background: var(--white);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--grey-200);
}

/* Animated gradient mesh background */
.article-content .article-cta-section .cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 107, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255, 107, 74, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 74, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaMeshShift 8s ease-in-out infinite;
}

@keyframes ctaMeshShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.08);
  }
}

.article-content .article-cta-section .cta-box > * {
  position: relative;
  z-index: 2;
}

/* Title with shimmer effect */
.article-content .article-cta-section .cta-box h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  margin: 0 0 24px 0;
  border-top: none;
  padding-top: 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
  background: linear-gradient(
    90deg,
    var(--grey-900) 0%,
    var(--grey-900) 30%,
    var(--orange-500) 50%,
    var(--grey-900) 70%,
    var(--grey-900) 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ctaShimmer 6s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0% {
    background-position: -100% 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.article-content .article-cta-section .cta-box h2::before {
  display: none;
}

.article-content .article-cta-section .cta-box p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.article-content .article-cta-section .cta-box ol,
.article-content .article-cta-section .cta-box ul {
  text-align: left;
  max-width: 420px;
  margin: 28px auto 36px;
  padding-left: 0;
  list-style: none;
}

.article-content .article-cta-section .cta-box li {
  color: var(--grey-700);
  margin-bottom: 14px;
  font-size: 16px;
  padding-left: 32px;
  position: relative;
  line-height: 1.5;
}

.article-content .article-cta-section .cta-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 107, 74, 0.1);
  border-radius: 50%;
  color: var(--orange-500);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-content .article-cta-section .cta-box li::marker {
  content: none;
}

/* CTA Button - prominent styling */
.article-content .article-cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange-500);
  color: var(--white) !important;
  padding: 20px 44px;
  border-radius: 14px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  border: none !important;
  box-shadow: 0 4px 14px rgba(255, 107, 74, 0.3);
}

.article-content .article-cta-section .cta-button:hover {
  background: var(--orange-600);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 107, 74, 0.45);
  color: var(--white) !important;
}

.article-content .article-cta-section .cta-button:active {
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 768px) {
  .article-content .article-cta-section .cta-box {
    padding: 48px 24px;
    border-radius: 20px;
  }

  .article-content .article-cta-section .cta-box h2 {
    font-size: 28px;
  }

  .article-content .article-cta-section .cta-button {
    padding: 18px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}

/* Legacy FAQ Section in Articles */
.article-container .faq-section {
  max-width: 100%;
  padding: 80px 0;
  margin: 64px 0;
  background: var(--grey-50);
  border-radius: 16px;
  padding: 60px 48px;
  border: 1px solid var(--grey-200);
}

.article-container .faq-section .section-header {
  margin-bottom: 48px;
}

.article-container .faq-section .section-label {
  color: var(--orange-500);
}

.article-container .faq-section .section-title {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--grey-900);
}

.article-container .faq-section .section-subtitle {
  color: var(--grey-600);
}

/* Related Articles */
.related-articles {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-200);
}

.related-articles-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 32px;
  text-align: left;
  letter-spacing: -0.01em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Related Article Card - Compact Style */
.related-articles .actualite-item {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.related-articles .actualite-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.related-articles .actualite-item:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.06);
  border-color: var(--grey-300);
}

.related-articles .actualite-item:hover::before {
  transform: scaleX(1);
}

.related-articles .actualite-date {
  font-size: 12px;
  color: var(--grey-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.related-articles .actualite-date::before {
  display: none;
}

.related-articles .actualite-title-link {
  text-decoration: none;
  display: block;
}

.related-articles .actualite-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.related-articles .actualite-title-link:hover .actualite-title,
.related-articles .actualite-item:hover .actualite-title {
  color: var(--orange-600);
}

.related-articles .actualite-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-600);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Card Footer - Always at Bottom */
.related-articles .actualite-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

.related-articles .actualite-category {
  display: inline-block;
  font-size: 11px;
  color: var(--grey-600);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  border: 1px solid var(--grey-200);
  flex-shrink: 0;
}

.related-articles .category-entreprise {
  background: rgba(16, 185, 129, 0.05);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.2);
}

.related-articles .category-reparations {
  background: rgba(255, 107, 74, 0.05);
  color: var(--orange-600);
  border-color: rgba(255, 107, 74, 0.2);
}

.related-articles .category-tech {
  background: rgba(59, 130, 246, 0.05);
  color: #2563eb;
  border-color: rgba(59, 130, 246, 0.2);
}

.related-articles .category-conseils {
  background: rgba(139, 92, 246, 0.05);
  color: #7c3aed;
  border-color: rgba(139, 92, 246, 0.2);
}

.related-articles .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-700);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 0;
  white-space: nowrap;
}

.related-articles .read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}

.related-articles .read-more:hover {
  color: var(--orange-600);
  gap: 8px;
}

.related-articles .read-more:hover::after {
  transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .article-container {
    padding: 140px 24px 60px;
  }

  .article-title {
    margin-bottom: 16px;
  }

  .article-excerpt {
    font-size: 18px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-content h2 {
    margin: 36px 0 16px;
  }

  .article-content h3 {
    margin: 24px 0 12px;
  }

  .info-box {
    padding: 20px;
  }

  .article-cta {
    padding: 32px 24px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-articles {
    margin-top: 60px;
    padding-top: 32px;
  }

  .related-articles-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .related-articles .actualite-item {
    padding: 16px;
  }

  .article-container .faq-section {
    padding: 40px 24px;
    margin: 48px 0;
  }

  .article-container .faq-section .section-header {
    margin-bottom: 32px;
  }
}
