/* ============================================================
   SKOD V2 — Shared Styles
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  --violet: #2a27c0;
  --violet-light: #ededff;
  --violet-mid: #4a47d4;
  --violet-dark: #1e1b8a;
  --dark: #111118;
  --gray-900: #1a1a2e;
  --gray-700: #3d3d56;
  --gray-500: #6b6b80;
  --gray-400: #8e8ea0;
  --gray-300: #b0b0c0;
  --gray-100: #f4f4f8;
  --gray-50: #f9f9fb;
  --white: #ffffff;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-red-light: #fef2f2;
  --accent-green-light: #f0fdf4;
  --accent-orange: #f59e0b;
  --placeholder-bg: #e8e6ff;
  --placeholder-border: #c5c2f0;
  --placeholder-text: #6a65d6;
  /* Blog category colors */
  --cat-green: #10b981;
  --cat-green-light: #ecfdf5;
  --cat-green-text: #059669;
  --cat-sky: #0ea5e9;
  --cat-sky-light: #f0f9ff;
  --cat-sky-text: #0369a1;
  --cat-amber: #f59e0b;
  --cat-amber-light: #fffbeb;
  --cat-amber-text: #92400e;
  --cat-rose: #e11d48;
  --cat-rose-light: #fff1f2;
  --cat-rose-text: #be123c;
  --cat-slate: #475569;
  --cat-slate-light: #f1f5f9;
  --cat-slate-text: #475569;
  --cat-orange: #ea580c;
  --cat-orange-light: #fff7ed;
  --cat-orange-text: #c2410c;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

section {
  padding: 100px 0;
}

/* ============ TYPOGRAPHY ============ */
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 56px;
}

.section-centered .section-title,
.section-centered .section-subtitle,
.section-centered .section-label {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-centered .section-title { max-width: 700px; }
.section-centered .section-subtitle { max-width: 600px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--violet);
  letter-spacing: -0.5px;
  text-decoration: none;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--violet); }
.nav-links a.active { color: var(--violet); font-weight: 600; }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover { color: var(--violet); }
.nav-dropdown-trigger.active { color: var(--violet); font-weight: 600; }

.nav-chevron {
  font-size: 12px;
  transition: transform 0.2s;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 8px 0;
  min-width: 220px;
  z-index: 110;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--violet-light);
  color: var(--violet);
}

.nav-cta {
  background: var(--violet);
  color: white !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--violet-mid); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--violet);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--violet-mid);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--violet);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--violet-light);
  transition: all 0.25s;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.btn-ghost:hover { gap: 12px; }
.btn-ghost .arrow { font-size: 18px; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--violet);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-white:hover {
  background: var(--violet-light);
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ IMAGE PLACEHOLDERS ============ */
.img-placeholder {
  background: var(--placeholder-bg);
  border: 2px dashed var(--placeholder-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 14px,
    rgba(106, 101, 214, 0.04) 14px, rgba(106, 101, 214, 0.04) 28px
  );
}

.img-placeholder .ph-label {
  position: relative; z-index: 1;
  background: var(--violet);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.img-placeholder .ph-title {
  position: relative; z-index: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--placeholder-text);
  margin-bottom: 6px;
}

.img-placeholder .ph-desc {
  position: relative; z-index: 1;
  font-size: 12px;
  color: var(--placeholder-text);
  opacity: 0.7;
  max-width: 400px;
  line-height: 1.5;
}

.img-placeholder--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}

.img-placeholder--dark::before {
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 14px,
    rgba(255,255,255,0.02) 14px, rgba(255,255,255,0.02) 28px
  );
}

.img-placeholder--dark .ph-label { background: rgba(255,255,255,0.15); }
.img-placeholder--dark .ph-title,
.img-placeholder--dark .ph-desc { color: rgba(255,255,255,0.5); }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

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

.footer-brand .footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

.footer-legal {
  display: flex;
  gap: 24px;
}

/* ================================================================
   HOMEPAGE-SPECIFIC STYLES
   ================================================================ */

/* Hero */
.hero-home {
  padding-top: 150px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-home .hero-text {
  text-align: center;
}

.hero-home h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.08;
  color: var(--dark);
  max-width: 820px;
  margin: 0 auto 12px;
  letter-spacing: -1.5px;
}

.hero-home .hero-highlight {
  display: block;
  color: var(--violet);
}

.hero-home .hero-sub-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gray-400);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hero-home .hero-text > p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-visual {
  margin-top: 56px;
  text-align: center;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(42, 39, 192, 0.10), 0 1px 3px rgba(0,0,0,0.06);
  display: inline-block;
}

.hero-visual .img-placeholder {
  min-height: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(42, 39, 192, 0.10), 0 1px 3px rgba(0,0,0,0.06);
}

/* Problem section */
.problem-section {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--gray-50);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.25s;
}

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  background: #fef7f7;
}

.pain-card .pain-marker {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  margin-bottom: 14px;
  opacity: 0.7;
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

.problem-transition {
  text-align: center;
  padding-top: 8px;
}

.problem-transition p {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.problem-transition p em {
  color: var(--violet);
  font-style: normal;
}

/* Promise section */
.promise-section {
  background: var(--gray-900);
  color: white;
  padding: 100px 0;
}

.promise-section .section-label { color: rgba(255,255,255,0.4); }

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.promise-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.promise-title span { color: #a5a3ff; }

.promise-body {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* "Ce qu'on facture" section */
.what-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.what-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.25s;
}

.what-item:hover {
  border-color: var(--violet);
  box-shadow: 0 4px 20px rgba(42, 39, 192, 0.06);
  transform: translateY(-2px);
}

.what-item-visual .img-placeholder {
  min-height: 100px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.what-item-content {
  padding: 20px 20px 24px;
}

.what-item .what-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.what-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.what-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.what-cta { text-align: center; }

/* "Pour qui" section */
.who-section { background: var(--white); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.who-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(42, 39, 192, 0.07);
  transform: translateY(-2px);
}

.who-card-visual .img-placeholder {
  min-height: 160px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.who-card-content {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.who-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.who-card-header .who-icon {
  font-size: 30px;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--violet-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-card-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.who-card .who-pitch {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
}

.who-card .who-profiles {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.who-card .who-profiles span {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 5px;
  margin: 0 5px 6px 0;
}

.who-card .btn-ghost {
  margin-top: auto;
  font-size: 14px;
}

/* "Pourquoi Skod" section */
.why-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.25s;
}

.why-card:hover {
  border-color: var(--violet);
  box-shadow: 0 4px 20px rgba(42, 39, 192, 0.05);
}

.why-card .why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--violet-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-card-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Proof section */
.proof-section { background: var(--white); }

.proof-layout {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.proof-quote {
  background: var(--gray-50);
  border-left: 4px solid var(--violet);
  border-radius: 0 14px 14px 0;
  padding: 32px 36px;
  margin-bottom: 48px;
  text-align: left;
}

.proof-quote blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}

.proof-quote .quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.proof-quote .quote-role {
  font-size: 13px;
  color: var(--gray-400);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-strip-item .trust-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.trust-strip-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.trust-strip-item p {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

/* Final CTA (violet bg) */
.final-cta-section {
  background: var(--violet);
  text-align: center;
  padding: 88px 0;
}

.final-cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.final-cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ================================================================
   FEATURES PAGE STYLES
   ================================================================ */

/* Features Hero */
.hero-features {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-features .hero-badge {
  display: inline-block;
  background: var(--violet-light);
  color: var(--violet);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-features h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto 24px;
  letter-spacing: -1px;
}

.hero-features h1 span { color: var(--violet); }

.hero-features p {
  font-size: 19px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-scroll-hint {
  margin-top: 56px;
  font-size: 13px;
  color: var(--gray-300);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll-hint .arrow {
  display: block;
  margin: 8px auto 0;
  font-size: 20px;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Steps */
.steps-section {
  background: var(--gray-100);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step-card {
  padding: 32px 28px;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--gray-300);
  opacity: 0.4;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--violet);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Channels */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.channel-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
}

.channel-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(42, 39, 192, 0.08);
  transform: translateY(-2px);
}

.channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--violet-light);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 22px;
}

.channel-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.channel-card .channel-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.55;
}

.channel-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-examples span {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
}

/* Infrastructure (dark bg) */
.infra-section {
  background: var(--gray-900);
  color: white;
}

.infra-section .section-label { color: rgba(255,255,255,0.5); }
.infra-section .section-title { color: white; }
.infra-section .section-subtitle { color: rgba(255,255,255,0.55); }

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

.infra-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
}

.infra-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.infra-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.infra-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.infra-card ul {
  list-style: none;
  margin-top: 14px;
}

.infra-card ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.infra-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 13px;
}

/* Amplifiers */
.amplifiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.amplifier-card {
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  background: var(--white);
  transition: all 0.25s;
}

.amplifier-card:hover {
  border-color: var(--violet);
  box-shadow: 0 4px 20px rgba(42, 39, 192, 0.06);
}

.amplifier-card .amp-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}

.amplifier-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.amplifier-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Trust bar (features page) */
.trust-section {
  background: var(--gray-100);
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item .trust-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Features final CTA (uses .final-cta-section above) */
.final-cta-section--features {
  background: var(--white);
  text-align: center;
  padding: 100px 0 120px;
}

.final-cta-section--features h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.final-cta-section--features h2 span { color: var(--violet); }

.final-cta-section--features p {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ================================================================
   SOLUTION PAGE STYLES
   ================================================================ */

/* Solution Hero */
.hero-solution {
  padding-top: 150px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-tags span {
  background: var(--violet-light);
  color: var(--violet);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
}

.hero-solution h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-solution h1 em {
  font-style: normal;
  color: var(--violet);
}

.hero-solution .hero-body {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-solution .hero-visual .img-placeholder {
  min-height: 380px;
  box-shadow: 0 20px 60px rgba(42, 39, 192, 0.10), 0 1px 3px rgba(0,0,0,0.06);
}

/* Mirror section (scenarios) */
.mirror-section {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.scenario-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.scenario {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.scenario:last-child { border-bottom: none; }

.scenario-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.scenario-marker {
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  opacity: 0.6;
}

.scenario h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}

.scenario p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 24px;
}

.mirror-transition {
  text-align: center;
  padding-top: 48px;
}

.mirror-transition p {
  font-size: 19px;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

.mirror-transition p em {
  color: var(--violet);
  font-style: normal;
}

/* Shift section (dark) */
.shift-section {
  background: var(--gray-900);
  color: white;
}

.shift-section .section-label { color: rgba(255,255,255,0.35); }

.shift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.shift-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: white;
  margin-bottom: 28px;
  letter-spacing: -0.8px;
}

.shift-text h2 span { color: #a5a3ff; }

.shift-prose {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.shift-prose p { margin-bottom: 20px; }
.shift-prose p:last-child { margin-bottom: 0; }

.shift-pivot {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Projection section (use cases) */
.projection-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.usecase-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 28px rgba(42, 39, 192, 0.06);
  transform: translateY(-2px);
}

.usecase-visual .img-placeholder {
  min-height: 130px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.usecase-content {
  padding: 24px;
}

.usecase-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.usecase-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px 28px;
  background: var(--gray-50);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
}

.benefit-card .benefit-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* FAQ */
.faq-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 28px 0;
}

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

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 0;
  font-family: inherit;
}

.faq-question::before {
  content: '\2192';
  flex-shrink: 0;
  color: var(--violet);
  font-weight: 700;
  margin-top: 1px;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::before {
  transform: rotate(90deg);
}

.faq-answer {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 24px;
}

/* ================================================================
   SOLUTION PAGE — CENTERED VARIANTS (Créateurs, Agences)
   ================================================================ */

/* Centered hero (no split layout) */
.hero-solution--centered {
  padding-top: 150px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  text-align: center;
}

.hero-solution--centered .hero-tags {
  justify-content: center;
}

.hero-solution--centered h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.12;
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -1px;
}

.hero-solution--centered h1 em {
  font-style: normal;
  color: var(--violet);
}

.hero-solution--centered .hero-body {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 620px;
}

/* Icon-based usecase cards (no image placeholder) */
.usecase-card--icon {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.usecase-card--icon:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 28px rgba(42, 39, 192, 0.06);
  transform: translateY(-2px);
}

.usecase-card--icon .usecase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--violet-light);
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 20px;
}

.usecase-card--icon h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.usecase-card--icon .usecase-scene {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.usecase-card--icon .usecase-mechanism {
  font-size: 12px;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* 4-column benefits grid */
.benefits-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Centered shift section (no split layout, no image) */
.shift-section .shift-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.shift-section .shift-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: white;
  margin-bottom: 32px;
  letter-spacing: -0.8px;
}

.shift-section .shift-inner h2 span { color: #a5a3ff; }

.shift-section .shift-inner .shift-prose {
  text-align: left;
}

.shift-section .shift-inner .shift-pivot {
  text-align: center;
}

/* ================================================================
   BLOG / RESOURCES PAGE STYLES
   ================================================================ */

/* Blog Hero */
.blog-hero {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.blog-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.12;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -1.2px;
}

.blog-hero h1 em {
  font-style: normal;
  color: var(--violet);
}

.blog-hero .hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Guides section */
.guides-section {
  padding-top: 16px;
  padding-bottom: 72px;
  background: var(--gray-50);
}

.guides-section-header {
  margin-bottom: 28px;
}

.guides-section-header h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guides-section-header h2::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: rgba(42, 39, 192, 0.12);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(42, 39, 192, 0.07);
  transform: translateY(-3px);
}

.guide-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guide-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 16px,
    rgba(255, 255, 255, 0.04) 16px, rgba(255, 255, 255, 0.04) 32px
  );
}

.guide-visual--agences { background: var(--violet); }
.guide-visual--coachs { background: var(--gray-900); }
.guide-visual--createurs { background: #4338ca; }

.guide-visual .gv-icon {
  position: relative;
  z-index: 1;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-body {
  padding: 22px 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-badge .gb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.guide-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  flex-grow: 1;
}

.guide-card .guide-excerpt {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 16px;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  transition: gap 0.2s;
}

.guide-card:hover .guide-link { gap: 10px; }

/* Filters bar */
.filters-section {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.filters-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-50);
  color: var(--gray-500);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}

.filter-btn:hover {
  background: var(--violet-light);
  color: var(--violet);
  border-color: var(--violet-light);
}

.filter-btn--active {
  background: var(--violet);
  color: white;
  border-color: var(--violet);
}

.filter-btn--active:hover {
  background: var(--violet-mid);
  color: white;
}

/* Articles grid */
.articles-section {
  padding: 48px 0 80px;
  background: var(--white);
}

.articles-section-header {
  margin-bottom: 28px;
}

.articles-section-header h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.articles-section-header h2::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.articles-count {
  font-weight: 500;
  color: var(--gray-300);
  text-transform: none;
  letter-spacing: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Article card */
.article-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  border-color: var(--violet);
  box-shadow: 0 6px 24px rgba(42, 39, 192, 0.06);
  transform: translateY(-3px);
}

.article-accent {
  height: 4px;
  width: 100%;
}

.article-accent--facturation { background: var(--cat-green); }
.article-accent--freelances { background: var(--cat-sky); }
.article-accent--consultants { background: var(--cat-amber); }
.article-accent--agences { background: var(--violet); }
.article-accent--createurs { background: var(--cat-rose); }
.article-accent--outils { background: var(--cat-slate); }
.article-accent--default { background: var(--gray-300); }

.article-body {
  padding: 22px 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.article-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 5px;
}

.article-tag--facturation { background: var(--cat-green-light); color: var(--cat-green-text); }
.article-tag--freelances { background: var(--cat-sky-light); color: var(--cat-sky-text); }
.article-tag--consultants { background: var(--cat-amber-light); color: var(--cat-amber-text); }
.article-tag--agences { background: var(--violet-light); color: var(--violet); }
.article-tag--createurs { background: var(--cat-rose-light); color: var(--cat-rose-text); }
.article-tag--outils { background: var(--cat-slate-light); color: var(--cat-slate-text); }
.article-tag--default { background: var(--gray-100); color: var(--gray-500); }

.article-date {
  font-size: 12px;
  color: var(--gray-300);
  font-weight: 500;
}

.article-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  flex-grow: 1;
}

.article-card .article-excerpt {
  font-size: 13.5px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  margin-top: auto;
  transition: gap 0.2s;
}

.article-card:hover .article-read { gap: 10px; }

/* Articles empty / loading states */
.articles-loading,
.articles-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--gray-400);
  font-size: 15px;
}

/* Blog CTA */
.blog-cta-section {
  background: var(--gray-900);
  padding: 72px 0;
  text-align: center;
}

.blog-cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.blog-cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
  margin: 0 auto 32px;
}

.blog-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

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

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 8px 0; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-layout { grid-template-columns: 1fr; }
  .promise-visual-col { order: -1; }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-card::after { display: none !important; }
  .channels-grid { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: 1fr; }
  .amplifiers-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-solution .container { grid-template-columns: 1fr; }
  .hero-solution .hero-visual { order: -1; }
  .shift-layout { grid-template-columns: 1fr; }
  .shift-visual { order: -1; }
  .usecase-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid--4col { grid-template-columns: repeat(2, 1fr); }

  .guides-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .articles-grid { grid-template-columns: 1fr 1fr; }

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

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  section { padding: 64px 0; }
  .hero-home { padding-top: 120px; padding-bottom: 24px; }
  .hero-features { padding-top: 120px; padding-bottom: 48px; }
  .hero-solution { padding-top: 120px; padding-bottom: 24px; }
  .hero-solution--centered { padding-top: 120px; padding-bottom: 24px; }
  .benefits-grid--4col { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .blog-hero { padding-top: 110px; }
  .filters-bar { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: 12px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
}
