/* ============================================================
   WebPreneurs — Landing page
   Stack : HTML / CSS / JS vanilla
   Design : éditorial moderne, light, accents bleu electrique + cyan
   ============================================================ */

/* -------------------- Tokens -------------------- */
:root {
  /* Couleurs — palette cream chaud + accent violet (inspiration iapreneurs) */
  --bg: #f4ece0;             /* cream chaud, fond principal */
  --surface: #fdf8ee;        /* cream clair pour cartes */
  --surface-2: #ebe0ca;      /* cream plus profond (sections alternées) */
  --surface-3: #e1d4ba;      /* cream accentué (tags, fonds subtils) */
  --ink: #1c1814;            /* near-black chaud (undertone brun) */
  --ink-2: #5a5145;
  --ink-3: #8a8272;
  --border: #e0d3ba;
  --border-strong: #c9b99a;
  --accent: #6f55e0;         /* violet principal (CTA, liens) */
  --accent-hover: #5a43c8;
  --accent-2: #e85f4f;       /* coral chaud (flourishes, gradient) */
  --accent-3: #f59e0b;       /* amber (étoiles) */
  --accent-soft: rgba(111, 85, 224, 0.10);
  --accent-glow: rgba(111, 85, 224, 0.28);

  /* Typo — display futuriste géométrique + body sans neutre */
  --font-display: "Unbounded", "Geist", system-ui, sans-serif;
  --font-sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Rayons */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Ombres */
  --sh-xs: 0 1px 2px rgba(11, 18, 40, 0.04);
  --sh-sm: 0 2px 6px rgba(11, 18, 40, 0.05), 0 1px 2px rgba(11, 18, 40, 0.04);
  --sh-md: 0 10px 30px rgba(11, 18, 40, 0.06), 0 2px 6px rgba(11, 18, 40, 0.04);
  --sh-lg: 0 28px 60px rgba(11, 18, 40, 0.10), 0 10px 24px rgba(11, 18, 40, 0.06);
  --sh-glow: 0 14px 50px rgba(41, 82, 255, 0.22);

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --header-h: 72px;
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* -------------------- Typography -------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 12px 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(95deg, var(--accent-2) 0%, var(--accent) 60%, #b94d89 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* -------------------- Layout -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0;
}
.section {
  padding: 110px 0;
  position: relative;
}
.section-muted {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-2) 30%, var(--surface-2) 70%, var(--bg) 100%);
}
.section-head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  margin-bottom: 16px;
}
.section-head .section-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn svg { transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: var(--accent);
  box-shadow: var(--sh-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 224, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(244, 236, 224, 0.92);
}
.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.header-inner > .logo { justify-self: start; }
.header-inner > .site-nav { justify-self: center; }
.header-inner > .btn,
.header-inner > .nav-toggle { justify-self: end; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-mark { flex-shrink: 0; }
.logo-text { line-height: 1; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: background 0.18s ease, color 0.18s ease;
}
.site-nav a:hover { color: var(--ink); background: var(--surface-2); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 10px;
  border-radius: var(--r-sm);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, #000 0%, transparent 75%);
  opacity: 0.7;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: blob-drift 18s ease-in-out infinite alternate;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle at 30% 30%, rgba(111, 85, 224, 0.35), transparent 70%);
  top: -120px; left: -80px;
}
.blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle at 60% 50%, rgba(232, 95, 79, 0.28), transparent 70%);
  top: -60px; right: -120px;
  animation-delay: -6s;
}
.blob-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.22), transparent 70%);
  bottom: -100px; left: 40%;
  animation-delay: -12s;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}

/* Ornements décoratifs flottants (style éditorial) */
.orn {
  position: absolute;
  color: var(--ink);
  opacity: 0.55;
  animation: orn-float 9s ease-in-out infinite alternate;
}
.orn-diamond { width: 18px; height: 18px; top: 14%; left: 8%; color: var(--accent); }
.orn-sparkle { width: 22px; height: 22px; top: 18%; right: 10%; color: var(--accent-2); animation-delay: -2s; }
.orn-cross   { width: 16px; height: 16px; top: 52%; right: 6%;  color: var(--ink-2); animation-delay: -4s; }
.orn-circle  { width: 14px; height: 14px; bottom: 18%; left: 12%; color: var(--accent); animation-delay: -6s; opacity: 0.4; }
@keyframes orn-float {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(6px, -10px) rotate(12deg); }
}

.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-inner > .eyebrow { margin-bottom: 28px; }

.hero-title {
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 16ch;
}
.hero-subtitle {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-rating .stars {
  display: inline-flex;
  gap: 2px;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
.hero-rating .rating-text strong { color: var(--ink); font-weight: 600; }

/* -------------------- Trust strip -------------------- */
.trust {
  padding: 32px 0 72px;
  border-bottom: 1px solid var(--border);
  margin-bottom: -1px;
}
.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}
.trust-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.trust-logo:hover { opacity: 1; color: var(--ink); }

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

/* Service cards */
.card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--sh-xs);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--border-strong);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  margin-bottom: 22px;
  background: var(--accent-soft);
  color: var(--accent);
}
.card-icon.icon-blue { background: rgba(41, 82, 255, 0.10); color: var(--accent); }
.card-icon.icon-cyan { background: rgba(6, 182, 212, 0.12); color: var(--accent-2); }
.card-icon.icon-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: var(--sh-glow);
}
.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card > p { font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.card-list {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-list li {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding-left: 22px;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.card-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.card-featured {
  background: linear-gradient(180deg, var(--surface) 0%, #f8eedd 100%);
  border-color: var(--accent);
  box-shadow: var(--sh-md), 0 0 0 1px var(--accent-soft);
}
.card-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
}

/* -------------------- Steps (méthode) -------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px);
}
.step {
  position: relative;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--sh-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p { font-size: 14px; line-height: 1.55; color: var(--ink-2); }

/* -------------------- Sectors -------------------- */
.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.sector:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--sh-sm);
  background: linear-gradient(180deg, var(--surface) 0%, #f5e8cf 100%);
}
.sector-icon {
  font-size: 32px;
  filter: saturate(1.1);
}

/* -------------------- Project cards -------------------- */
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.project-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.thumb-a { background: linear-gradient(135deg, #6f55e0 0%, #e85f4f 100%); }
.thumb-b { background: linear-gradient(135deg, #1c1814 0%, #6f55e0 100%); }
.thumb-c { background: linear-gradient(135deg, #e85f4f 0%, #f59e0b 60%, #fbbf24 100%); }
.thumb-d { background: linear-gradient(135deg, #fbbf24 0%, #e85f4f 70%, #b94d89 100%); }
.thumb-e { background: linear-gradient(135deg, #2d1e5c 0%, #6f55e0 100%); }
.thumb-f { background: linear-gradient(135deg, #6f55e0 0%, #b94d89 50%, #e85f4f 100%); }

.project-body { padding: 22px 24px 24px; }
.project-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
}
.project-body p { font-size: 14px; margin-bottom: 14px; }
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--surface-3);
  color: var(--ink-2);
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}

/* -------------------- Testimonials -------------------- */
.testimonial {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.testimonial .stars {
  display: flex;
  gap: 2px;
}
.testimonial .quote {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50%;
  font-family: var(--font-sans);
  box-shadow: 0 2px 8px rgba(111, 85, 224, 0.25);
}
.author strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; }
.author span { font-size: 13px; color: var(--ink-3); }

/* -------------------- Pricing -------------------- */
.pricing { gap: 20px; }
.price-card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.price-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-desc { font-size: 14px; color: var(--ink-2); margin-bottom: 20px; }
.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price span { font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }
.price strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.price-list li {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding-left: 24px;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.price-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.price-featured {
  background: linear-gradient(180deg, var(--surface) 0%, #f8eedd 100%);
  border-color: var(--accent);
  box-shadow: var(--sh-md), 0 0 0 1px var(--accent-soft);
}
.price-featured .card-badge {
  top: -12px; right: 24px;
}

/* -------------------- FAQ -------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--sh-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink));
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease, background-size 0.25s ease, border-color 0.2s ease;
}
.faq-item[open] summary::after {
  background-size: 12px 1.5px, 0 0;
  background-color: var(--accent);
  border-color: var(--accent);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 24px 22px;
}
.faq-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* -------------------- CTA final -------------------- */
.cta-final {
  padding: 60px 0 110px;
}
.cta-card {
  position: relative;
  padding: 80px 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 95, 79, 0.45), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.30), transparent 55%),
    linear-gradient(135deg, #2d1e5c 0%, #6f55e0 100%);
  border-radius: 32px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000, transparent);
          mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000, transparent);
  opacity: 0.6;
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 16px;
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}
.cta-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-card .hero-ctas { margin-bottom: 20px; }
.cta-foot {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* -------------------- Booking inline (Calendly) -------------------- */
.booking-inline {
  margin-top: 72px;
  max-width: 980px;
  margin-inline: auto;
}
.booking-head {
  text-align: center;
  margin-bottom: 32px;
}
.booking-head .eyebrow { margin-bottom: 16px; }
.booking-head h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}
.booking-head p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 520px;
  margin-inline: auto;
}
.calendly-inline-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.booking-fallback {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-2);
}
.booking-fallback a { color: var(--accent); text-decoration: underline; }

/* -------------------- Footer -------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-2);
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-cols h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  padding: 5px 0;
  transition: color 0.18s ease;
}
.footer-cols a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-3);
}

/* -------------------- Reveal animations -------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before { display: none; }
  .sectors { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .hero { padding: 56px 0 80px; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: var(--header-h);
    left: 12px; right: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 12px;
    box-shadow: var(--sh-lg);
  }
  .site-nav.is-open a { padding: 12px 14px; }
  .nav-toggle { display: flex; }
  .header-inner > .btn { display: none; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .trust-logos { gap: 28px; }
  .trust-logo { font-size: 18px; }
  .cta-card { padding: 56px 24px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}
