/**
 * QZM Design System
 * Version 1.0.0
 *
 * Modern design system for QZ Marketing
 * Extracted from qz-style-landing React application
 *
 * All classes are prefixed with .qzm- to avoid conflicts with existing WordPress styles
 *
 * Usage: Add class "qzm" to a container element to enable these styles
 * Example: <div class="qzm"><div class="qzm-card">...</div></div>
 */

/* ==========================================================================
   Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
  /* QZM Color Palette */
  --qzm-primary: #3b233b;           /* QZM brand purple */
  --qzm-primary-light: #5a3d5a;
  --qzm-primary-dark: #2a1a2a;

  --qzm-accent: #f8bbd0;            /* QZM accent pink */
  --qzm-accent-hover: #f48fb1;
  --qzm-accent-dark: #ec407a;

  --qzm-background: #fcf9fb;        /* Light lavender background */
  --qzm-background-alt: #f5f0f4;

  --qzm-foreground: #3b233b;        /* Text color */
  --qzm-foreground-muted: #6b5a6b;
  --qzm-foreground-light: #9a8a9a;

  --qzm-card-bg: #ffffff;
  --qzm-card-border: #e8e0e6;

  --qzm-success: #4caf50;
  --qzm-warning: #ff9800;
  --qzm-error: #f44336;

  /* Typography */
  --qzm-font-heading: 'Poppins', system-ui, sans-serif;
  --qzm-font-body: 'Open Sans', system-ui, sans-serif;

  --qzm-font-size-xs: 0.75rem;      /* 12px */
  --qzm-font-size-sm: 0.875rem;     /* 14px */
  --qzm-font-size-base: 1rem;       /* 16px */
  --qzm-font-size-lg: 1.125rem;     /* 18px */
  --qzm-font-size-xl: 1.25rem;      /* 20px */
  --qzm-font-size-2xl: 1.5rem;      /* 24px */
  --qzm-font-size-3xl: 1.875rem;    /* 30px */
  --qzm-font-size-4xl: 2.25rem;     /* 36px */
  --qzm-font-size-5xl: 3rem;        /* 48px */

  /* Spacing */
  --qzm-space-1: 0.25rem;           /* 4px */
  --qzm-space-2: 0.5rem;            /* 8px */
  --qzm-space-3: 0.75rem;           /* 12px */
  --qzm-space-4: 1rem;              /* 16px */
  --qzm-space-5: 1.25rem;           /* 20px */
  --qzm-space-6: 1.5rem;            /* 24px */
  --qzm-space-8: 2rem;              /* 32px */
  --qzm-space-10: 2.5rem;           /* 40px */
  --qzm-space-12: 3rem;             /* 48px */
  --qzm-space-16: 4rem;             /* 64px */

  /* Border Radius */
  --qzm-radius-sm: 0.375rem;        /* 6px */
  --qzm-radius-md: 0.5rem;          /* 8px */
  --qzm-radius-lg: 0.75rem;         /* 12px */
  --qzm-radius-xl: 1rem;            /* 16px */
  --qzm-radius-full: 9999px;

  /* Shadows */
  --qzm-shadow-sm: 0 1px 2px 0 rgba(59, 35, 59, 0.05);
  --qzm-shadow-md: 0 4px 6px -1px rgba(59, 35, 59, 0.1), 0 2px 4px -1px rgba(59, 35, 59, 0.06);
  --qzm-shadow-lg: 0 10px 15px -3px rgba(59, 35, 59, 0.1), 0 4px 6px -2px rgba(59, 35, 59, 0.05);
  --qzm-shadow-xl: 0 20px 25px -5px rgba(59, 35, 59, 0.1), 0 10px 10px -5px rgba(59, 35, 59, 0.04);
  --qzm-shadow-glow: 0 0 60px rgba(59, 35, 59, 0.1);

  /* Transitions */
  --qzm-transition-fast: 150ms ease;
  --qzm-transition-base: 200ms ease;
  --qzm-transition-slow: 300ms ease;

  /* Container */
  --qzm-container-max: 1400px;
  --qzm-container-padding: 2rem;
}

/* ==========================================================================
   Base Styles (scoped to .qzm container)
   ========================================================================== */
.qzm {
  font-family: var(--qzm-font-body);
  /* Reset font-size to 16px - the theme uses html { font-size: 62.5% } which breaks rem values */
  font-size: 16px;
  line-height: 1.6;
  color: var(--qzm-foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.qzm *,
.qzm *::before,
.qzm *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   WPBakery Overrides
   ========================================================================== */
/* Remove WPBakery's default 35px padding on sections containing QZM elements */
.vc_section.vc_section-has-fill:has(.qzm-section),
.vc_section.vc_section-has-fill + .vc_row-full-width + .vc_section:has(.qzm-section),
.vc_section.vc_section-has-fill + .vc_section:has(.qzm-section) {
  padding-top: 0;
}

/* ==========================================================================
   Parent Theme Reset
   Reset inherited styles from .page-content and other parent theme rules
   ========================================================================== */
/* Reset list items - parent theme sets .page-content ul li { font-weight: 500 } */
.page-content .qzm-section ul li,
.page-content .qzm-section ul li span {
  font-weight: 400;
}

/* Reset anchor styles inside QZM sections */
.page-content .qzm-section ul li a,
.page-content .qzm-section p a {
  font-weight: inherit;
  text-decoration: inherit;
}

/* Reset heading styles inside QZM sections - override theme's global h1-h6 styles */
.qzm-section h1,
.qzm-section h2,
.qzm-section h3,
.qzm-section h4,
.qzm-section h5,
.qzm-section h6 {
  font-family: var(--qzm-font-heading);
  font-weight: 500;
  line-height: 1.3;
  color: var(--qzm-foreground);
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}

/* Default heading sizes inside QZM sections */
.qzm-section h1 { font-size: 48px; }
.qzm-section h2 { font-family: var(--qzm-font-heading); font-size: 36px; font-weight: 400; }
.qzm-section h3 { font-size: 18px; font-weight: 600; }
.qzm-section h4 { font-size: 16px; font-weight: 600; }
.qzm-section h5 { font-size: 14px; font-weight: 600; }
.qzm-section h6 { font-size: 12px; font-weight: 600; }

/* ==========================================================================
   Typography
   ========================================================================== */
.qzm h1,
.qzm h2,
.qzm h3,
.qzm h4,
.qzm h5,
.qzm h6,
.qzm-heading {
  font-family: var(--qzm-font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--qzm-foreground);
  margin: 0 0 var(--qzm-space-4) 0;
}

.qzm h1, .qzm-h1 { font-size: 48px; font-weight: 600; } /* Match theme default */
.qzm h2, .qzm-h2 { font-size: 36px; font-weight: 600; }
.qzm h3, .qzm-h3 { font-size: 30px; font-weight: 600; }
.qzm h4, .qzm-h4 { font-size: 20px; font-weight: 600; text-transform: none; }
.qzm h5, .qzm-h5 { font-size: 20px; font-weight: 600; }
.qzm h6, .qzm-h6 { font-size: 18px; font-weight: 600; }

.qzm p {
  margin: 0 0 var(--qzm-space-4) 0;
}

.qzm-text-sm { font-size: 14px; font-weight: 400; }
.qzm-text-lg { font-size: 18px; font-weight: 400; }
.qzm-text-xl { font-size: 20px; font-weight: 400; }

.qzm-text-muted { color: var(--qzm-foreground-muted); font-weight: 400; }
.qzm-text-light { color: var(--qzm-foreground-light); }
.qzm-text-primary { color: var(--qzm-primary); }
.qzm-text-accent { color: var(--qzm-accent-dark); }

.qzm-text-gradient {
  background: linear-gradient(90deg, var(--qzm-primary) 0%, var(--qzm-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qzm-font-heading { font-family: var(--qzm-font-heading); }
.qzm-font-body { font-family: var(--qzm-font-body); }

.qzm-font-light { font-weight: 300; }
.qzm-font-normal { font-weight: 400; }
.qzm-font-medium { font-weight: 500; }
.qzm-font-semibold { font-weight: 600; }
.qzm-font-bold { font-weight: 700; }

/* ==========================================================================
   Layout
   ========================================================================== */
.qzm-container {
  width: 100%;
  max-width: var(--qzm-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--qzm-container-padding);
  padding-right: var(--qzm-container-padding);
}

.qzm-section {
  padding-top: var(--qzm-space-16);
  padding-bottom: var(--qzm-space-16);
  /* Full-width sections - break out of container */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* Handle transparent header styles - add extra padding when header overlays content */
.header-style-3 .qzm-pricing-hero,
.header-style-4 .qzm-pricing-hero {
  padding-top: 140px;
}

.qzm-flex { display: flex; }
.qzm-flex-col { flex-direction: column; }
.qzm-flex-wrap { flex-wrap: wrap; }
.qzm-items-center { align-items: center; }
.qzm-items-start { align-items: flex-start; }
.qzm-justify-center { justify-content: center; }
.qzm-justify-between { justify-content: space-between; }
.qzm-gap-2 { gap: var(--qzm-space-2); }
.qzm-gap-4 { gap: var(--qzm-space-4); }
.qzm-gap-6 { gap: var(--qzm-space-6); }
.qzm-gap-8 { gap: var(--qzm-space-8); }

.qzm-grid {
  display: grid;
  gap: var(--qzm-space-6);
}

.qzm-grid-2 { grid-template-columns: repeat(2, 1fr); }
.qzm-grid-3 { grid-template-columns: repeat(3, 1fr); }
.qzm-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .qzm-grid-2,
  .qzm-grid-3,
  .qzm-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .qzm-grid-3,
  .qzm-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Cards
   ========================================================================== */
.qzm-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: 12px;
  padding: var(--qzm-space-6);
  transition: all var(--qzm-transition-base);
}

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

.qzm-card-glow {
  box-shadow: var(--qzm-shadow-glow);
}

.qzm-card-header {
  margin-bottom: var(--qzm-space-4);
}

.qzm-card-title {
  font-family: var(--qzm-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 var(--qzm-space-2) 0;
}

.qzm-card-description {
  color: var(--qzm-foreground-muted);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.qzm-card-content {
  /* Content area */
}

.qzm-card-footer {
  margin-top: var(--qzm-space-4);
  padding-top: var(--qzm-space-4);
  border-top: 1px solid var(--qzm-card-border);
}

/* Feature Card Variant */
.qzm-feature-card {
  text-align: center;
  padding: var(--qzm-space-8);
}

.qzm-feature-card .qzm-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--qzm-space-4);
  color: var(--qzm-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.qzm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--qzm-space-2);
  padding: var(--qzm-space-3) var(--qzm-space-6);
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--qzm-radius-md);
  cursor: pointer;
  transition: all var(--qzm-transition-fast);
}

.qzm-btn:focus {
  outline: 2px solid var(--qzm-primary);
  outline-offset: 2px;
}

/* Primary Button */
.qzm-btn-primary {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-btn-primary:hover,
a.qzm-btn-primary:hover {
  background: var(--qzm-primary-light);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: var(--qzm-shadow-md);
}

/* Secondary Button */
.qzm-btn-secondary {
  background: var(--qzm-background-alt);
  color: var(--qzm-foreground);
  border: 1px solid var(--qzm-card-border);
}

.qzm-btn-secondary:hover {
  background: var(--qzm-card-border);
}

/* Button SVG icons */
.qzm-btn svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
}

/* Secondary button on dark backgrounds (addons section) */
.qzm-addons-section .qzm-btn-secondary {
  background: var(--qzm-background-alt);
  color: var(--qzm-foreground);
  border: none;
}

/* Accent Button */
.qzm-btn-accent {
  background: var(--qzm-accent);
  color: var(--qzm-primary);
}

.qzm-btn-accent:hover {
  background: var(--qzm-accent-hover);
}

/* Outline Button */
.qzm-btn-outline {
  background: transparent;
  color: var(--qzm-primary);
  border: 2px solid var(--qzm-primary);
}

.qzm-btn-outline:hover,
a.qzm-btn-outline:hover {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
}

/* Ghost Button */
.qzm-btn-ghost {
  background: transparent;
  color: var(--qzm-foreground);
}

.qzm-btn-ghost:hover {
  background: var(--qzm-background-alt);
}

/* Button Sizes */
.qzm-btn-sm {
  padding: var(--qzm-space-2) var(--qzm-space-4);
  font-size: 12px;
}

.qzm-btn-lg {
  padding: var(--qzm-space-4) var(--qzm-space-8);
  font-size: 16px;
}

/* ==========================================================================
   Badges
   ========================================================================== */
.qzm-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--qzm-space-1) var(--qzm-space-3);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--qzm-radius-full);
  background: var(--qzm-background-alt);
  color: var(--qzm-foreground);
}

.qzm-badge-primary {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-badge-accent {
  background: rgba(248, 187, 208, 0.2);
  color: var(--qzm-accent);
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
}

.qzm-badge-success {
  background: #e8f5e9;
  color: var(--qzm-success);
}

.qzm-badge-warning {
  background: #fff3e0;
  color: var(--qzm-warning);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.qzm-hero {
  background: linear-gradient(180deg, var(--qzm-background) 0%, var(--qzm-background-alt) 100%);
  padding: var(--qzm-space-16) 0;
  text-align: center;
}

.qzm-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--qzm-space-6);
}

.qzm-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--qzm-foreground-muted);
  max-width: 600px;
  margin: 0 auto var(--qzm-space-8);
}

.qzm-hero-actions {
  display: flex;
  gap: var(--qzm-space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Stats/Credibility
   ========================================================================== */
.qzm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--qzm-space-8);
  text-align: center;
}

.qzm-stat-value {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--qzm-primary);
  line-height: 1;
  margin-bottom: var(--qzm-space-2);
}

.qzm-stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--qzm-foreground-muted);
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.qzm-pricing-card {
  background: rgba(var(--qzm-card-rgb), 0.5);
  border: 1px solid var(--qzm-card-border);
  border-radius: var(--qzm-radius-xl);
  padding: var(--qzm-space-6);
  text-align: left;
  position: relative;
  /* Flexbox for bottom-aligned buttons */
  display: flex;
  flex-direction: column;
}

.qzm-pricing-card.qzm-featured {
  background: var(--qzm-card-bg);
}

.qzm-pricing-card p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.qzm-pricing-card.qzm-featured {
  border-color: var(--qzm-primary);
  border-width: 2px;
  box-shadow: var(--qzm-shadow-xl), 0 0 0 1px rgba(59, 35, 59, 0.1);
}

.qzm-pricing-card.qzm-featured::before {
  content: none; /* Using badge in template instead */
}

.qzm-pricing-name {
  font-family: var(--qzm-font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-top: var(--qzm-space-4);
  margin-bottom: var(--qzm-space-1);
  color: var(--qzm-foreground);
}

.qzm-pricing-price {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--qzm-foreground);
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.1;
}

.qzm-pricing-period {
  font-size: 16px;
  color: var(--qzm-foreground-muted);
  font-weight: 400;
}

.qzm-pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0; /* mt-5 */
  text-align: left;
}

.qzm .qzm-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Pricing Grid Layout */
.qzm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--qzm-space-6);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .qzm-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .qzm-pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Enhanced Pricing Card */
.qzm-pricing-card {
  position: relative;
  transition: transform var(--qzm-transition-base), box-shadow var(--qzm-transition-base);
}

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

.qzm-pricing-card.qzm-enterprise {
  background: linear-gradient(135deg, var(--qzm-card-bg) 0%, rgba(59, 35, 59, 0.08) 100%);
  border-color: rgba(59, 35, 59, 0.3);
  border-style: dashed;
}

.qzm-feature-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  margin-top: 2px;
}

.qzm-icon-check {
  color: var(--qzm-success);
}

.qzm-icon-x {
  color: var(--qzm-foreground-light);
}

/* Ensure SVGs in pricing features are properly sized */
.qzm-pricing-features svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  flex-shrink: 0;
}

.qzm .qzm-pricing-features li.qzm-feature-included,
.qzm .qzm-pricing-features li.qzm-feature-included .qzm-feature-text {
  color: #3b233b !important;
  font-weight: 400 !important;
}

.qzm .qzm-pricing-features li.qzm-feature-excluded,
.qzm .qzm-pricing-features li.qzm-feature-excluded .qzm-feature-text {
  color: #9a8a9a !important;
}

.qzm .qzm-pricing-features .qzm-feature-highlight {
  font-weight: 500;
  color: var(--qzm-primary) !important;
}

/* Badge Enhancements */
.qzm-badge-sm {
  display: inline;
  font-size: 10px;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

/* NEW badge - amber/yellow style for pricing card features */
.qzm-badge-new {
  background: #fef3c7;
  color: #b45309;
}

/* Recommended badge - dark style */
.qzm-badge-primary {
  background: var(--qzm-primary);
  color: #ffffff;
  padding: var(--qzm-space-2) var(--qzm-space-4);
  border-radius: var(--qzm-radius-full);
  font-size: 14px;
}

/* Setup fee styling */
.qzm-setup-fee {
  font-weight: 500;
  font-size: 14px;
}

/* Free setup is green */
.qzm-setup-fee.qzm-setup-free {
  color: #16a34a; /* green-600 */
}

/* Paid setup is muted */
.qzm-setup-fee:not(.qzm-setup-free) {
  color: var(--qzm-foreground-muted);
}

/* Annual price styling - primary color like React */
.qzm-pricing-annual {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

/* Extra note (e.g., additional site pricing) */
.qzm-pricing-extra {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--qzm-card-border);
  font-size: 12px;
  font-weight: 400;
  color: var(--qzm-foreground-muted);
}

/* Features list grows to push button down */
.qzm-pricing-card .qzm-pricing-features {
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Pricing card buttons - stay at bottom */
.qzm-pricing-card > .qzm-btn {
  font-size: 14px;
  padding: 12px 24px;
}

.qzm-pricing-card.qzm-featured .qzm-btn-primary {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* FAQ Styles */
.qzm-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--qzm-space-4);
}

.qzm-faq-item {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: 12px;
  overflow: hidden;
}

.qzm-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--qzm-space-5) var(--qzm-space-6);
  background: transparent;
  border: none;
  border-radius: 12px;
  font-family: var(--qzm-font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--qzm-foreground);
  cursor: pointer;
  text-align: left;
  transition: background var(--qzm-transition-fast);
}

.qzm-faq-question:hover {
  background: var(--qzm-background-alt);
}

.qzm-faq-question:focus,
.qzm-faq-question:focus-visible,
.qzm-faq-question:active {
  background: transparent;
  color: var(--qzm-foreground);
  outline: none;
}

.qzm-faq-icon {
  transition: transform var(--qzm-transition-base);
  color: var(--qzm-foreground-muted);
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
}

.qzm-faq-icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
}

.qzm-faq-item.active .qzm-faq-icon {
  transform: rotate(180deg);
}

.qzm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--qzm-transition-slow), padding var(--qzm-transition-slow);
}

.qzm-faq-item.active .qzm-faq-answer {
  max-height: 500px;
}

.qzm-faq-answer p {
  padding: 0 var(--qzm-space-6) var(--qzm-space-5);
  color: var(--qzm-foreground-muted);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* ==========================================================================
   FAQs Section (WPBakery Element)
   ========================================================================== */

.qzm-faqs {
  padding: 80px 0;
}

.qzm-faqs .qzm-container {
  max-width: 800px;
}

/* Header */
.qzm-faqs-header {
  text-align: center;
  margin-bottom: 48px;
}

.qzm-faqs-header .qzm-section-label {
  margin-bottom: 16px;
}

.qzm-faqs .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 16px;
  text-transform: none;
}

.qzm-faqs-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* Light Mode (default for FAQs) */
.qzm-faqs.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-faqs.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-faqs.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-faqs.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

/* White Mode */
.qzm-faqs:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-faqs:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-faqs:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

/* Dark Mode */
.qzm-faqs.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-faqs.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-faqs.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-faqs.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-faqs.qzm-bg-dark .qzm-faqs-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-faqs.qzm-bg-dark .qzm-faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.qzm-faqs.qzm-bg-dark .qzm-faq-question {
  color: #ffffff;
}

.qzm-faqs.qzm-bg-dark .qzm-faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qzm-faqs.qzm-bg-dark .qzm-faq-icon {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-faqs.qzm-bg-dark .qzm-faq-answer p {
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ Category Tabs - Match Featured Content tab styling */
.qzm-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.qzm-faq-tab {
  padding: 12px 20px;
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: 12px;
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--qzm-foreground-muted);
  cursor: pointer;
  transition: all var(--qzm-transition-base);
  white-space: nowrap;
}

.qzm-faq-tab:hover {
  background: rgba(59, 35, 59, 0.08);
  border-color: var(--qzm-primary);
  color: var(--qzm-foreground);
}

.qzm-faq-tab.active {
  background: var(--qzm-primary);
  border-color: var(--qzm-primary);
  color: #ffffff;
  box-shadow: var(--qzm-shadow-lg);
}

/* Hidden FAQ items */
.qzm-faq-item.qzm-faq-hidden {
  display: none;
}

/* Dark mode tab styling */
.qzm-faqs.qzm-bg-dark .qzm-faq-tab {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.qzm-faqs.qzm-bg-dark .qzm-faq-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--qzm-accent);
  color: #ffffff;
}

.qzm-faqs.qzm-bg-dark .qzm-faq-tab.active {
  background: var(--qzm-accent);
  border-color: var(--qzm-accent);
  color: var(--qzm-primary);
}

/* Responsive */
@media (max-width: 600px) {
  .qzm-faqs {
    padding: 60px 0;
  }

  .qzm-faqs .qzm-h2 {
    font-size: 28px;
  }

  .qzm-faqs-header {
    margin-bottom: 32px;
  }
}

/* CTA Section */
.qzm-cta-section {
  background: linear-gradient(135deg, var(--qzm-primary) 0%, var(--qzm-primary-dark) 100%);
}

/* ==========================================================================
   Forms
   ========================================================================== */
.qzm-input {
  width: 100%;
  padding: var(--qzm-space-3) var(--qzm-space-4);
  font-family: var(--qzm-font-body);
  font-size: 16px;
  color: var(--qzm-foreground);
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: var(--qzm-radius-md);
  transition: border-color var(--qzm-transition-fast);
}

.qzm-input:focus {
  outline: none;
  border-color: var(--qzm-primary);
  box-shadow: 0 0 0 3px rgba(59, 35, 59, 0.1);
}

.qzm-input::placeholder {
  color: var(--qzm-foreground-light);
}

.qzm-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--qzm-space-2);
}

.qzm-form-group {
  margin-bottom: var(--qzm-space-4);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes qzm-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes qzm-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes qzm-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes qzm-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes qzm-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.qzm-animate-fade-up {
  animation: qzm-fadeUp 0.6s ease-out forwards;
}

.qzm-animate-fade-in {
  animation: qzm-fadeIn 0.4s ease-out forwards;
}

.qzm-animate-scale-in {
  animation: qzm-scaleIn 0.5s ease-out forwards;
}

.qzm-animate-float {
  animation: qzm-float 6s ease-in-out infinite;
}

/* Stagger delays */
.qzm-stagger-1 { animation-delay: 0.1s; }
.qzm-stagger-2 { animation-delay: 0.2s; }
.qzm-stagger-3 { animation-delay: 0.3s; }
.qzm-stagger-4 { animation-delay: 0.4s; }

/* Marquee */
.qzm-marquee {
  animation: qzm-marquee 30s linear infinite;
}

.qzm-marquee:hover {
  animation-play-state: paused;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.qzm-text-center { text-align: center; }
.qzm-text-left { text-align: left; }
.qzm-text-right { text-align: right; }

.qzm-mx-auto { margin-left: auto; margin-right: auto; }
.qzm-my-0 { margin-top: 0; margin-bottom: 0; }

.qzm-mt-4 { margin-top: var(--qzm-space-4); }
.qzm-mt-8 { margin-top: var(--qzm-space-8); }
.qzm-mb-4 { margin-bottom: var(--qzm-space-4); }
.qzm-mb-8 { margin-bottom: var(--qzm-space-8); }

.qzm-p-4 { padding: var(--qzm-space-4); }
.qzm-p-6 { padding: var(--qzm-space-6); }
.qzm-p-8 { padding: var(--qzm-space-8); }

.qzm-rounded { border-radius: var(--qzm-radius-md); }
.qzm-rounded-lg { border-radius: 12px; }
.qzm-rounded-xl { border-radius: var(--qzm-radius-xl); }
.qzm-rounded-full { border-radius: var(--qzm-radius-full); }

.qzm-shadow { box-shadow: var(--qzm-shadow-md); }
.qzm-shadow-lg { box-shadow: var(--qzm-shadow-lg); }
.qzm-shadow-xl { box-shadow: var(--qzm-shadow-xl); }

.qzm-bg-white { background: #ffffff; }
.qzm-bg-primary { background: var(--qzm-primary); }
.qzm-bg-accent { background: var(--qzm-accent); }
.qzm-bg-muted { background: var(--qzm-background-alt); }

.qzm-border { border: 1px solid var(--qzm-card-border); }
.qzm-border-primary { border-color: var(--qzm-primary); }

.qzm-w-full { width: 100%; }
.qzm-max-w-md { max-width: 28rem; }
.qzm-max-w-lg { max-width: 32rem; }
.qzm-max-w-xl { max-width: 36rem; }
.qzm-max-w-2xl { max-width: 42rem; }

/* Responsive visibility */
@media (max-width: 768px) {
  .qzm-hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .qzm-hide-desktop { display: none !important; }
}

/* ==========================================================================
   Plan Toggle (Standard Plans / Multi-CRM Calculator)
   ========================================================================== */
.qzm-plan-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: var(--qzm-radius-full);
  margin-bottom: 12px;
}

.qzm-toggle-btn {
  padding: 10px 20px;
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--qzm-foreground-muted);
  background: transparent;
  border: none;
  border-radius: var(--qzm-radius-full);
  cursor: pointer;
  transition: all var(--qzm-transition-fast);
}

.qzm-toggle-btn:hover {
  color: var(--qzm-foreground);
  background: var(--qzm-background-alt);
}

.qzm-toggle-btn.active:hover {
  background: var(--qzm-primary-light);
  color: #ffffff;
}

.qzm-toggle-btn.active {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-toggle-subtitle {
  font-size: 14px;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* ==========================================================================
   Section Labels
   ========================================================================== */
.qzm-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--qzm-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dark mode pill-style section label */
.qzm-section-label-dark {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* ==========================================================================
   Setup Fees Table
   ========================================================================== */
.qzm-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.qzm-setup-table,
.qzm-comparison-table,
.qzm-scenarios-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border: none;
  font-size: 14px;
  font-weight: 400;
}

.qzm-setup-table th,
.qzm-comparison-table th,
.qzm-scenarios-table th {
  padding: 12px 16px;
  font-weight: 600;
  color: var(--qzm-foreground);
  border: none;
  border-bottom: 1px solid var(--qzm-card-border);
}

.qzm-setup-table td,
.qzm-comparison-table td,
.qzm-scenarios-table td {
  padding: 16px 16px;
  color: var(--qzm-foreground);
  font-weight: 400;
  border: none;
  border-bottom: 1px solid var(--qzm-card-border);
}

.qzm-setup-table .qzm-highlight-col,
.qzm-comparison-table .qzm-highlight-col {
  background: rgba(59, 35, 59, 0.05);
}

.qzm-setup-table th.qzm-highlight-col {
  color: var(--qzm-primary);
}

.qzm-row-alt {
  background: rgba(var(--qzm-card-rgb, 255, 255, 255), 0.5);
}

.qzm-price-free {
  color: #16a34a !important;
  font-weight: 500;
}

/* ==========================================================================
   Feature Comparison (Collapsible)
   ========================================================================== */
.qzm-comparison-section {
  padding-top: var(--qzm-space-16);
  padding-bottom: var(--qzm-space-16);
}

.qzm-comparison-toggle {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--qzm-card-bg);
  color: var(--qzm-foreground);
  border: 1px solid var(--qzm-card-border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--qzm-transition-fast);
}

.qzm-comparison-toggle .qzm-h3,
.qzm-comparison-toggle .qzm-h4 {
  color: var(--qzm-foreground);
}

.qzm-comparison-toggle:hover {
  background: var(--qzm-card-bg);
  border-color: rgba(59, 35, 59, 0.3);
}

.qzm-comparison-toggle.active {
  background: var(--qzm-card-bg);
}

.qzm-comparison-toggle.active:hover {
  background: var(--qzm-card-bg);
}

.qzm-comparison-toggle:focus,
.qzm-comparison-toggle:focus-visible,
.qzm-comparison-toggle:active {
  background: var(--qzm-card-bg);
  color: var(--qzm-foreground);
  outline: none;
}

.qzm-comparison-toggle.active:focus,
.qzm-comparison-toggle.active:focus-visible {
  background: var(--qzm-card-bg);
}

.qzm-comparison-toggle-text {
  text-align: left;
}

.qzm-chevron-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
  color: var(--qzm-foreground-muted);
  transition: transform var(--qzm-transition-base);
}

.qzm-comparison-toggle.active .qzm-chevron-icon {
  transform: rotate(180deg);
}

.qzm-comparison-content {
  max-width: 1200px;
  margin: 0 auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--qzm-transition-slow), opacity var(--qzm-transition-slow), margin-top var(--qzm-transition-slow);
}

.qzm-comparison-content.active {
  max-height: 2000px;
  opacity: 1;
  margin-top: 24px;
}

.qzm-comparison-header td {
  background: rgba(59, 35, 59, 0.1);
  border-top: 2px solid rgba(59, 35, 59, 0.2);
  font-weight: 600;
  color: var(--qzm-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
}

.qzm-check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  color: var(--qzm-primary);
}

/* ==========================================================================
   Multi-CRM Section
   ========================================================================== */
.qzm-multi-crm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .qzm-multi-crm-grid {
    grid-template-columns: 1fr;
  }
}

.qzm-pricing-breakdown {
  margin-top: 16px;
}

.qzm-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--qzm-card-border);
}

.qzm-price-highlight {
  color: var(--qzm-primary);
  font-weight: 600;
}

.qzm-crm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qzm-badge-secondary {
  background: var(--qzm-background-alt);
  color: var(--qzm-foreground-muted);
}

.qzm-table-header-primary th {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-table-header-primary th:first-child {
  border-radius: 8px 0 0 0;
}

.qzm-table-header-primary th:last-child {
  border-radius: 0 8px 0 0;
}

.qzm-row-highlight {
  background: rgba(59, 35, 59, 0.05);
}

.qzm-callout {
  padding: 16px;
  border-radius: 12px;
}

.qzm-callout-primary {
  background: rgba(59, 35, 59, 0.1);
  border-left: 4px solid var(--qzm-primary);
}

.qzm-callout p {
  font-size: 14px;
  margin: 0;
}

/* ==========================================================================
   Add-Ons Section
   ========================================================================== */
.qzm-addons-section {
  padding-top: 80px;
  padding-bottom: var(--qzm-space-16);
}

.qzm-addon-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.qzm-addon-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--qzm-radius-full);
  cursor: pointer;
  transition: all var(--qzm-transition-fast);
}

.qzm-addon-tab:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.qzm-addon-tab.active {
  background: var(--qzm-accent);
  color: var(--qzm-primary);
}

/* Fix SVG icon sizing in tabs */
.qzm-addon-tab svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
}

.qzm-addon-content {
  min-height: 300px;
}

.qzm-addon-panel {
  display: none;
}

.qzm-addon-panel.active {
  display: block;
}

.qzm-addon-grid {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.qzm-addon-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .qzm-addon-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .qzm-addon-grid-3 {
    grid-template-columns: 1fr;
  }
}

.qzm-addon-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.qzm-addon-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.qzm-addon-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 187, 208, 0.2);
  border-radius: var(--qzm-radius-md);
  color: var(--qzm-accent);
}

.qzm-addon-icon svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.qzm-addon-icon-large {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 187, 208, 0.2);
  border-radius: var(--qzm-radius-full);
  color: var(--qzm-accent);
  margin: 0 auto 12px;
}

.qzm-addon-icon-large svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
}

.qzm-addon-title,
.qzm-addon-card h4,
.qzm-addon-card .qzm-h4,
h4.qzm-addon-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 8px;
}

.qzm-addon-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.qzm-addon-note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.qzm-addon-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--qzm-accent);
}

.qzm-addon-setup {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.qzm-badge-success {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--qzm-radius-full);
}

.qzm-badge-success svg {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  max-width: 12px;
  max-height: 12px;
}

.qzm-addon-note-box {
  max-width: 800px;
  margin: 24px auto 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--qzm-radius-md);
  text-align: center;
}

.qzm-addon-note-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Ask Q Featured Card */
.qzm-addon-card-featured {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.qzm-askq-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

@media (max-width: 768px) {
  .qzm-askq-content {
    flex-direction: column;
  }
}

.qzm-askq-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 187, 208, 0.2);
  border-radius: 12px;
  color: var(--qzm-accent);
}

.qzm-askq-icon svg {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
}

.qzm-askq-info {
  flex: 1;
}

.qzm-askq-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .qzm-askq-features {
    grid-template-columns: 1fr;
  }
}

.qzm-askq-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.qzm-askq-feature svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--qzm-accent);
  margin-top: 2px;
}

.qzm-askq-feature span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Professional Services Section
   ========================================================================== */
.qzm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .qzm-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .qzm-services-grid {
    grid-template-columns: 1fr;
  }
}

.qzm-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.qzm-services-grid .qzm-card {
  text-align: center;
}

.qzm-services-grid .qzm-h4 {
  text-align: center;
}

.qzm-service-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 400;
  background: var(--qzm-background-alt);
  color: var(--qzm-foreground);
  border-radius: var(--qzm-radius-full);
}

.qzm-services-cta {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 24px;
  background: var(--qzm-primary);
  color: #ffffff;
  border-radius: 12px;
  text-align: center;
}

.qzm-services-cta .qzm-btn-secondary {
  background: var(--qzm-background-alt);
  color: var(--qzm-foreground);
}

/* ==========================================================================
   CTA Buttons Row
   ========================================================================== */
.qzm-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Card RGB variable for transparency */
:root {
  --qzm-card-rgb: 255, 255, 255;
}

/* ==========================================================================
   Value Not Access Section (Why Us)
   ========================================================================== */
.qzm-value-section {
  padding: 80px 0;
}

/* Background variants */
.qzm-value-section.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-value-section.qzm-bg-white {
  background-color: #ffffff;
}

.qzm-value-section.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Header */
.qzm-value-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Section Label - Base styling */
.qzm-value-header .qzm-section-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Label - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
}

/* Section Label - Light mode */
.qzm-value-section.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
}

/* Section Label - Dark mode (pill) */
.qzm-value-section.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* H2 - Base styling */
.qzm-value-header .qzm-h2 {
  margin-top: 16px;
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 600;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* H2 - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-foreground);
}

/* H2 - Light mode */
.qzm-value-section.qzm-bg-light .qzm-h2 {
  color: var(--qzm-foreground);
}

/* H2 - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

/* H2 span (accent) - White mode (no highlight) */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 span {
  color: var(--qzm-foreground);
}

/* H2 span (accent) - Light mode (no highlight) */
.qzm-value-section.qzm-bg-light .qzm-h2 span {
  color: var(--qzm-foreground);
}

/* H2 span (accent) - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-h2 span {
  color: var(--qzm-accent);
}

/* Description - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-value-header p {
  color: var(--qzm-foreground-muted);
}

/* Description - Light mode */
.qzm-value-section.qzm-bg-light .qzm-value-header p {
  color: var(--qzm-foreground-muted);
}

/* Description - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-value-header p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Heavy Lifting - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-heavy-lifting {
  background: rgba(59, 35, 59, 0.03);
  border: 1px solid rgba(59, 35, 59, 0.1);
}

/* Heavy Lifting - Light mode */
.qzm-value-section.qzm-bg-light .qzm-heavy-lifting {
  background: #ffffff;
  border: 1px solid rgba(59, 35, 59, 0.1);
}

/* Heavy Lifting - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-heavy-lifting {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Heavy Lifting Title - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-heavy-lifting-title {
  color: var(--qzm-foreground);
}

/* Heavy Lifting Title - Light mode */
.qzm-value-section.qzm-bg-light .qzm-heavy-lifting-title {
  color: var(--qzm-foreground);
}

/* Heavy Lifting Title - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-heavy-lifting-title {
  color: #ffffff;
}

/* Heavy Lifting Item text - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-heavy-lifting-item h4,
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-heavy-lifting-item p {
  color: var(--qzm-foreground);
}

/* Heavy Lifting Item text - Light mode */
.qzm-value-section.qzm-bg-light .qzm-heavy-lifting-item h4,
.qzm-value-section.qzm-bg-light .qzm-heavy-lifting-item p {
  color: var(--qzm-foreground);
}

/* Heavy Lifting Item text - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-heavy-lifting-item h4,
.qzm-value-section.qzm-bg-dark .qzm-heavy-lifting-item p {
  color: #ffffff;
}

/* Heavy Lifting Icon - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-heavy-lifting-icon {
  background: rgba(59, 35, 59, 0.1);
}

/* Heavy Lifting Icon - Light mode */
.qzm-value-section.qzm-bg-light .qzm-heavy-lifting-icon {
  background: rgba(59, 35, 59, 0.1);
}

/* Heavy Lifting Icon - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-heavy-lifting-icon {
  background: rgba(255, 255, 255, 0.15);
}

/* Heavy Lifting Icon SVG - White mode */
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-heavy-lifting-icon svg {
  stroke: var(--qzm-primary);
}

/* Heavy Lifting Icon SVG - Light mode */
.qzm-value-section.qzm-bg-light .qzm-heavy-lifting-icon svg {
  stroke: var(--qzm-primary);
}

/* Heavy Lifting Icon SVG - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-heavy-lifting-icon svg {
  stroke: var(--qzm-accent);
}

@media (max-width: 768px) {
  .qzm-value-header .qzm-h2 {
    font-size: 28px;
  }
}

.qzm-value-header .qzm-h2 span {
  color: var(--qzm-primary);
}

.qzm-value-header p {
  margin-top: 16px;
  color: var(--qzm-foreground-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 400;
}

/* Comparison Cards Grid */
.qzm-value-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .qzm-value-comparison {
    grid-template-columns: 1fr;
  }
}

/* Traditional SaaS Card (Red) */
.qzm-value-section .qzm-comparison-card-negative {
  padding: 24px;
  border-radius: 12px;
  background: #fef2f2;
  border-top: 4px solid #ef4444;
}

.qzm-value-section .qzm-comparison-card-negative .qzm-comparison-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.qzm-value-section .qzm-comparison-card-negative .qzm-status-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: #ef4444;
}

.qzm-value-section .qzm-comparison-card-negative h3 {
  font-size: 18px;
  font-weight: 600;
  color: #991b1b;
  margin: 0;
  text-transform: none;
}

.qzm-value-section .qzm-comparison-card-negative ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-value-section .qzm-comparison-card-negative li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--qzm-font-body) !important;
  color: #991b1b !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  margin-bottom: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-value-section .qzm-comparison-card-negative li::before,
.qzm-value-section .qzm-comparison-card-negative li::marker {
  content: none !important;
  display: none !important;
}

.qzm-value-section .qzm-comparison-card-negative li:last-child {
  margin-bottom: 0 !important;
}

.qzm-value-section .qzm-comparison-card-negative svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.qzm-value-section .qzm-comparison-card-negative li span {
  font-family: var(--qzm-font-body) !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  color: #991b1b !important;
  text-transform: none !important;
}

/* QZM Service Card (Green) */
.qzm-value-section .qzm-comparison-card-positive {
  padding: 24px;
  border-radius: 12px;
  background: #f0fdf4;
  border-top: 4px solid #22c55e;
}

.qzm-value-section .qzm-comparison-card-positive .qzm-comparison-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.qzm-value-section .qzm-comparison-card-positive .qzm-status-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: #22c55e;
}

.qzm-value-section .qzm-comparison-card-positive h3 {
  font-size: 18px;
  font-weight: 600;
  color: #166534;
  margin: 0;
  text-transform: none;
}

.qzm-value-section .qzm-comparison-card-positive ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-value-section .qzm-comparison-card-positive li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--qzm-font-body) !important;
  color: #166534 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  margin-bottom: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-value-section .qzm-comparison-card-positive li::before,
.qzm-value-section .qzm-comparison-card-positive li::marker {
  content: none !important;
  display: none !important;
}

.qzm-value-section .qzm-comparison-card-positive li:last-child {
  margin-bottom: 0 !important;
}

.qzm-value-section .qzm-comparison-card-positive svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.qzm-value-section .qzm-comparison-card-positive li span {
  font-family: var(--qzm-font-body) !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  color: #166534 !important;
  text-transform: none !important;
}

/* Heavy Lifting Section */
.qzm-heavy-lifting {
  padding: 24px;
  border-radius: 12px;
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  max-width: 1000px;
  margin: 0 auto;
}

.qzm-heavy-lifting-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--qzm-foreground);
  margin-bottom: 24px;
}

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

@media (max-width: 768px) {
  .qzm-heavy-lifting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .qzm-heavy-lifting-grid {
    grid-template-columns: 1fr;
  }
}

.qzm-heavy-lifting-item {
  text-align: center;
  padding: 16px;
}

.qzm-heavy-lifting-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  background: rgba(59, 35, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.qzm-heavy-lifting-icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  stroke: var(--qzm-primary);
}

.qzm-heavy-lifting-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--qzm-foreground);
  margin-bottom: 4px;
}

.qzm-heavy-lifting-item p {
  font-size: 14px;
  font-weight: 400;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* ==========================================================================
   Value Section - Card Visuals (Images & Code Tables)
   ========================================================================== */

/* Card Image */
.qzm-value-section .qzm-comparison-card-visual {
  margin-bottom: 16px;
}

.qzm-value-section .qzm-comparison-card-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Card Code Table */
.qzm-value-section .qzm-comparison-card-code {
  margin-bottom: 16px;
  background: #0f172a;
  border-radius: 8px;
  padding: 12px 16px;
  overflow-x: auto;
}

.qzm-value-section .qzm-comparison-card-code pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  white-space: pre;
}

.qzm-value-section .qzm-comparison-card-negative .qzm-comparison-card-code pre {
  color: #94a3b8;
}

.qzm-value-section .qzm-comparison-card-positive .qzm-comparison-card-code pre {
  color: #4ade80;
}

/* ==========================================================================
   Value Section - Pill Feature Section
   ========================================================================== */

.qzm-value-section .qzm-pill-section {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: rgba(59, 35, 59, 0.03);
  border: 1px solid rgba(59, 35, 59, 0.1);
  border-radius: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.qzm-value-section .qzm-pill-section-intro {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0 0 20px;
}

.qzm-value-section .qzm-pill-section-intro .qzm-pill-highlight {
  font-weight: 600;
  color: var(--qzm-foreground);
}

.qzm-value-section .qzm-pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.qzm-value-section .qzm-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(232, 62, 140, 0.1);
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
}

.qzm-value-section .qzm-pill-section-footer {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--qzm-foreground-muted);
}

/* Dark Mode for Pill Section */
.qzm-value-section.qzm-bg-dark .qzm-pill-section {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.qzm-value-section.qzm-bg-dark .qzm-pill-section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-value-section.qzm-bg-dark .qzm-pill-section-intro .qzm-pill-highlight {
  color: #ffffff;
}

.qzm-value-section.qzm-bg-dark .qzm-pill {
  background: rgba(232, 62, 140, 0.2);
  color: var(--qzm-accent);
}

.qzm-value-section.qzm-bg-dark .qzm-pill-section-footer {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive for Pill Section */
@media (max-width: 600px) {
  .qzm-value-section .qzm-pill-section {
    padding: 24px 16px;
  }

  .qzm-value-section .qzm-pill-section-intro {
    font-size: 15px;
  }

  .qzm-value-section .qzm-pill-list {
    gap: 8px;
  }

  .qzm-value-section .qzm-pill {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Section CTA Button */
.qzm-value-section-cta {
  text-align: center;
  margin-top: 48px;
}

.qzm-value-section-cta .qzm-btn-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* Section CTA Button - Light/White mode */
.qzm-value-section .qzm-value-section-cta .qzm-btn-primary,
.qzm-value-section.qzm-bg-light .qzm-value-section-cta .qzm-btn-primary,
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-value-section-cta .qzm-btn-primary {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.qzm-value-section .qzm-value-section-cta .qzm-btn-primary:hover,
.qzm-value-section.qzm-bg-light .qzm-value-section-cta .qzm-btn-primary:hover,
.qzm-value-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-value-section-cta .qzm-btn-primary:hover {
  background: var(--qzm-primary-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Section CTA Button - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-value-section-cta .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-value-section.qzm-bg-dark .qzm-value-section-cta .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

/* CTA Card */
.qzm-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  border-radius: 16px;
  margin-top: 48px;
  background: var(--qzm-primary);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.qzm-cta-card-content {
  flex: 1;
}

.qzm-cta-card-title {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.qzm-cta-card-desc {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  max-width: 600px;
}

/* CTA Card text - White/Light mode (purple background, white text) */
.qzm-value-section:not(.qzm-bg-dark) .qzm-cta-card-title {
  color: #ffffff;
}

.qzm-value-section:not(.qzm-bg-dark) .qzm-cta-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Card text - Dark mode (transparent background, white text) */
.qzm-value-section.qzm-bg-dark .qzm-cta-card-title {
  color: #ffffff;
}

.qzm-value-section.qzm-bg-dark .qzm-cta-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

.qzm-cta-card-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  background: #ffffff;
  color: var(--qzm-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.qzm-cta-card-btn:hover {
  background: var(--qzm-accent);
  color: var(--qzm-primary);
  transform: translateY(-2px);
}

/* CTA Card - Light mode (same as white mode) */
.qzm-value-section.qzm-bg-light .qzm-cta-card {
  background: var(--qzm-primary);
}

/* CTA Card - Dark mode */
.qzm-value-section.qzm-bg-dark .qzm-cta-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.qzm-value-section.qzm-bg-dark .qzm-cta-card-btn {
  background: var(--qzm-accent);
  color: var(--qzm-primary);
}

.qzm-value-section.qzm-bg-dark .qzm-cta-card-btn:hover {
  background: #ffffff;
}

/* CTA Card responsive */
@media (max-width: 768px) {
  .qzm-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 24px;
  }

  .qzm-cta-card-content {
    text-align: center;
  }

  .qzm-cta-card-title {
    font-size: 20px;
  }

  .qzm-cta-card-desc {
    font-size: 15px;
  }

  .qzm-cta-card-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Domain Expertise Section
   ========================================================================== */

.qzm-domain-expertise {
  padding: 80px 0;
}

.qzm-domain-expertise.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-domain-expertise.qzm-bg-white {
  background-color: #ffffff;
}

.qzm-domain-expertise.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Header */
.qzm-domain-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Section Label - Base styling */
.qzm-domain-header .qzm-section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Section Label - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-foreground-muted);
}

/* Section Label - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-section-label {
  color: var(--qzm-foreground-muted);
}

/* Section Label - Dark mode (pill) */
.qzm-domain-expertise.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* H2 - Base styling */
.qzm-domain-header .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* H2 - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-foreground);
}

/* H2 - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-domain-expertise.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-foreground);
}

/* H2 - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-domain-expertise.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

/* Description - Base styling */
.qzm-domain-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Description - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-header p {
  color: var(--qzm-foreground-muted);
}

/* Description - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-header p {
  color: var(--qzm-foreground-muted);
}

/* Description - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-header p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Feature Cards Grid */
.qzm-domain-grid {
  display: grid;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .qzm-domain-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .qzm-domain-grid {
    grid-template-columns: 1fr !important;
  }

  .qzm-domain-header .qzm-h2 {
    font-size: 28px;
  }
}

/* Feature Card - Base styling */
.qzm-domain-card {
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.qzm-domain-card:hover {
  box-shadow: 0 8px 30px rgba(59, 35, 59, 0.08);
  transform: translateY(-2px);
}

/* Feature Card - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
}

/* Feature Card - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
}

/* Feature Card - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card h3 - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-card h3 {
  color: var(--qzm-foreground);
}

/* Card h3 - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-card h3 {
  color: var(--qzm-foreground);
}

/* Card h3 - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-card h3 {
  color: #ffffff;
}

/* Card desc - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-desc {
  color: var(--qzm-foreground);
}

/* Card desc - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-desc {
  color: var(--qzm-foreground);
}

/* Card desc - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-desc {
  color: #ffffff;
}

/* Card subdesc - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-subdesc {
  color: var(--qzm-foreground-muted);
}

/* Card subdesc - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-subdesc {
  color: var(--qzm-foreground-muted);
}

/* Card subdesc - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-subdesc {
  color: rgba(255, 255, 255, 0.7);
}

/* Card Header (Icon + Title) */
.qzm-domain-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Icon container - Base styling */
.qzm-domain-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Icon container - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-icon {
  background: rgba(59, 35, 59, 0.1);
}

/* Icon container - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-icon {
  background: rgba(59, 35, 59, 0.1);
}

/* Icon container - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-icon {
  background: rgba(255, 255, 255, 0.15);
}

/* Icon SVG - Base styling */
.qzm-domain-icon svg {
  width: 24px;
  height: 24px;
}

/* Icon SVG - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-icon svg {
  stroke: var(--qzm-primary);
}

/* Icon SVG - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-icon svg {
  stroke: var(--qzm-primary);
}

/* Icon SVG - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-icon svg {
  stroke: var(--qzm-accent);
}

/* Card h3 - Base styling */
.qzm-domain-card-header h3 {
  font-family: var(--qzm-font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* Card Descriptions - Base styling */
.qzm-domain-desc {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.qzm-domain-subdesc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Footer Badge */
.qzm-domain-footer {
  text-align: center;
  margin-top: 32px;
}

.qzm-domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.qzm-domain-badge .qzm-badge-icon svg {
  width: 16px;
  height: 16px;
}

/* Footer Badge - White mode */
.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-domain-badge {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-domain-expertise:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-badge-icon svg {
  stroke: #ffffff;
}

/* Footer Badge - Light mode */
.qzm-domain-expertise.qzm-bg-light .qzm-domain-badge {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-domain-expertise.qzm-bg-light .qzm-badge-icon svg {
  stroke: #ffffff;
}

/* Footer Badge - Dark mode */
.qzm-domain-expertise.qzm-bg-dark .qzm-domain-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.qzm-domain-expertise.qzm-bg-dark .qzm-badge-icon svg {
  stroke: #ffffff;
}

/* ==========================================================================
   Hero Header Section
   ========================================================================== */

/* Override WPBakery's default section padding when hero header is present */
.vc_section.vc_section-has-fill:has(.qzm-hero-header) {
  padding-top: 0;
}

/* All hero headers need padding-top to sit below transparent nav overlay (matching original homePageHero: 125px) */
.qzm-hero-header {
  padding: 125px 0 80px;
}

.qzm-hero-header-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.qzm-hero-header .qzm-hero-heading,
.qzm-section h1.qzm-hero-heading {
  font-family: var(--qzm-font-heading);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.375;
  color: var(--qzm-foreground);
  margin: 0 0 24px 0;
}

.qzm-hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Feature Cards */
.qzm-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

@media (max-width: 900px) {
  .qzm-hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .qzm-hero-features {
    grid-template-columns: 1fr;
  }

  .qzm-hero-header .qzm-hero-heading,
  .qzm-section h1.qzm-hero-heading {
    font-size: 36px;
  }

  .qzm-hero-description {
    font-size: 18px;
  }
}

/* Default: White section - cards use light gray to stand out */
.qzm-hero-feature-card {
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Light section - cards use white to stand out from gray background */
.qzm-hero-header.qzm-bg-light .qzm-hero-feature-card {
  background: var(--qzm-card-bg);
}

.qzm-hero-feature-card:hover {
  box-shadow: 0 8px 30px rgba(59, 35, 59, 0.08);
  transform: translateY(-2px);
}

.qzm-hero-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-hero-feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--qzm-primary);
}

.qzm-hero-feature-card h3 {
  font-family: var(--qzm-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--qzm-text);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-hero-feature-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--qzm-text-light);
  margin: 0;
}

/* Hero CTA Buttons */
.qzm-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Make hero buttons larger and more prominent */
.qzm-hero-buttons .qzm-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* Hero Light Mode */
.qzm-hero-header.qzm-bg-light {
  background-color: var(--qzm-background);
}

/* Hero Header - Section label pill (always pill for hero elements) */
.qzm-hero-header .qzm-section-label,
.qzm-hero-header.qzm-bg-light .qzm-section-label,
.qzm-hero-header:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  display: inline-block;
  background: var(--qzm-accent);
  color: var(--qzm-primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* Hero Dark Mode */
.qzm-hero-header.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-hero-header.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-hero-header.qzm-bg-dark .qzm-hero-heading {
  color: #ffffff;
}

.qzm-hero-header.qzm-bg-dark .qzm-hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}


/* Hero Dark Mode Buttons */
.qzm-hero-header.qzm-bg-dark .qzm-btn-primary,
.qzm-hero-header.qzm-bg-dark a.qzm-btn-primary {
  background: var(--qzm-accent);
  color: var(--qzm-primary) !important;
}

.qzm-hero-header.qzm-bg-dark .qzm-btn-primary:hover,
.qzm-hero-header.qzm-bg-dark a.qzm-btn-primary:hover {
  background: #ffffff;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

.qzm-hero-header.qzm-bg-dark .qzm-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.qzm-hero-header.qzm-bg-dark .qzm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Dark Mode Cards */
.qzm-hero-header.qzm-bg-dark .qzm-hero-feature-card {
  background: var(--qzm-primary-light, #5a3d5a);
  border-color: rgba(255, 255, 255, 0.2);
}

.qzm-hero-header.qzm-bg-dark .qzm-hero-feature-icon svg {
  stroke: var(--qzm-accent);
}

.qzm-hero-header.qzm-bg-dark .qzm-hero-feature-card h3 {
  color: #ffffff;
}

.qzm-hero-header.qzm-bg-dark .qzm-hero-feature-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Tour Embed */
.qzm-hero-tour-embed {
  margin-top: 48px;
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
  border-bottom: none;
  padding: 30px 30px 0 30px;
  border-radius: 12px 12px 0 0;
}

/* Remove bottom padding when tour embed is present */
.qzm-hero-header.qzm-has-tour {
  padding-bottom: 0;
}

/* Tour Embed Frame - Light section uses white */
.qzm-hero-header.qzm-bg-light .qzm-hero-tour-embed {
  background: var(--qzm-card-bg);
}

/* Tour Embed Frame - Dark Mode */
.qzm-hero-header.qzm-bg-dark .qzm-hero-tour-embed {
  background: var(--qzm-primary-light, #5a3d5a);
  border-color: rgba(255, 255, 255, 0.2);
}

.qzm-storylane-iframe {
  border-radius: 12px 12px 0 0;
}

/* ==========================================================================
   Product Tour
   ========================================================================== */

.qzm-product-tour {
  padding: 80px 0;
}

/* Background variants */
.qzm-product-tour.qzm-bg-light {
  background-color: var(--qzm-background);
}

/* Header */
.qzm-product-tour-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Section Label - Light/White mode (plain text) */
.qzm-product-tour .qzm-section-label,
.qzm-product-tour.qzm-bg-light .qzm-section-label,
.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  display: block;
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Section Label - Dark mode (pill) */
.qzm-product-tour.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 16px;
}

/* H2 - Full styling */
.qzm-product-tour .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2,
.qzm-product-tour.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-product-tour.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

/* Description */
.qzm-product-tour-desc {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-product-tour-desc,
.qzm-product-tour.qzm-bg-light .qzm-product-tour-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-product-tour.qzm-bg-dark .qzm-product-tour-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Tour Embed Frame */
.qzm-product-tour-embed {
  margin-top: 48px;
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
  padding: 30px;
  border-radius: 12px;
}

.qzm-product-tour.qzm-bg-light .qzm-product-tour-embed {
  background: var(--qzm-card-bg);
}

.qzm-product-tour.qzm-bg-dark .qzm-product-tour-embed {
  background: var(--qzm-primary-light, #5a3d5a);
  border-color: rgba(255, 255, 255, 0.2);
}

.qzm-product-tour .qzm-storylane-iframe {
  border-radius: 12px;
}

/* Feature Boxes */
.qzm-feature-boxes {
  margin-top: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.qzm-feature-boxes-title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-feature-boxes-title,
.qzm-product-tour.qzm-bg-light .qzm-feature-boxes-title {
  color: var(--qzm-foreground-muted);
}

.qzm-product-tour.qzm-bg-dark .qzm-feature-boxes-title {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-feature-boxes-grid {
  display: grid;
  gap: 24px;
}

.qzm-product-tour .qzm-feature-box {
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.qzm-product-tour.qzm-bg-light .qzm-feature-box {
  background: var(--qzm-card-bg);
}

.qzm-product-tour.qzm-bg-dark .qzm-feature-box {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.qzm-product-tour .qzm-feature-box-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-product-tour .qzm-feature-box-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--qzm-primary);
}

.qzm-product-tour.qzm-bg-dark .qzm-feature-box-icon svg {
  stroke: var(--qzm-accent);
}

.qzm-product-tour .qzm-feature-box h4 {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-transform: none;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-feature-box h4,
.qzm-product-tour.qzm-bg-light .qzm-feature-box h4 {
  color: var(--qzm-foreground);
}

.qzm-product-tour.qzm-bg-dark .qzm-feature-box h4 {
  color: var(--qzm-accent);
}

.qzm-product-tour .qzm-feature-box p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-feature-box p,
.qzm-product-tour.qzm-bg-light .qzm-feature-box p {
  color: var(--qzm-foreground-muted);
}

.qzm-product-tour.qzm-bg-dark .qzm-feature-box p {
  color: rgba(255, 255, 255, 0.7);
}

/* Feature Pills */
.qzm-feature-pills {
  margin-top: 64px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.qzm-feature-pills-intro {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-feature-pills-intro,
.qzm-product-tour.qzm-bg-light .qzm-feature-pills-intro {
  color: var(--qzm-foreground-muted);
}

.qzm-product-tour.qzm-bg-dark .qzm-feature-pills-intro {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-product-tour .qzm-pill-highlight {
  color: var(--qzm-primary);
  font-weight: 500;
}

.qzm-product-tour.qzm-bg-dark .qzm-pill-highlight {
  color: var(--qzm-accent);
}

.qzm-product-tour .qzm-pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.qzm-product-tour .qzm-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-pill,
.qzm-product-tour.qzm-bg-light .qzm-pill {
  background: var(--qzm-card-bg);
  color: var(--qzm-foreground);
  border: 1px solid var(--qzm-card-border);
}

.qzm-product-tour.qzm-bg-dark .qzm-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Badge */
.qzm-footer-badge-wrapper {
  margin-top: 48px;
  text-align: center;
}

.qzm-footer-badge {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-footer-badge,
.qzm-product-tour.qzm-bg-light .qzm-footer-badge {
  background: var(--qzm-card-bg);
  color: var(--qzm-accent-dark);
  border: 1px solid var(--qzm-card-border);
}

.qzm-product-tour.qzm-bg-dark .qzm-footer-badge {
  background: rgba(248, 187, 208, 0.1);
  color: var(--qzm-accent);
  border: 1px solid rgba(248, 187, 208, 0.2);
}

/* Section CTA Button */
.qzm-section-cta {
  margin-top: 64px;
  text-align: center;
}

/* CTA Button - Base styles matching hero buttons */
.qzm-section-cta .qzm-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* Section CTA Button - Light/White mode */
.qzm-product-tour .qzm-section-cta .qzm-btn-primary,
.qzm-product-tour.qzm-bg-light .qzm-section-cta .qzm-btn-primary,
.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-cta .qzm-btn-primary {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.qzm-product-tour .qzm-section-cta .qzm-btn-primary:hover,
.qzm-product-tour.qzm-bg-light .qzm-section-cta .qzm-btn-primary:hover,
.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-cta .qzm-btn-primary:hover {
  background: var(--qzm-primary-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.qzm-product-tour .qzm-section-cta .qzm-btn-outline,
.qzm-product-tour.qzm-bg-light .qzm-section-cta .qzm-btn-outline,
.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-cta .qzm-btn-outline {
  background: transparent !important;
  color: var(--qzm-primary) !important;
  border: 2px solid var(--qzm-primary) !important;
}

.qzm-product-tour .qzm-section-cta .qzm-btn-outline:hover,
.qzm-product-tour.qzm-bg-light .qzm-section-cta .qzm-btn-outline:hover,
.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-cta .qzm-btn-outline:hover {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Section CTA Button - Dark mode */
.qzm-product-tour.qzm-bg-dark .qzm-section-cta .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-product-tour.qzm-bg-dark .qzm-section-cta .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

.qzm-product-tour.qzm-bg-dark .qzm-section-cta .qzm-btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.qzm-product-tour.qzm-bg-dark .qzm-section-cta .qzm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px);
}

/* Section CTA Button - Accent style (all modes) */
.qzm-product-tour .qzm-section-cta .qzm-btn-accent,
.qzm-product-tour.qzm-bg-light .qzm-section-cta .qzm-btn-accent,
.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-cta .qzm-btn-accent {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-product-tour .qzm-section-cta .qzm-btn-accent:hover,
.qzm-product-tour.qzm-bg-light .qzm-section-cta .qzm-btn-accent:hover,
.qzm-product-tour:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-cta .qzm-btn-accent:hover {
  background: var(--qzm-accent-hover) !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

.qzm-product-tour.qzm-bg-dark .qzm-section-cta .qzm-btn-accent {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-product-tour.qzm-bg-dark .qzm-section-cta .qzm-btn-accent:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .qzm-product-tour {
    padding: 64px 0;
  }

  .qzm-feature-boxes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .qzm-product-tour {
    padding: 48px 0;
  }

  .qzm-product-tour .qzm-h2 {
    font-size: 28px;
  }

  .qzm-product-tour-embed {
    padding: 16px;
  }

  .qzm-feature-boxes-grid {
    grid-template-columns: 1fr !important;
  }

  .qzm-product-tour .qzm-pill-list {
    gap: 8px;
  }

  .qzm-product-tour .qzm-pill {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* ==========================================================================
   Content Section
   ========================================================================== */

.qzm-content-section {
  padding: 80px 0;
}

/* Background colors */
.qzm-content-section.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-content-section.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Wrapper */
.qzm-content-section-wrapper {
  /* No max-width - uses full container width */
}

/* Grid Layout */
.qzm-content-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  align-items: center;
}

/* Content right - reverse order */
.qzm-content-section.qzm-layout-content-right .qzm-content-section-grid {
  direction: rtl;
}

.qzm-content-section.qzm-layout-content-right .qzm-content-section-grid > * {
  direction: ltr;
}

/* Center layout - single column */
.qzm-content-section.qzm-layout-center .qzm-content-section-grid {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Card Style */
/* White section (default): light gray card background */
.qzm-content-section-card,
.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-content-section-card {
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
  border-radius: 16px;
  padding: 40px;
}

/* Light section: white card background */
.qzm-content-section.qzm-bg-light .qzm-content-section-card {
  background: var(--qzm-card-bg);
}

.qzm-content-section.qzm-bg-dark .qzm-content-section-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Section Label - Light/White mode (plain text) */
.qzm-content-section .qzm-section-label,
.qzm-content-section.qzm-bg-light .qzm-section-label,
.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  display: block;
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Section Label - Dark mode (pill) */
.qzm-content-section.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 16px;
}

/* H2 - Full styling */
.qzm-content-section .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 20px;
  max-width: 800px;
  text-transform: none;
}

.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2,
.qzm-content-section.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-content-section.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

/* Description */
.qzm-content-section-desc {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qzm-foreground);
  margin: 0 0 24px 0;
}

.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-content-section-desc,
.qzm-content-section.qzm-bg-light .qzm-content-section-desc {
  color: var(--qzm-foreground-muted);
  font-weight: 400;
}

.qzm-content-section.qzm-bg-dark .qzm-content-section-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Features List */
.qzm-content-section .qzm-content-section-features {
  list-style: none !important;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-content-section .qzm-content-section-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--qzm-font-body) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  line-height: 1.5;
  margin-bottom: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-content-section .qzm-content-section-features li:last-child {
  margin-bottom: 0 !important;
}

.qzm-content-section .qzm-content-section-features li::before,
.qzm-content-section .qzm-content-section-features li::marker {
  content: none !important;
  display: none !important;
}

.qzm-content-section .qzm-feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.qzm-content-section .qzm-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--qzm-primary);
}

.qzm-content-section.qzm-bg-dark .qzm-feature-icon svg {
  stroke: var(--qzm-accent);
}

.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-content-section-features li,
.qzm-content-section.qzm-bg-light .qzm-content-section-features li {
  color: var(--qzm-foreground);
}

.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-content-section-features li span,
.qzm-content-section.qzm-bg-light .qzm-content-section-features li span {
  color: var(--qzm-foreground) !important;
  font-weight: 500 !important;
}

.qzm-content-section.qzm-bg-dark .qzm-content-section-features li {
  color: rgba(255, 255, 255, 0.9) !important;
}

.qzm-content-section.qzm-bg-dark .qzm-content-section-features li span {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
}

/* Quote */
.qzm-content-section-quote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--qzm-accent);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  background: var(--qzm-background);
  border-radius: 0 8px 8px 0;
}

.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-content-section-quote,
.qzm-content-section.qzm-bg-light .qzm-content-section-quote {
  color: var(--qzm-foreground);
  background: var(--qzm-background);
}

.qzm-content-section.qzm-bg-dark .qzm-content-section-quote {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--qzm-accent);
}

/* Operational Notes */
.qzm-content-section-notes {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--qzm-background);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.qzm-content-section.qzm-bg-light .qzm-content-section-notes {
  background: var(--qzm-card-bg);
}

.qzm-content-section.qzm-bg-dark .qzm-content-section-notes {
  background: rgba(255, 255, 255, 0.05);
}

.qzm-content-section .qzm-note-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.qzm-content-section .qzm-note-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--qzm-primary);
}

.qzm-content-section.qzm-bg-dark .qzm-note-icon svg {
  stroke: var(--qzm-accent);
}

.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-content-section-notes span,
.qzm-content-section.qzm-bg-light .qzm-content-section-notes span {
  color: var(--qzm-foreground-muted);
}

.qzm-content-section.qzm-bg-dark .qzm-content-section-notes span {
  color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.qzm-content-section-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.qzm-content-section.qzm-layout-center .qzm-content-section-buttons {
  justify-content: center;
}

/* Button styling - Light/White mode */
.qzm-content-section .qzm-btn-primary,
.qzm-content-section.qzm-bg-light .qzm-btn-primary,
.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-btn-primary {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.qzm-content-section .qzm-btn-primary:hover,
.qzm-content-section.qzm-bg-light .qzm-btn-primary:hover,
.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-btn-primary:hover {
  background: var(--qzm-primary-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.qzm-content-section .qzm-btn-outline,
.qzm-content-section.qzm-bg-light .qzm-btn-outline,
.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-btn-outline {
  background: transparent !important;
  color: var(--qzm-primary) !important;
  border: 2px solid var(--qzm-primary) !important;
}

.qzm-content-section .qzm-btn-outline:hover,
.qzm-content-section.qzm-bg-light .qzm-btn-outline:hover,
.qzm-content-section:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-btn-outline:hover {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Button styling - Dark mode */
.qzm-content-section.qzm-bg-dark .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-content-section.qzm-bg-dark .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

.qzm-content-section.qzm-bg-dark .qzm-btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.qzm-content-section.qzm-bg-dark .qzm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px);
}

/* Image Column - container only, card styling handled by .qzm-visual-wrapper */
.qzm-content-section-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-content-section-image img {
  max-width: 100%;
  height: auto;
}

/* Visual wrapper inside image container needs proper sizing */
.qzm-content-section-image .qzm-visual-wrapper {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Center Layout Image - container only */
.qzm-content-section-image-center {
  margin-top: 48px;
  text-align: center;
}

.qzm-content-section-image-center img {
  max-width: 100%;
  height: auto;
}

/* Visual wrapper in center layout */
.qzm-content-section-image-center .qzm-visual-wrapper {
  display: inline-block;
  max-width: 100%;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .qzm-content-section {
    padding: 64px 0;
  }

  .qzm-content-section-card {
    padding: 32px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .qzm-content-section {
    padding: 48px 0;
  }

  .qzm-content-section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .qzm-content-section.qzm-layout-content-right .qzm-content-section-grid {
    direction: ltr;
  }

  .qzm-content-section-card {
    padding: 24px;
  }

  .qzm-content-section-buttons {
    flex-direction: column;
  }

  .qzm-content-section-buttons .qzm-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .qzm-content-section .qzm-h2 {
    font-size: 28px;
  }
}

/* ==========================================================================
   Landing Page Hero Header
   ========================================================================== */

/* Override WPBakery padding when landing page hero is present */
.vc_section.vc_section-has-fill:has(.qzm-landing-page-hero) {
  padding-top: 0;
}

.qzm-landing-page-hero {
  padding: 125px 0 80px;
}

.qzm-landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  align-items: center;
}

/* Content right layout - swap column order */
.qzm-landing-page-hero.qzm-layout-content-right .qzm-landing-hero-grid {
  direction: rtl;
}

.qzm-landing-page-hero.qzm-layout-content-right .qzm-landing-hero-grid > * {
  direction: ltr;
}

/* Center layout - centered content with optional image below */
.qzm-landing-page-hero.qzm-layout-center .qzm-landing-hero-grid {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.qzm-landing-page-hero.qzm-layout-center .qzm-landing-hero-content {
  text-align: center;
}

.qzm-landing-page-hero.qzm-layout-center .qzm-hero-buttons {
  justify-content: center;
}

.qzm-landing-page-hero.qzm-layout-center {
  padding-bottom: 48px;
}

/* Center layout image (displayed below content) - container only */
.qzm-landing-hero-image-center {
  margin-top: 48px;
  text-align: center;
}

.qzm-landing-hero-image-center img {
  max-width: 100%;
  height: auto;
}

/* Visual wrapper in center layout */
.qzm-landing-hero-image-center .qzm-visual-wrapper {
  display: inline-block;
  max-width: 100%;
}

/* Content column */
.qzm-landing-hero-content {
  text-align: left;
}

/* Section label - pill style with accent background */
.qzm-landing-hero-content .qzm-section-label {
  display: inline-block;
  background: var(--qzm-accent);
  color: var(--qzm-primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 24px;
}

.qzm-landing-page-hero .qzm-hero-heading,
.qzm-landing-page-hero h1.qzm-hero-heading {
  font-family: var(--qzm-font-heading);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.qzm-landing-hero-content .qzm-hero-description {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 32px;
}

.qzm-landing-hero-content .qzm-hero-buttons {
  justify-content: flex-start;
}

/* Image column - container only, card styling handled by .qzm-visual-wrapper */
.qzm-landing-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-landing-hero-image img {
  max-width: 100%;
  height: auto;
}

/* Visual wrapper inside image container needs proper sizing */
.qzm-landing-hero-image .qzm-visual-wrapper {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .qzm-landing-page-hero .qzm-hero-heading,
  .qzm-landing-page-hero h1.qzm-hero-heading {
    font-size: 44px;
  }

  .qzm-landing-hero-grid {
    gap: 40px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .qzm-landing-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .qzm-landing-page-hero .qzm-hero-heading,
  .qzm-landing-page-hero h1.qzm-hero-heading {
    font-size: 36px;
  }

  /* On mobile, flatten content to allow reordering children */
  .qzm-landing-hero-content {
    display: contents;
  }

  /* Center all content elements with side padding */
  .qzm-landing-hero-content .qzm-hero-heading,
  .qzm-landing-hero-content .qzm-hero-description {
    text-align: center;
    width: 100%;
    padding: 0 16px;
  }

  /* Order: label, heading, description, image, then buttons */
  .qzm-landing-hero-content .qzm-section-label {
    order: 1;
    align-self: center;
  }
  .qzm-landing-hero-content .qzm-hero-heading { order: 2; }
  .qzm-landing-hero-content .qzm-hero-description { order: 3; }
  .qzm-landing-hero-image { order: 4; }
  .qzm-landing-hero-content .qzm-hero-buttons {
    order: 5;
    justify-content: center;
    width: 100%;
  }

  /* On mobile, always show content first regardless of layout setting */
  .qzm-landing-page-hero.qzm-layout-content-right .qzm-landing-hero-grid {
    direction: ltr;
  }
}

/* Light mode (gray background) and White mode */
.qzm-landing-page-hero.qzm-bg-light {
  background-color: var(--qzm-background);
}

/* Light/White mode - section label pill (always pill for hero elements) */
.qzm-landing-page-hero .qzm-section-label,
.qzm-landing-page-hero.qzm-bg-light .qzm-section-label,
.qzm-landing-page-hero:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  display: inline-block;
  background: var(--qzm-accent);
  color: var(--qzm-primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-landing-page-hero .qzm-hero-heading,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-heading {
  color: var(--qzm-primary);
}

.qzm-landing-page-hero .qzm-hero-description,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-description {
  color: var(--qzm-foreground-muted);
}

/* Light/White mode buttons */
.qzm-landing-page-hero .qzm-hero-buttons .qzm-btn-primary,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-buttons .qzm-btn-primary,
.qzm-landing-page-hero .qzm-hero-buttons a.qzm-btn-primary,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-buttons a.qzm-btn-primary {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.qzm-landing-page-hero .qzm-hero-buttons .qzm-btn-primary:hover,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-buttons .qzm-btn-primary:hover,
.qzm-landing-page-hero .qzm-hero-buttons a.qzm-btn-primary:hover,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-buttons a.qzm-btn-primary:hover {
  background: var(--qzm-primary-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.qzm-landing-page-hero .qzm-hero-buttons .qzm-btn-outline,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-buttons .qzm-btn-outline {
  background: transparent !important;
  color: var(--qzm-primary) !important;
  border: 2px solid var(--qzm-primary) !important;
}

.qzm-landing-page-hero .qzm-hero-buttons .qzm-btn-outline:hover,
.qzm-landing-page-hero.qzm-bg-light .qzm-hero-buttons .qzm-btn-outline:hover {
  background: var(--qzm-primary) !important;
  border-color: var(--qzm-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Dark mode */
.qzm-landing-page-hero.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Dark mode - section label pill */
.qzm-landing-page-hero.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-heading {
  color: #ffffff;
}

.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Dark mode buttons */
.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-buttons .qzm-btn-primary,
.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-buttons a.qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-buttons .qzm-btn-primary:hover,
.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-buttons a.qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-buttons .qzm-btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
}

.qzm-landing-page-hero.qzm-bg-dark .qzm-hero-buttons .qzm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Big Number Cards Section
   ========================================================================== */

.qzm-big-number-cards {
  padding: 80px 0;
}

/* Header (optional) */
.qzm-big-number-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Section Label - Base styling */
.qzm-big-number-header .qzm-section-label {
  margin-bottom: 16px;
}

/* Section Label - White mode */
.qzm-big-number-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Label - Light mode */
.qzm-big-number-cards.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* H2 - Base styling */
.qzm-big-number-header .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* H2 - White mode */
.qzm-big-number-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-big-number-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-foreground);
}

/* H2 - Light mode */
.qzm-big-number-cards.qzm-bg-light .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-big-number-cards.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-foreground);
}

/* Description - Base styling */
.qzm-big-number-header p {
  font-size: 18px;
  line-height: 1.6;
}

/* Description - White mode */
.qzm-big-number-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-big-number-header p {
  color: var(--qzm-foreground-muted);
}

/* Description - Light mode */
.qzm-big-number-cards.qzm-bg-light .qzm-big-number-header p {
  color: var(--qzm-foreground-muted);
}

@media (max-width: 768px) {
  .qzm-big-number-header .qzm-h2 {
    font-size: 28px;
  }
}

/* Grid Layout */
.qzm-big-number-grid {
  display: grid;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.qzm-big-number-grid.qzm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.qzm-big-number-grid.qzm-cols-3 { grid-template-columns: repeat(3, 1fr); }
.qzm-big-number-grid.qzm-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Individual Card */
.qzm-big-number-card {
  text-align: center;
  padding: 16px;
}

/* Big Number - Large accent-colored text */
.qzm-big-number {
  display: block;
  font-family: var(--qzm-font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--qzm-accent);
  margin-bottom: 8px;
}

/* Title */
.qzm-big-number-title {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
  text-transform: none;
}

/* Description */
.qzm-big-number-desc {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* Dark Mode (default) */
.qzm-big-number-cards.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Section Label - Dark mode (pill) */
.qzm-big-number-cards.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* H2 - Dark mode */
.qzm-big-number-cards.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-big-number-cards.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

/* Description - Dark mode */
.qzm-big-number-cards.qzm-bg-dark .qzm-big-number-header p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Big Number Title - Dark mode */
.qzm-big-number-cards.qzm-bg-dark .qzm-big-number-title {
  color: #ffffff;
}

/* Big Number Desc - Dark mode */
.qzm-big-number-cards.qzm-bg-dark .qzm-big-number-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Light Mode */
.qzm-big-number-cards.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-big-number-cards.qzm-bg-light .qzm-big-number {
  color: var(--qzm-primary);
}

.qzm-big-number-cards.qzm-bg-light .qzm-big-number-title {
  color: var(--qzm-primary);
}

.qzm-big-number-cards.qzm-bg-light .qzm-big-number-desc {
  color: var(--qzm-foreground-muted);
}

/* White Mode */
.qzm-big-number-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-big-number {
  color: var(--qzm-primary);
}

.qzm-big-number-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-big-number-title {
  color: var(--qzm-primary);
}

.qzm-big-number-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-big-number-desc {
  color: var(--qzm-foreground-muted);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .qzm-big-number-grid.qzm-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .qzm-big-number {
    font-size: 40px;
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .qzm-big-number-grid.qzm-cols-3,
  .qzm-big-number-grid.qzm-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .qzm-big-number {
    font-size: 36px;
  }
}


/* ==========================================================================
   Feature Banner Section
   ========================================================================== */

.qzm-feature-banner {
  padding: 64px 0;
}

/* Header */
.qzm-feature-banner-header {
  text-align: center;
  margin-bottom: 48px;
}

.qzm-feature-banner-header .qzm-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.qzm-feature-banner .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

.qzm-feature-banner-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 16px auto 0;
}

/* Accent text in heading */
.qzm-text-accent {
  color: var(--qzm-accent);
}

/* Logo Strip */
.qzm-feature-banner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.qzm-partner-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Process Steps */
.qzm-feature-banner-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.qzm-step-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qzm-step-card {
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 150px;
}

.qzm-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.qzm-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-step-icon svg {
  width: 20px;
  height: 20px;
}

.qzm-step-title {
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-transform: none;
}

.qzm-step-desc {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.qzm-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qzm-step-arrow svg {
  width: 16px;
  height: 16px;
}

/* CTA Button */
.qzm-feature-banner-cta {
  text-align: center;
}

.qzm-btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qzm-btn-arrow {
  display: flex;
  align-items: center;
  transition: transform var(--qzm-transition-fast);
}

.qzm-btn-arrow svg {
  width: 16px;
  height: 16px;
}

.qzm-btn-with-arrow:hover .qzm-btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Feature Banner - Dark Mode (default)
   ========================================================================== */

.qzm-feature-banner.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-feature-banner.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(248, 187, 208, 0.2);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-feature-banner.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-feature-banner.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-feature-banner.qzm-bg-dark .qzm-feature-banner-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-feature-banner.qzm-bg-dark .qzm-partner-logo {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* Feature Banner step elements - fully scoped to avoid Feature Steps conflicts */
.qzm-feature-banner .qzm-step-card {
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 150px;
}

.qzm-feature-banner .qzm-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.qzm-feature-banner .qzm-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-feature-banner .qzm-step-icon svg {
  width: 20px;
  height: 20px;
}

.qzm-feature-banner .qzm-step-title {
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-transform: none;
}

.qzm-feature-banner .qzm-step-desc {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.qzm-feature-banner.qzm-bg-dark .qzm-step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qzm-feature-banner.qzm-bg-dark .qzm-step-icon svg {
  color: var(--qzm-accent);
}

.qzm-feature-banner.qzm-bg-dark .qzm-step-title {
  color: #ffffff;
}

.qzm-feature-banner.qzm-bg-dark .qzm-step-desc {
  color: rgba(255, 255, 255, 0.6);
}

.qzm-feature-banner.qzm-bg-dark .qzm-step-arrow svg {
  color: rgba(248, 187, 208, 0.5);
}

.qzm-feature-banner.qzm-bg-dark .qzm-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.qzm-feature-banner.qzm-bg-dark .qzm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Feature Banner - Light Mode
   ========================================================================== */

.qzm-feature-banner.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-feature-banner.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
}

.qzm-feature-banner.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-feature-banner.qzm-bg-light .qzm-feature-banner-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-banner.qzm-bg-light .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-feature-banner.qzm-bg-light .qzm-partner-logo {
  filter: none;
  opacity: 0.8;
}

.qzm-feature-banner.qzm-bg-light .qzm-step-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
}

.qzm-feature-banner.qzm-bg-light .qzm-step-icon svg {
  color: var(--qzm-primary);
}

.qzm-feature-banner.qzm-bg-light .qzm-step-title {
  color: var(--qzm-primary);
}

.qzm-feature-banner.qzm-bg-light .qzm-step-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-banner.qzm-bg-light .qzm-step-arrow svg {
  color: var(--qzm-foreground-light);
}

/* ==========================================================================
   Feature Banner - White Mode
   ========================================================================== */

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-feature-banner-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-partner-logo {
  filter: none;
  opacity: 0.8;
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-card {
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-icon svg {
  color: var(--qzm-primary);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-title {
  color: var(--qzm-primary);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-banner:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-arrow svg {
  color: var(--qzm-foreground-light);
}

/* ==========================================================================
   Feature Banner - Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .qzm-feature-banner .qzm-h2 {
    font-size: 28px;
  }

  .qzm-feature-banner-logos {
    gap: 20px;
  }

  .qzm-partner-logo {
    height: 24px;
  }
}

@media (max-width: 768px) {
  .qzm-feature-banner {
    padding: 48px 0;
  }

  .qzm-feature-banner .qzm-h2 {
    font-size: 24px;
  }

  .qzm-feature-banner-steps {
    flex-direction: column;
    gap: 12px;
  }

  .qzm-step-wrapper {
    flex-direction: column;
  }

  .qzm-step-arrow {
    transform: rotate(90deg);
  }

  .qzm-step-card {
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .qzm-feature-banner-logos {
    gap: 16px;
  }

  .qzm-partner-logo {
    height: 20px;
  }
}


/* ==========================================================================
   Feature Steps Section
   ========================================================================== */

.qzm-feature-steps {
  padding: 64px 0;
}

/* Header */
.qzm-feature-steps-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Section Label - Base */
.qzm-feature-steps-header .qzm-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Section Label - White mode */
.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
}

/* Section Label - Light mode */
.qzm-feature-steps.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
}

.qzm-feature-steps .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
}

.qzm-feature-steps-desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Steps Grid */
.qzm-feature-steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.qzm-step-item {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex: 1;
  max-width: 350px;
}

/* Step Card */
.qzm-step-card {
  position: relative;
  padding: 48px 24px 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Step Number Badge */
.qzm-step-number {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.qzm-step-number span {
  font-family: var(--qzm-font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

/* Subtitle Row (Icon + Label) */
.qzm-step-subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.qzm-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-step-icon svg {
  width: 18px;
  height: 18px;
}

.qzm-step-subtitle {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Title */
.qzm-step-title {
  font-family: var(--qzm-font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
  text-transform: none;
}

/* Description */
.qzm-step-description {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* Arrow between steps */
.qzm-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 28px;
}

.qzm-step-arrow svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Feature Steps - White Mode (default)
   ========================================================================== */

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-feature-steps .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-feature-steps-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-number {
  background: linear-gradient(135deg, var(--qzm-primary) 0%, var(--qzm-primary-light) 100%);
  box-shadow: 0 4px 12px rgba(59, 35, 59, 0.3);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-number span {
  color: #ffffff;
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-icon svg {
  color: var(--qzm-primary);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-subtitle {
  color: var(--qzm-primary);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-title {
  color: var(--qzm-primary);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-description {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-step-arrow svg {
  color: var(--qzm-primary);
  opacity: 0.5;
}

/* ==========================================================================
   Feature Steps - Light Mode
   ========================================================================== */

.qzm-feature-steps.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-feature-steps.qzm-bg-light .qzm-feature-steps .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-feature-steps.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-feature-steps.qzm-bg-light .qzm-feature-steps-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-steps.qzm-bg-light .qzm-step-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
}

.qzm-feature-steps.qzm-bg-light .qzm-step-number {
  background: linear-gradient(135deg, var(--qzm-primary) 0%, var(--qzm-primary-light) 100%);
  box-shadow: 0 4px 12px rgba(59, 35, 59, 0.3);
}

.qzm-feature-steps.qzm-bg-light .qzm-step-number span {
  color: #ffffff;
}

.qzm-feature-steps.qzm-bg-light .qzm-step-icon svg {
  color: var(--qzm-primary);
}

.qzm-feature-steps.qzm-bg-light .qzm-step-subtitle {
  color: var(--qzm-primary);
}

.qzm-feature-steps.qzm-bg-light .qzm-step-title {
  color: var(--qzm-primary);
}

.qzm-feature-steps.qzm-bg-light .qzm-step-description {
  color: var(--qzm-foreground-muted);
}

.qzm-feature-steps.qzm-bg-light .qzm-step-arrow svg {
  color: var(--qzm-primary);
  opacity: 0.5;
}

/* ==========================================================================
   Feature Steps - Dark Mode
   ========================================================================== */

.qzm-feature-steps.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-feature-steps.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-feature-steps.qzm-bg-dark .qzm-feature-steps .qzm-h2 {
  color: #ffffff;
}

.qzm-feature-steps.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-feature-steps.qzm-bg-dark .qzm-feature-steps-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-number {
  background: linear-gradient(135deg, var(--qzm-primary-light) 0%, var(--qzm-primary) 100%);
  box-shadow: 0 4px 12px rgba(59, 35, 59, 0.4);
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-number span {
  color: var(--qzm-accent);
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-icon svg {
  color: var(--qzm-accent);
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-subtitle {
  color: var(--qzm-accent);
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-title {
  color: #ffffff;
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-description {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-feature-steps.qzm-bg-dark .qzm-step-arrow svg {
  color: var(--qzm-accent);
  opacity: 0.5;
}

/* ==========================================================================
   Feature Steps - Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .qzm-feature-steps .qzm-h2 {
    font-size: 30px;
  }

  .qzm-step-item {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .qzm-feature-steps {
    padding: 48px 0;
  }

  .qzm-feature-steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .qzm-step-item {
    flex-direction: column;
    max-width: 400px;
    width: 100%;
  }

  .qzm-step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .qzm-feature-steps .qzm-h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .qzm-feature-steps .qzm-h2 {
    font-size: 24px;
  }

  .qzm-step-card {
    padding: 40px 16px 20px;
  }

  .qzm-step-number {
    width: 48px;
    height: 48px;
    top: -24px;
  }

  .qzm-step-number span {
    font-size: 20px;
  }
}

/* ==========================================================================
   Featured Content Section (Tabbed Content)
   ========================================================================== */

.qzm-featured-content {
  padding: 96px 0;
}

/* Header */
.qzm-featured-content-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

/* Section Label - Base styling */
.qzm-featured-content-header .qzm-section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Section Label - White mode */
.qzm-featured-content:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
}

/* Section Label - Light mode */
.qzm-featured-content.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
}

/* H2 - Base styling */
.qzm-featured-content .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

/* H2 - White mode */
.qzm-featured-content:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-featured-content:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-foreground);
}

/* H2 - Light mode */
.qzm-featured-content.qzm-bg-light .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-featured-content.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-foreground);
}

/* Description - Base styling */
.qzm-featured-content-desc {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Description - White mode */
.qzm-featured-content:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-featured-content-desc {
  color: var(--qzm-foreground-muted);
}

/* Description - Light mode */
.qzm-featured-content.qzm-bg-light .qzm-featured-content-desc {
  color: var(--qzm-foreground-muted);
}

/* Tab Navigation */
.qzm-featured-content-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.qzm-fc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  color: var(--qzm-foreground-muted);
  cursor: pointer;
  transition: all var(--qzm-transition-base);
  white-space: nowrap;
}

.qzm-fc-tab:hover {
  background: rgba(59, 35, 59, 0.08);
  border-color: var(--qzm-primary);
  color: var(--qzm-foreground);
}

.qzm-fc-tab.active {
  background: var(--qzm-primary);
  border-color: var(--qzm-primary);
  color: #ffffff;
  box-shadow: var(--qzm-shadow-lg);
}

.qzm-fc-tab-icon {
  display: flex;
  align-items: center;
}

.qzm-fc-tab-icon svg {
  width: 16px;
  height: 16px;
}

/* Tab Panels */
.qzm-featured-content-panels {
  position: relative;
}

.qzm-fc-panel {
  display: none;
}

.qzm-fc-panel.active {
  display: block;
}

.qzm-fc-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Panel Content */
.qzm-fc-panel-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 0 !important;
}

.qzm-featured-content .qzm-fc-panel-title,
h3.qzm-fc-panel-title {
  font-family: var(--qzm-font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin: 0 auto 24px auto;
  max-width: 1100px;
  text-transform: none;
}

.qzm-fc-panel-description {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qzm-foreground);
  margin: 0;
}

/* Features List */
.qzm-fc-features {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qzm-fc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 !important;
  padding-left: 0 !important;
  margin: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-fc-features li::before,
.qzm-fc-features li::marker {
  content: none !important;
  display: none !important;
}

.qzm-fc-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59, 35, 59, 0.1);
  flex-shrink: 0;
}

.qzm-fc-feature-icon svg {
  width: 12px;
  height: 12px;
  color: var(--qzm-primary);
}

.qzm-featured-content .qzm-fc-features li span:last-child {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--qzm-foreground);
}

/* Quote */
.qzm-fc-quote {
  font-size: 14px;
  line-height: 1.5;
  color: var(--qzm-foreground-muted);
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(59, 35, 59, 0.2);
}

/* Operational Note */
.qzm-fc-operational-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(59, 35, 59, 0.05);
  border: 1px solid rgba(59, 35, 59, 0.1);
  border-radius: 8px;
}

.qzm-fc-note-icon {
  display: flex;
  flex-shrink: 0;
}

.qzm-fc-note-icon svg {
  width: 16px;
  height: 16px;
  color: var(--qzm-primary);
}

.qzm-fc-operational-note span:last-child {
  font-size: 14px;
  color: var(--qzm-foreground);
}

/* Panel Link CTA */
.qzm-fc-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--qzm-primary);
  text-decoration: none;
  transition: gap var(--qzm-transition-base);
}

.qzm-fc-panel-link:hover {
  gap: 12px;
}

.qzm-fc-panel-link .qzm-link-arrow {
  width: 16px;
  height: 16px;
}

.qzm-fc-panel-link .qzm-link-arrow svg {
  width: 16px;
  height: 16px;
}

/* Panel Image */
.qzm-fc-panel-image {
  background: linear-gradient(135deg, var(--qzm-card-bg) 0%, var(--qzm-background) 100%);
  border: 1px solid var(--qzm-card-border);
  border-radius: 16px;
  overflow: hidden;
}

.qzm-fc-panel-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features in image position (when no image) */
.qzm-fc-features-column {
  display: flex;
  align-items: center;
}

.qzm-fc-features-column .qzm-fc-features {
  margin: 0;
  padding: 0;
}

/* Panel card styling (wraps entire tab content) */
.qzm-fc-panel-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: 16px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Remove grid centering when inside card (card handles it) */
.qzm-fc-panel-card .qzm-fc-panel-grid {
  margin: 0;
}

/* Remove title centering when inside card */
.qzm-fc-panel-card .qzm-fc-panel-title {
  margin: 0 0 24px 0;
}

/* CTA */
.qzm-featured-content-cta {
  text-align: center;
  margin-top: 64px;
}

/* CTA Button - Match hero button styling */
.qzm-featured-content-cta .qzm-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* CTA Button - Light/White mode */
.qzm-featured-content-cta .qzm-btn-primary,
.qzm-featured-content.qzm-bg-light .qzm-featured-content-cta .qzm-btn-primary {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.qzm-featured-content-cta .qzm-btn-primary:hover,
.qzm-featured-content.qzm-bg-light .qzm-featured-content-cta .qzm-btn-primary:hover {
  background: var(--qzm-primary-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* CTA Button - Dark mode */
.qzm-featured-content.qzm-bg-dark .qzm-featured-content-cta .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-featured-content.qzm-bg-dark .qzm-featured-content-cta .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

/* Tab Link CTA - Dark mode */
.qzm-featured-content.qzm-bg-dark .qzm-fc-panel-link {
  color: var(--qzm-accent);
}

/* Light Mode */
.qzm-featured-content.qzm-bg-light {
  background-color: var(--qzm-background);
}

/* Dark Mode */
.qzm-featured-content.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Section Label - Dark mode */
.qzm-featured-content.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* H2 - Dark mode */
.qzm-featured-content.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-featured-content.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

/* Description - Dark mode */
.qzm-featured-content.qzm-bg-dark .qzm-featured-content-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-tab {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--qzm-accent);
  color: #ffffff;
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-tab.active {
  background: var(--qzm-accent);
  border-color: var(--qzm-accent);
  color: var(--qzm-primary);
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-panel-title {
  color: #ffffff;
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-panel-description {
  color: #ffffff;
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-feature-icon {
  background: rgba(255, 255, 255, 0.1);
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-feature-icon svg {
  color: var(--qzm-accent);
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-features li span:last-child {
  font-weight: 400;
  color: #ffffff;
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-quote {
  color: rgba(255, 255, 255, 0.6);
  border-left-color: rgba(255, 255, 255, 0.2);
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-operational-note {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-note-icon svg {
  color: var(--qzm-accent);
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-operational-note span:last-child {
  color: #ffffff;
}

.qzm-featured-content.qzm-bg-dark .qzm-fc-panel-image {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Dark mode panel card */
.qzm-featured-content.qzm-bg-dark .qzm-fc-panel-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .qzm-featured-content {
    padding: 64px 0;
  }

  .qzm-fc-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .qzm-featured-content {
    padding: 48px 0;
  }

  .qzm-featured-content-header {
    margin-bottom: 32px;
  }

  .qzm-featured-content-desc {
    font-size: 16px;
  }

  .qzm-featured-content-tabs {
    gap: 6px;
    margin-bottom: 32px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .qzm-fc-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .qzm-featured-content .qzm-fc-panel-title,
  h3.qzm-fc-panel-title {
    font-size: 24px;
  }

  .qzm-featured-content-cta {
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .qzm-featured-content .qzm-h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .qzm-fc-tab-label {
    display: none;
  }

  .qzm-fc-tab {
    padding: 12px;
  }

  .qzm-fc-tab-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   Product Feature Section (Tabbed Accordions)
   ========================================================================== */

.qzm-product-feature {
  padding: 96px 0;
}

/* Header */
.qzm-product-feature-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.qzm-product-feature .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin: 0 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

/* H2 - White mode */
.qzm-product-feature:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-foreground);
}

/* H2 - Light mode */
.qzm-product-feature.qzm-bg-light .qzm-h2 {
  color: var(--qzm-foreground);
}

/* Description */
.qzm-product-feature-desc {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* Description - White mode */
.qzm-product-feature:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-product-feature-desc {
  color: var(--qzm-foreground-muted);
}

/* Description - Light mode */
.qzm-product-feature.qzm-bg-light .qzm-product-feature-desc {
  color: var(--qzm-foreground-muted);
}

/* Section Label - Base styling */
.qzm-product-feature-header .qzm-section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Section Label - White mode */
.qzm-product-feature:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
}

/* Section Label - Light mode */
.qzm-product-feature.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
}

/* Tab Navigation */
.qzm-product-feature-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.qzm-pf-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--qzm-foreground-muted);
  cursor: pointer;
  transition: all var(--qzm-transition-base);
  font-family: var(--qzm-font-body);
  white-space: nowrap;
}

.qzm-pf-tab:hover {
  background: rgba(59, 35, 59, 0.08);
  border-color: var(--qzm-primary);
  color: var(--qzm-foreground);
}

.qzm-pf-tab:hover .qzm-pf-tab-icon svg {
  color: var(--qzm-foreground);
}

.qzm-pf-tab.active {
  background: var(--qzm-primary);
  border-color: var(--qzm-primary);
  color: #ffffff;
  box-shadow: var(--qzm-shadow-lg);
}

.qzm-pf-tab.active .qzm-pf-tab-icon svg {
  color: #ffffff;
}

.qzm-pf-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-pf-tab-icon svg {
  width: 20px;
  height: 20px;
  color: var(--qzm-foreground-muted);
  transition: color var(--qzm-transition-base);
}

.qzm-pf-tab-label {
  font-size: 14px;
  font-weight: 500;
}

/* Panels */
.qzm-product-feature-panels {
  position: relative;
}

.qzm-pf-panel {
  display: none;
}

.qzm-pf-panel.active {
  display: block;
}

/* Panel Grid Layout */
.qzm-pf-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Panel Content */
.qzm-pf-panel-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0 !important;
}

/* Panel Image */
.qzm-pf-panel-image {
  background: linear-gradient(135deg, var(--qzm-card-bg) 0%, var(--qzm-background) 100%);
  border: 1px solid var(--qzm-card-border);
  border-radius: 16px;
  overflow: hidden;
}

.qzm-pf-panel-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Panel CTA Button */
.qzm-pf-panel-cta {
  margin-top: 32px;
}

.qzm-pf-panel-cta .qzm-btn-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* Section CTA Button */
.qzm-product-feature-cta {
  text-align: center;
  margin-top: 48px;
}

.qzm-product-feature-cta .qzm-btn-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* Accordion List */
.qzm-pf-accordion-list {
  display: flex;
  flex-direction: column;
}

/* Accordion Item */
.qzm-pf-accordion {
  border-bottom: 1px solid var(--qzm-border);
}

.qzm-pf-accordion:first-child {
  border-top: 1px solid var(--qzm-border);
}

/* Accordion Header (clickable) */
.qzm-pf-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.qzm-pf-accordion-title {
  font-family: var(--qzm-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--qzm-foreground);
  padding-right: 16px;
}

/* Chevron icon button */
.qzm-pf-accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--qzm-card-bg);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--qzm-transition-base);
}

.qzm-pf-accordion-icon svg {
  width: 20px;
  height: 20px;
  color: var(--qzm-foreground-muted);
}

.qzm-pf-accordion.active .qzm-pf-accordion-icon {
  transform: rotate(180deg);
}

/* Accordion Content */
.qzm-pf-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--qzm-transition-slow), padding var(--qzm-transition-slow);
}

.qzm-pf-accordion.active .qzm-pf-accordion-content {
  max-height: 500px;
  padding-bottom: 24px;
}

.qzm-pf-accordion-content p {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* Dark Mode */
.qzm-product-feature.qzm-bg-dark {
  background: var(--qzm-primary);
}

.qzm-product-feature.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-product-feature.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-product-feature.qzm-bg-dark .qzm-product-feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-tab {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-tab .qzm-pf-tab-icon svg {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-tab:hover,
.qzm-product-feature.qzm-bg-dark .qzm-pf-tab.active {
  background: var(--qzm-accent);
  color: var(--qzm-primary);
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-tab:hover .qzm-pf-tab-icon svg,
.qzm-product-feature.qzm-bg-dark .qzm-pf-tab.active .qzm-pf-tab-icon svg {
  color: var(--qzm-primary);
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-accordion {
  border-color: rgba(255, 255, 255, 0.1);
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-accordion-title {
  color: #ffffff;
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-accordion-icon {
  background: rgba(255, 255, 255, 0.1);
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-accordion-icon svg {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-accordion-content p {
  color: rgba(255, 255, 255, 0.7);
}

/* Panel Image - Dark mode */
.qzm-product-feature.qzm-bg-dark .qzm-pf-panel-image {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Panel CTA Button - Dark mode */
.qzm-product-feature.qzm-bg-dark .qzm-pf-panel-cta .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-product-feature.qzm-bg-dark .qzm-pf-panel-cta .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

/* Section CTA Button - Dark mode */
.qzm-product-feature.qzm-bg-dark .qzm-product-feature-cta .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-product-feature.qzm-bg-dark .qzm-product-feature-cta .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

/* Light Mode */
.qzm-product-feature.qzm-bg-light {
  background: var(--qzm-section-bg);
}

/* Responsive */
@media (max-width: 992px) {
  .qzm-pf-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .qzm-pf-panel-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .qzm-product-feature {
    padding: 64px 0;
  }

  .qzm-product-feature-tabs {
    gap: 6px;
  }

  .qzm-pf-panel-grid {
    gap: 32px;
  }

  .qzm-pf-tab {
    padding: 10px 14px;
  }

  .qzm-pf-tab-label {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .qzm-product-feature .qzm-h2 {
    font-size: 28px;
  }

  .qzm-pf-accordion-title {
    font-size: 16px;
  }

  .qzm-pf-accordion-header {
    padding: 20px 0;
  }

  .qzm-pf-accordion-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .qzm-product-feature .qzm-h2 {
    font-size: 24px;
  }

  .qzm-pf-tab-label {
    display: none;
  }

  .qzm-pf-tab {
    padding: 12px;
  }

  .qzm-pf-tab-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   Support Cards Section (Data Stack)
   ========================================================================== */

.qzm-support-cards {
  padding: 80px 0;
}

/* Header */
.qzm-support-cards-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.qzm-support-cards-header .qzm-section-label {
  margin-bottom: 16px;
}

.qzm-support-cards-header .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-support-cards .qzm-support-cards-desc {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

/* Cards Grid */
.qzm-support-cards-grid {
  display: grid;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.qzm-support-cards-grid.qzm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.qzm-support-cards-grid.qzm-cols-3 { grid-template-columns: repeat(3, 1fr); }
.qzm-support-cards-grid.qzm-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Individual Card */
.qzm-support-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qzm-support-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.qzm-support-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--qzm-accent);
}

.qzm-support-cards .qzm-support-card-title {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-support-cards .qzm-support-card-desc {
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Card Bullet Points */
.qzm-support-cards .qzm-support-card-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.qzm-support-cards .qzm-support-card-bullets li {
  font-family: var(--qzm-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}

.qzm-support-cards .qzm-support-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
  margin-left: 0;
}

/* Card Link */
.qzm-support-cards .qzm-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--qzm-primary);
  text-decoration: none;
  margin-top: auto;
  padding-top: 12px;
  transition: gap var(--qzm-transition-base);
}

.qzm-support-cards .qzm-card-link:hover {
  gap: 12px;
}

.qzm-support-cards .qzm-card-link .qzm-card-link-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
}

.qzm-support-cards .qzm-card-link .qzm-card-link-arrow svg {
  width: 16px;
  height: 16px;
}

/* Section CTA Button */
.qzm-support-cards-cta {
  text-align: center;
  margin-top: 32px;
}

/* Footer Badge */
.qzm-support-cards-footer {
  margin-top: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.qzm-support-cards-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: left;
}

.qzm-badge-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.qzm-badge-icon svg {
  width: 20px;
  height: 20px;
}

.qzm-badge-content {
  flex: 1;
}

.qzm-badge-title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.qzm-badge-text {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* Dark Mode (default for this element) */
.qzm-support-cards.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-support-cards.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-support-cards.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-support-cards.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-cards-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-support-cards.qzm-bg-dark .qzm-support-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-card-title {
  color: #ffffff;
}

.qzm-support-cards.qzm-bg-dark .qzm-support-card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-card-icon svg {
  color: var(--qzm-accent);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-card-bullets li {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-card-bullets li::before {
  background-color: var(--qzm-accent);
}

.qzm-support-cards.qzm-bg-dark .qzm-card-link {
  color: var(--qzm-accent);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-cards-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.qzm-support-cards.qzm-bg-dark .qzm-badge-icon {
  background: rgba(255, 255, 255, 0.1);
}

.qzm-support-cards.qzm-bg-dark .qzm-badge-icon svg {
  color: var(--qzm-accent);
}

.qzm-support-cards.qzm-bg-dark .qzm-badge-title {
  color: #ffffff;
}

.qzm-support-cards.qzm-bg-dark .qzm-badge-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Section CTA Button - Dark mode */
.qzm-support-cards.qzm-bg-dark .qzm-support-cards-cta .qzm-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-cards-cta .qzm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.qzm-support-cards.qzm-bg-dark .qzm-support-cards-cta .qzm-btn-arrow svg {
  color: #ffffff;
}

/* Light Mode */
.qzm-support-cards.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-support-cards.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-support-cards.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-support-cards.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-support-cards.qzm-bg-light .qzm-support-cards-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-support-cards.qzm-bg-light .qzm-support-card {
  background: #ffffff;
  border-color: var(--qzm-card-border);
}

.qzm-support-cards.qzm-bg-light .qzm-support-card-icon {
  background: var(--qzm-background);
}

.qzm-support-cards.qzm-bg-light .qzm-support-card-icon svg {
  color: var(--qzm-primary);
}

.qzm-support-cards.qzm-bg-light .qzm-support-card-title {
  color: var(--qzm-primary);
}

.qzm-support-cards.qzm-bg-light .qzm-support-card-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-support-cards.qzm-bg-light .qzm-support-card-bullets li {
  color: var(--qzm-foreground-muted);
}

.qzm-support-cards.qzm-bg-light .qzm-support-card-bullets li::before {
  background-color: var(--qzm-accent);
}

.qzm-support-cards.qzm-bg-light .qzm-support-cards-badge {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
}

.qzm-support-cards.qzm-bg-light .qzm-badge-icon {
  background: var(--qzm-background);
}

.qzm-support-cards.qzm-bg-light .qzm-badge-icon svg {
  color: var(--qzm-primary);
}

.qzm-support-cards.qzm-bg-light .qzm-badge-title {
  color: var(--qzm-foreground);
}

.qzm-support-cards.qzm-bg-light .qzm-badge-text {
  color: var(--qzm-foreground-muted);
}

/* White Mode */
.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-cards-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-card {
  background: var(--qzm-background);
  border-color: var(--qzm-card-border);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-card-icon {
  background: rgba(0, 0, 0, 0.05);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-card-icon svg {
  color: var(--qzm-primary);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-card-title {
  color: var(--qzm-primary);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-card-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-card-bullets li {
  color: var(--qzm-foreground-muted);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-card-bullets li::before {
  background-color: var(--qzm-accent);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-support-cards-badge {
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-badge-icon {
  background: rgba(0, 0, 0, 0.05);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-badge-icon svg {
  color: var(--qzm-primary);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-badge-title {
  color: var(--qzm-foreground);
}

.qzm-support-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-badge-text {
  color: var(--qzm-foreground-muted);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .qzm-support-cards-grid.qzm-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .qzm-support-cards {
    padding: 60px 0;
  }

  .qzm-support-cards-grid.qzm-cols-3,
  .qzm-support-cards-grid.qzm-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .qzm-support-card {
    padding: 16px;
  }

  .qzm-support-cards .qzm-support-cards-desc {
    font-size: 16px;
  }

  .qzm-support-cards-badge {
    padding: 16px;
    gap: 12px;
  }

  .qzm-badge-icon svg {
    width: 20px;
    height: 20px;
  }

  .qzm-badge-title {
    font-size: 16px;
  }

  .qzm-badge-text {
    font-size: 13px;
  }
}

/* ==========================================================================
   Security Section
   ========================================================================== */

.qzm-security {
  padding: 80px 0;
}

/* Header */
.qzm-security-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.qzm-security-header .qzm-section-label {
  margin-bottom: 16px;
}

.qzm-security .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-security-desc {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* Grid Layout */
.qzm-security-grid {
  display: grid;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.qzm-security-grid.qzm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.qzm-security-grid.qzm-cols-3 { grid-template-columns: repeat(3, 1fr); }
.qzm-security-grid.qzm-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Individual Card */
.qzm-security-card {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Icon Badge - Rounded square container */
.qzm-security-card-icon-badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.qzm-security-card-icon-badge svg {
  width: 20px;
  height: 20px;
  color: var(--qzm-accent);
}

.qzm-security .qzm-security-card-title {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
  text-transform: none;
  color: var(--qzm-foreground);
}

.qzm-security-card-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Footer */
.qzm-security-footer {
  text-align: center;
  margin-top: 32px;
}

.qzm-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.qzm-security-badge .qzm-badge-icon svg {
  width: 16px;
  height: 16px;
}

/* Dark Mode (default) */
.qzm-security.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-security.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-security.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-security.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-security.qzm-bg-dark .qzm-security-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-security.qzm-bg-dark .qzm-security-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.qzm-security.qzm-bg-dark .qzm-security-card-icon-badge {
  background: rgba(255, 255, 255, 0.1);
}

.qzm-security.qzm-bg-dark .qzm-security-card-icon-badge svg {
  color: var(--qzm-accent);
}

.qzm-security.qzm-bg-dark .qzm-security-card-title {
  color: #ffffff;
}

.qzm-security.qzm-bg-dark .qzm-security-card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-security.qzm-bg-dark .qzm-security-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.qzm-security.qzm-bg-dark .qzm-badge-icon svg {
  color: #ffffff;
}

/* Light Mode */
.qzm-security.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-security.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-security.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-security.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-security.qzm-bg-light .qzm-security-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-security.qzm-bg-light .qzm-security-card {
  background: #ffffff;
  border-color: var(--qzm-card-border);
}

.qzm-security.qzm-bg-light .qzm-security-card-icon-badge {
  background: var(--qzm-background);
}

.qzm-security.qzm-bg-light .qzm-security-card-icon-badge svg {
  color: var(--qzm-primary);
}

.qzm-security.qzm-bg-light .qzm-security-card-title {
  color: var(--qzm-primary);
}

.qzm-security.qzm-bg-light .qzm-security-card-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-security.qzm-bg-light .qzm-security-badge {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-security.qzm-bg-light .qzm-badge-icon svg {
  color: #ffffff;
}

/* White Mode */
.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-security-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-security-card {
  background: var(--qzm-background);
  border-color: var(--qzm-card-border);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-security-card-icon-badge {
  background: rgba(0, 0, 0, 0.05);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-security-card-icon-badge svg {
  color: var(--qzm-primary);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-security-card-title {
  color: var(--qzm-primary);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-security-card-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-security-badge {
  background: var(--qzm-primary);
  color: #ffffff;
}

.qzm-security:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-badge-icon svg {
  color: #ffffff;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .qzm-security-grid.qzm-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .qzm-security {
    padding: 60px 0;
  }

  .qzm-security .qzm-h2 {
    font-size: 28px;
  }

  .qzm-security-grid.qzm-cols-3,
  .qzm-security-grid.qzm-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .qzm-security-card {
    padding: 16px;
  }

  .qzm-security-desc {
    font-size: 16px;
  }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.qzm-how-it-works {
  padding: 80px 0;
}

/* Header */
.qzm-how-it-works .qzm-how-it-works-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.qzm-how-it-works .qzm-how-it-works-header .qzm-section-label {
  margin-bottom: 16px;
}

.qzm-how-it-works .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-how-it-works .qzm-how-it-works-desc {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* Grid Layout */
.qzm-how-it-works .qzm-how-it-works-grid {
  display: grid;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.qzm-how-it-works .qzm-how-it-works-grid.qzm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.qzm-how-it-works .qzm-how-it-works-grid.qzm-cols-3 { grid-template-columns: repeat(3, 1fr); }
.qzm-how-it-works .qzm-how-it-works-grid.qzm-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Individual Step Card */
.qzm-how-it-works .qzm-how-it-works-step {
  position: relative;
  text-align: center;
  padding-top: 24px;
}

/* Step Badge (Number Circle) - scoped to avoid conflict with other elements */
.qzm-how-it-works .qzm-step-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--qzm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.qzm-how-it-works .qzm-step-badge span {
  font-family: var(--qzm-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* Step Badge Icon variant */
.qzm-how-it-works .qzm-step-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  stroke-width: 2;
}

/* Step Content Card - scoped to avoid conflict with other elements */
.qzm-how-it-works .qzm-step-content {
  padding: 40px 24px 24px;
  border-radius: 12px;
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
  height: 100%;
}

/* Title - scoped to avoid conflict with other elements */
.qzm-how-it-works .qzm-step-title {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--qzm-primary);
}

/* Description - scoped with explicit font-weight per instructions */
.qzm-how-it-works .qzm-step-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--qzm-foreground-muted);
}

/* White Mode (default) - Plain text section label per instructions */
.qzm-how-it-works:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-how-it-works:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-how-it-works:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-how-it-works:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-how-it-works-desc {
  color: var(--qzm-foreground-muted);
}

/* Light Mode - Plain text section label per instructions */
.qzm-how-it-works.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-how-it-works.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-how-it-works.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-how-it-works.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-how-it-works.qzm-bg-light .qzm-how-it-works-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-how-it-works.qzm-bg-light .qzm-step-content {
  background: #ffffff;
}

/* Dark Mode - Pill section label per instructions */
.qzm-how-it-works.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-how-it-works.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-how-it-works.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-how-it-works.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-how-it-works.qzm-bg-dark .qzm-how-it-works-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-how-it-works.qzm-bg-dark .qzm-step-badge {
  background: var(--qzm-accent);
}

.qzm-how-it-works.qzm-bg-dark .qzm-step-badge span {
  color: var(--qzm-primary);
}

.qzm-how-it-works.qzm-bg-dark .qzm-step-badge-icon svg {
  stroke: var(--qzm-primary);
}

.qzm-how-it-works.qzm-bg-dark .qzm-step-content {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.qzm-how-it-works.qzm-bg-dark .qzm-step-title {
  color: #ffffff;
}

.qzm-how-it-works.qzm-bg-dark .qzm-step-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .qzm-how-it-works .qzm-how-it-works-grid.qzm-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .qzm-how-it-works {
    padding: 60px 0;
  }

  .qzm-how-it-works .qzm-how-it-works-header {
    margin-bottom: 48px;
  }

  .qzm-how-it-works .qzm-h2 {
    font-size: 28px;
  }

  .qzm-how-it-works .qzm-how-it-works-grid.qzm-cols-3,
  .qzm-how-it-works .qzm-how-it-works-grid.qzm-cols-4 {
    grid-template-columns: 1fr;
  }

  .qzm-how-it-works .qzm-step-content {
    padding: 36px 20px 20px;
  }
}

/* ==========================================================================
   Contact Footer Section
   ========================================================================== */

.qzm-contact-footer {
  padding: 80px 0;
}

.qzm-contact-footer-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.qzm-contact-footer .qzm-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Section Label - White mode */
.qzm-contact-footer:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
}

/* Section Label - Light mode */
.qzm-contact-footer.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
}

.qzm-contact-footer .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
}

.qzm-contact-footer-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 32px;
}

.qzm-contact-footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Contact Footer button styles - scoped */
.qzm-contact-footer .qzm-btn-outline {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all var(--qzm-transition-fast);
}

.qzm-contact-footer .qzm-btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qzm-contact-footer .qzm-btn-arrow {
  display: flex;
  align-items: center;
  transition: transform var(--qzm-transition-fast);
}

.qzm-contact-footer .qzm-btn-arrow svg {
  width: 16px;
  height: 16px;
}

.qzm-contact-footer .qzm-btn-with-arrow:hover .qzm-btn-arrow {
  transform: translateX(4px);
}

/* Dark Mode (default) */
.qzm-contact-footer.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

.qzm-contact-footer.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-contact-footer.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-contact-footer.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-contact-footer.qzm-bg-dark .qzm-contact-footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-contact-footer.qzm-bg-dark .qzm-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.qzm-contact-footer.qzm-bg-dark .qzm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Light Mode */
.qzm-contact-footer.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-contact-footer.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-contact-footer.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-contact-footer.qzm-bg-light .qzm-contact-footer-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-contact-footer.qzm-bg-light .qzm-btn-outline {
  background: transparent;
  border: 1px solid var(--qzm-primary);
  color: var(--qzm-primary);
}

.qzm-contact-footer.qzm-bg-light .qzm-btn-outline:hover {
  background: var(--qzm-primary);
  color: #ffffff;
}

/* White Mode */
.qzm-contact-footer:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-contact-footer:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-contact-footer:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-contact-footer-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-contact-footer:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-btn-outline {
  background: transparent;
  border: 1px solid var(--qzm-primary);
  color: var(--qzm-primary);
}

.qzm-contact-footer:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-btn-outline:hover {
  background: var(--qzm-primary);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .qzm-contact-footer {
    padding: 60px 0;
  }

  .qzm-contact-footer .qzm-h2 {
    font-size: 28px;
  }

  .qzm-contact-footer-desc {
    font-size: 16px;
  }

  .qzm-contact-footer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .qzm-contact-footer .qzm-btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ==========================================================================
   Comparison Cards Section (Challenge & Solution)
   ========================================================================== */

.qzm-comparison-cards {
  padding: 80px 0;
}

/* Header - following instruction #15 */
.qzm-comparison-cards .qzm-comparison-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.qzm-comparison-cards .qzm-comparison-header .qzm-section-label {
  margin-bottom: 16px;
}

.qzm-comparison-cards .qzm-comparison-header .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-comparison-cards .qzm-comparison-header .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-comparison-cards .qzm-comparison-desc {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

.qzm-comparison-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-comparison-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-comparison-cards.qzm-bg-light .qzm-comparison-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-comparison-cards.qzm-bg-dark .qzm-comparison-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Column Headers */
.qzm-comparison-cards .qzm-comparison-column-headers {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.qzm-comparison-cards .qzm-comparison-col-header {
  text-align: center;
}

.qzm-comparison-cards .qzm-comparison-col-header h3 {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-transform: none;
}

.qzm-comparison-cards .qzm-challenge-header h3 {
  color: #991b1b;
}

.qzm-comparison-cards .qzm-solution-header h3 {
  color: #166534;
}

.qzm-comparison-cards .qzm-comparison-col-header-spacer {
  width: 40px;
}

/* Comparison Rows */
.qzm-comparison-cards .qzm-comparison-rows {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qzm-comparison-cards .qzm-comparison-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

/* Comparison Cards */
.qzm-comparison-cards .qzm-comparison-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
}

.qzm-comparison-cards .qzm-comparison-card p {
  margin: 0;
  font-family: var(--qzm-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/* Challenge Card (Red) */
.qzm-comparison-cards .qzm-card-challenge {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.qzm-comparison-cards .qzm-card-challenge p {
  color: #991b1b;
}

/* Solution Card (Green) */
.qzm-comparison-cards .qzm-card-solution {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.qzm-comparison-cards .qzm-card-solution p {
  color: #166534;
}

/* Icons */
.qzm-comparison-cards .qzm-comparison-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qzm-comparison-cards .qzm-icon-challenge {
  background: #ef4444;
}

.qzm-comparison-cards .qzm-icon-challenge span {
  color: #ffffff;
  font-family: var(--qzm-font-body);
  font-size: 12px;
  font-weight: 700;
}

.qzm-comparison-cards .qzm-icon-solution {
  background: #22c55e;
}

.qzm-comparison-cards .qzm-icon-solution svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
}

/* Arrow */
.qzm-comparison-cards .qzm-comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.qzm-comparison-cards .qzm-comparison-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--qzm-primary);
}

/* ==========================================================================
   Comparison Cards - Background Modes
   ========================================================================== */

/* Light Mode (default) */
.qzm-comparison-cards.qzm-bg-light {
  background-color: var(--qzm-background);
}

/* Section label - Light mode - plain text (no pill) */
.qzm-comparison-cards.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-comparison-cards.qzm-bg-light .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-comparison-cards.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

/* White Mode */
.qzm-comparison-cards:not(.qzm-bg-dark):not(.qzm-bg-light) {
  background-color: #ffffff;
}

/* Section label - White mode - plain text (no pill) */
.qzm-comparison-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-comparison-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-foreground);
}

.qzm-comparison-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

/* Dark Mode */
.qzm-comparison-cards.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Section label pill - Dark mode - ALL 9 properties per instruction #2 */
.qzm-comparison-cards.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-comparison-cards.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-comparison-cards.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-comparison-cards.qzm-bg-dark .qzm-challenge-header h3 {
  color: #fca5a5;
}

.qzm-comparison-cards.qzm-bg-dark .qzm-solution-header h3 {
  color: #86efac;
}

.qzm-comparison-cards.qzm-bg-dark .qzm-card-challenge {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

.qzm-comparison-cards.qzm-bg-dark .qzm-card-challenge p {
  color: #fecaca;
}

.qzm-comparison-cards.qzm-bg-dark .qzm-card-solution {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.qzm-comparison-cards.qzm-bg-dark .qzm-card-solution p {
  color: #bbf7d0;
}

.qzm-comparison-cards.qzm-bg-dark .qzm-comparison-arrow svg {
  color: var(--qzm-accent);
}

/* ==========================================================================
   Comparison Cards - Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .qzm-comparison-cards {
    padding: 60px 0;
  }

  .qzm-comparison-cards .qzm-comparison-header .qzm-h2 {
    font-size: 28px;
  }

  .qzm-comparison-cards .qzm-comparison-column-headers {
    display: none;
  }

  .qzm-comparison-cards .qzm-comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .qzm-comparison-cards .qzm-comparison-arrow {
    display: none;
  }

  .qzm-comparison-cards .qzm-comparison-card {
    padding: 14px;
  }

  .qzm-comparison-cards .qzm-comparison-card p {
    font-size: 14px;
  }
}

/* ==========================================================================
   Insights Cards Section
   ========================================================================== */

.qzm-insights-cards {
  padding: 80px 0;
}

/* Header */
.qzm-insights-cards .qzm-insights-cards-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.qzm-insights-cards .qzm-insights-cards-header .qzm-section-label {
  margin-bottom: 16px;
}

/* H2 - Full styling per instructions */
.qzm-insights-cards .qzm-insights-cards-header .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--qzm-foreground);
  margin: 0 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-insights-cards .qzm-insights-cards-desc {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* Cards Grid */
.qzm-insights-cards .qzm-insights-cards-grid {
  display: grid;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.qzm-insights-cards .qzm-insights-cards-grid.qzm-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.qzm-insights-cards .qzm-insights-cards-grid.qzm-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Insight Card */
.qzm-insights-cards .qzm-insight-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qzm-insights-cards .qzm-insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.qzm-insights-cards .qzm-insight-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.qzm-insights-cards .qzm-insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Content */
.qzm-insights-cards .qzm-insight-card-content {
  padding: 24px;
}

/* Date */
.qzm-insights-cards .qzm-insight-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--qzm-font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--qzm-foreground-muted);
  margin-bottom: 12px;
}

.qzm-insights-cards .qzm-insight-card-date .qzm-date-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
}

.qzm-insights-cards .qzm-insight-card-date .qzm-date-icon svg {
  width: 14px;
  height: 14px;
}

/* Title */
.qzm-insights-cards .qzm-insight-card-title {
  font-family: var(--qzm-font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--qzm-foreground);
  margin: 0 0 12px;
  text-transform: none;
}

/* Excerpt */
.qzm-insights-cards .qzm-insight-card-excerpt {
  font-family: var(--qzm-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0 0 16px;
}

/* Text Link CTA */
.qzm-insights-cards .qzm-insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--qzm-primary);
  text-decoration: none;
  transition: gap var(--qzm-transition-base);
}

.qzm-insights-cards .qzm-insight-card-link:hover {
  gap: 12px;
}

.qzm-insights-cards .qzm-insight-card-link .qzm-link-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
}

.qzm-insights-cards .qzm-insight-card-link .qzm-link-arrow svg {
  width: 16px;
  height: 16px;
}

/* Featured Card (First Card - Horizontal Layout) */
.qzm-insights-cards .qzm-insight-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto 32px;
}

.qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-image {
  aspect-ratio: 4/3;
  border-radius: 16px 0 0 16px;
}

.qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-excerpt {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Section CTA */
.qzm-insights-cards .qzm-insights-cards-cta {
  text-align: center;
  margin-top: 48px;
}

/* CTA Button - Match hero button styling */
.qzm-insights-cards .qzm-insights-cards-cta .qzm-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* ==========================================================================
   Insights Cards - Background Modes
   ========================================================================== */

/* Dark Mode (default for this element) */
.qzm-insights-cards.qzm-bg-dark {
  background: var(--qzm-primary);
}

.qzm-insights-cards.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 16px;
}

.qzm-insights-cards.qzm-bg-dark .qzm-insights-cards-header .qzm-h2 {
  color: #ffffff;
}

.qzm-insights-cards.qzm-bg-dark .qzm-insights-cards-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Dark mode cards stay white for contrast */
.qzm-insights-cards.qzm-bg-dark .qzm-insight-card {
  background: #ffffff;
}

/* Dark mode read more link - use primary since cards are white */
.qzm-insights-cards.qzm-bg-dark .qzm-insight-card-link {
  color: var(--qzm-primary);
}

/* Dark mode CTA button */
.qzm-insights-cards.qzm-bg-dark .qzm-insights-cards-cta .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-insights-cards.qzm-bg-dark .qzm-insights-cards-cta .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

/* Light Mode */
.qzm-insights-cards.qzm-bg-light {
  background: var(--qzm-background);
}

.qzm-insights-cards.qzm-bg-light .qzm-section-label,
.qzm-insights-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.qzm-insights-cards.qzm-bg-light .qzm-insights-cards-desc,
.qzm-insights-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-insights-cards-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-insights-cards.qzm-bg-light .qzm-insight-card-link,
.qzm-insights-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-insight-card-link {
  color: var(--qzm-primary);
}

/* Light/White mode CTA button */
.qzm-insights-cards.qzm-bg-light .qzm-insights-cards-cta .qzm-btn-primary,
.qzm-insights-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-insights-cards-cta .qzm-btn-primary {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.qzm-insights-cards.qzm-bg-light .qzm-insights-cards-cta .qzm-btn-primary:hover,
.qzm-insights-cards:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-insights-cards-cta .qzm-btn-primary:hover {
  background: var(--qzm-primary-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Insights Cards - Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .qzm-insights-cards .qzm-insights-cards-grid.qzm-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .qzm-insights-cards {
    padding: 60px 0;
  }

  .qzm-insights-cards .qzm-insights-cards-grid.qzm-cols-2,
  .qzm-insights-cards .qzm-insights-cards-grid.qzm-cols-3 {
    grid-template-columns: 1fr;
  }

  .qzm-insights-cards .qzm-insights-cards-header .qzm-h2 {
    font-size: 28px;
  }

  /* Featured card stacks on mobile */
  .qzm-insights-cards .qzm-insight-card-featured {
    grid-template-columns: 1fr;
  }

  .qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-image {
    border-radius: 16px 16px 0 0;
    aspect-ratio: 16/10;
  }

  .qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-content {
    padding: 24px;
  }

  .qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-title {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .qzm-insights-cards .qzm-insight-card-content {
    padding: 20px;
  }

  .qzm-insights-cards .qzm-insight-card-title {
    font-size: 18px;
  }

  .qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-content {
    padding: 20px;
  }

  .qzm-insights-cards .qzm-insight-card-featured .qzm-insight-card-title {
    font-size: 20px;
  }
}

/* ==========================================================================
   Stacked Steps Section (The three-step transformation)
   ========================================================================== */

.qzm-stacked-steps {
  padding: 80px 0;
}

/* Header */
.qzm-stacked-steps .qzm-stacked-steps-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.qzm-stacked-steps .qzm-stacked-steps-header .qzm-section-label {
  margin-bottom: 16px;
}

/* H2 - Full styling per instructions */
.qzm-stacked-steps .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--qzm-foreground);
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-stacked-steps .qzm-stacked-steps-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* Steps List */
.qzm-stacked-steps .qzm-stacked-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Step Container */
.qzm-stacked-steps .qzm-stacked-step {
  position: relative;
  padding-top: 28px;
}

/* Step Number Badge - Centered, overlapping card top */
.qzm-stacked-steps .qzm-stacked-step-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--qzm-primary) 0%, var(--qzm-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--qzm-shadow-lg);
}

.qzm-stacked-steps .qzm-stacked-step-badge span {
  font-family: var(--qzm-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

/* Step Card */
.qzm-stacked-steps .qzm-stacked-step-card {
  background: var(--qzm-card-bg);
  border: 1px solid var(--qzm-card-border);
  border-radius: 16px;
  padding: 48px 32px 32px;
}

/* Two-column grid inside card */
.qzm-stacked-steps .qzm-stacked-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Reverse layout for image-left */
.qzm-stacked-steps .qzm-stacked-step.qzm-image-left .qzm-stacked-step-grid {
  direction: rtl;
}

.qzm-stacked-steps .qzm-stacked-step.qzm-image-left .qzm-stacked-step-grid > * {
  direction: ltr;
}

/* Content Column */
.qzm-stacked-steps .qzm-stacked-step-content {
  text-align: left;
}

/* Step Label - uppercase small text */
.qzm-stacked-steps .qzm-stacked-step-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--qzm-primary);
  margin-bottom: 8px;
}

/* Step Title */
.qzm-stacked-steps .qzm-stacked-step-title {
  font-family: var(--qzm-font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--qzm-foreground);
  margin: 0 0 12px;
  text-transform: none;
}

/* Step Description - explicit font-weight */
.qzm-stacked-steps .qzm-stacked-step-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0 0 16px;
}

/* Bullet List */
.qzm-stacked-steps .qzm-stacked-step-bullets {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-stacked-steps .qzm-stacked-step-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
  font-family: inherit !important;
}

.qzm-stacked-steps .qzm-stacked-step-bullets li::before,
.qzm-stacked-steps .qzm-stacked-step-bullets li::marker {
  content: none !important;
  display: none !important;
}

.qzm-stacked-steps .qzm-stacked-step-bullets li:last-child {
  margin-bottom: 0 !important;
}

.qzm-stacked-steps .qzm-bullet-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  color: var(--qzm-primary);
}

.qzm-stacked-steps .qzm-bullet-icon svg {
  width: 18px;
  height: 18px;
}

/* Bullet text - explicit font-weight */
.qzm-stacked-steps .qzm-bullet-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--qzm-foreground-muted);
}

/* Image Column */
.qzm-stacked-steps .qzm-stacked-step-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-stacked-steps .qzm-stacked-step-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--qzm-shadow-md);
}

/* Arrow between steps */
.qzm-stacked-steps .qzm-stacked-step-arrow {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.qzm-stacked-steps .qzm-stacked-step-arrow svg {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  color: var(--qzm-primary);
  opacity: 0.3;
}

/* ==========================================================================
   Stacked Steps - White Mode (default)
   ========================================================================== */

/* Section label - Plain text (uppercase) for white mode */
.qzm-stacked-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-stacked-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-stacked-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-stacked-steps:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-stacked-steps-desc {
  color: var(--qzm-foreground-muted);
}

/* ==========================================================================
   Stacked Steps - Light Mode
   ========================================================================== */

.qzm-stacked-steps.qzm-bg-light {
  background-color: var(--qzm-background);
}

/* Section label - Plain text (uppercase) for light mode */
.qzm-stacked-steps.qzm-bg-light .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzm-stacked-steps.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-stacked-steps.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

.qzm-stacked-steps.qzm-bg-light .qzm-stacked-steps-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-stacked-steps.qzm-bg-light .qzm-stacked-step-card {
  background: #ffffff;
  border-color: var(--qzm-card-border);
}

/* ==========================================================================
   Stacked Steps - Dark Mode
   ========================================================================== */

.qzm-stacked-steps.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Section label - Pill styling for dark mode - ALL 9 properties */
.qzm-stacked-steps.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.qzm-stacked-steps.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-stacked-steps.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-steps-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-step-badge {
  background: linear-gradient(135deg, var(--qzm-accent) 0%, #f48fb1 100%);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-step-badge span {
  color: var(--qzm-primary);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-step-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-step-label {
  color: var(--qzm-accent);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-step-title {
  color: #ffffff;
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-step-text {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-bullet-icon {
  color: var(--qzm-accent);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-bullet-text {
  color: rgba(255, 255, 255, 0.7);
}

.qzm-stacked-steps.qzm-bg-dark .qzm-stacked-step-arrow svg {
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Stacked Steps - Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .qzm-stacked-steps .qzm-stacked-step-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Reset direction for mobile */
  .qzm-stacked-steps .qzm-stacked-step.qzm-image-left .qzm-stacked-step-grid {
    direction: ltr;
  }

  .qzm-stacked-steps .qzm-stacked-step-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  .qzm-stacked-steps {
    padding: 60px 0;
  }

  .qzm-stacked-steps .qzm-stacked-steps-header {
    margin-bottom: 48px;
  }

  /* Responsive H2 */
  .qzm-stacked-steps .qzm-h2 {
    font-size: 28px;
  }

  .qzm-stacked-steps .qzm-stacked-step-badge {
    width: 48px;
    height: 48px;
  }

  .qzm-stacked-steps .qzm-stacked-step-badge span {
    font-size: 20px;
  }

  .qzm-stacked-steps .qzm-stacked-step-card {
    padding: 40px 20px 24px;
  }

  .qzm-stacked-steps .qzm-stacked-step-title {
    font-size: 20px;
  }

  .qzm-stacked-steps .qzm-stacked-step-arrow {
    padding: 16px 0;
  }

  .qzm-stacked-steps .qzm-stacked-step-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   Quote Box
   ========================================================================== */

.qzm-quote-box {
  padding: 80px 0;
}

/* Background variants */
.qzm-quote-box.qzm-bg-light {
  background-color: var(--qzm-background);
}

.qzm-quote-box.qzm-bg-white {
  background-color: #ffffff;
}

.qzm-quote-box.qzm-bg-dark {
  background-color: var(--qzm-primary);
}

/* Section Label - White mode (plain text) */
.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--qzm-primary);
  margin-bottom: 16px;
}

/* Section Label - Light mode (plain text) */
.qzm-quote-box.qzm-bg-light .qzm-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--qzm-primary);
  margin-bottom: 16px;
}

/* Section Label - Dark mode (pill) */
.qzm-quote-box.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* Header */
.qzm-quote-box-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* H2 - Base styling */
.qzm-quote-box-header .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

/* H2 - White mode */
.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

/* H2 - Light mode */
.qzm-quote-box.qzm-bg-light .qzm-h2 {
  color: var(--qzm-primary);
}

.qzm-quote-box.qzm-bg-light .qzm-h2 .qzm-text-accent {
  color: var(--qzm-primary);
}

/* H2 - Dark mode */
.qzm-quote-box.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-quote-box.qzm-bg-dark .qzm-h2 .qzm-text-accent {
  color: var(--qzm-accent);
}

/* Description - Base styling */
.qzm-quote-box-header .qzm-quote-box-desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Description - White mode */
.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-quote-box-desc {
  color: var(--qzm-foreground-muted);
}

/* Description - Light mode */
.qzm-quote-box.qzm-bg-light .qzm-quote-box-desc {
  color: var(--qzm-foreground-muted);
}

/* Description - Dark mode */
.qzm-quote-box.qzm-bg-dark .qzm-quote-box-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Quote Content Container */
.qzm-quote-box-content {
  margin: 0 auto;
}

/* Width variants */
.qzm-quote-box-small {
  max-width: 600px;
}

.qzm-quote-box-medium {
  max-width: 768px;
}

.qzm-quote-box-large {
  max-width: 960px;
}

.qzm-quote-box-full {
  max-width: 100%;
}

/* Quote Inner Box - Base styling */
.qzm-quote-box-inner {
  padding: 24px 32px;
  border-radius: 16px;
}

/* Quote Inner Box - White mode */
.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-quote-box-inner {
  background: rgba(59, 35, 59, 0.03);
  border: 1px solid rgba(59, 35, 59, 0.1);
}

/* Quote Inner Box - Light mode */
.qzm-quote-box.qzm-bg-light .qzm-quote-box-inner {
  background: rgba(59, 35, 59, 0.05);
  border: 1px solid rgba(59, 35, 59, 0.1);
}

/* Quote Inner Box - Dark mode */
.qzm-quote-box.qzm-bg-dark .qzm-quote-box-inner {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quote Text - Base styling */
.qzm-quote-box-text {
  text-align: center;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

/* Quote Text - White mode */
.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-quote-box-text {
  color: var(--qzm-primary);
}

/* Quote Text - Light mode */
.qzm-quote-box.qzm-bg-light .qzm-quote-box-text {
  color: var(--qzm-primary);
}

/* Quote Text - Dark mode */
.qzm-quote-box.qzm-bg-dark .qzm-quote-box-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Quote Marks */
.qzm-quote-box-mark {
  color: var(--qzm-accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  line-height: 1;
  vertical-align: middle;
}

.qzm-quote-box-mark-open {
  margin-right: 4px;
}

.qzm-quote-box-mark-close {
  margin-left: 4px;
}

/* Quote Body Text - Base styling */
.qzm-quote-box-body {
  font-weight: 500;
}

/* Quote Body Text - White mode */
.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-quote-box-body {
  color: var(--qzm-primary);
}

/* Quote Body Text - Light mode */
.qzm-quote-box.qzm-bg-light .qzm-quote-box-body {
  color: var(--qzm-primary);
}

/* Quote Body Text - Dark mode */
.qzm-quote-box.qzm-bg-dark .qzm-quote-box-body {
  color: rgba(255, 255, 255, 0.9);
}

/* Attribution - Base styling */
.qzm-quote-box-attribution {
  text-align: center;
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 500;
}

/* Attribution - White mode */
.qzm-quote-box:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-quote-box-attribution {
  color: var(--qzm-foreground-muted);
}

/* Attribution - Light mode */
.qzm-quote-box.qzm-bg-light .qzm-quote-box-attribution {
  color: var(--qzm-foreground-muted);
}

/* Attribution - Dark mode */
.qzm-quote-box.qzm-bg-dark .qzm-quote-box-attribution {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Quote Box V2 - Block Style (Large Decorative Quote Icon)
   ========================================================================== */

.qzm-quote-box-block .qzm-quote-box-inner {
  text-align: center;
}

/* Block quote icon - large decorative */
.qzm-quote-box-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.qzm-quote-box-icon svg {
  width: 48px;
  height: 48px;
  color: var(--qzm-accent);
}

/* Block style text - centered */
.qzm-quote-box-block .qzm-quote-box-text {
  text-align: center;
}

/* Block style - hide inline marks */
.qzm-quote-box-block .qzm-quote-box-mark-open,
.qzm-quote-box-block .qzm-quote-box-mark-close {
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  .qzm-quote-box-header .qzm-h2 {
    font-size: 28px;
  }

  .qzm-quote-box-inner {
    padding: 20px 24px;
  }

  .qzm-quote-box-text {
    font-size: 16px;
  }

  .qzm-quote-box-mark {
    font-size: 24px;
  }

  .qzm-quote-box-icon svg {
    width: 40px;
    height: 40px;
  }

  .qzm-quote-box-attribution {
    font-size: 13px;
  }
}

/* ==========================================================================
   Product Overview Section
   ========================================================================== */

.qzm-product-overview {
  padding: 80px 0;
}

/* Header */
.qzm-product-overview-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.qzm-product-overview .qzm-h2 {
  font-family: var(--qzm-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--qzm-foreground);
  margin: 0 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.qzm-product-overview-desc {
  font-family: var(--qzm-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qzm-foreground-muted);
  margin: 0;
}

/* Description - Light/White mode */
.qzm-product-overview:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-product-overview-desc {
  color: var(--qzm-foreground-muted);
}

.qzm-product-overview.qzm-bg-light .qzm-product-overview-desc {
  color: var(--qzm-foreground-muted);
}

/* Section Label - Light/White mode (plain text) */
.qzm-product-overview .qzm-section-label,
.qzm-product-overview.qzm-bg-light .qzm-section-label,
.qzm-product-overview:not(.qzm-bg-dark):not(.qzm-bg-light) .qzm-section-label {
  color: var(--qzm-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Products List */
.qzm-product-overview .qzm-product-overview-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Product Card */
.qzm-product-overview .qzm-product-card {
  position: relative;
}

.qzm-product-overview .qzm-product-card-inner {
  background: var(--qzm-background);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--qzm-card-border);
}

.qzm-product-overview .qzm-product-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Alternating image position */
.qzm-product-overview .qzm-product-card.qzm-image-left .qzm-product-card-grid {
  direction: rtl;
}

.qzm-product-overview .qzm-product-card.qzm-image-left .qzm-product-card-grid > * {
  direction: ltr;
}

/* Content */
.qzm-product-overview .qzm-product-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.qzm-product-overview .qzm-product-card-label {
  display: inline-block;
  font-family: var(--qzm-font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--qzm-foreground-muted);
  margin-bottom: 12px;
}

.qzm-product-overview .qzm-product-card-title,
.qzm-product-overview h3.qzm-product-card-title {
  font-family: var(--qzm-font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--qzm-foreground);
  margin: 0 0 16px;
  text-transform: none;
}

.qzm-product-overview .qzm-product-card-text {
  font-family: var(--qzm-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--qzm-foreground);
  margin: 0 0 20px;
}

/* Bullets */
.qzm-product-overview .qzm-product-card-bullets {
  list-style: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.qzm-product-overview .qzm-product-card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
  font-family: inherit !important;
}

.qzm-product-overview .qzm-product-card-bullets li:last-child {
  margin-bottom: 0 !important;
}

.qzm-product-overview .qzm-product-card-bullets li::before,
.qzm-product-overview .qzm-product-card-bullets li::marker {
  content: none !important;
  display: none !important;
}

.qzm-product-overview .qzm-product-card-bullets .qzm-bullet-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--qzm-primary);
  margin-top: 0;
}

.qzm-product-overview .qzm-product-card-bullets .qzm-bullet-icon svg {
  width: 18px;
  height: 18px;
}

.qzm-product-overview .qzm-product-card-bullets .qzm-bullet-text {
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--qzm-foreground);
}

/* Quote */
.qzm-product-card-quote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--qzm-accent);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  background: var(--qzm-background);
  border-radius: 0 8px 8px 0;
  color: var(--qzm-foreground);
}

.qzm-product-overview.qzm-bg-light .qzm-product-card-quote {
  background: var(--qzm-card-bg);
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-quote {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--qzm-accent);
}

/* Operational Notes */
.qzm-product-card-notes {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--qzm-background);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.qzm-product-overview.qzm-bg-light .qzm-product-card-notes {
  background: var(--qzm-card-bg);
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-notes {
  background: rgba(255, 255, 255, 0.05);
}

.qzm-product-card-notes .qzm-note-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.qzm-product-card-notes .qzm-note-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--qzm-primary);
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-notes .qzm-note-icon svg {
  stroke: var(--qzm-accent);
}

.qzm-product-card-notes span:not(.qzm-note-icon) {
  color: var(--qzm-foreground-muted);
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-notes span:not(.qzm-note-icon) {
  color: rgba(255, 255, 255, 0.7);
}

/* Text Link CTA */
.qzm-product-overview .qzm-product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--qzm-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--qzm-primary);
  text-decoration: none;
  transition: gap var(--qzm-transition-base);
}

.qzm-product-overview .qzm-product-card-link:hover {
  gap: 12px;
}

.qzm-product-overview .qzm-product-card-link .qzm-link-arrow {
  width: 16px;
  height: 16px;
}

.qzm-product-overview .qzm-product-card-link .qzm-link-arrow svg {
  width: 16px;
  height: 16px;
}

/* Image */
.qzm-product-overview .qzm-product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzm-product-overview .qzm-product-card-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Section CTA */
.qzm-product-overview .qzm-product-overview-cta {
  text-align: center;
  margin-top: 64px;
}

/* CTA Button - Match hero button styling */
.qzm-product-overview-cta .qzm-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* CTA Button - Light/White mode */
.qzm-product-overview-cta .qzm-btn-primary,
.qzm-product-overview.qzm-bg-light .qzm-product-overview-cta .qzm-btn-primary {
  background: var(--qzm-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.qzm-product-overview-cta .qzm-btn-primary:hover,
.qzm-product-overview.qzm-bg-light .qzm-product-overview-cta .qzm-btn-primary:hover {
  background: var(--qzm-primary-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* CTA Button - Dark mode */
.qzm-product-overview.qzm-bg-dark .qzm-product-overview-cta .qzm-btn-primary {
  background: var(--qzm-accent) !important;
  color: var(--qzm-primary) !important;
  border: none !important;
}

.qzm-product-overview.qzm-bg-dark .qzm-product-overview-cta .qzm-btn-primary:hover {
  background: #ffffff !important;
  color: var(--qzm-primary) !important;
  transform: translateY(-2px);
}

/* Dark Mode */
.qzm-product-overview.qzm-bg-dark {
  background: var(--qzm-primary);
}

.qzm-product-overview.qzm-bg-dark .qzm-section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--qzm-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 16px;
}

.qzm-product-overview.qzm-bg-dark .qzm-h2 {
  color: #ffffff;
}

.qzm-product-overview.qzm-bg-dark .qzm-product-overview-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-inner {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-label {
  color: var(--qzm-accent);
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-title {
  color: #ffffff;
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-text {
  color: #ffffff;
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-bullets .qzm-bullet-icon {
  color: var(--qzm-accent);
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-bullets .qzm-bullet-text {
  color: #ffffff;
}

.qzm-product-overview.qzm-bg-dark .qzm-product-card-link {
  color: var(--qzm-accent);
}

/* Light Mode */
.qzm-product-overview.qzm-bg-light {
  background: var(--qzm-background);
}

.qzm-product-overview.qzm-bg-light .qzm-product-card-inner {
  background: #ffffff;
}

/* No Cards Style - removes card background/border */
.qzm-product-overview.qzm-no-cards .qzm-product-card-inner {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

/* Increase gap between products when no cards, remove width constraint */
.qzm-product-overview.qzm-no-cards .qzm-product-overview-list {
  gap: 80px;
  max-width: none;
}

/* Increase gap between text and image columns when no cards */
.qzm-product-overview.qzm-no-cards .qzm-product-card-grid {
  gap: 150px;
}

/* Dark mode no cards */
.qzm-product-overview.qzm-bg-dark.qzm-no-cards .qzm-product-card-inner {
  background: transparent;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .qzm-product-overview .qzm-product-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .qzm-product-overview .qzm-product-card.qzm-image-left .qzm-product-card-grid,
  .qzm-product-overview .qzm-product-card.qzm-image-right .qzm-product-card-grid {
    direction: ltr;
  }

  .qzm-product-overview .qzm-product-card-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  .qzm-product-overview {
    padding: 60px 0;
  }

  .qzm-product-overview .qzm-product-overview-header {
    margin-bottom: 48px;
  }

  .qzm-product-overview .qzm-h2 {
    font-size: 28px;
  }

  .qzm-product-overview .qzm-product-card-inner {
    padding: 32px 24px;
  }

  .qzm-product-overview .qzm-product-card-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   UI Mockup Element
   CSS-styled mockups for charts, tables, and conversations
   ========================================================================== */

/* Frame Container */
.qzm-ui-mockup {
  width: 100%;
}

.qzm-ui-mockup .qzm-ui-mockup-frame {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

/* Shadow toggle for mockups - simple ON/OFF control */
.qzm-ui-mockup.qzm-visual-shadow .qzm-ui-mockup-frame {
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
}

/* Visual wrapper for images */
.qzm-visual-wrapper {
  display: inline-block;
  max-width: 100%;
}

.qzm-visual-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.qzm-visual-wrapper.qzm-visual-card {
  background: var(--qzm-background);
  border: 1px solid var(--qzm-card-border);
  padding: 10px;
  border-radius: 12px;
  box-sizing: border-box;
  min-height: 300px;
}

.qzm-visual-wrapper.qzm-visual-card img {
  border-radius: 8px;
}

.qzm-visual-wrapper.qzm-visual-shadow {
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
}

/* Light background adjustments for visual wrapper */
.qzm-bg-light .qzm-visual-wrapper.qzm-visual-card {
  background: var(--qzm-card-bg);
}

/* Dark background adjustments for visual wrapper */
.qzm-bg-dark .qzm-visual-wrapper.qzm-visual-card {
  background: var(--qzm-primary-light, #5a3d5a);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Light background adjustments for mockup frame */
.qzm-bg-light .qzm-ui-mockup .qzm-ui-mockup-frame {
  background: #ffffff;
}

/* Window Chrome Header */
.qzm-ui-mockup .qzm-ui-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.qzm-ui-mockup .qzm-ui-mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.qzm-ui-mockup .qzm-ui-mockup-dot-red {
  background: #ef4444;
}

.qzm-ui-mockup .qzm-ui-mockup-dot-yellow {
  background: #f59e0b;
}

.qzm-ui-mockup .qzm-ui-mockup-dot-green {
  background: #22c55e;
}

/* Content Area */
.qzm-ui-mockup .qzm-ui-mockup-content {
  padding: 20px;
}

/* Input/Question Box */
.qzm-ui-mockup .qzm-ui-mockup-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
}

.qzm-ui-mockup .qzm-ui-mockup-input-icon {
  font-size: 1rem;
}

.qzm-ui-mockup .qzm-ui-mockup-input span {
  font-family: var(--qzm-font-body);
  font-size: 1.15rem;
  color: #1e293b;
  font-weight: 500;
}

/* Response Box */
.qzm-ui-mockup .qzm-ui-mockup-response {
  padding: 20px;
  background: linear-gradient(135deg, var(--qzm-primary) 0%, var(--qzm-primary-light) 100%);
  border-radius: 12px;
}

.qzm-ui-mockup .qzm-ui-mockup-response-title {
  font-family: var(--qzm-font-body);
  font-size: 1.35rem;
  color: white;
  margin: 0 0 20px 0;
  font-weight: 500;
}

/* Bar Chart */
.qzm-ui-mockup .qzm-ui-mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 180px;
  padding: 24px 24px 48px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.qzm-ui-mockup .qzm-ui-mockup-bar {
  flex: 1;
  background: var(--qzm-accent);
  border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.qzm-ui-mockup .qzm-ui-mockup-bar .bar-value {
  font-family: var(--qzm-font-body);
  font-size: 1rem;
  color: var(--qzm-accent-dark);
  font-weight: 700;
  white-space: nowrap;
  padding-top: 8px;
}

.qzm-ui-mockup .qzm-ui-mockup-bar .bar-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--qzm-font-body);
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
  white-space: nowrap;
}

/* Table */
.qzm-ui-mockup .qzm-ui-mockup-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.qzm-ui-mockup .qzm-ui-mockup-table-row {
  display: grid;
  grid-template-columns: 1fr 110px 100px;
  padding: 16px 24px;
  font-family: var(--qzm-font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qzm-ui-mockup .qzm-ui-mockup-table-row:last-child {
  border-bottom: none;
}

.qzm-ui-mockup .qzm-ui-mockup-table-header {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--qzm-accent);
  font-weight: 600;
}

.qzm-ui-mockup .qzm-ui-mockup-table-row span:not(:first-child) {
  text-align: right;
}

/* Responsive */
@media (max-width: 600px) {
  .qzm-ui-mockup .qzm-ui-mockup-chart {
    height: 140px;
    padding: 16px 16px 40px 16px;
  }

  .qzm-ui-mockup .qzm-ui-mockup-bar .bar-value {
    font-size: 0.85rem;
    padding-top: 5px;
  }

  .qzm-ui-mockup .qzm-ui-mockup-bar .bar-label {
    font-size: 0.8rem;
    bottom: -24px;
  }

  .qzm-ui-mockup .qzm-ui-mockup-table-row {
    grid-template-columns: 1fr 90px 80px;
    font-size: 1rem;
    padding: 14px 16px;
  }
}

/* ========================================
   Stats Grid Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qzm-ui-mockup .qzm-ui-mockup-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qzm-ui-mockup .stat-label {
  font-family: var(--qzm-font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.qzm-ui-mockup .stat-value {
  font-family: var(--qzm-font-heading);
  font-size: 1.75rem;
  color: white;
  font-weight: 600;
}

.qzm-ui-mockup .stat-change {
  font-family: var(--qzm-font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.qzm-ui-mockup .stat-change.positive {
  color: #22c55e;
}

.qzm-ui-mockup .stat-change.negative {
  color: #ef4444;
}

.qzm-ui-mockup .stat-change.neutral {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Insights Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-insights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qzm-ui-mockup .qzm-ui-mockup-insight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.qzm-ui-mockup .qzm-ui-mockup-insight.alert {
  background: rgba(239, 68, 68, 0.15);
  border-left: 3px solid #ef4444;
}

.qzm-ui-mockup .qzm-ui-mockup-insight.positive {
  background: rgba(34, 197, 94, 0.15);
  border-left: 3px solid #22c55e;
}

.qzm-ui-mockup .qzm-ui-mockup-insight.action {
  background: rgba(59, 130, 246, 0.15);
  border-left: 3px solid #3b82f6;
}

.qzm-ui-mockup .insight-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.qzm-ui-mockup .insight-text {
  font-family: var(--qzm-font-body);
  font-size: 1.05rem;
  color: white;
  font-weight: 500;
  line-height: 1.4;
}

/* ========================================
   Comparison Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col {
  padding: 24px;
  border-radius: 12px;
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col.negative {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col.positive {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col h4 {
  font-family: var(--qzm-font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 16px 0;
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col li {
  font-family: var(--qzm-font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col.negative li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
}

.qzm-ui-mockup .qzm-ui-mockup-comparison-col.positive li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* ========================================
   Pipeline Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-pipeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qzm-ui-mockup .pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qzm-ui-mockup .pipeline-title {
  font-family: var(--qzm-font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.qzm-ui-mockup .pipeline-total {
  font-family: var(--qzm-font-heading);
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

.qzm-ui-mockup .pipeline-bars {
  display: flex;
  gap: 4px;
  height: 60px;
  align-items: flex-end;
}

.qzm-ui-mockup .pipeline-stage {
  background: var(--qzm-accent);
  border-radius: 4px 4px 0 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  min-width: 60px;
}

.qzm-ui-mockup .pipeline-stage span {
  font-family: var(--qzm-font-body);
  font-size: 0.85rem;
  color: var(--qzm-primary);
  font-weight: 500;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ========================================
   Timeline Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 16px;
}

.qzm-ui-mockup .qzm-ui-mockup-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}

.qzm-ui-mockup .qzm-ui-mockup-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 40px;
  bottom: -8px;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.qzm-ui-mockup .timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  margin-top: 4px;
}

.qzm-ui-mockup .qzm-ui-mockup-timeline-item.completed .timeline-dot {
  background: #22c55e;
}

.qzm-ui-mockup .qzm-ui-mockup-timeline-item.active .timeline-dot {
  background: var(--qzm-accent);
  box-shadow: 0 0 0 4px rgba(219, 167, 142, 0.3);
}

.qzm-ui-mockup .qzm-ui-mockup-timeline-item.pending .timeline-dot {
  background: rgba(255, 255, 255, 0.3);
}

.qzm-ui-mockup .timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qzm-ui-mockup .timeline-date {
  font-family: var(--qzm-font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.qzm-ui-mockup .timeline-text {
  font-family: var(--qzm-font-body);
  font-size: 1.05rem;
  color: white;
  font-weight: 500;
}

/* ========================================
   Lead Score Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-leadscore {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qzm-ui-mockup .qzm-ui-mockup-lead {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.qzm-ui-mockup .lead-score {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--qzm-font-body);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.qzm-ui-mockup .lead-score.high {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.qzm-ui-mockup .lead-score.medium {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.qzm-ui-mockup .lead-score.low {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.qzm-ui-mockup .lead-name {
  font-family: var(--qzm-font-body);
  font-size: 1.05rem;
  color: white;
  font-weight: 500;
  flex: 1;
}

.qzm-ui-mockup .lead-value {
  font-family: var(--qzm-font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ========================================
   Audience Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-audience {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qzm-ui-mockup .qzm-ui-mockup-audience-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
}

.qzm-ui-mockup .audience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.qzm-ui-mockup .audience-name {
  font-family: var(--qzm-font-body);
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

.qzm-ui-mockup .audience-size {
  font-family: var(--qzm-font-body);
  font-size: 1rem;
  color: var(--qzm-accent);
  font-weight: 600;
}

.qzm-ui-mockup .audience-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qzm-ui-mockup .destination-badge {
  font-family: var(--qzm-font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ========================================
   Flow Mockup
   ======================================== */
.qzm-ui-mockup .qzm-ui-mockup-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qzm-ui-mockup .qzm-ui-mockup-flow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.qzm-ui-mockup .flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--qzm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--qzm-primary);
  flex-shrink: 0;
}

.qzm-ui-mockup .flow-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.qzm-ui-mockup .flow-title {
  font-family: var(--qzm-font-body);
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

.qzm-ui-mockup .flow-subtitle {
  font-family: var(--qzm-font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.qzm-ui-mockup .flow-badge {
  font-family: var(--qzm-font-body);
  font-size: 0.8rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* New Mockups Responsive */
@media (max-width: 600px) {
  .qzm-ui-mockup .qzm-ui-mockup-stats-grid {
    grid-template-columns: 1fr;
  }

  .qzm-ui-mockup .qzm-ui-mockup-comparison {
    grid-template-columns: 1fr;
  }

  .qzm-ui-mockup .pipeline-stage span {
    font-size: 0.75rem;
  }
}
