/* ============================================
   HISTORIQUE DE MES COMMANDES — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === VARIABLES === */
:root {
  --primary:        #0077B6;
  --primary-dark:   #005f91;
  --primary-light:  #e0f4ff;
  --secondary:      #90E0EF;
  --accent:         #00B4D8;
  --text:           #0f172a;
  --text-muted:     #64748b;
  --text-light:     #94a3b8;
  --bg:             #f8fafc;
  --white:          #ffffff;
  --border:         #e2e8f0;
  --border-light:   #f1f5f9;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:      0 10px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-blue:    0 8px 32px rgba(0,119,182,0.18);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --transition:     0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.75; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; max-width: 100%; }

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

section { padding: 88px 0; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.logo-icon svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

/* === HERO HOME === */
.hero-home {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f4ff 40%, #f8fafc 100%);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-home-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-home-text h1 {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-home-text h1 span { color: var(--primary); }

.hero-home-text p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: var(--text-muted);
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,119,182,0.28);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.hero-home-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-badge .badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-float-badge .badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* === BARRE DE RECHERCHE === */
.search-bar-wrapper {
  margin-bottom: 36px;
}

.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  max-width: 600px;
  margin: 0 auto;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.search-bar-inner:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,119,182,0.1);
}

.search-bar-inner svg {
  color: var(--text-light);
  flex-shrink: 0;
}

.search-bar-inner input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--text);
  background: transparent;
}

.search-bar-inner input::placeholder { color: var(--text-light); }

.search-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Message aucun résultat */
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  color: var(--text-light);
  text-align: center;
}

.no-results svg { opacity: 0.3; }
.no-results p { font-size: 1rem; color: var(--text-muted); margin: 0; }
.no-results small { font-size: 0.85rem; color: var(--text-light); }

/* === PLATFORM CARDS (compact pour 300+) === */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.platform-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

.platform-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-card-icon svg,
.platform-card-icon i { width: 20px; height: 20px; }

.platform-card-body { flex: 1; }

.platform-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.platform-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.platform-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.platform-card-footer span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
}

.platform-card-footer svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  transition: var(--transition);
}

.platform-card:hover .platform-card-footer svg {
  transform: translateX(4px);
}

/* === FAQ HOME === */
.faq-section { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--primary); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  font-family: inherit;
}

.faq-question:hover { color: var(--primary); }

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open { border-color: var(--primary); background: var(--primary-light); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-image-block { position: sticky; top: 88px; }

.faq-image-block img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}

/* === HOW IT WORKS === */
.how-section { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; margin: 0; }

/* =============================================
   PLATFORM PAGE (page marque)
   ============================================= */

.hero-platform {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}

.hero-platform-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-platform-left { min-width: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }

.platform-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  padding: 8px 16px 8px 10px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.platform-brand-tag .brand-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-brand-tag .brand-icon svg { width: 16px; height: 16px; }

.platform-brand-tag span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-platform-left h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.hero-platform-left > p {
  font-size: 1.05rem;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
  background: var(--primary);
  color: white;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,119,182,0.3);
  background: var(--primary-dark);
}

/* Couleurs marques spécifiques */
.btn-hero-cta.brand-amazon { background: #FF9900; box-shadow: 0 8px 32px rgba(255,153,0,0.25); }
.btn-hero-cta.brand-amazon:hover { background: #e68a00; box-shadow: 0 16px 48px rgba(255,153,0,0.35); }
.btn-hero-cta.brand-temu { background: #FF4500; box-shadow: 0 8px 32px rgba(255,69,0,0.25); }
.btn-hero-cta.brand-temu:hover { background: #e53e00; }
.btn-hero-cta.brand-shein { background: #e4396c; box-shadow: 0 8px 32px rgba(228,57,108,0.25); }
.btn-hero-cta.brand-shein:hover { background: #c42e5a; }
.btn-hero-cta.brand-aliexpress { background: #e62e04; box-shadow: 0 8px 32px rgba(230,46,4,0.25); }
.btn-hero-cta.brand-aliexpress:hover { background: #cc2800; }
.btn-hero-cta.brand-cdiscount { background: #e4001b; box-shadow: 0 8px 32px rgba(228,0,27,0.25); }
.btn-hero-cta.brand-cdiscount:hover { background: #c40018; }
.btn-hero-cta.brand-manomano { background: #00a651; box-shadow: 0 8px 32px rgba(0,166,81,0.25); }
.btn-hero-cta.brand-manomano:hover { background: #008c44; }
.btn-hero-cta.brand-zalando { background: #e63946; }
.btn-hero-cta.brand-zalando:hover { background: #c72d3a; }
.btn-hero-cta.brand-fnac { background: #e6a817; box-shadow: 0 8px 32px rgba(230,168,23,0.25); }
.btn-hero-cta.brand-fnac:hover { background: #c99214; }
.btn-hero-cta.brand-vinted { background: #007963; box-shadow: 0 8px 32px rgba(0,121,99,0.25); }
.btn-hero-cta.brand-vinted:hover { background: #005e4c; }

.hero-cta-note {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-cta-note svg { width: 14px; height: 14px; color: #22c55e; }

.hero-platform-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
  max-width: 300px;
}

.hero-stat-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stat-card .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-card .stat-icon svg { width: 18px; height: 18px; }

.hero-stat-card .stat-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.hero-stat-card .stat-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === ARTICLE LAYOUT === */
.article-section { background: var(--bg); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.article-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  min-width: 0;
}

.article-main-inner { padding: 44px 48px; }

.article-main h2 {
  font-size: 1.5rem;
  margin-top: 44px;
  margin-bottom: 16px;
  padding-top: 44px;
  border-top: 1px solid var(--border-light);
  color: var(--text);
}

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

/* TEXTE ARTICLE — pleine largeur, jamais colonnes */
.article-main p,
.article-main-inner p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  column-count: unset !important;
  columns: unset !important;
  -webkit-columns: unset !important;
  -moz-columns: unset !important;
  float: none;
  width: auto;
  max-width: 100%;
  display: block;
}

.article-main strong,
.article-main-inner strong { color: var(--text); font-weight: 600; }

/* STEPS LIST */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  counter-reset: step-counter;
}

.steps-list li {
  counter-increment: step-counter;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.steps-list li:last-child { border-bottom: none; }

.steps-list li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 3px;
}

.steps-list li > span {
  flex: 1;
  min-width: 0;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* INFO BOX */
.info-box {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-box svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin: 0 !important;
  line-height: 1.7;
}

/* === SIDEBAR === */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 84px;
}

.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-widget h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-faq { display: flex; flex-direction: column; gap: 16px; }

.sidebar-faq-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-faq-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.sidebar-faq-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 !important;
}

.other-guides-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 320px;
  overflow-y: auto;
}

.other-guides-list::-webkit-scrollbar { width: 4px; }
.other-guides-list::-webkit-scrollbar-track { background: var(--border-light); border-radius: 4px; }
.other-guides-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.other-guides-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.other-guides-list a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.other-guides-list a svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }

/* === FOOTER === */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid #1e293b;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
  color: #64748b;
}

.footer-brand a:not(.footer-logo) {
  color: var(--secondary);
  font-weight: 500;
}

.footer-brand a:not(.footer-logo):hover {
  color: white;
  text-decoration: underline;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  letter-spacing: -0.02em;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 16px; height: 16px; color: white; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.875rem;
  color: #64748b;
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--secondary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: #475569; margin: 0; }
.footer-disclaimer { font-size: 0.75rem !important; color: #334155 !important; }

/* === REVEAL ON SCROLL === */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .platforms-grid { grid-template-columns: repeat(4, 1fr); }
  .logo span { font-size: 0.95rem; }
}

@media (max-width: 1024px) {
  .hero-home-inner { grid-template-columns: 1fr; }
  .hero-home-image { display: none; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-image-block { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .hero-platform-inner { grid-template-columns: 1fr; }
  .hero-platform-right { display: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .article-main-inner { padding: 28px 20px; }
  .hero-btn-group { flex-direction: column; align-items: flex-start; }
  .hero-platform { padding: 36px 0 32px; }
}

@media (max-width: 480px) {
  .platforms-grid { grid-template-columns: 1fr; }
}