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

/* ───── Reset & Base ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: hsl(262, 83%, 58%);
  --primary-dark: hsl(262, 83%, 45%);
  --primary-light: hsl(262, 83%, 72%);
  --accent: hsl(45, 93%, 58%);
  --accent-fg: hsl(30, 80%, 15%);
  --bg: #fff;
  --fg: hsl(260, 30%, 10%);
  --muted: hsl(260, 10%, 46%);
  --card: #fff;
  --border: hsl(260, 15%, 91%);
  --radius: 0.75rem;
  --gradient: linear-gradient(135deg, hsl(262,83%,58%), hsl(280,90%,50%));
  --gradient-hero: linear-gradient(135deg, hsl(262,83%,25%), hsl(262,83%,45%), hsl(280,80%,60%));
  --gradient-gold: linear-gradient(135deg, hsl(45,93%,58%), hsl(38,92%,50%));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ───── Layout ───── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.25rem; }
.container-xs { max-width: 640px; margin: 0 auto; padding: 0 1.25rem; }

/* ───── Typography ───── */
h1 { font-size: clamp(1.75rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.35rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--fg); }

.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-gradient {
  background: linear-gradient(135deg, hsl(262,83%,58%), hsl(300,80%,55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem; border-radius: 9999px;
  font-size: .9rem; font-weight: 600;
  transition: all .25s ease; border: 2px solid transparent;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px hsl(262,83%,58%,.3);
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 6px 30px hsl(262,83%,58%,.45); }
.btn-outline {
  border-color: hsl(262,83%,58%,.35);
  color: var(--primary);
}
.btn-outline:hover { background: hsl(262,83%,58%,.05); transform: scale(1.04); }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: #f0eaff; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-green { background: #22c55e; color: #fff; }
.btn-green:hover { background: #16a34a; }

/* ───── Header ───── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--gradient-hero);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo img { height: 56px; width: auto; object-fit: contain; }
.nav-desktop { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.8);
  transition: opacity .2s, transform .2s;
  position: relative;
}
.nav-link:hover { opacity: .8; transform: scale(1.05); color: #fff; }
.nav-link.active { color: #fff; font-weight: 600; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0;
  height: 2px; background: #fff; border-radius: 9999px;
}
.hamburger { display: none; color: #fff; padding: .5rem; font-size: 1.5rem; }
.nav-mobile {
  display: none; background: var(--gradient-hero);
  border-top: 1px solid rgba(255,255,255,.2);
  padding: .5rem 1rem 1rem; flex-direction: column; gap: .25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: .65rem .75rem; border-radius: .5rem;
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.75);
  transition: background .2s;
}
.nav-mobile a:hover, .nav-mobile a.active { background: rgba(255,255,255,.12); color: #fff; }

/* ───── Footer ───── */
.site-footer {
  background: var(--gradient-hero);
  padding: 3rem 0;
  color: #fff;
}
.footer-grid { display: grid; gap: 2rem; }
@media(min-width:768px) { .footer-grid { grid-template-columns: repeat(3,1fr); } }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .25rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all .3s; font-size: 1rem;
}
.social-btn:hover {
  background: #fff; color: var(--primary);
  box-shadow: 0 0 20px rgba(255,255,255,.5);
  transform: scale(1.1);
}
.footer-bottom {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .75rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1rem; }

/* ───── Cards ───── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card:hover {
  box-shadow: 0 0 0 1px hsl(262,83%,58%,.2), 0 8px 40px -8px hsl(262,83%,58%,.35);
}
.glow-card {
  box-shadow: 0 0 0 1px hsl(262,83%,58%,.15), 0 4px 20px -4px hsl(262,83%,58%,.2);
}

/* ───── Sections ───── */
section { position: relative; }
.section-divider::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, hsl(262,83%,25%), hsl(262,83%,58%), hsl(280,80%,65%));
  border-radius: 0 0 4px 4px;
}
.section-alt { background: hsl(262,20%,98%); }

/* ───── Fade-in animation ───── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ───── Stat icons ───── */
.stat-icon {
  width: 56px; height: 56px; border-radius: .75rem;
  background: hsl(262,83%,58%,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  transition: all .3s;
}
.stat-icon svg { width: 28px; height: 28px; color: var(--primary); }
.stat-block:hover .stat-icon { background: var(--primary); transform: scale(1.1); }
.stat-block:hover .stat-icon svg { color: #fff; }

/* ───── Advantage cards ───── */
.adv-card {
  border-radius: 1rem;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card);
  padding: 2rem;
  text-align: center;
  transition: all .5s;
  overflow: hidden;
}
.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px hsl(262,83%,58%,.25), 0 12px 40px -8px hsl(262,83%,58%,.35);
}
.adv-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 1rem;
  background: hsl(262,83%,58%,.1);
  margin-bottom: 1.25rem;
  transition: all .3s;
}
.adv-card:hover .adv-icon { transform: scale(1.1); background: hsl(262,83%,58%,.2); }
.adv-icon svg { width: 32px; height: 32px; color: var(--primary); }

/* ───── Device tags ───── */
.device-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card);
  padding: .65rem 1.25rem;
  border-radius: 9999px;
  font-size: .875rem; font-weight: 500;
  transition: all .3s;
}
.device-tag:hover { border-color: hsl(262,83%,58%,.5); background: hsl(262,83%,58%,.05); transform: scale(1.05); }
.device-tag svg { width: 16px; height: 16px; color: var(--primary); }

/* ───── Review cards ───── */
.review-card {
  border-radius: 1rem;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card);
  padding: 1.5rem;
  transition: all .5s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px hsl(262,83%,58%,.2), 0 8px 30px -8px hsl(262,83%,58%,.3);
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.stars { display: flex; gap: 2px; }
.star { width: 16px; height: 16px; color: var(--accent); fill: var(--accent); }
.star.empty { color: var(--border); fill: transparent; }

/* ───── FAQ ───── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 1rem 0;
  font-size: 1rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform .3s; color: var(--muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 0 1rem;
  font-size: .9rem; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ───── Plan cards ───── */
.plan-card {
  border-radius: 1rem;
  border: 2px solid hsl(262,83%,58%,.15);
  background: var(--card);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: all .5s;
  position: relative; overflow: hidden;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 0 0 1px hsl(262,83%,58%,.25), 0 12px 40px -8px hsl(262,83%,58%,.35); }
.plan-card.popular { border-color: var(--primary); box-shadow: 0 0 0 1px hsl(262,83%,58%,.2), 0 4px 20px -4px hsl(262,83%,58%,.25); transform: scale(1.03); }
.plan-card.gold-plan { border-color: var(--accent); }
.plan-badge {
  position: absolute; top: 0; left: 0; right: 0;
  text-align: center; font-size: .75rem; font-weight: 700;
  padding: .4rem; color: #fff;
}
.plan-badge.purple { background: var(--gradient); }
.plan-badge.gold-badge { background: var(--gradient-gold); color: var(--accent-fg); }
.plan-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; padding: .35rem 0;
}
.plan-features li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: hsl(262,83%,58%,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}
.billing-toggle {
  display: inline-flex;
  border: 1px solid hsl(262,83%,58%,.2);
  background: hsl(262,83%,58%,.05);
  border-radius: 9999px;
  padding: 4px; gap: 4px;
}
.billing-btn {
  padding: .6rem 1.5rem; border-radius: 9999px;
  font-size: .875rem; font-weight: 600;
  transition: all .3s; color: var(--muted);
  position: relative;
}
.billing-btn.active { background: var(--gradient); color: #fff; box-shadow: 0 2px 8px hsl(262,83%,58%,.3); }
.billing-btn.active:hover { color: #fff; }
.billing-btn:hover { color: var(--fg); }
.annuel-badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--accent); color: var(--accent-fg);
  font-size: .6rem; font-weight: 700;
  padding: 2px 5px; border-radius: 9999px;
}

/* ───── CTA Banner ───── */
.cta-banner {
  background: var(--gradient);
  border-radius: 1rem;
  padding: 2rem; text-align: center; color: #fff;
}
.cta-banner h3 { color: #fff; margin-bottom: .5rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }

/* ───── Free trial banner ───── */
.trial-banner {
  border: 2px solid hsl(262,83%,58%,.2);
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(262,83%,58%,.05), #fff, hsl(280,80%,60%,.05));
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all .5s;
  text-decoration: none; display: block; color: inherit;
}
.trial-banner:hover {
  box-shadow: 0 0 0 1px hsl(262,83%,58%,.25), 0 8px 40px -8px hsl(262,83%,58%,.3);
}

/* ───── Contact form ───── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .25rem; }
.form-control {
  width: 100%; padding: .6rem .9rem;
  border: 1px solid var(--border); border-radius: .5rem;
  font-size: .9rem; font-family: inherit;
  background: var(--bg); color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px hsl(262,83%,58%,.1); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ───── Breadcrumb ───── */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: .4; }
.breadcrumb.light, .breadcrumb.light a { color: rgba(255,255,255,.7); }
.breadcrumb.light a:hover { color: #fff; }

/* ───── Blog article ───── */
.article-content h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--fg); }
.article-content p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { color: var(--muted); margin-bottom: .4rem; line-height: 1.7; }
.article-content strong { color: var(--fg); }
.article-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.article-content .tip-box {
  margin: 1rem 0; padding: 1rem;
  background: hsl(262,83%,58%,.05);
  border: 1px solid hsl(262,83%,58%,.2);
  border-radius: .75rem; font-size: .9rem;
}
.article-content .warn-box {
  margin: 1rem 0; padding: 1rem;
  background: hsl(45,93%,58%,.07);
  border: 1px solid hsl(45,93%,58%,.25);
  border-radius: .75rem; font-size: .9rem;
}
.article-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .875rem; }
.article-content th { padding: .75rem; text-align: left; font-weight: 700; background: hsl(262,83%,58%,.07); border: 1px solid var(--border); }
.article-content td { padding: .75rem; border: 1px solid var(--border); color: var(--muted); }

/* ───── Contact channel cards ───── */
.contact-card {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem; border-radius: .75rem;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card);
  text-decoration: none; color: inherit;
  transition: all .3s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px -4px hsl(262,83%,58%,.2); }
.contact-icon {
  width: 40px; height: 40px; border-radius: .75rem; flex-shrink: 0;
  background: hsl(262,83%,58%,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.contact-card:hover .contact-icon { background: var(--primary); }
.contact-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-card:hover .contact-icon svg { color: #fff; }

/* ───── Hero blobs ───── */
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
@keyframes blob { 0%,100%{transform:translate(0,0) scale(1)} 25%{transform:translate(30px,-50px) scale(1.1)} 50%{transform:translate(-20px,20px) scale(.9)} 75%{transform:translate(20px,50px) scale(1.05)} }
.blob { animation: blob 7s ease-in-out infinite; }
.blob-delay2 { animation-delay: 2s; }
.blob-delay4 { animation-delay: 4s; }

/* ───── Grid helpers ───── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media(min-width:640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media(min-width:768px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* ───── Utilities ───── */
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.text-center { text-align: center; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { flex-direction: column; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.line-through { text-decoration: line-through; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none; }
.check-row { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.check-row svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ───── WhatsApp floating button ───── */
.wa-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s;
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.55); }
.wa-fab svg { width: 28px; height: 28px; color: #fff; }
@keyframes bounce-subtle { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.wa-fab { animation: bounce-subtle 3s ease-in-out infinite; }
.wa-fab:hover { animation: none; }

/* ───── Depannage hero ───── */
.hero-gradient {
  background: linear-gradient(135deg, hsl(262,83%,25%), hsl(262,83%,45%), hsl(280,80%,50%));
  color: #fff;
}
.hero-gradient h1 { color: #fff; }
.hero-gradient p { color: rgba(255,255,255,.85); }
.wa-alert {
  display: inline-flex; align-items: center; gap: .75rem;
  background: rgba(34,197,94,.2);
  border: 1px solid rgba(74,222,128,.4);
  border-radius: .75rem;
  padding: 1rem 1.5rem;
  text-decoration: none; color: #fff;
  transition: background .2s;
}
.wa-alert:hover { background: rgba(34,197,94,.3); }
.wa-alert-title { color: #86efac; font-weight: 700; display: block; }
.wa-alert-sub { color: rgba(255,255,255,.8); font-size: .875rem; }

/* ───── Quick fix cards ───── */
.fix-card {
  border: 1px solid hsl(262,83%,58%,.1);
  border-radius: .75rem;
  background: var(--card);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow .2s, border-color .2s;
}
.fix-card:hover { border-color: hsl(262,83%,58%,.3); box-shadow: 0 4px 20px -4px hsl(262,83%,58%,.15); }
.fix-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: hsl(262,83%,58%,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.fix-icon svg { width: 24px; height: 24px; color: var(--primary); }
.problem-card {
  border: 1px solid hsl(262,83%,58%,.1);
  border-radius: .75rem;
  background: var(--card);
  padding: 1.5rem 2rem;
}
.prob-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: hsl(262,83%,58%,.1);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.prob-icon svg { width: 20px; height: 20px; color: var(--primary); }

/* ───── Blog cards ───── */
.blog-card {
  border-radius: 1rem;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .5s;
  text-decoration: none; color: inherit;
  height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 0 0 1px hsl(262,83%,58%,.2), 0 12px 40px -8px hsl(262,83%,58%,.3); }
.blog-thumb {
  height: 176px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; position: relative; overflow: hidden;
}
.blog-thumb p { color: #fff; font-weight: 700; font-size: .875rem; text-align: center; position: relative; z-index: 1; line-height: 1.4; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: .75rem; font-size: .75rem; color: var(--muted); margin-bottom: .75rem; }
.blog-excerpt { font-size: .875rem; color: var(--muted); flex: 1; line-height: 1.65; margin-bottom: 1rem; }
.read-more { font-size: .875rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; }

/* ───── Responsive ───── */
@media(max-width:767px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .hide-mobile { display: none; }
}
@media(min-width:768px) {
  .show-mobile { display: none; }
}

/* ───── Spacing extras ───── */
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.pt-8 { padding-top: 2rem; }
.gap-8 { gap: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.align-center { align-items: center; }

/* ───── Plan cards (BEM variant names) ───── */
.plan-card--popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px hsl(262,83%,58%,.2), 0 4px 20px -4px hsl(262,83%,58%,.25);
  transform: scale(1.03);
}
.plan-card--gold { border-color: var(--accent); }
.plan-badge--primary { background: var(--gradient); }
.plan-badge--gold { background: var(--gradient-gold); color: var(--accent-fg); }
.plan-name { font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; }
.plan-price { line-height: 1; margin-bottom: .25rem; }
.plan-price span { font-size: 3rem; font-weight: 900; }
.plan-sub { font-size: .875rem; color: var(--primary); font-weight: 500; margin-bottom: 1rem; }
.plan-spacer { height: 1.5rem; }
.plan-features li::before { display: none; }
.check-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: hsl(262,83%,58%,.1); color: var(--primary);
  font-size: .7rem; font-weight: 700;
}

/* ───── Guarantee icons ───── */
.guarantee-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: hsl(262,83%,58%,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ───── Step cards (essai-gratuit) ───── */
.step-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card); border-radius: 1rem; padding: 1.5rem;
  transition: all .5s;
}
.step-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px -4px hsl(262,83%,58%,.2); }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
}

/* ───── Feature check cards ───── */
.feature-check-card {
  display: flex; align-items: center; gap: .75rem;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card); border-radius: .75rem; padding: 1rem;
  font-size: .875rem; font-weight: 500;
}

/* ───── Review card extras ───── */
.review-text { font-size: .875rem; margin-bottom: 1rem; line-height: 1.6; color: var(--muted); }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.reviewer-name { font-size: .875rem; font-weight: 600; }
.reviewer-city { font-size: .75rem; color: var(--muted); }
.stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: .75rem; }

/* ───── Contact page ───── */
.contact-grid { display: grid; gap: 3rem; }
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: .75rem; }
.form-label { font-size: .875rem; font-weight: 500; margin-bottom: .25rem; display: block; }
.form-input {
  width: 100%; padding: .65rem .9rem;
  border: 1px solid var(--border); border-radius: .5rem;
  font-size: .9rem; font-family: inherit;
  background: var(--bg); color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px hsl(262,83%,58%,.1); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 120px; }
.contact-channel {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem; border-radius: .75rem;
  border: 1px solid hsl(262,83%,58%,.15);
  background: var(--card);
  text-decoration: none; color: inherit;
  transition: all .3s;
}
.contact-channel:hover { transform: translateY(-2px); box-shadow: 0 4px 20px -4px hsl(262,83%,58%,.2); }
.channel-icon {
  width: 40px; height: 40px; border-radius: .75rem; flex-shrink: 0;
  background: hsl(262,83%,58%,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ───── Blog card link ───── */
.blog-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.blog-card-link .blog-card:hover { transform: translateY(-8px); box-shadow: 0 0 0 1px hsl(262,83%,58%,.2), 0 12px 40px -8px hsl(262,83%,58%,.3); }
.blog-thumb-title { color: #fff; font-weight: 700; font-size: .875rem; text-align: center; position: relative; z-index: 1; line-height: 1.4; }
.blog-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-read-more { font-size: .875rem; font-weight: 600; color: var(--primary); }

/* ───── Trial banner ───── */
.trial-banner { display: flex !important; align-items: center; gap: 1rem; }
.trial-icon { font-size: 2rem; flex-shrink: 0; }
.trial-arrow { margin-left: auto; font-size: 1.25rem; color: var(--primary); font-weight: 700; flex-shrink: 0; }
