/* ─── Seolap Landing Page Styles ─────────────────────────────────────────── */

:root {
  --sl-primary:      #605dff;
  --sl-primary-hover:#4e4bcc;
  --sl-primary-50:   #f0efff;
  --sl-primary-100:  #e1e0ff;
  --sl-primary-200:  #c3c1ff;
  --sl-secondary:    #3584fc;
  --sl-success:      #37d80a;
  --sl-success-400:  #5de32e;
  --sl-danger:       #ff4023;
  --sl-danger-400:   #ff6b52;
  --sl-warning:      #ffc107;
  --sl-warning-400:  #ffd23f;
  --sl-purple-500:   #8b5cf6;
  --sl-gray-900:     #111827;
  --sl-gray-800:     #1f2937;
  --sl-gray-700:     #374151;
  --sl-gray-600:     #4b5563;
  --sl-gray-500:     #6b7280;
  --sl-gray-400:     #9ca3af;
  --sl-gray-300:     #d1d5db;
  --sl-gray-200:     #e5e7eb;
  --sl-gray-100:     #f3f4f6;
  --sl-gray-50:      #f9fafb;
  --sl-bg-light:     #f8f9fc;
}

/* Remove default WordPress margins on front page */
.seolap-front-page .wp-site-blocks,
.seolap-front-page .entry-content,
.seolap-front-page .wp-block-group__inner-container {
  padding: 0;
  margin: 0;
}
.seolap-front-page .wp-block-template-part > *,
.seolap-front-page .wp-block-group {
  max-width: none !important;
}

/* ─── Reset for seolap sections ────────────────────────────────────────── */
.sl-section * { box-sizing: border-box; }
.sl-section p { margin: 0 0 0.75rem; }
.sl-section h1, .sl-section h2, .sl-section h3 { margin: 0 0 0.5rem; line-height: 1.15; }
.sl-section a { text-decoration: none; }
.sl-section ul { list-style: none; padding: 0; margin: 0; }
.sl-section img { max-width: 100%; height: auto; display: block; }
.sl-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sl-container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.sl-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary);
  display: block;
  margin-bottom: 12px;
}

/* ─── NAVBAR ──────────────────────────────────────────────────────────── */
.sl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.sl-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sl-gray-100);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.sl-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sl-nav__logo img { height: 38px; width: auto; display: block; }
.sl-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.sl-nav__links a {
  font-size: 14px;
  color: var(--sl-gray-500);
  transition: color 0.15s;
}
.sl-nav__links a:hover { color: var(--sl-gray-900); }
.sl-nav__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sl-btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--sl-gray-600);
  padding: 8px 16px;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.sl-btn-ghost:hover { color: var(--sl-gray-900); }
.sl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sl-primary);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.sl-btn-primary:hover { background: var(--sl-primary-hover); }
.sl-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--sl-gray-200);
  color: var(--sl-gray-700) !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  transition: border-color 0.15s;
  background: none;
  text-decoration: none;
}
.sl-btn-secondary:hover { border-color: var(--sl-gray-300); }
.sl-nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.sl-nav__mobile {
  display: none;
  background: #fff;
  border-top: 1px solid var(--sl-gray-100);
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
}
.sl-nav__mobile.open { display: flex; }
.sl-nav__mobile a { font-size: 14px; color: var(--sl-gray-600); }

@media (max-width: 767px) {
  .sl-nav__links, .sl-nav__ctas { display: none; }
  .sl-nav__burger { display: block; }
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.sl-hero {
  padding: 80px 0;
  background: #fff;
}
.sl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sl-primary-50);
  color: var(--sl-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--sl-primary-100);
  margin-bottom: 28px;
}
.sl-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sl-primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.sl-hero__headline {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--sl-gray-900);
  line-height: 1.12;
  margin-bottom: 24px;
}
.sl-hero__headline span { color: var(--sl-primary); }
.sl-hero .sl-hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--sl-gray-500);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-align: center !important;
}
.sl-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.sl-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sl-primary);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(96,93,255,0.25);
  transition: background 0.15s;
}
.sl-btn-hero-primary:hover { background: var(--sl-primary-hover); }
.sl-hero__micro {
  font-size: 12px;
  color: var(--sl-gray-400);
  margin: 0;
}
.sl-hero__browser {
  margin-top: 56px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.sl-hero__chrome {
  background: var(--sl-gray-100);
  border-radius: 16px 16px 0 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--sl-gray-200);
  border-bottom: none;
}
.sl-hero__chrome-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.sl-hero__chrome-url {
  margin-left: 12px;
  background: #fff;
  border-radius: 6px;
  height: 24px;
  max-width: 300px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  color: var(--sl-gray-400);
}
.sl-hero__screenshot {
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  border: 1px solid var(--sl-gray-200);
  box-shadow: 0 24px 60px rgba(96,93,255,0.12);
}
.sl-hero__screenshot img { width: 100%; display: block; }
.sl-hero__badge-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid var(--sl-gray-100);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sl-hero__badge-float--left  { top: 80px; left: -16px; }
.sl-hero__badge-float--right { top: 160px; right: -16px; }
.sl-hero__badge-float .label { font-size: 10px; color: var(--sl-gray-400); line-height: 1; margin-bottom: 3px; }
.sl-hero__badge-float .value { font-size: 13px; font-weight: 700; color: var(--sl-gray-900); line-height: 1; }
.sl-hero__badge-float .value-green { color: var(--sl-success); }
@media (max-width: 1100px) { .sl-hero__badge-float { display: none !important; } }

/* ─── REASSURANCE ─────────────────────────────────────────────────────── */
.sl-reassurance {
  padding: 40px 0;
  background: var(--sl-primary-50);
  border-top: 1px solid var(--sl-primary-100);
  border-bottom: 1px solid var(--sl-primary-100);
}
.sl-reassurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sl-reassurance__item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.sl-reassurance__item .material-symbols-outlined {
  color: var(--sl-primary);
  font-size: 22px;
}
.sl-reassurance__item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-gray-700);
}
@media (max-width: 767px) {
  .sl-reassurance__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── PROBLEM ─────────────────────────────────────────────────────────── */
.sl-problem {
  padding: 80px 0;
  background: #fff;
}
.sl-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.sl-section-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--sl-gray-900);
  margin-bottom: 16px;
}
.sl-section-header p {
  color: var(--sl-gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.sl-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.sl-problem__card {
  border: 1px solid var(--sl-gray-100);
  border-radius: 20px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.sl-problem__card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sl-problem__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sl-problem__icon .material-symbols-outlined { font-size: 20px; }
.sl-problem__card h3 { font-size: 15px; font-weight: 600; color: var(--sl-gray-900); margin-bottom: 8px; }
.sl-problem__card p  { font-size: 13px; color: var(--sl-gray-500); line-height: 1.65; margin: 0; }
.sl-problem__callout {
  background: var(--sl-primary);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sl-problem__callout-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-problem__callout-icon .material-symbols-outlined { color: #fff; font-size: 24px; }
.sl-problem__callout-text {
  flex: 1;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin: 0;
}
.sl-problem__callout-text strong { color: #fff; font-weight: 700; }
.sl-btn-callout {
  background: #fff;
  color: var(--sl-primary) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.sl-btn-callout:hover { background: var(--sl-primary-50); }
@media (max-width: 767px) {
  .sl-problem__grid { grid-template-columns: 1fr; }
  .sl-problem__callout { flex-direction: column; }
}

/* ─── FEATURES ────────────────────────────────────────────────────────── */
.sl-features {
  padding: 80px 0;
  background: var(--sl-bg-light);
}
.sl-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sl-features__card {
  background: #fff;
  border: 1px solid var(--sl-gray-100);
  border-radius: 20px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.sl-features__card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sl-features__card-icon {
  width: 40px; height: 40px;
  background: var(--sl-primary-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sl-features__card-icon .material-symbols-outlined { color: var(--sl-primary); font-size: 20px; }
.sl-features__card h3 { font-size: 15px; font-weight: 600; color: var(--sl-gray-900); margin-bottom: 8px; }
.sl-features__card p  { font-size: 13px; color: var(--sl-gray-500); line-height: 1.65; margin: 0; }
@media (max-width: 1023px) { .sl-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .sl-features__grid { grid-template-columns: 1fr; } }

/* ─── HOW IT WORKS ────────────────────────────────────────────────────── */
.sl-how {
  padding: 80px 0;
  background: #fff;
}
.sl-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 48px;
}
.sl-how__connector {
  display: none;
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: var(--sl-primary-100);
}
@media (min-width: 768px) { .sl-how__connector { display: block; } }
.sl-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sl-how__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sl-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(96,93,255,0.3);
  margin-bottom: 20px;
}
.sl-how__step h3 { font-size: 16px; font-weight: 600; color: var(--sl-gray-900); margin-bottom: 8px; }
.sl-how__step p  { font-size: 13px; color: var(--sl-gray-500); line-height: 1.65; max-width: 220px; margin: 0; }
.sl-how__cta { text-align: center; }
@media (max-width: 767px) { .sl-how__steps { grid-template-columns: 1fr; gap: 40px; } }

/* ─── DASHBOARD SHOWCASE ──────────────────────────────────────────────── */
.sl-dashboard {
  padding: 80px 0;
  background: var(--sl-bg-light);
}
.sl-dashboard__annotations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.sl-dashboard__annotation {
  background: #fff;
  border: 1px solid var(--sl-gray-100);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sl-dashboard__annotation .material-symbols-outlined { font-size: 22px; margin-top: 2px; }
.sl-dashboard__annotation .ann-title { font-size: 13px; font-weight: 600; color: var(--sl-gray-800); line-height: 1; margin-bottom: 4px; }
.sl-dashboard__annotation .ann-desc  { font-size: 12px; color: var(--sl-gray-500); line-height: 1.4; margin: 0; }
.sl-dashboard__screenshot {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--sl-gray-200);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.sl-dashboard__screenshot img { width: 100%; display: block; }
@media (max-width: 767px) { .sl-dashboard__annotations { grid-template-columns: 1fr; } }

/* ─── SOCIAL PROOF ────────────────────────────────────────────────────── */
.sl-social-proof {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--sl-gray-100);
  border-bottom: 1px solid var(--sl-gray-100);
}
.sl-social-proof__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-gray-400);
  margin-bottom: 32px;
}
.sl-social-proof__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}
.sl-social-proof__logo {
  opacity: 0.4;
  transition: opacity 0.2s;
  cursor: default;
  text-align: center;
}
.sl-social-proof__logo:hover { opacity: 0.8; }
.sl-social-proof__logo .name { font-size: 16px; font-weight: 900; color: var(--sl-gray-700); letter-spacing: -0.04em; line-height: 1; }
.sl-social-proof__logo .sub  { font-size: 10px; color: var(--sl-gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.sl-social-proof__logo img   { max-height: 40px; width: auto; display: block; filter: grayscale(1); }

/* ─── TESTIMONIALS ────────────────────────────────────────────────────── */
.sl-testimonials {
  padding: 80px 0;
  background: var(--sl-bg-light);
}
.sl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sl-testimonials__card {
  background: #fff;
  border: 1px solid var(--sl-gray-100);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.sl-testimonials__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.sl-testimonials__stars .material-symbols-outlined { color: var(--sl-warning-400); font-size: 16px; }
.sl-testimonials__text {
  font-size: 14px;
  color: var(--sl-gray-600);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.sl-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--sl-gray-100);
}
.sl-testimonials__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-testimonials__name { font-size: 13px; font-weight: 600; color: var(--sl-gray-800); line-height: 1; margin-bottom: 4px; }
.sl-testimonials__role { font-size: 11px; color: var(--sl-gray-400); line-height: 1; margin: 0; }
@media (max-width: 767px) { .sl-testimonials__grid { grid-template-columns: 1fr; } }

/* ─── PRICING ─────────────────────────────────────────────────────────── */
.sl-pricing {
  padding: 80px 0;
  background: #fff;
}
.sl-pricing__card {
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
  background: var(--sl-primary);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(96,93,255,0.35);
  color: #fff;
}
.sl-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sl-warning);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.sl-pricing__plan-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.sl-pricing__price { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 24px; }
.sl-pricing__price .amount { font-size: 52px; font-weight: 800; line-height: 1; }
.sl-pricing__price .period { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.sl-pricing__features { margin-bottom: 32px; }
.sl-pricing__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}
.sl-pricing__feature:last-child { margin-bottom: 0; }
.sl-pricing__feature .material-symbols-outlined { font-size: 16px; color: rgba(255,255,255,0.6); }
.sl-pricing__feature span { color: rgba(255,255,255,0.9); }
.sl-btn-pricing {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--sl-primary) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.sl-btn-pricing:hover { background: var(--sl-primary-50); }
.sl-pricing__micro {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.sl-pricing__coming-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sl-gray-400);
  margin-bottom: 16px;
}
.sl-pricing__coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.sl-pricing__coming-card {
  border: 1px dashed var(--sl-gray-200);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  opacity: 0.6;
}
.sl-pricing__coming-card .plan  { font-size: 13px; font-weight: 600; color: var(--sl-gray-500); margin-bottom: 4px; }
.sl-pricing__coming-card .desc  { font-size: 11px; color: var(--sl-gray-400); margin-bottom: 4px; }
.sl-pricing__coming-card .price { font-size: 15px; font-weight: 700; color: var(--sl-gray-400); margin-bottom: 2px; }
.sl-pricing__coming-card .ann   { font-size: 10px; color: var(--sl-gray-400); margin: 0; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.sl-faq {
  padding: 80px 0;
  background: var(--sl-bg-light);
}
.sl-faq__list { display: flex; flex-direction: column; gap: 12px; }
.sl-faq__item {
  background: #fff;
  border: 1px solid var(--sl-gray-100);
  border-radius: 14px;
  overflow: hidden;
}
.sl-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.sl-faq__question-text { font-size: 14px; font-weight: 500; color: var(--sl-gray-900); }
.sl-faq__icon {
  font-size: 20px;
  color: var(--sl-gray-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.sl-faq__item.open .sl-faq__icon { transform: rotate(180deg); }
.sl-faq__answer {
  display: none;
  padding: 0 24px 20px;
}
.sl-faq__item.open .sl-faq__answer { display: block; }
.sl-faq__answer p { font-size: 13px; color: var(--sl-gray-500); line-height: 1.7; margin: 0; }

/* ─── FINAL CTA ───────────────────────────────────────────────────────── */
.sl-cta-final {
  padding: 90px 24px;
  background: var(--sl-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sl-cta-final__bg-circle-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.sl-cta-final__bg-circle-2 {
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.sl-cta-final__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.sl-cta-final h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.sl-cta-final__sub {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.sl-btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--sl-primary) !important;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transition: background 0.15s;
}
.sl-btn-cta-white:hover { background: var(--sl-primary-50); }
.sl-cta-final__micro {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  margin-top: 20px;
  margin-bottom: 0;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.sl-footer {
  background: var(--sl-gray-900);
  padding: 48px 0 32px;
}
.sl-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.sl-footer__logo img { height: 32px; width: auto; display: block; margin-bottom: 8px; }
.sl-footer__tagline { font-size: 12px; color: #6b7280; line-height: 1.5; margin: 0; }
.sl-footer__tagline span { color: #4b5563; }
.sl-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.sl-footer__links a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
}
.sl-footer__links a:hover { color: #d1d5db; }
.sl-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid #1f2937;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.sl-footer__copy { font-size: 12px; color: #4b5563; margin: 0; }
.sl-footer__legal { display: flex; gap: 24px; }
.sl-footer__legal a { font-size: 12px; color: #4b5563; text-decoration: none; transition: color 0.15s; }
.sl-footer__legal a:hover { color: #9ca3af; }

/* ─── Utility: centered text ──────────────────────────────────────────── */
.sl-text-center { text-align: center; }
.sl-mt-0 { margin-top: 0; }

/* ─── Remove WP default padding on blocks (front-page, blog, single) ──── */
.seolap-front-page .wp-block-html,
.seolap-front-page .wp-block-group,
.seolap-single-post .wp-block-html,
.seolap-single-post .wp-block-group,
.seolap-blog-archive .wp-block-html,
.seolap-blog-archive .wp-block-group { margin: 0; padding: 0; }

/* ─── Static page template (contact, mentions légales, etc.) ──────────── */
.sl-page-hero {
  padding: 40px 24px 28px;
  text-align: center;
  background: var(--sl-primary-50, #f0efff);
  border-bottom: 1px solid var(--sl-primary-100, #e1e0ff);
}
.sl-page-hero .wp-block-post-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--sl-gray-900);
  margin: 0;
  padding-top: 20px;
}
.sl-page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.sl-page-content p,
.sl-page-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--sl-gray-700, #374151);
}
.sl-page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin-top: 40px;
  margin-bottom: 12px;
}
.sl-page-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--sl-gray-900);
  margin-top: 28px;
  margin-bottom: 8px;
}
/* Contact Form 7 inside page */
.sl-page-content .wpcf7 {
  margin-top: 32px;
}
.sl-page-content .wpcf7 label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--sl-gray-700, #374151);
  margin-bottom: 6px;
  margin-top: 20px;
}
.sl-page-content .wpcf7 input[type="text"],
.sl-page-content .wpcf7 input[type="email"],
.sl-page-content .wpcf7 textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--sl-gray-300, #d1d5db);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--sl-gray-900);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.sl-page-content .wpcf7 input:focus,
.sl-page-content .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--sl-primary);
  box-shadow: 0 0 0 3px rgba(96,93,255,.12);
}
.sl-page-content .wpcf7 textarea { min-height: 140px; resize: vertical; }
.sl-page-content .wpcf7 input[type="submit"] {
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--sl-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.sl-page-content .wpcf7 input[type="submit"]:hover {
  background: var(--sl-primary-hover);
}

/* ─── Blog — archive & single ─────────────────────────────────────────────── */

/* Hero */
.sl-blog__hero { margin-bottom: 0; }
.sl-blog__hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--sl-gray-900);
  margin: 0 0 8px;
  padding-top: 20px;
}
.sl-blog__hero-desc {
  font-size: 16px;
  color: var(--sl-gray-500);
  margin: 0;
}

/* Layout 2 cols */
.sl-blog__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .sl-blog__layout { grid-template-columns: 1fr; }
  .sl-blog__sidebar { order: -1; }
}

/* Grid de cards */
.sl-blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 680px) {
  .sl-blog__grid { grid-template-columns: 1fr; }
}

/* Card */
.sl-blog__card {
  background: #fff;
  border: 1px solid var(--sl-gray-200, #e5e7eb);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
}
.sl-blog__card:hover {
  box-shadow: 0 8px 32px rgba(96,93,255,.12);
  transform: translateY(-3px);
}
.sl-blog__card-thumb-link { display: block; }
.sl-blog__card-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sl-gray-100, #f3f4f6);
}
.sl-blog__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.sl-blog__card:hover .sl-blog__card-thumb img { transform: scale(1.04); }
.sl-blog__card-thumb-icon {
  font-size: 48px;
  color: rgba(255,255,255,.6);
}
.sl-blog__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sl-blog__card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sl-primary);
  background: var(--sl-primary-50, #f0efff);
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  width: fit-content;
}
.sl-blog__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sl-gray-900);
  margin: 0;
}
.sl-blog__card-title a {
  color: inherit;
  text-decoration: none;
}
.sl-blog__card-title a:hover { color: var(--sl-primary); }
.sl-blog__card-excerpt {
  font-size: 14px;
  color: var(--sl-gray-500);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.sl-blog__card-meta {
  font-size: 12px;
  color: var(--sl-gray-400, #9ca3af);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.sl-blog__card-meta-sep { opacity: .5; }

/* Pagination */
.sl-blog__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.sl-blog__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--sl-gray-200, #e5e7eb);
  border-radius: 8px;
  font-size: 14px;
  color: var(--sl-gray-700, #374151);
  text-decoration: none;
  transition: all 0.15s;
}
.sl-blog__pagination .page-numbers:hover,
.sl-blog__pagination .page-numbers.current {
  background: var(--sl-primary);
  border-color: var(--sl-primary);
  color: #fff;
}

/* Vide */
.sl-blog__empty {
  color: var(--sl-gray-500);
  font-size: 16px;
  padding: 40px 0;
  text-align: center;
}

/* Sidebar */
.sl-blog__sidebar { display: flex; flex-direction: column; gap: 32px; }
.sl-blog__widget {
  background: #fff;
  border: 1px solid var(--sl-gray-200, #e5e7eb);
  border-radius: 14px;
  padding: 24px;
}
.sl-blog__widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sl-gray-400, #9ca3af);
  margin: 0 0 16px;
}
.sl-blog__cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.sl-blog__cat-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--sl-gray-700, #374151);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.sl-blog__cat-item a:hover { background: var(--sl-primary-50); color: var(--sl-primary); }
.sl-blog__cat-count {
  font-size: 12px;
  color: var(--sl-gray-400, #9ca3af);
  background: var(--sl-gray-100, #f3f4f6);
  padding: 1px 8px;
  border-radius: 20px;
}
.sl-blog__recent { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.sl-blog__recent-item { display: flex; gap: 12px; align-items: flex-start; }
.sl-blog__recent-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.sl-blog__recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sl-blog__recent-cat {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--sl-primary);
  margin-bottom: 3px;
}
.sl-blog__recent-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-gray-800, #1f2937);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sl-blog__recent-title:hover { color: var(--sl-primary); }

/* ─── Single post ──────────────────────────────────────────────────────────── */
.sl-post__header {
  text-align: center;
  padding: 40px 24px 32px;
}
.sl-post__title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--sl-gray-900);
  margin: 12px 0 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sl-post__meta {
  font-size: 14px;
  color: var(--sl-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sl-post__meta a { color: var(--sl-primary); text-decoration: none; }

/* Featured image — dans la colonne contenu */
.sl-post__thumbnail {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 32px;
}
.sl-post__thumbnail img,
.sl-post__content .sl-post__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
}
.sl-post__thumbnail--fallback {
  height: 240px;
  border-radius: 12px;
  margin-bottom: 32px;
}

/* Article content typography */
.sl-post__content {
  min-width: 0;
}
.sl-post__content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--sl-gray-700, #374151);
  margin-bottom: 20px;
}
.sl-post__content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 40px 0 14px;
}
.sl-post__content h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--sl-gray-900);
  margin: 28px 0 10px;
}
.sl-post__content ul,
.sl-post__content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.sl-post__content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--sl-gray-700, #374151);
  margin-bottom: 6px;
}
.sl-post__content blockquote {
  border-left: 4px solid var(--sl-primary);
  margin: 28px 0;
  padding: 12px 20px;
  background: var(--sl-primary-50, #f0efff);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--sl-gray-700);
}
.sl-post__content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 24px 0;
  display: block;
}
.sl-post__content a { color: var(--sl-primary); }
.sl-post__content code {
  background: var(--sl-gray-100, #f3f4f6);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}
.sl-post__content pre {
  background: var(--sl-gray-900);
  color: #e5e7eb;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin-bottom: 24px;
}
.sl-post__content pre code { background: none; padding: 0; color: inherit; font-size: 14px; }
.sl-post__content figure { margin: 28px 0; }
.sl-post__content figcaption {
  font-size: 13px;
  color: var(--sl-gray-400, #9ca3af);
  text-align: center;
  margin-top: 8px;
}

/* Nav prev/next */
.sl-post__nav {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sl-gray-200, #e5e7eb);
}
.sl-post__nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border: 1px solid var(--sl-gray-200, #e5e7eb);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sl-post__nav-link:hover {
  border-color: var(--sl-primary);
  box-shadow: 0 0 0 3px rgba(96,93,255,.08);
}
.sl-post__nav-link--next { text-align: right; }
.sl-post__nav-link span { font-size: 12px; color: var(--sl-gray-400, #9ca3af); }
.sl-post__nav-link strong { font-size: 14px; color: var(--sl-gray-800, #1f2937); font-weight: 600; line-height: 1.4; display: block; }
