/* SignalByTeDi — vitrine publique v5 (complément Tailwind) */

/* —— Tokens & base —— */
.mkt-v5 {
  --mkt-rose: #f43f5e;
  --mkt-sky: #38bdf8;
  --mkt-emerald: #34d399;
  --mkt-glass: rgba(18, 23, 34, 0.72);
  --mkt-border: rgba(51, 65, 85, 0.55);
}

.mkt-section {
  position: relative;
}

.mkt-section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.mkt-section-head .mkt-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mkt-section-head h2 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.mkt-section-head p {
  font-size: 0.875rem;
  color: rgb(148, 163, 184);
  margin-top: 0.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .mkt-section-head p { font-size: 1rem; }
}

/* —— Hero —— */
.hero-glow {
  background:
    radial-gradient(ellipse 90% 55% at 20% -15%, rgba(244, 63, 94, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(244, 63, 94, 0.06), transparent);
}

.grid-dots {
  background-image: radial-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
}

.mkt-hero {
  border-radius: 1.5rem;
  border: 1px solid var(--mkt-border);
  overflow: hidden;
  box-shadow: 0 24px 80px -32px rgba(0, 0, 0, 0.65);
}

.mkt-hero__inner {
  padding: 2.5rem 1.5rem 2rem;
}

@media (min-width: 640px) {
  .mkt-hero__inner { padding: 3.5rem 2.5rem 2.5rem; }
}

@media (min-width: 1024px) {
  .mkt-hero__inner { padding: 4rem 3rem 3rem; }
}

.mkt-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mkt-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.mkt-hero__copy {
  text-align: center;
}

@media (min-width: 1024px) {
  .mkt-hero__copy { text-align: left; }
}

.mkt-hero__copy .mkt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mkt-rose);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(244, 63, 94, 0.35);
  background: rgba(244, 63, 94, 0.1);
}

.mkt-hero__copy h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

@media (min-width: 1024px) {
  .mkt-hero__copy h1 { margin-left: 0; margin-right: 0; max-width: none; }
}

.mkt-hero__copy .mkt-lead {
  font-size: 0.9375rem;
  color: rgb(148, 163, 184);
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .mkt-hero__copy .mkt-lead { font-size: 1.0625rem; }
}

@media (min-width: 1024px) {
  .mkt-hero__copy .mkt-lead { margin-left: 0; margin-right: 0; }
}

.mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .mkt-hero__actions { justify-content: flex-start; }
}

.mkt-btn-primary {
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  background: rgb(225, 29, 72);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 8px 28px rgba(190, 18, 60, 0.4);
  transition: background 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.mkt-btn-primary:hover {
  background: rgb(244, 63, 94);
  transform: translateY(-1px);
}

.mkt-btn-ghost {
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(71, 85, 105);
  color: rgb(226, 232, 240);
  font-weight: 500;
  font-size: 0.9375rem;
  background: rgba(15, 23, 42, 0.4);
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer;
}

.mkt-btn-ghost:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgb(100, 116, 139);
}

.mkt-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 1024px) {
  .mkt-hero__stats { margin: 0; max-width: none; }
}

.mkt-stat-card {
  padding: 1rem 1.1rem;
  border-radius: 0.875rem;
  border: 1px solid var(--mkt-border);
  background: var(--mkt-glass);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.mkt-stat-card:hover {
  border-color: rgba(100, 116, 139, 0.5);
  transform: translateY(-2px);
}

.mkt-stat-card__n {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.mkt-stat-card__n--accent { color: var(--mkt-rose); }

.mkt-stat-card__l {
  font-size: 0.6875rem;
  color: rgb(100, 116, 139);
  margin-top: 0.25rem;
  line-height: 1.35;
}

.mkt-hero__note {
  font-size: 0.75rem;
  color: rgb(100, 116, 139);
  margin-top: 1.25rem;
  max-width: 26rem;
}

@media (min-width: 1024px) {
  .mkt-hero__note { margin-left: 0; margin-right: 0; }
}

/* Mockup */
.mkt-hero__visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.mkt-mockup {
  width: 100%;
  max-width: 22rem;
  border-radius: 1rem;
  border: 1px solid rgba(71, 85, 105, 0.6);
  background: linear-gradient(165deg, #161b28 0%, #0d1119 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 64px -24px rgba(0, 0, 0, 0.7),
    0 0 80px -20px rgba(244, 63, 94, 0.15);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.mkt-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mkt-mockup__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-mockup__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgb(71, 85, 105);
}

.mkt-mockup__dot:nth-child(1) { background: #f87171; }
.mkt-mockup__dot:nth-child(2) { background: #fbbf24; }
.mkt-mockup__dot:nth-child(3) { background: #4ade80; }

.mkt-mockup__title {
  margin-left: 0.5rem;
  font-size: 0.625rem;
  color: rgb(148, 163, 184);
  letter-spacing: 0.04em;
}

.mkt-mockup__body {
  padding: 1.25rem 1rem 1.5rem;
}

.mkt-mockup__flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mkt-mockup__node {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.4rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 1px solid var(--mkt-border);
}

.mkt-mockup__node--tg {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #7dd3fc;
}

.mkt-mockup__node--dc {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
}

.mkt-mockup__arrow {
  flex-shrink: 0;
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mkt-rose), transparent);
  position: relative;
}

.mkt-mockup__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--mkt-rose);
}

.mkt-mockup__signal {
  padding: 0.85rem 1rem;
  border-radius: 0.625rem;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.25);
  font-size: 0.75rem;
  font-family: ui-monospace, monospace;
  color: #fda4af;
  line-height: 1.5;
}

.mkt-mockup__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.625rem;
  color: var(--mkt-emerald);
}

.mkt-mockup__status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--mkt-emerald);
  box-shadow: 0 0 8px var(--mkt-emerald);
  animation: mkt-pulse 2s ease-in-out infinite;
}

@keyframes mkt-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* Trust bar */
.mkt-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--mkt-border);
  background: rgba(15, 23, 42, 0.45);
}

.mkt-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgb(203, 213, 225);
  font-weight: 500;
}

.mkt-trust-item::before {
  content: "✓";
  color: var(--mkt-emerald);
  font-size: 0.6875rem;
  font-weight: 700;
}

/* Bandeau site en développement (entre hero et section SEO) */
.mkt-dev-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.45);
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.35), rgba(15, 23, 42, 0.55));
  color: rgb(253, 230, 138);
}

.mkt-dev-banner__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: rgb(254, 243, 199);
  background: rgba(180, 83, 9, 0.55);
  border: 1px solid rgba(251, 191, 36, 0.5);
}

.mkt-dev-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgb(254, 243, 199);
}

/* Vitrine : masquer inscription / CTA invité quand connecté */
body.sh-logged-in .mkt-guest-only {
  display: none !important;
}

.mkt-member-only {
  display: none !important;
}

body.sh-logged-in .mkt-member-only {
  display: inline-flex !important;
}

/* CTA band */
.mkt-cta-band {
  border-radius: 1.25rem;
  padding: 2.5rem 1.75rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(244, 63, 94, 0.18) 0%, transparent 45%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
    #121722;
  border: 1px solid rgba(244, 63, 94, 0.25);
  box-shadow: 0 20px 50px -24px rgba(244, 63, 94, 0.2);
}

.mkt-cta-band h3 {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.mkt-cta-band p {
  font-size: 0.875rem;
  color: rgb(148, 163, 184);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* Bento features */
.mkt-bento {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mkt-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .mkt-bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mkt-feature-card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--mkt-border);
  background: var(--mkt-glass);
  padding: 1.5rem;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.mkt-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(244, 63, 94, 0.06), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.mkt-feature-card:hover {
  border-color: rgba(100, 116, 139, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.5);
}

.mkt-feature-card:hover::before { opacity: 1; }

.mkt-feature-card--highlight {
  border-color: rgba(244, 63, 94, 0.35);
  background: linear-gradient(145deg, rgba(76, 5, 25, 0.35) 0%, var(--mkt-glass) 60%);
  box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.15);
}

@media (min-width: 1024px) {
  .mkt-feature-card--highlight {
    grid-column: span 2;
  }
}

.mkt-feature-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.mkt-feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.mkt-feature-card p {
  font-size: 0.8125rem;
  color: rgb(148, 163, 184);
  line-height: 1.55;
}

/* How timeline */
.mkt-timeline {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .mkt-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .mkt-timeline::before {
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 63, 94, 0.5), rgba(56, 189, 248, 0.5), transparent);
    z-index: 0;
  }
}

.mkt-step-card {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  border: 1px solid var(--mkt-border);
  background: #121722;
  padding: 1.75rem 1.5rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.mkt-step-card:hover {
  border-color: rgba(244, 63, 94, 0.4);
  transform: translateY(-2px);
}

.mkt-step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(225, 29, 72), rgb(244, 63, 94));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(190, 18, 60, 0.45);
}

.mkt-step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.mkt-step-card .mkt-step-main {
  font-size: 0.8125rem;
  color: rgb(148, 163, 184);
  line-height: 1.5;
}

.mkt-step-card .mkt-step-detail {
  font-size: 0.6875rem;
  color: rgb(100, 116, 139);
  margin-top: 0.65rem;
  line-height: 1.45;
}

/* Compare */
.mkt-compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .mkt-compare-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.mkt-compare-card {
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: transform 0.2s;
}

.mkt-compare-card:hover { transform: translateY(-2px); }

.mkt-compare-card--no {
  border: 1px solid rgba(190, 18, 60, 0.35);
  background: linear-gradient(160deg, rgba(76, 5, 25, 0.25), rgba(11, 14, 20, 0.6));
}

.mkt-compare-card--yes {
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: linear-gradient(160deg, rgba(6, 78, 59, 0.2), rgba(11, 14, 20, 0.6));
}

/* Pricing v5 */
.mkt-pricing-shell {
  border-radius: 1.5rem;
  border: 1px solid var(--mkt-border);
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.6) 0%, rgba(11, 14, 20, 0.4) 100%);
  padding: 2rem 1.25rem 2.5rem;
}

@media (min-width: 640px) {
  .mkt-pricing-shell { padding: 2.5rem 2rem 3rem; }
}

.mkt-pricing-toggle {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 0.875rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--mkt-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.mkt-price-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mkt-border);
  background: rgba(11, 14, 20, 0.85);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.mkt-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -24px rgba(0, 0, 0, 0.55);
}

.mkt-price-card--pro {
  border-color: rgba(56, 189, 248, 0.45);
  background: linear-gradient(180deg, rgba(14, 116, 144, 0.12) 0%, rgba(11, 14, 20, 0.9) 100%);
}

.mkt-price-card--premium {
  border-color: rgba(244, 63, 94, 0.4);
  background: linear-gradient(180deg, rgba(76, 5, 25, 0.2) 0%, rgba(11, 14, 20, 0.95) 100%);
}

.mkt-price-card--premium.mkt-price-card--trial-active .pricing-price-row .pricing-amount-int,
.mkt-price-card--premium.mkt-price-card--trial-active .pricing-price-row .pricing-amount-dec {
  color: rgb(251 113 133);
}

.mkt-price-card--premium.mkt-price-card--trial-active .pricing-price-row .pricing-amount-dec {
  opacity: 0.95;
}

.pricing-trial-stack {
  line-height: 1.35;
}

.pricing-trial-offer {
  letter-spacing: 0.01em;
}

.pricing-trial-then {
  letter-spacing: 0.02em;
}

.pricing-card-popular {
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.4),
    0 24px 56px -20px rgba(14, 165, 233, 0.3);
}

.mkt-price-card .pricing-checkout-btn {
  transition: transform 0.15s, box-shadow 0.15s;
}

.mkt-price-card .pricing-checkout-btn:hover {
  transform: scale(1.02);
}

/* Relais section polish */
.mkt-relais-shell {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--mkt-border);
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.55);
}

.mkt-relais-pillar {
  padding: 1.5rem;
  transition: background 0.2s;
}

@media (min-width: 768px) {
  .mkt-relais-pillar { padding: 2rem; }
}

.mkt-relais-pillar:hover {
  background: rgba(30, 41, 59, 0.25);
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fade-up 0.65s ease-out both; }
.animate-fade-up-delay { animation: fade-up 0.65s ease-out 0.14s both; }

/* —— SEO copy (bloc copie automatique) —— */
.mkt-seo--headless {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}

.mkt-seo__shell {
  border-radius: 1.5rem;
  border: 1px solid var(--mkt-border);
  padding: 2rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px -32px rgba(0, 0, 0, 0.55);
}

@media (min-width: 640px) {
  .mkt-seo__shell { padding: 2.5rem 2.25rem; }
}

.mkt-seo__video-band {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.45);
}

.mkt-seo__video-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .mkt-seo__video-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: 2rem;
  }
}

.mkt-seo__video-band .mkt-seo__intro {
  margin-bottom: 0;
  max-width: none;
}

.mkt-seo__video-caption {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #94a3b8;
}

.mkt-seo__video-player {
  width: 100%;
  min-width: 0;
}

.mkt-seo__intro { margin-bottom: 1.75rem; max-width: 40rem; }
.mkt-seo__intro h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.mkt-seo__lead {
  font-size: 0.9375rem;
  color: rgb(148, 163, 184);
  line-height: 1.65;
}

.mkt-seo__pills {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mkt-seo__pills { grid-template-columns: repeat(3, 1fr); }
}

.mkt-seo-pill {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--mkt-border);
  background: var(--mkt-glass);
  backdrop-filter: blur(8px);
}

.mkt-seo-pill--premium {
  border-color: rgba(244, 63, 94, 0.35);
  background: linear-gradient(135deg, rgba(76, 5, 25, 0.25), var(--mkt-glass));
}

.mkt-seo-pill__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.8);
  font-size: 1rem;
}

.mkt-seo-pill p {
  font-size: 0.75rem;
  color: rgb(148, 163, 184);
  line-height: 1.5;
  margin: 0;
}

.mkt-seo__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .mkt-seo__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

.mkt-seo-card {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid var(--mkt-border);
  background: rgba(11, 14, 20, 0.65);
  transition: border-color 0.2s, transform 0.2s;
}

.mkt-seo-card:hover {
  border-color: rgba(100, 116, 139, 0.55);
  transform: translateY(-2px);
}

.mkt-seo-card__icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.mkt-seo-card__icon--rose { background: rgba(244, 63, 94, 0.15); }
.mkt-seo-card__icon--sky { background: rgba(56, 189, 248, 0.15); }
.mkt-seo-card__icon--violet { background: rgba(139, 92, 246, 0.15); }
.mkt-seo-card__icon--amber { background: rgba(245, 158, 11, 0.15); }

.mkt-seo-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.mkt-seo-card p {
  font-size: 0.75rem;
  color: rgb(100, 116, 139);
  line-height: 1.5;
  margin: 0;
}

.mkt-seo__footer { display: flex; justify-content: flex-start; }

/* —— Fonctionnalités (lanes) —— */
.mkt-feat-lane { margin-bottom: 2rem; }

.mkt-feat-lane__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.mkt-feat-lane__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.mkt-feat-lane__dot--sky { background: var(--mkt-sky); color: var(--mkt-sky); }
.mkt-feat-lane__dot--amber { background: #fbbf24; color: #fbbf24; }

.mkt-feat-lane__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(148, 163, 184);
  margin: 0;
}

.mkt-feat-lane__grid {
  display: grid;
  gap: 1rem;
}

.mkt-feat-lane__grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mkt-feat-lane__grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.mkt-feat-lane__grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .mkt-feat-lane__grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .mkt-feat-lane__grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.mkt-feat-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--mkt-border);
  background: var(--mkt-glass);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mkt-feat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.85;
}

.mkt-feat-card--sky::after { background: linear-gradient(90deg, var(--mkt-sky), transparent); }
.mkt-feat-card--indigo::after { background: linear-gradient(90deg, #818cf8, transparent); }
.mkt-feat-card--amber::after { background: linear-gradient(90deg, #fbbf24, transparent); }
.mkt-feat-card--violet::after { background: linear-gradient(90deg, #a78bfa, transparent); }
.mkt-feat-card--emerald::after { background: linear-gradient(90deg, var(--mkt-emerald), transparent); }

.mkt-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -24px rgba(0, 0, 0, 0.55);
}

.mkt-feat-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.mkt-feat-card__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.mkt-feat-card__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mkt-sky);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.1);
}

.mkt-feat-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.45rem;
}

.mkt-feat-card p {
  font-size: 0.8125rem;
  color: rgb(148, 163, 184);
  line-height: 1.55;
  margin: 0;
}

.mkt-feat-premium {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(244, 63, 94, 0.4);
  overflow: hidden;
  margin-top: 0.5rem;
}

.mkt-feat-premium__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(244, 63, 94, 0.25), transparent);
  pointer-events: none;
}

.mkt-feat-premium__inner {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, rgba(76, 5, 25, 0.35) 0%, rgba(11, 14, 20, 0.95) 55%);
}

@media (min-width: 768px) {
  .mkt-feat-premium__inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 2rem 2.25rem;
    gap: 1.5rem;
  }
}

.mkt-feat-premium__badge {
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fda4af;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(244, 63, 94, 0.45);
  background: rgba(244, 63, 94, 0.12);
}

@media (min-width: 768px) {
  .mkt-feat-premium__badge { grid-column: 2; justify-self: start; margin-bottom: -0.5rem; }
}

.mkt-feat-premium__icon {
  font-size: 2.5rem;
  line-height: 1;
}

.mkt-feat-premium__copy h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.mkt-feat-premium__copy p {
  font-size: 0.875rem;
  color: rgb(148, 163, 184);
  line-height: 1.55;
  margin: 0;
  max-width: 36rem;
}

.mkt-feat-premium__cta {
  justify-self: start;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .mkt-feat-premium__cta { justify-self: end; }
}

/* —— Démo vidéo YouTube (section SEO, sous le hero) —— */
.mkt-video-demo__link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fda4af;
  text-decoration: none;
  transition: color 0.15s;
}

.mkt-video-demo__link:hover {
  color: #fff;
}

.mkt-video-demo__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.75);
  background: #020617;
  box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.12), 0 8px 32px -12px rgba(244, 63, 94, 0.25);
}

.mkt-video-demo__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Comment ça marche (visuels produit) —— */
.mkt-how-flow {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.mkt-how-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .mkt-how-row {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
  .mkt-how-row--reverse .mkt-how-row__copy { order: 2; }
  .mkt-how-row--reverse .mkt-how-row__shot { order: 1; }
}

.mkt-how-row__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(225, 29, 72), rgb(244, 63, 94));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 14px rgba(190, 18, 60, 0.4);
}

.mkt-how-row__copy h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.mkt-how-row__main {
  font-size: 0.9375rem;
  color: rgb(203, 213, 225);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.mkt-how-row__detail {
  font-size: 0.8125rem;
  color: rgb(100, 116, 139);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.mkt-how-row__bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mkt-how-row__bullets li {
  font-size: 0.8125rem;
  color: rgb(148, 163, 184);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.45;
}

.mkt-how-row__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mkt-emerald);
  font-size: 0.75rem;
  font-weight: 700;
}

.mkt-how-row__cta { margin-top: 0.25rem; }

.mkt-how-row__shot {
  margin: 0;
}

.mkt-how-shot-frame {
  border-radius: 1rem;
  border: 1px solid var(--mkt-border);
  overflow: hidden;
  background: #0b0e14;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 28px 64px -28px rgba(0, 0, 0, 0.65),
    0 0 60px -20px rgba(244, 63, 94, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mkt-how-shot-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(244, 63, 94, 0.15) inset,
    0 32px 72px -24px rgba(0, 0, 0, 0.7),
    0 0 80px -16px rgba(244, 63, 94, 0.18);
}

.mkt-how-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.mkt-how-row__shot figcaption {
  margin-top: 0.65rem;
  font-size: 0.6875rem;
  color: rgb(100, 116, 139);
  text-align: center;
  font-style: italic;
}

@media (min-width: 900px) {
  .mkt-how-row__shot figcaption { text-align: left; }
  .mkt-how-row--reverse .mkt-how-row__shot figcaption { text-align: right; }
}

/* —— FAQ —— */
.mkt-faq__shell {
  border-radius: 1.5rem;
  border: 1px solid var(--mkt-border);
  padding: 2rem 1.25rem 2.5rem;
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.5) 0%, rgba(11, 14, 20, 0.3) 100%);
}

@media (min-width: 640px) {
  .mkt-faq__shell { padding: 2.5rem 2rem 3rem; }
}

.mkt-faq__grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .mkt-faq__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
    align-items: start;
  }
}

.mkt-faq-item {
  border-radius: 1rem;
  border: 1px solid var(--mkt-border);
  background: rgba(15, 23, 42, 0.45);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mkt-faq-item:hover {
  border-color: rgba(100, 116, 139, 0.5);
}

.mkt-faq-item[open] {
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: 0 8px 28px -12px rgba(244, 63, 94, 0.2);
  background: rgba(18, 23, 34, 0.75);
}

.mkt-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  user-select: none;
}

.mkt-faq-item summary::-webkit-details-marker { display: none; }

.mkt-faq-item__q {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(226, 232, 240);
  line-height: 1.4;
  padding-right: 0.25rem;
}

.mkt-faq-item__chev {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  border: 1px solid var(--mkt-border);
  background: rgba(11, 14, 20, 0.8);
  position: relative;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.mkt-faq-item__chev::before,
.mkt-faq-item__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgb(148, 163, 184);
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

.mkt-faq-item__chev::before {
  width: 0.5rem;
  height: 2px;
}

.mkt-faq-item__chev::after {
  width: 2px;
  height: 0.5rem;
}

.mkt-faq-item[open] .mkt-faq-item__chev {
  transform: rotate(45deg);
  border-color: rgba(244, 63, 94, 0.5);
  background: rgba(244, 63, 94, 0.15);
}

.mkt-faq-item[open] .mkt-faq-item__chev::before,
.mkt-faq-item[open] .mkt-faq-item__chev::after {
  background: #fda4af;
}

.mkt-faq-item__a {
  font-size: 0.8125rem;
  color: rgb(148, 163, 184);
  line-height: 1.6;
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid rgba(51, 65, 85, 0.35);
  margin-top: 0;
  padding-top: 0.85rem;
}

.mkt-faq__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--mkt-border);
  text-align: center;
}

.mkt-faq__footer p {
  font-size: 0.9375rem;
  color: rgb(148, 163, 184);
  margin: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .mkt-faq__footer p { width: auto; }
  .mkt-faq__footer { justify-content: space-between; text-align: left; }
}

/* Pied de page vitrine */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(51, 65, 85, 0.65);
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.4) 0%, #0b0e14 100%);
  padding: 3rem 0 2rem;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.45);
}
.site-footer__logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.site-footer__tagline {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: rgb(100, 116, 139);
  max-width: 20rem;
}
.site-footer__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}
.site-footer__cta-ghost {
  font-size: 0.875rem;
  color: rgb(203, 213, 225);
  background: transparent;
  border: 1px solid rgb(71, 85, 105);
  border-radius: 0.625rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.site-footer__cta-ghost:hover {
  background: rgba(30, 41, 59, 0.8);
  color: #fff;
}
.site-footer__cta-primary {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: rgb(225, 29, 72);
  border: none;
  border-radius: 0.625rem;
  padding: 0.5rem 1.125rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(190, 18, 60, 0.35);
  transition: background 0.15s;
}
.site-footer__cta-primary:hover {
  background: rgb(244, 63, 94);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
.site-footer__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(148, 163, 184);
  margin-bottom: 0.875rem;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__link {
  font-size: 0.875rem;
  color: rgb(148, 163, 184);
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer__link:hover {
  color: rgb(226, 232, 240);
}
.site-footer__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1rem;
}
.site-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(71, 85, 105, 0.6);
  color: rgb(148, 163, 184);
  background: rgba(15, 23, 42, 0.5);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.site-footer__icon:hover {
  color: #fff;
  border-color: rgb(100, 116, 139);
  background: rgba(30, 41, 59, 0.9);
}
.site-footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(51, 65, 85, 0.45);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}
.site-footer__copy {
  font-size: 0.75rem;
  color: rgb(100, 116, 139);
  margin: 0;
}
.site-footer__risk {
  font-size: 0.6875rem;
  color: rgb(71, 85, 105);
  margin: 0;
  max-width: 28rem;
  text-align: right;
}
@media (max-width: 768px) {
  .site-footer__risk {
    text-align: left;
    max-width: none;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
