/* =====================================================
   wizCode · global.css — Complete Design System
   ===================================================== */

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

body::-webkit-scrollbar-track {
  background: var(--bg);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

/* Hide main page (html/body) scrollbar — progress indicator is enough */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

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

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

a {
  color: inherit;
}

/* ── Design Tokens ── */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-deep: #ebebed;
  --surface: #fafafa;
  --headers: #1d1d1f;
  --text: #6e6e73;
  --text-light: #86868b;
  --border-color: rgba(0, 0, 0, 0.08);
  --border: 1px solid var(--border-color);
  --accent: #0071E3;
  --accent-dark: #0058b0;
  --accent-glow: rgba(0, 113, 227, 0.10);
  --accent-rgb: 0, 113, 227;
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.55);
  --on-dark-faint: rgba(255, 255, 255, 0.25);
  --surface-dark: #1d1d1f;
  --surface-dark-border: rgba(255, 255, 255, 0.08);
  --max-width: 1160px;
  --radius: 20px;
  --radius-lg: 28px;
  --section-pad: 100px 24px;
  --header-height: 50px;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.35s;
  --dur-slow: 0.8s;
  --dur-reveal: 0.9s;
}

[data-theme="dark"] {
  --bg: #000000;
  --bg-alt: #111113;
  --bg-deep: #1a1a1c;
  --surface: #0d0d0f;
  --headers: #f5f5f7;
  --text: #86868b;
  --text-light: #636366;
  --border-color: rgba(255, 255, 255, 0.08);
  --accent-glow: rgba(0, 113, 227, 0.18);
  --surface-dark: #111113;
  --surface-dark-border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--headers);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

/* ── Typography ── */
.wz-h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--headers);
}

.wz-h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--headers);
  margin-bottom: 16px;
}

.wz-h3 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--headers);
  margin-bottom: 10px;
}

.wz-p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text);
  line-height: 1.7;
}

.wz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.wz-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.wz-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ── Layout ── */
.wz-section {
  padding: var(--section-pad);
}

.wz-section-divided {
  border-top: var(--border);
}

.wz-section-alt {
  background: var(--bg-alt);
}

.wz-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.wz-page-top {
  padding-top: var(--header-height);
}

.wz-section-header {
  margin-bottom: 48px;
}

.wz-section-header.center {
  text-align: center;
}

/* ── Grids ── */
.wz-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.wz-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wz-grid-center {
  align-items: center;
}

/* ── Buttons ── */
.wz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.wz-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.wz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

.wz-btn:hover::after {
  opacity: 1;
}

.wz-btn:active {
  transform: translateY(0);
}

.wz-btn-outline {
  background: transparent;
  color: var(--headers);
  border: 1.5px solid var(--border-color);
  box-shadow: none;
}

.wz-btn-outline:hover {
  background: var(--bg-alt);
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.15);
}

.wz-btn-dark {
  background: var(--surface-dark);
  color: #fff;
}

.wz-btn-dark:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.wz-btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.wz-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.wz-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

/* ── Scroll Reveal ── */
.wz-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-reveal) var(--ease), transform var(--dur-reveal) var(--ease);
}

.wz-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.wz-reveal-d1 {
  transition-delay: 0.1s;
}

.wz-reveal-d2 {
  transition-delay: 0.2s;
}

.wz-reveal-d3 {
  transition-delay: 0.3s;
}

.wz-reveal-d4 {
  transition-delay: 0.4s;
}

.wz-reveal-d5 {
  transition-delay: 0.5s;
}

/* ── Header ── */
#wz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 28px;
  gap: 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s, background 0.4s;
}

[data-theme="dark"] #wz-header {
  background: rgba(10, 10, 10, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.wz-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wz-header-logo img {
  height: 28px;
  width: auto;
}

.wz-header-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--headers);
  letter-spacing: -0.03em;
}

.wz-header-logo-text span {
  color: var(--accent);
}

.wz-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.wz-header-nav a {
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.wz-header-nav a:hover,
.wz-header-nav a.active {
  color: var(--headers);
  background: var(--bg-alt);
}

.wz-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.wz-header-cta {
  display: none;
}

@media(min-width: 861px) {
  .wz-header-cta {
    display: inline-flex;
  }
}

.wz-theme-btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  transition: all 0.2s;
  flex-shrink: 0;
}

.wz-theme-btn:hover {
  background: var(--bg-alt);
}

.wz-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--headers);
  flex-shrink: 0;
  transition: background 0.2s;
}

.wz-menu-btn:hover {
  background: var(--bg-alt);
}

/* ── Apple-style Mobile Nav ── */
.wz-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  overflow: hidden;
  animation: navSlideIn 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .wz-mobile-nav {
  background: rgba(8, 8, 8, 0.88);
}

@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wz-mobile-nav.open {
  display: flex;
}

.wz-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.wz-mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.wz-mobile-nav-body::-webkit-scrollbar {
  width: 3px;
}

.wz-mobile-nav-body::-webkit-scrollbar-track {
  background: transparent;
}

.wz-mobile-nav-body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 50px;
}

.wz-mobile-nav-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--headers);
  text-decoration: none;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.18s, background 0.18s;
}

.wz-mobile-nav-body a:hover {
  color: var(--accent);
  background: rgba(0, 113, 227, 0.04);
}

.wz-mobile-nav-body a:last-child {
  border-bottom: none;
}

.wz-mobile-nav-body a i {
  font-size: 13px;
  color: var(--text-light);
}

.wz-mobile-nav-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

.wz-mobile-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--headers);
  transition: background 0.2s;
}

.wz-mobile-close-btn:hover {
  background: var(--bg-deep);
}

/* Scroll progress */
#wz-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 10001;
  width: 0;
  transition: width 0.1s linear;
}

/* ── Footer ── */
#wz-footer {
  background: var(--surface-dark);
  color: var(--on-dark);
  padding: 64px 32px 0;
}

.wz-footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.wz-footer-brand p {
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  line-height: 1.7;
  margin: 12px 0 20px;
  max-width: 260px;
}

.wz-footer-social {
  display: flex;
  gap: 10px;
}

.wz-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.wz-footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.wz-footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.wz-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wz-footer-col-links a {
  font-size: 0.83rem;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.wz-footer-col-links a:hover {
  color: #fff;
}

.wz-footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--surface-dark-border);
  gap: 16px;
  flex-wrap: wrap;
}

.wz-footer-copyright {
  font-size: 0.78rem;
  color: var(--on-dark-muted);
}

.wz-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wz-footer-legal a {
  font-size: 0.78rem;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.wz-footer-legal a:hover {
  color: #fff;
}

.wz-footer-col-title .wz-footer-caret {
  transition: transform .3s;
  font-size: 14px;
  display: none;
}

/* ── Cookie Banner ── */
#wz-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 700px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUp 0.5s var(--ease);
  transition: box-shadow 0.3s, background 0.4s;
}

[data-theme="dark"] #wz-cookie-banner {
  background: rgba(10, 10, 10, 0.5);
}

#wz-cookie-banner.hidden {
  display: none;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.wz-cookie-text {
  flex: 1;
  font-size: 0.84rem;
  color: var(--headers);
  line-height: 1.5;
}

.wz-cookie-text a {
  color: var(--text);
  text-decoration: underline;
}

.wz-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.wz-cookie-actions button {
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border: none;
}

.wz-cookie-accept {
  background: var(--accent);
  color: #fff;
}

.wz-cookie-decline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--headers);
  border: var(--border) !important;
}

.wz-cookie-manage {
  background: transparent;
  color: var(--headers);
  border: var(--border) !important;
}

/* ── Cards ── */
.wz-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.wz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Page Hero ── */
.wz-page-hero {
  background: var(--bg);
  border-bottom: var(--border);
  padding: 100px 24px 80px;
  text-align: center;
}

.wz-page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.07;
  margin-bottom: 16px;
}

.wz-page-hero p {
  font-size: var(--size-p);
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

.wz-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.wz-page-hero-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── CTA Banner ── */
.wz-cta-banner {
  background: var(--surface-dark);
  color: #fff;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wz-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 113, 227, 0.25), transparent);
  pointer-events: none;
}

.wz-cta-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.wz-cta-banner .wz-h2 {
  color: #fff;
}

.wz-cta-banner .wz-p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto 32px;
}

.wz-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Accordion ── */
.wz-accordion-item {
  border-bottom: var(--border);
}

.wz-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--headers);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 12px;
  transition: color 0.2s;
}

.wz-accordion-trigger:hover {
  color: var(--accent);
}

.wz-accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  font-size: 16px;
  color: var(--text);
}

.wz-accordion-item.open .wz-accordion-icon {
  transform: rotate(45deg);
}

.wz-accordion-body {
  display: none;
  padding-bottom: 20px;
}

.wz-accordion-item.open .wz-accordion-body {
  display: block;
}

.wz-accordion-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── Tabs ── */
.wz-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  background: var(--bg-alt);
  border: var(--border);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
}

/* Pricing tab wrap: centered, scrollable on small screens */
.pricing-tabs-wrap {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 8px;
}

.pricing-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.pricing-tabs-wrap .wz-tabs {
  margin-bottom: 0;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .pricing-tabs-wrap {
    justify-content: flex-start;
    padding: 4px 0 16px;
  }

  .pricing-tabs-wrap .wz-tabs {
    border-radius: 16px;
    flex-wrap: nowrap;
  }

  .pricing-tabs-wrap .wz-tab {
    border-radius: 12px;
    font-size: 0.78rem;
    padding: 8px 14px;
    white-space: nowrap;
  }
}

.wz-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text);
  font-family: inherit;
  transition: all 0.25s;
}

.wz-tab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.28);
}

/* ── Modals ── */
.wz-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
}

.wz-modal-overlay::-webkit-scrollbar {
  width: 3px;
}

.wz-modal-overlay::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

.wz-modal-overlay.open {
  display: flex;
}

.wz-modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  animation: modalIn 0.4s var(--ease);
  margin: auto;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.wz-modal-hero {
  height: 300px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wz-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wz-modal-hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.wz-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.wz-modal-body {
  padding: 40px;
}

.wz-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.wz-modal-meta-item {
  font-size: 0.78rem;
  color: var(--text);
  background: var(--bg-alt);
  border: var(--border);
  border-radius: 50px;
  padding: 5px 14px;
}

.wz-modal-section {
  margin-bottom: 28px;
}

.wz-modal-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 10px;
}

.wz-modal-section p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}

.wz-modal-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wz-modal-tech-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wz-modal-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wz-modal-outcome {
  text-align: center;
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
}

.wz-modal-outcome-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.wz-modal-outcome-label {
  font-size: 0.8rem;
  color: var(--text);
  margin-top: 4px;
}

.wz-modal-quote {
  background: var(--accent-glow);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 8px;
}

.wz-modal-quote p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
}

.wz-modal-quote cite {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--headers);
  margin-top: 10px;
  font-style: normal;
}

/* ── Pricing Cards ── */
.wz-pricing-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.wz-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wz-pricing-card-featured {
  background: var(--surface-dark);
  border-color: var(--accent);
}

.wz-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.wz-pricing-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.wz-pricing-tagline {
  font-size: 0.85rem;
  color: var(--text);
  margin-top: -12px;
}

.wz-pricing-card-featured .wz-pricing-tagline {
  color: rgba(255, 255, 255, 0.55);
}

.wz-pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}

.wz-pricing-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--headers);
  margin-bottom: 4px;
}

.wz-pricing-card-featured .wz-pricing-currency {
  color: #fff;
}

.wz-pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--headers);
}

.wz-pricing-card-featured .wz-pricing-amount {
  color: #fff;
}

.wz-pricing-period {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}

.wz-pricing-card-featured .wz-pricing-period {
  color: rgba(255, 255, 255, 0.55);
}

.wz-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wz-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wz-pricing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 10px;
  margin-top: 1px;
}

.wz-pricing-card-featured .wz-pricing-check {
  background: rgba(0, 113, 227, 0.25);
}

.wz-pricing-feature-text strong {
  font-size: 0.88rem;
  color: var(--headers);
  display: block;
}

.wz-pricing-card-featured .wz-pricing-feature-text strong {
  color: #fff;
}

.wz-pricing-feature-desc {
  font-size: 0.8rem;
  color: var(--text);
  margin-top: 2px;
  display: block;
}

.wz-pricing-card-featured .wz-pricing-feature-desc {
  color: rgba(255, 255, 255, 0.45);
}

.wz-pricing-card-featured .wz-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.wz-pricing-card-featured .wz-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Forms ── */
.wz-form-group {
  margin-bottom: 16px;
}

.wz-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--headers);
  margin-bottom: 6px;
}

.wz-input,
.wz-select,
.wz-textarea {
  width: 100%;
  background: var(--bg);
  border: var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--headers);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.wz-input:focus,
.wz-select:focus,
.wz-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.wz-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.wz-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

[data-theme="dark"] .wz-input,
[data-theme="dark"] .wz-select,
[data-theme="dark"] .wz-textarea {
  background: var(--bg-alt);
  color: var(--headers);
}

/* ── Range Slider ── */
.wz-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 50px;
  background: var(--border-color);
  outline: none;
}

.wz-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.4);
  transition: box-shadow 0.2s;
}

.wz-range::-webkit-slider-thumb:hover {
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.5);
}

.wz-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.4);
}

/* ── Technologies ── */
.wz-tech-category {
  margin-bottom: 48px;
}

.wz-tech-category-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wz-tech-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.wz-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wz-tech-item {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.wz-tech-item:hover,
.wz-tech-item.open {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.25);
}

.wz-tech-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wz-tech-item i.tech-icon {
  font-size: 26px;
  color: var(--accent);
  flex-shrink: 0;
}

.wz-tech-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--headers);
}

.wz-tech-item-level {
  height: 4px;
  border-radius: 50px;
  background: var(--border-color);
  overflow: hidden;
  margin: 12px 0 0;
}

.wz-tech-item-level-fill {
  height: 100%;
  border-radius: 50px;
  background: var(--accent);
  width: 0;
  transition: width 1.2s var(--ease);
}

.wz-tech-item-details {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: var(--border);
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.65;
}

.wz-tech-item.open .wz-tech-item-details {
  display: block;
}

.wz-tech-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.wz-tech-item-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--accent-glow);
  color: var(--accent);
}

/* ── Insights / Blog ── */
.wz-insight-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.wz-insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.wz-insight-image {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.wz-insight-image-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.wz-insight-card:hover .wz-insight-image-inner {
  transform: scale(1.05);
}

.wz-insight-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wz-insight-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wz-insight-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.wz-insight-read {
  font-size: 0.78rem;
  color: var(--text-light);
}

.wz-insight-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.wz-insight-excerpt {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

/* Blog article modal */
.wz-blog-modal-body {
  padding: 48px;
}

.wz-blog-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}

.wz-blog-article h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--headers);
  margin: 28px 0 12px;
  letter-spacing: -0.03em;
}

.wz-blog-article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--headers);
  margin: 20px 0 8px;
}

.wz-blog-article p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.wz-blog-article ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.wz-blog-article li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 6px;
}

.wz-blog-article blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: var(--accent-glow);
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
}

.wz-blog-code {
  background: var(--bg-deep);
  border: var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.83rem;
  color: var(--headers);
  margin: 16px 0;
  overflow-x: auto;
}

/* ── Careers ── */
.wz-career-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.wz-career-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.wz-career-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.wz-career-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: var(--border);
  border-radius: 50px;
  padding: 4px 10px;
}

/* ── Contact ── */
.wz-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.wz-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.wz-contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.wz-contact-info-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.wz-contact-info-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--headers);
}

/* ── Stats ── */
.wz-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wz-stat {
  text-align: center;
}

.wz-stat-value {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--headers);
  line-height: 1;
}

.wz-stat-label {
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 6px;
}

/* ── Testimonials ── */
.wz-testimonial {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wz-testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

.wz-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wz-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.wz-testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--headers);
}

.wz-testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── Legal ── */
.wz-legal-body {
  max-width: 850px;
  margin: 0 auto;
  padding: 64px 24px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}

.wz-legal-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--headers);
  margin: 40px 0 12px;
  letter-spacing: -0.02em;
}

.wz-legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  margin: 24px 0 8px;
}

.wz-legal-body p {
  margin-bottom: 16px;
}

.wz-legal-body ul,
.wz-legal-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wz-legal-body li {
  font-size: 0.92rem;
}

.wz-legal-body a {
  color: var(--accent);
}

.wz-legal-last-updated {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-alt);
  border: var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 32px;
}

/* ── Service Cards ── */
.wz-service-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wz-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.wz-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Timeline ── */
.wz-timeline {
  position: relative;
  padding-left: 40px;
}

.wz-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.wz-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.wz-timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.wz-timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}

.wz-timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  margin-bottom: 6px;
}

.wz-timeline-desc {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.65;
}

/* ── Team Cards ── */
.wz-team-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.wz-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.wz-team-avatar {
  height: 200px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.05em;
}

.wz-team-body {
  padding: 24px;
}

.wz-team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  margin-bottom: 3px;
}

.wz-team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.wz-team-bio {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── Help Center ── */
.hc-cat {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hc-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hc-cat-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}

.hc-cat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  margin-bottom: 6px;
}

.hc-cat-count {
  font-size: 0.82rem;
  color: var(--text-light);
}

.hc-article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-article-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.hc-article-list li a:hover {
  color: var(--accent);
}

/* ── Skill Bars ── */
.wz-skill-bar {
  margin-bottom: 20px;
}

.wz-skill-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.wz-skill-bar-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--headers);
}

.wz-skill-bar-pct {
  font-size: 0.78rem;
  color: var(--text-light);
}

.wz-skill-bar-track {
  height: 6px;
  border-radius: 50px;
  background: var(--border-color);
  overflow: hidden;
}

.wz-skill-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: var(--accent);
  width: 0;
  transition: width 1.4s var(--ease);
}

/* ── Notice ── */
.wz-notice {
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.wz-notice-info {
  background: var(--accent-glow);
  border: 1px solid rgba(0, 113, 227, 0.15);
  color: var(--text);
}

.wz-notice-success {
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.2);
  color: #1a7a3a;
}

/* ── Value Cards ── */
.wz-value-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wz-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.wz-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Cookie Settings Toggles ── */
.cs-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.cs-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  margin-bottom: 6px;
}

.cs-card-desc {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.6;
}

.cs-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cs-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cs-slider {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.cs-toggle input:checked+.cs-slider {
  background: var(--accent);
}

.cs-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 4px;
  left: 4px;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cs-toggle input:checked+.cs-slider::before {
  transform: translateX(24px);
}

.cs-toggle input:disabled+.cs-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cs-status {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 8px;
}

.cs-status-on {
  background: rgba(52, 199, 89, 0.12);
  color: #1a7a3a;
}

/* =====================================================
   CUSTOM SELECT DROPDOWN
   ===================================================== */
.wz-custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
  user-select: none;
  cursor: pointer;
}

.wz-custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--headers);
  transition: border-color 0.2s, box-shadow 0.2s;
  gap: 8px;
}

[data-theme="dark"] .wz-custom-select-trigger {
  background: var(--bg-alt);
}

.wz-custom-select.open .wz-custom-select-trigger {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.wz-custom-select-trigger i {
  font-size: 14px;
  color: var(--text);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.wz-custom-select.open .wz-custom-select-trigger i {
  transform: rotate(180deg);
}

.wz-custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--bg);
  border: var(--border);
  border-radius: 14px;
  overflow-y: auto;
  max-height: 220px;
  box-shadow: var(--shadow-lg);
  animation: selectSlide 0.2s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

[data-theme="dark"] .wz-custom-select-dropdown {
  background: var(--bg-alt);
}

@keyframes selectSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wz-custom-select-dropdown::-webkit-scrollbar {
  width: 3px;
}

.wz-custom-select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.wz-custom-select-dropdown::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 50px;
}

.wz-custom-select.open .wz-custom-select-dropdown {
  display: block;
}

.wz-custom-select-option {
  padding: 11px 16px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border-color);
}

.wz-custom-select-option:last-child {
  border-bottom: none;
}

.wz-custom-select-option:hover {
  background: var(--bg-alt);
  color: var(--headers);
}

.wz-custom-select-option.selected {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-glow);
}

/* =====================================================
   PRICING PAGE
   ===================================================== */
.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

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

.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.estimator {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.estimator-result {
  background: var(--surface-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.estimator-result-value {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.estimator-result-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

.estimator-slider-group {
  margin-bottom: 28px;
}

.estimator-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.estimator-slider-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--headers);
}

.estimator-slider-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.slider-track {
  position: relative;
  height: 6px;
  border-radius: 50px;
  background: var(--border-color);
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 50px;
  background: var(--accent);
  pointer-events: none;
  transition: width 0.1s;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: var(--border);
  font-size: 0.88rem;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row i.check {
  color: #34c759;
  font-size: 16px;
}

.feature-row i.cross {
  color: var(--text-light);
  font-size: 16px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: var(--border);
  font-size: 0.88rem;
}

.compare-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  background: var(--bg-alt);
}

.compare-table td:first-child {
  color: var(--headers);
  font-weight: 500;
}

.compare-table td {
  color: var(--text);
}

.compare-table .highlight {
  background: rgba(var(--accent-rgb), 0.04);
}

.check-yes {
  color: #34c759;
  font-size: 18px;
}

.check-no {
  color: var(--border-color);
  font-size: 18px;
}

@media(max-width:860px) {

  .pricing-grid-3,
  .pricing-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .estimator {
    padding: 28px;
  }

  .wz-footer-col-title .wz-footer-caret {
    display: block
  }
}

@media(max-width:600px) {

  .pricing-grid-3,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
  }

  .compare-table td,
  .compare-table th {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

/* =====================================================
   SUPPORT & CONSULTING PAGES
   ===================================================== */
.wz-support-card {
  background: var(--bg-alt);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.wz-support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wz-support-card-featured {
  background: var(--surface-dark);
  border-color: var(--accent);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.wz-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.wz-legal-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}

.wz-legal-nav a:hover,
.wz-legal-nav a.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* =====================================================
   HELP CENTER
   ===================================================== */
.hc-search-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto 56px;
}

.hc-search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-light);
}

.hc-search {
  padding-left: 46px;
}

.hc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width:860px) {
  .hc-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .hc-cat-grid {
    grid-template-columns: 1fr;
  }
}

.hc-article h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--headers);
  margin: 28px 0 10px;
}

.hc-article p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 14px;
}

.hc-article ul,
.hc-article ol {
  padding-left: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-article li {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
}

/* =====================================================
   PROJECTS PAGE
   ===================================================== */
.wz-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:860px) {
  .wz-projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .wz-projects-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.wz-about-hero-art {
  background: linear-gradient(135deg, #0a0a1a 0%, #0d1b3e 50%, #051025 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(0, 113, 227, 0.25);
  position: relative;
  overflow: hidden;
}

/* =====================================================
   RESPONSIVE (all breakpoints consolidated)
   ===================================================== */
@media (max-width: 860px) {
  .wz-header-nav {
    display: none;
  }

  .wz-menu-btn {
    display: flex;
  }

  .wz-grid-2,
  .wz-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .wz-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .wz-tech-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .wz-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wz-contact-grid {
    grid-template-columns: 1fr;
  }

  .wz-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .wz-footer-brand p {
    max-width: 100vw;
  }

  .wz-footer-brand {
    grid-column: 1/-1;
  }

  .wz-footer-col-links {
    display: none;
  }

  .wz-footer-col-links.open {
    display: flex;
  }

  .wz-modal-outcomes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wz-section {
    padding: 72px 20px;
  }

  .wz-grid-2,
  .wz-grid-3,
  .wz-grid-4 {
    grid-template-columns: 1fr;
  }

  .wz-tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wz-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wz-footer-main {
    grid-template-columns: 1fr;
  }

  .wz-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #wz-footer {
    padding: 48px 20px 0;
  }

  .wz-modal-outcomes {
    grid-template-columns: 1fr;
  }

  .wz-modal-body {
    padding: 24px;
  }

  #wz-header {
    padding: 0 16px;
  }

  .estimator {
    padding: 24px;
  }
}



/* =====================================================
   HOME PAGE SPECIFIC STYLES
   ===================================================== */

/* ── Hero ── */
.home-hero {
  height: 88vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  cursor: pointer;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.home-hero-slide.active {
  opacity: 1;
}

.home-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.home-hero-slide.active .home-hero-slide-bg {
  transform: scale(1);
}

.home-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.home-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 820px;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease) 0.05s, transform 0.55s var(--ease) 0.05s;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: white;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease) 0.15s, transform 0.6s var(--ease) 0.15s;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease) 0.25s, transform 0.6s var(--ease) 0.25s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: auto;
  transition: opacity 0.6s var(--ease) 0.35s, transform 0.6s var(--ease) 0.35s;
  flex-wrap: wrap;
}

.home-hero-content.text-in .hero-tag,
.home-hero-content.text-in .hero-title,
.home-hero-content.text-in .hero-sub,
.home-hero-content.text-in .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-content.text-out .hero-tag {
  opacity: 0 !important;
  transform: translateY(-12px) !important;
  transition: opacity 0.22s var(--ease) 0s, transform 0.22s var(--ease) 0s !important;
}

.home-hero-content.text-out .hero-title {
  opacity: 0 !important;
  transform: translateY(-18px) !important;
  transition: opacity 0.25s var(--ease) 0.03s, transform 0.25s var(--ease) 0.03s !important;
}

.home-hero-content.text-out .hero-sub {
  opacity: 0 !important;
  transform: translateY(-12px) !important;
  transition: opacity 0.22s var(--ease) 0.06s, transform 0.22s var(--ease) 0.06s !important;
}

.home-hero-content.text-out .hero-actions {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  transition: opacity 0.2s var(--ease) 0.08s, transform 0.2s var(--ease) 0.08s !important;
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s var(--ease);
}

.hero-dot.active {
  background: white;
  width: 28px;
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 10;
  width: 0;
}

.hero-progress.running {
  transition: width 5s linear;
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.8;
    transform: scaleY(0.7);
  }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--surface-dark);
  overflow: hidden;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 12px;
  position: relative;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--surface-dark-border);
}

.stat-value {
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--on-dark);
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}

.stat-label {
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* ── Intro Grid ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-callout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.intro-image-art {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.intro-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

.intro-badge-text {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
}

.intro-badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  letter-spacing: -0.02em;
}

/* ── Method Grid ── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.method-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.15);
}

.method-card:hover::before {
  opacity: 1;
}

.method-span3 {
  grid-column: span 3;
}

.method-span2 {
  grid-column: span 2;
}

.method-span6 {
  grid-column: span 6;
  background: var(--surface-dark);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 28px;
}

.method-span6 .wz-h3 {
  color: var(--on-dark);
}

.method-span6 .wz-p {
  color: var(--on-dark-muted);
  margin: 0;
}

.method-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.method-span6 .method-step {
  background: rgba(var(--accent-rgb), 0.2);
}

.method-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

/* ── Differentiators ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border);
}

.diff-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.3s var(--ease);
  position: relative;
}

.diff-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.diff-card:hover {
  background: var(--surface);
}

.diff-card:hover::after {
  transform: scaleX(1);
}

.diff-card .wz-h3 {
  color: var(--headers);
}

.diff-card .wz-p {
  color: var(--text);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.diff-icon {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.diff-dark,
.diff-dark1 {
  background: var(--surface-dark);
}

.diff-dark:hover,
.diff-dark1:hover {
  background: var(--surface-dark) !important;
}

.diff-dark .wz-h3,
.diff-dark1 .wz-h3 {
  color: var(--on-dark) !important;
}

.diff-dark .wz-p,
.diff-dark1 .wz-p {
  color: var(--on-dark-muted) !important;
}

.diff-dark {
  grid-column: span 2;
}

.diff-dark::after,
.diff-dark1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.diff-dark:hover::after,
.diff-dark1:hover::after {
  transform: scaleX(1);
}

/* ── Pricing CTA strip ── */
.pricing-cta {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  padding: 48px 40px;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── Projects grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.project-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
}

.project-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .project-img-inner {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--accent-rgb), 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-base);
  z-index: 2;
}

.project-overlay span {
  color: var(--on-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 28px;
}

.project-info .wz-h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.project-info .wz-p {
  font-size: 0.88rem;
  margin: 0;
}

.tag-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ── Tech carousel ── */
.tech-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.tech-viewport:active {
  cursor: grabbing;
}

.tech-viewport::before,
.tech-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.tech-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}

.tech-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

.tech-track {
  display: flex;
  gap: 64px;
  width: fit-content;
  padding: 16px 0;
  will-change: transform;
}

.tech-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.tech-icon-wrap:hover {
  transform: translateY(-4px);
}

.tech-icon-wrap:hover .tech-icon-sym {
  color: var(--accent);
}

.tech-icon-sym {
  font-size: 36px;
  color: var(--headers);
  transition: color var(--dur-base);
}

.tech-icon-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--headers);
  letter-spacing: -0.02em;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #F5A623;
}

/* ── Bold section ── */
.bold-section {
  padding: 120px 24px;
  background: var(--bg-alt);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.bold-section::before {
  content: 'WIZ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30vw;
  font-weight: 700;
  letter-spacing: 0em;
  color: rgba(0, 0, 0, 0.025);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

[data-theme="dark"] .bold-section::before {
  color: rgba(255, 255, 255, 0.02);
}

/* ── CTA Banner (home) ── */
.cta-banner {
  background: var(--surface-dark);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
}

/* ── Home responsive ── */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image {
    display: none;
  }

  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-span3,
  .method-span2 {
    grid-column: span 1;
  }

  .method-span6 {
    grid-column: span 2;
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diff-dark {
    grid-column: span 2;
  }

  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cta {
    flex-direction: column;
    text-align: center;
  }

  .bold-section::before {
    font-size: 60vw;
    letter-spacing: -0.07em;
  }

}

@media (max-width: 600px) {
  .hero-nav {
    left: 32px;
  }

  .hero-scroll {
    display: none;
  }

  .home-hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .stats-inner {
    flex-wrap: wrap;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-span6 {
    grid-column: span 1;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .diff-dark {
    grid-column: span 1;
  }
}

/* =====================================================
   TECH POPUP (floating card on click)
   ===================================================== */
.tech-popup {
  position: absolute;
  z-index: 2000;
  width: 320px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: none;
  animation: popupIn 0.22s var(--ease);
}

[data-theme="dark"] .tech-popup {
  background: rgba(18, 18, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(0px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.tech-popup.open {
  display: block;
}

.tech-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  transition: background 0.2s;
}

.tech-popup-close:hover {
  background: var(--bg-deep);
}

.tech-popup-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 20px;
}

.tech-popup-header i.tech-icon {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-popup-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headers);
  margin-bottom: 8px;
}

.tech-popup-prof-bar {
  height: 4px;
  border-radius: 50px;
  background: var(--border-color);
  overflow: hidden;
  width: 100%;
}

.tech-popup-prof-fill {
  height: 100%;
  border-radius: 50px;
  background: var(--accent);
  transition: width 0.8s var(--ease);
}

.tech-popup-prof-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.tech-popup-body {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.68;
  border-top: var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.tech-popup-tags {
  margin-top: 12px;
}

.tech-popup-tags .wz-tech-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Highlight active item */
.wz-tech-item.active-popup {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  transform: translateY(-3px);
}

/* Hide old inline expand */
.wz-tech-item-details {
  display: none !important;
}