:root {
  --ink: #0a0f1e;
  --ink-soft: #2d3561;
  --ink-muted: #64748b;
  --blue: #1e40af;
  --blue-bright: #3b82f6;
  --blue-glow: #60a5fa;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(59,130,246,0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 24px;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 11px 20px;
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--surface-3);
  border-color: var(--ink-muted);
}
.btn-lg {
  font-size: 17px;
  padding: 16px 32px;
}
.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  max-width: 340px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 8px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin-right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-muted);
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-3);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink-muted);
  display: block;
}
.mobile-menu a:hover {
  background: var(--surface-3);
  color: var(--ink);
}
.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
}

/* Hero */
.hero {
  padding: 90px 0 80px;
  background: linear-gradient(160deg, #f8fafc 0%, #fff 50%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  margin: 20px 0 18px;
  color: var(--ink);
}
.hero h1 span {
  color: var(--blue);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-input-wrap {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: 99px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 540px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-input-wrap:focus-within {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12), var(--shadow);
}
.hero-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 22px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: transparent;
}
.hero-input-wrap input::placeholder {
  color: var(--ink-muted);
}
.hero-input-wrap .btn {
  border-radius: 99px;
  margin: 4px;
  flex-shrink: 0;
}
.hero-social {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--ink-muted);
}
.hero-social strong {
  color: var(--ink);
}
.avatars {
  display: flex;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border: 2px solid #fff;
  margin-left: -8px;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}
.avatar:first-child {
  margin-left: 0;
}
.avatar.a2 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.avatar.a3 {
  background: linear-gradient(135deg, #10b981, #3b82f6);
}
.avatar.a4 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 1;
}
.score-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.score-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.score-site {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-favicon {
  width: 32px;
  height: 32px;
  background: var(--surface-3);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.site-name {
  font-weight: 600;
  font-size: 14px;
}
.site-url {
  font-size: 12px;
  color: var(--ink-muted);
}
.score-badge-wrap {
  text-align: right;
}
.score-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.score-label {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.score-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.score-bar-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.score-bar-name {
  font-size: 13px;
  font-weight: 500;
}
.score-bar-val {
  font-size: 13px;
  font-weight: 600;
}
.score-bar-track {
  height: 7px;
  background: var(--surface-3);
  border-radius: 99px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 99px;
  animation: fillBar 1.2s ease-out forwards;
}
@keyframes fillBar {
  from { width: 0; }
}
.b1 { background: #3b82f6; }
.b2 { background: #10b981; }
.b3 { background: #f59e0b; }
.b4 { background: #8b5cf6; }
.b5 { background: #ef4444; }

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatY 3s ease-in-out infinite;
}
.float-chip.chip1 {
  top: -18px;
  right: 16px;
}
.float-chip.chip2 {
  bottom: -18px;
  left: 10px;
  animation-delay: 1s;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Clients */
.clients {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.clients-label {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--border-strong);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.logo-item:hover {
  color: var(--ink-muted);
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--surface);
}
.section-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto 16px;
}
.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 60px;
  font-weight: 300;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s ease;
  cursor: default;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  background: #fff;
}
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  background: var(--surface-3);
}
.feat-icon.blue { background: #dbeafe; }
.feat-icon.green { background: #d1fae5; }
.feat-icon.amber { background: #fef3c7; }
.feat-icon.purple { background: #ede9fe; }
.feat-icon.red { background: #fee2e2; }
.feat-icon.teal { background: #ccfbf1; }
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.feat-puce {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--blue);
  background: #dbeafe;
  padding: 4px 10px;
  border-radius: 99px;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: var(--surface-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.25s;
  position: relative;
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
}
.price-card.pro {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.price-tier {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.price-card.pro .price-tier {
  color: rgba(255,255,255,0.5);
}
.price-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.price-per {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.price-card.pro .price-per {
  color: rgba(255,255,255,0.5);
}
.price-yearly {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: rgba(245,158,11,0.15);
  color: #92400e;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.price-card.pro .price-yearly {
  background: rgba(245,158,11,0.2);
  color: #fde68a;
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.price-card.pro .price-divider {
  background: rgba(255,255,255,0.1);
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}
.price-list .check {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card.pro .price-list .check {
  color: #6ee7b7;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 24px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* How it works */
.how {
  padding: 100px 0;
}
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.step {
  text-align: center;
  padding: 12px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-blue);
}
.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}
.connector-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
  color: var(--border-strong);
  font-size: 20px;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--surface-2);
}
.avg-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 52px;
}
.stars {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
}
.rating-text {
  font-size: 15px;
  color: var(--ink-muted);
}
.rating-text strong {
  color: var(--ink);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.testi-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.av2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.av3 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.testi-name {
  font-weight: 600;
  font-size: 14px;
}
.testi-meta {
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* Final CTA */
.cta-final {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 40px;
}
.cta-url-wrap {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  transition: border-color 0.2s;
}
.cta-url-wrap:focus-within {
  border-color: rgba(255,255,255,0.35);
}
.cta-url-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 16px 22px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}
.cta-url-wrap input::placeholder {
  color: rgba(255,255,255,0.35);
}
.cta-url-wrap .btn {
  margin: 4px;
}

/* Footer */
footer {
  background: #060d1e;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 40px;
  color: rgba(255,255,255,0.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col ul a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.socials {
  display: flex;
  gap: 14px;
}
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: background 0.15s;
  color: rgba(255,255,255,0.5);
}
.social-icon:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .connector-arrow {
    display: none;
  }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 0 60px;
  }
  .hero-input-wrap {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .hero-input-wrap .btn {
    border-radius: var(--radius-sm);
    margin: 0;
  }
  .hero-input-wrap input {
    padding: 14px 18px;
  }
  .cta-url-wrap {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .cta-url-wrap .btn {
    margin: 0;
    border-radius: var(--radius-sm);
  }
}
@media (max-width: 480px) {
  .logos-track {
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate {
  animation: fadeUp 0.6s ease-out both;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

/* Dropdown desktop */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    list-style: none;
    padding: 8px 0;
    z-index: 1000;
}
.dropdown-menu li {
    padding: 0;
}
.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--ink-muted);
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background: var(--surface-3);
    color: var(--ink);
}
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile dropdown */
.mobile-dropdown {
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.mobile-dropdown-toggle {
    display: block;
    padding: 10px 12px;
    color: var(--ink-muted);
    font-weight: 500;
}
.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    background: var(--surface-2);
}
.mobile-dropdown-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--ink-muted);
}
.mobile-dropdown-menu a:hover {
    background: var(--surface-3);
}
.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 680px) {
    .dropdown-menu {
        display: none !important; /* cacher le dropdown desktop sur mobile */
    }
    .mobile-dropdown-menu {
        display: none;
    }
}