/* ── RESET & BASE ── */
html { scroll-behavior: smooth }
body { margin: 0 }
*, *::before, *::after { box-sizing: border-box }

:root {
  --blue: #1B4DFF;
  --blue-dark: #1238CC;
  --blue-light: #EDF1FF;
  --blue-border: #C9D6FF;
  --dark: #11131A;
  --text: #5A6072;
  --muted: #8B90A0;
  --border: #E7E7E0;
  --surface: #F6F6F2;
  --surface-alt: #FBFBF8;
  --white: #FFFFFF;
  --green: #0FA968;
  --green-dark: #0B8552;
  --green-bg: #E6F6EE;
  --green-border: #BFE9D2;
  --yellow: #F59E0B;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

@keyframes wzPulse {
  0%, 100% { opacity: 1; transform: scale(1) }
  50% { opacity: .45; transform: scale(1.6) }
}
@keyframes wzSweep {
  from { transform: translateX(-100%) }
  to { transform: translateX(220%) }
}
@keyframes wzScroll {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

/* ── PAGE WRAPPER ── */
.wz-page {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ── NAV ── */
.wz-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, 5vw);
}
.wz-nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wz-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wz-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}
.wz-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.wz-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.wz-nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
}
.wz-nav-link:hover { background: var(--surface); }
.wz-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wz-btn-outline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 9px;
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.wz-btn-outline:hover { border-color: var(--dark); }
.wz-btn-primary {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 9px;
  transition: background .2s;
}
.wz-btn-primary:hover { background: var(--blue-dark); }

/* ── HERO ── */
.wz-hero {
  background: var(--white);
  padding: 84px max(24px, 5vw) 72px;
  text-align: center;
}
.wz-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.wz-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}
.wz-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: wzPulse 1.6s infinite;
}
.wz-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin: 0 0 22px;
  text-wrap: balance;
}
.wz-hero h1 .accent { color: var(--blue); }
.wz-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 500;
  text-wrap: pretty;
}
.wz-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.wz-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(27, 77, 255, 0.28);
  transition: background .2s, transform .2s;
}
.wz-btn-cta:hover { background: var(--blue-dark); transform: translateY(-2px); }
.wz-btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 11px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.wz-btn-demo:hover { border-color: var(--dark); }
.wz-btn-demo-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.wz-hero-proof {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 56px;
  font-weight: 600;
}
.wz-hero-proof .green { color: var(--green); }

/* ── DEMO CARD ── */
.wz-demo {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(16, 19, 26, 0.12);
  overflow: hidden;
  text-align: left;
}
.wz-demo-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wz-demo-dots { display: flex; gap: 7px; }
.wz-demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.wz-demo-dot--red { background: #FC5C65; }
.wz-demo-dot--yellow { background: #FFBD2E; }
.wz-demo-dot--green { background: #27C93F; }
.wz-demo-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}
.wz-demo-grid {
  display: grid;
  grid-template-columns: 248px 1fr;
}
.wz-demo-sidebar {
  border-right: 1px solid var(--border);
  padding: 20px;
  background: var(--surface-alt);
}
.wz-demo-sidebar-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}
.wz-prod-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 4px;
}
.wz-prod-item--active { background: var(--blue-light); }
.wz-prod-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wz-prod-icon--active { background: var(--blue-border); }
.wz-prod-icon--default { background: #EFEFEA; }
.wz-prod-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.wz-prod-ref {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}
.wz-demo-status {
  margin-top: 16px;
  padding: 12px;
  background: var(--green-bg);
  border-radius: 10px;
  border: 1px solid var(--green-border);
}
.wz-demo-status-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.wz-status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: wzPulse 1.6s infinite;
}
.wz-status-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
}
.wz-status-text {
  font-size: 0.76rem;
  color: var(--text);
  font-weight: 600;
}
.wz-demo-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wz-field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wz-field-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.wz-field-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  padding: 11px 13px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 9px;
  min-height: 40px;
  position: relative;
  overflow: hidden;
}
.wz-field-desc {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.65;
  padding: 11px 13px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 9px;
  min-height: 66px;
  position: relative;
  overflow: hidden;
}
.wz-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  min-height: 28px;
}
.wz-seo-bar {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 9px;
}
.wz-seo-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}
.wz-seo-track {
  flex: 1;
  height: 7px;
  background: var(--green-border);
  border-radius: 4px;
  overflow: hidden;
}
.wz-seo-fill {
  height: 100%;
  background: var(--green);
  border-radius: 4px;
  width: 0;
  transition: width 1.3s cubic-bezier(.4, 0, .2, 1);
}
.wz-seo-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

/* ── LOGOS MARQUEE ── */
.wz-logos {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-alt);
}
.wz-logos-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wz-logos-track {
  display: flex;
  overflow: hidden;
}
.wz-logos-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: wzScroll 26s linear infinite;
  white-space: nowrap;
  padding: 0 7px;
}
.wz-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  flex-shrink: 0;
}
.wz-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

/* ── STATS ── */
.wz-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px max(24px, 5vw) 0;
}
.wz-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.wz-stat {
  padding: 42px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.wz-stat:last-child { border-right: none; }
.wz-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.wz-stat-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 600;
}

/* ── SECTION HEADERS ── */
.wz-section { max-width: 1200px; margin: 0 auto; padding: 88px max(24px, 5vw); }
.wz-section--alt { background: var(--surface); padding: 88px max(24px, 5vw); }
.wz-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.wz-section-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.wz-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--dark);
}
.wz-section-sub {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* ── FEATURES TABS ── */
.wz-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: start;
}
.wz-feat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wz-feat-tab {
  padding: 18px 20px;
  border-radius: 13px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  transition: background .2s, border-color .2s;
}
.wz-feat-tab--active {
  border-color: var(--blue-border);
  background: var(--blue-light);
}
.wz-feat-tab-header {
  display: flex;
  align-items: center;
  gap: 13px;
}
.wz-feat-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F0F0EA;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.wz-feat-tab--active .wz-feat-tab-icon {
  background: var(--blue);
  color: var(--white);
}
.wz-feat-tab-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.wz-feat-tab-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 53px;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease, margin-top .35s ease;
}
.wz-feat-tab--active .wz-feat-tab-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}
.wz-feat-preview {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px;
}
.wz-feat-pv-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wz-feat-pv-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}
.wz-feat-pv-desc {
  font-size: 0.92rem;
  color: var(--text);
  text-align: center;
  max-width: 320px;
  line-height: 1.6;
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.wz-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.wz-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.wz-step:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16, 19, 26, 0.08); }
.wz-step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 11px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 18px;
}
.wz-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.wz-step-icon--blue { background: var(--blue); }
.wz-step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.wz-step-desc {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

/* ── PRICING ── */
.wz-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  align-items: start;
}
.wz-price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}
.wz-price-card--popular {
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 77, 255, 0.08), 0 16px 40px rgba(16, 19, 26, 0.08);
  position: relative;
}
.wz-price-popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
}
.wz-price-tier {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.wz-price-tier--blue { color: var(--blue); }
.wz-price-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}
.wz-price-sub {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 500;
}
.wz-price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.wz-price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.wz-price-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.wz-price-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.wz-price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.wz-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
}
.wz-price-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.wz-price-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.wz-btn-price-outline {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--dark);
  transition: border-color .2s, color .2s, background .2s;
}
.wz-btn-price-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.wz-btn-price-primary {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(27, 77, 255, 0.3);
  transition: background .2s;
}
.wz-btn-price-primary:hover { background: var(--blue-dark); }
.wz-price-trial-note {
  text-align: center;
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}
.wz-pricing-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.wz-pricing-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* ── TESTIMONIALS ── */
.wz-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.wz-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.wz-testimonial-stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.wz-testimonial-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 20px;
  font-weight: 500;
}
.wz-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.wz-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.wz-testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.wz-testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── FAQ ── */
.wz-faq { max-width: 740px; margin: 0 auto; }
.wz-faq-item {
  border-bottom: 1px solid var(--border);
}
.wz-faq-item:first-child { border-top: 1px solid var(--border); }
.wz-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 21px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
}
.wz-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.wz-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform .25s, background .2s, color .2s;
  background: var(--white);
}
.wz-faq-answer {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-weight: 500;
}

/* ── CTA ── */
.wz-cta-wrapper {
  background: var(--white);
  padding: 40px max(24px, 5vw) 88px;
}
.wz-cta {
  max-width: 960px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 22px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wz-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--white);
  line-height: 1.12;
}
.wz-cta-sub {
  font-size: 1.05rem;
  color: #B7BCC9;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
  font-weight: 500;
}
.wz-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.wz-btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 11px;
  text-decoration: none;
  transition: background .2s;
}
.wz-btn-cta-light:hover { background: #3A66FF; }
.wz-btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #23262F;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 11px;
  text-decoration: none;
  border: 1px solid rgba(52, 56, 67, 0.07);
  transition: background .2s;
}
.wz-btn-cta-dark:hover { background: #2D313C; }
.wz-cta-proof {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── FOOTER ── */
.wz-footer {
  border-top: 1px solid var(--border);
  padding: 32px max(24px, 5vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
}
.wz-footer-logo .wz-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.wz-footer-logo .wz-logo-text {
  font-size: 1.1rem;
}
.wz-footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.wz-footer-link {
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.wz-footer-copy {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .wz-nav-links { display: none; }
  .wz-demo-grid { grid-template-columns: 1fr; }
  .wz-demo-sidebar { border-right: none; border-bottom: 1px solid var(--border); }
  .wz-features-grid { grid-template-columns: 1fr; }
  .wz-feat-preview { position: static; height: auto; min-height: 280px; }
  .wz-cta { padding: 48px 24px; }
  .wz-footer { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════
   PAGES INTERNES — Wisseo multi-pages
   ════════════════════════════════════════════════ */

/* Nav active + mobile */
.wz-nav-link--active { background: var(--surface); color: var(--dark); }
.wz-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  width: 42px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.wz-nav-toggle span,
.wz-nav-toggle span::before,
.wz-nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  position: relative;
  transition: transform .25s;
}
.wz-nav-toggle span::before { content: ''; position: absolute; top: -6px; }
.wz-nav-toggle span::after { content: ''; position: absolute; top: 6px; }
.wz-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px max(24px, 5vw) 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.wz-nav-mobile.is-open { display: flex; }
.wz-nav-mobile a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 11px 12px;
  border-radius: 9px;
}
.wz-nav-mobile a:hover { background: var(--surface); }
.wz-nav-mobile .wz-btn-primary { color: var(--white); text-align: center; margin-top: 6px; }

/* Sous-hero (pages internes) */
.wz-pagehero {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 64px max(24px, 5vw) 56px;
  text-align: center;
}
.wz-pagehero-inner { max-width: 820px; margin: 0 auto; }
.wz-pagehero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--dark);
  margin: 14px 0 18px;
  text-wrap: balance;
}
.wz-pagehero h1 .accent { color: var(--blue); }
.wz-pagehero p {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--text);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 28px;
  font-weight: 500;
}
.wz-pagehero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Fil d'ariane */
.wz-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px max(24px, 5vw) 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.wz-breadcrumb a { color: var(--blue); text-decoration: none; }
.wz-breadcrumb span { margin: 0 8px; color: var(--border); }

/* Contenu rédactionnel (légal, blog) */
.wz-prose { max-width: 760px; margin: 0 auto; }
.wz-prose h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 38px 0 14px;
  letter-spacing: -0.01em;
}
.wz-prose h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin: 26px 0 10px;
}
.wz-prose p, .wz-prose li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 500;
}
.wz-prose p { margin: 0 0 16px; }
.wz-prose ul { padding-left: 22px; margin: 0 0 18px; }
.wz-prose li { margin-bottom: 8px; }
.wz-prose a { color: var(--blue); font-weight: 600; }

/* Grille de cartes génériques */
.wz-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.wz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.wz-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16,19,26,.08); }
.wz-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.wz-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600; color: var(--dark); margin: 0 0 8px;
}
.wz-card p { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin: 0 0 16px; font-weight: 500; }
.wz-card-link {
  font-size: 0.88rem; font-weight: 700; color: var(--blue); text-decoration: none;
}
.wz-card-link:hover { text-decoration: underline; }

/* Blog */
.wz-blog-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-bottom: 12px;
}
.wz-blog-tag {
  background: var(--blue-light); color: var(--blue);
  padding: 4px 11px; border-radius: 999px; font-weight: 700;
}
.wz-article-header { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.wz-article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; color: var(--dark); margin: 14px 0 16px;
  text-wrap: balance;
}

/* Liste de bénéfices (check) */
.wz-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.wz-checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.95rem; color: var(--text); font-weight: 500; line-height: 1.55; }
.wz-checklist .wz-price-check { font-size: 1rem; }

/* Bloc deux colonnes (texte + visuel) */
.wz-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 80px max(24px, 5vw);
}
.wz-split--alt { background: var(--surface); }
.wz-split h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; color: var(--dark); margin: 0 0 18px;
}
.wz-split p { font-size: 1.02rem; color: var(--text); line-height: 1.7; font-weight: 500; margin: 0 0 22px; }
.wz-split-visual {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(16,19,26,.08); padding: 32px;
}

/* Formulaire contact */
.wz-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.wz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wz-form label { font-size: 0.84rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; display: block; }
.wz-form input, .wz-form textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--dark);
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--white);
}
.wz-form input:focus, .wz-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,77,255,.12); }
.wz-form textarea { min-height: 140px; resize: vertical; }
.wz-form button {
  background: var(--blue); color: var(--white); border: none; font-weight: 700; font-size: 1rem;
  padding: 14px; border-radius: 11px; cursor: pointer; transition: background .2s;
  box-shadow: 0 8px 24px rgba(27,77,255,.28);
}
.wz-form button:hover { background: var(--blue-dark); }
.wz-form-error { font-size: 0.8rem; color: #DC2626; font-weight: 600; margin-top: 4px; }
.wz-alert-success {
  background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green-dark);
  padding: 14px 18px; border-radius: 12px; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; text-align: center;
}

/* Tableau comparatif crédit */
.wz-callout {
  max-width: 760px; margin: 28px auto 0; background: var(--blue-light);
  border: 1px solid var(--blue-border); border-radius: 16px; padding: 28px 32px; text-align: center;
}
.wz-callout strong { color: var(--blue); }

@media (max-width: 860px) {
  .wz-split { grid-template-columns: 1fr; gap: 28px; padding: 56px max(24px,5vw); }
}
@media (max-width: 768px) {
  .wz-nav-toggle { display: flex; }
  .wz-nav-actions { display: none; }
  .wz-form-row { grid-template-columns: 1fr; }
}

/* ── Connecteurs : grille de logos ── */
.wz-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.wz-logo-link-tile { text-decoration: none; }
.wz-logo-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  height: 100%;
}
.wz-logo-link-tile:hover .wz-logo-tile { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16,19,26,.08); border-color: var(--blue-border); }
.wz-logo-mark {
  width: 60px; height: 60px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wz-logo-tile span {
  font-family: var(--font-heading);
  font-size: 0.92rem; font-weight: 600; color: var(--dark); text-align: center; line-height: 1.35;
}
.wz-logo-tile span em { font-style: normal; font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.wz-logo-tile--soon { border-style: dashed; background: var(--surface-alt); }

/* ── Bloc synchronisation (flux) ── */
.wz-sync-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.wz-sync-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  position: relative;
}
.wz-sync-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.wz-sync-step h3 { font-family: var(--font-heading); font-size: 1.02rem; font-weight: 600; color: var(--dark); margin: 0 0 8px; }
.wz-sync-step p { font-size: 0.86rem; color: var(--text); line-height: 1.6; margin: 0; font-weight: 500; }
.wz-sync-arrow { color: var(--blue); font-weight: 700; }

/* ── Tableau de compatibilité ── */
.wz-compat {
  max-width: 820px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--white);
}
.wz-compat table { width: 100%; border-collapse: collapse; }
.wz-compat th, .wz-compat td { padding: 14px 16px; text-align: center; font-size: 0.9rem; }
.wz-compat th { background: var(--surface); font-family: var(--font-heading); font-weight: 600; color: var(--dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: .04em; }
.wz-compat td:first-child, .wz-compat th:first-child { text-align: left; font-weight: 700; color: var(--dark); }
.wz-compat tr { border-top: 1px solid var(--border); }
.wz-compat .yes { color: var(--green); font-weight: 700; }
.wz-compat .no { color: var(--muted); }

@media (max-width: 600px) {
  .wz-compat { overflow-x: auto; }
  .wz-compat th, .wz-compat td { padding: 11px 10px; font-size: 0.82rem; }
}
