/* ============================================================
   CyFuture — Marketing Page Overrides
   Aesthetic: British Institutional Elegance
   Loads after dazzle.css — all rules override framework defaults
   ============================================================ */

/* --- Display serif for headlines --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

/* --- Design tokens --- */
:root {
  --cf-navy: oklch(0.30 0.12 260);
  --cf-navy-deep: oklch(0.22 0.10 260);
  --cf-navy-light: oklch(0.40 0.14 260);
  --cf-teal: oklch(0.65 0.14 190);
  --cf-teal-soft: oklch(0.75 0.10 190);
  --cf-warm-white: oklch(0.985 0.003 90);
  --cf-warm-grey: oklch(0.96 0.005 90);
  --cf-text-primary: oklch(0.20 0.02 260);
  --cf-text-secondary: oklch(0.45 0.02 260);
  --cf-border: oklch(0.90 0.01 260);
  --cf-shadow-sm:
    0 1px 3px oklch(0.20 0.02 260 / 0.06),
    0 1px 2px oklch(0.20 0.02 260 / 0.04);
  --cf-shadow-md:
    0 4px 12px oklch(0.20 0.02 260 / 0.08),
    0 2px 4px oklch(0.20 0.02 260 / 0.04);
  --cf-shadow-lg:
    0 12px 32px oklch(0.20 0.02 260 / 0.12),
    0 4px 8px oklch(0.20 0.02 260 / 0.06);
  --cf-shadow-glow: 0 8px 40px oklch(0.40 0.15 260 / 0.2);
  --cf-radius: 0.75rem;
  --cf-radius-lg: 1rem;
  --cf-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --cf-transition: 0.3s var(--cf-ease);
  --cf-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* --- Serif headline treatment across all sections --- */
.dz-hero-text,
.dz-section-hero h1,
.dz-section-features .dz-section-header h2,
.dz-section-pricing .dz-section-header h2,
.dz-section-pricing h2,
.dz-section-steps .dz-section-header h2,
.dz-section-testimonials .dz-section-header h2,
.dz-section-faq .dz-section-header h2,
.dz-section-cta h2,
.dz-section-card-grid .dz-section-header h2,
.dz-section-split-content h2,
.dz-section-value-highlight h2,
.dz-section-value-highlight .dz-value-headline,
.dz-section-trust-bar .dz-section-header h2 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* --- Section header spacing & type --- */
.dz-section-header {
  margin-bottom: 3.5rem;
}

.dz-section-header h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  color: var(--cf-text-primary);
}

.dz-section-header .dz-subhead {
  font-size: 1.15rem;
  color: var(--cf-text-secondary);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --- Warm alternating backgrounds --- */
.dz-section-features,
.dz-section-steps,
.dz-section-faq {
  background: var(--cf-warm-white);
}

.dz-section-testimonials,
.dz-section-card-grid {
  background: var(--cf-warm-grey);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes heroZoom {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-0.5%, -0.5%);
  }
}

@keyframes heroDrift {
  0%, 100% {
    transform: scale(1.05) translate(0, 0);
  }
  33% {
    transform: scale(1.07) translate(0.8%, -0.4%);
  }
  66% {
    transform: scale(1.05) translate(-0.4%, 0.3%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 20px 60px oklch(0 0 0 / 0.35),
      0 0 30px oklch(0.50 0.15 190 / 0.08);
  }
  50% {
    box-shadow:
      0 25px 70px oklch(0 0 0 / 0.4),
      0 0 50px oklch(0.50 0.15 190 / 0.15);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Reduced motion — disable all hero animations */
@media (prefers-reduced-motion: reduce) {
  .dz-section-hero::before,
  .dz-section-hero h1,
  .dz-section-hero .dz-subhead,
  .dz-section-hero .dz-cta-group,
  .dz-hero-with-media .dz-hero-media,
  .dz-hero-with-media .dz-hero-image {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .dz-section-hero::before {
    transform: scale(1.02) !important;
  }
}


/* ============================================================
   HERO — Cinematic backgrounds with Ken Burns
   ============================================================ */

/* --- Base hero structure --- */
.dz-section-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Background image layer (behind everything) */
.dz-section-hero::before {
  content: '';
  position: absolute;
  inset: -6%;
  z-index: 0;
  will-change: transform;
}

/* Gradient overlay + grain (between image and content) */
.dz-section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Content above all layers */
.dz-section-hero > * {
  position: relative;
  z-index: 2;
}


/* --- Homepage hero — London skyline with Ken Burns --- */
.dz-section-hero:has(.dz-hero-with-media) {
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.dz-section-hero:has(.dz-hero-with-media)::before {
  background: url('/static/images/hero-london.webp') center 60% / cover no-repeat;
  animation: heroZoom 28s ease-in-out infinite;
}

.dz-section-hero:has(.dz-hero-with-media)::after {
  background:
    var(--cf-grain),
    radial-gradient(ellipse at 30% 50%, oklch(0.22 0.18 270 / 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at center, transparent 30%, oklch(0.08 0.06 260 / 0.5) 100%),
    linear-gradient(
      165deg,
      oklch(0.12 0.10 260 / 0.88) 0%,
      oklch(0.18 0.12 255 / 0.82) 30%,
      oklch(0.15 0.08 250 / 0.84) 60%,
      oklch(0.10 0.06 260 / 0.92) 100%
    );
}


/* --- Inner page heroes — network constellation with drift --- */
.dz-section-hero:not(:has(.dz-hero-with-media)) {
  padding: 7rem 1.5rem 5rem;
  text-align: center;
}

.dz-section-hero:not(:has(.dz-hero-with-media))::before {
  background: url('/static/images/hero-network.webp') center / cover no-repeat;
  animation: heroDrift 35s ease-in-out infinite;
}

.dz-section-hero:not(:has(.dz-hero-with-media))::after {
  background:
    var(--cf-grain),
    radial-gradient(ellipse at center, transparent 40%, oklch(0.08 0.06 260 / 0.4) 100%),
    linear-gradient(
      160deg,
      oklch(0.12 0.10 260 / 0.82) 0%,
      oklch(0.18 0.12 255 / 0.76) 40%,
      oklch(0.14 0.08 248 / 0.84) 100%
    );
}


/* --- Staggered entrance animations --- */
.dz-section-hero h1 {
  animation: fadeInUp 0.9s ease-out 0.2s both;
}

.dz-section-hero .dz-subhead {
  animation: fadeInUp 0.9s ease-out 0.45s both;
}

.dz-section-hero .dz-cta-group {
  animation: fadeInUp 0.9s ease-out 0.7s both;
}


/* --- Hero headline typography --- */
.dz-section-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  text-shadow: 0 2px 30px oklch(0 0 0 / 0.4);
}

.dz-section-hero .dz-subhead {
  font-size: 1.2rem;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 32rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 15px oklch(0 0 0 / 0.3);
}

/* Inner page centering */
.dz-section-hero:not(:has(.dz-hero-with-media)) .dz-subhead {
  margin-left: auto;
  margin-right: auto;
}

.dz-section-hero:not(:has(.dz-hero-with-media)) .dz-cta-group {
  justify-content: center;
}


/* --- Homepage hero with media layout --- */
.dz-hero-with-media {
  padding: 6rem 2rem;
  gap: 4rem;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.dz-hero-with-media .dz-section-content {
  flex: 0.9;
}

/* Hero image — floating glass card with animated glow */
.dz-hero-with-media .dz-hero-media {
  flex: 1.5;
  max-width: 58%;
  position: relative;
  animation: fadeInScale 1.1s ease-out 0.5s both;
}

/* Frosted glass backdrop */
.dz-hero-with-media .dz-hero-media::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  right: -14px;
  bottom: -14px;
  background: oklch(1 0 0 / 0.07);
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: calc(var(--cf-radius-lg) + 14px);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 8px 40px oklch(0 0 0 / 0.2);
  z-index: 0;
}

.dz-hero-with-media .dz-hero-image {
  position: relative;
  z-index: 1;
  border-radius: var(--cf-radius-lg);
  border: 1px solid oklch(1 0 0 / 0.12);
  animation: pulseGlow 5s ease-in-out infinite;
}


/* ============================================================
   BUTTONS — globally refined
   ============================================================ */

/* Hero & CTA buttons — larger */
.dz-section-hero .btn,
.dz-section-cta .btn {
  padding: 0 2.25rem;
  height: 3.5rem;
  min-height: 3.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all var(--cf-transition);
}

.dz-section-hero .btn-primary,
.dz-section-cta .btn-primary {
  background: white;
  color: var(--cf-navy);
  border-color: white;
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.2);
}

.dz-section-hero .btn-primary:hover,
.dz-section-cta .btn-primary:hover {
  background: oklch(0.97 0.005 90);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px oklch(0 0 0 / 0.25);
}

.dz-section-hero .btn-secondary,
.dz-section-hero .btn-outline,
.dz-section-cta .btn-secondary,
.dz-section-cta .btn-outline {
  background: oklch(1 0 0 / 0.08);
  color: white;
  border-color: oklch(1 0 0 / 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dz-section-hero .btn-secondary:hover,
.dz-section-hero .btn-outline:hover,
.dz-section-cta .btn-secondary:hover,
.dz-section-cta .btn-outline:hover {
  background: oklch(1 0 0 / 0.15);
  border-color: oklch(1 0 0 / 0.5);
  transform: translateY(-2px);
}

.dz-cta-group {
  gap: 1rem;
  margin-top: 0.5rem;
}

/* All non-hero buttons get smooth transitions */
.dz-section:not(.dz-section-hero):not(.dz-section-cta) .btn {
  transition: all var(--cf-transition);
  border-radius: 0.5rem;
}

.dz-section:not(.dz-section-hero):not(.dz-section-cta) .btn:hover {
  transform: translateY(-1px);
}


/* ============================================================
   FEATURE CARDS
   ============================================================ */

.dz-section-features {
  padding: 6rem 1.5rem;
}

.dz-features-grid {
  gap: 1.5rem;
  align-items: stretch;
}

.dz-feature-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-lg);
  background: white;
  box-shadow: var(--cf-shadow-sm);
  transition: all var(--cf-transition);
}

.dz-feature-item:hover {
  box-shadow: var(--cf-shadow-md);
  transform: translateY(-4px);
  border-color: oklch(0.82 0.05 260);
}

.dz-feature-item .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.dz-feature-item .card-title,
.dz-feature-item h3 {
  font-size: 1.125rem;
  font-weight: 650;
  color: var(--cf-text-primary);
  margin-bottom: 0.75rem;
}

.dz-feature-item p {
  flex-grow: 1;
  color: var(--cf-text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Icon containers — larger with tinted background */
.dz-feature-icon,
.dz-feature-item .card-body > [data-lucide],
.dz-feature-item .card-body > svg {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.625rem;
  border-radius: 0.75rem;
  background: oklch(0.94 0.04 260);
  color: var(--cf-navy);
  margin-bottom: 1.25rem;
  transition: background var(--cf-transition);
}

.dz-feature-item:hover .dz-feature-icon,
.dz-feature-item:hover [data-lucide] {
  background: oklch(0.90 0.06 260);
}


/* ============================================================
   PRICING
   ============================================================ */

.dz-section-pricing {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--cf-warm-grey) 0%, var(--cf-warm-white) 100%);
}

.dz-pricing-grid {
  gap: 1.5rem;
  align-items: stretch;
}

.dz-pricing-tier {
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-lg);
  padding: 2.5rem 2rem;
  background: white;
  box-shadow: var(--cf-shadow-sm);
  transition: all var(--cf-transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.dz-pricing-tier:hover {
  box-shadow: var(--cf-shadow-md);
  transform: translateY(-2px);
}

.dz-pricing-tier h3 {
  color: var(--cf-text-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

/* --- Highlighted (featured) tier --- */
.dz-pricing-highlighted {
  border-color: var(--cf-navy);
  border-width: 2px;
  box-shadow: var(--cf-shadow-lg);
  transform: scale(1.03);
  z-index: 2;
  overflow: visible;
}

.dz-pricing-highlighted::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cf-navy);
  color: white;
  padding: 0.3rem 1.25rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dz-pricing-highlighted:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: var(--cf-shadow-glow);
}

/* highlighted tier button — white on navy bg, or navy filled if bg is white */
.dz-pricing-highlighted .btn {
  background: var(--cf-navy) !important;
  border-color: var(--cf-navy) !important;
  color: white !important;
}

.dz-pricing-highlighted .btn:hover {
  background: var(--cf-navy-light) !important;
  border-color: var(--cf-navy-light) !important;
}

/* Price typography */
.dz-pricing-price {
  margin: 1.5rem 0 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.dz-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cf-text-primary);
}

.dz-period {
  font-size: 0.95rem;
  color: var(--cf-text-secondary);
}

/* Feature list with checkmarks */
.dz-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.dz-pricing-features li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-size: 0.925rem;
  color: var(--cf-text-secondary);
  border-bottom: 1px solid oklch(0.93 0.005 260);
  line-height: 1.5;
  position: relative;
}

.dz-pricing-features li:last-child {
  border-bottom: none;
}

.dz-pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--cf-teal);
  font-weight: 700;
}

/* Highlighted tier feature list — keep readable */
.dz-pricing-highlighted .dz-pricing-features li {
  border-bottom-color: oklch(1 0 0 / 0.15);
}

/* Tier CTA button — full width */
.dz-pricing-tier .btn {
  margin-top: auto;
  width: 100%;
  height: 3rem;
  min-height: 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.5rem;
}


/* ============================================================
   STEPS
   ============================================================ */

.dz-section-steps {
  padding: 6rem 1.5rem;
}

.dz-step-number {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--cf-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  box-shadow: 0 4px 12px oklch(0.30 0.12 260 / 0.3);
  transition: all var(--cf-transition);
}

.step:hover .dz-step-number,
.dz-step-item:hover .dz-step-number {
  transform: scale(1.08);
  box-shadow: 0 6px 16px oklch(0.30 0.12 260 / 0.4);
}

.dz-step-content h3 {
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--cf-text-primary);
  margin-bottom: 0.5rem;
}

.dz-step-content p {
  color: var(--cf-text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* connector lines (desktop) */
@media (min-width: 1024px) {
  .dz-section-steps .step::before {
    background: oklch(0.85 0.03 260) !important;
    height: 2px !important;
  }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */

.dz-section-testimonials {
  padding: 6rem 1.5rem;
}

.dz-testimonials-grid {
  gap: 2rem;
}

.dz-section-testimonials .card {
  background: white;
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-lg);
  box-shadow: var(--cf-shadow-sm);
  transition: all var(--cf-transition);
  position: relative;
  overflow: visible;
}

.dz-section-testimonials .card:hover {
  box-shadow: var(--cf-shadow-md);
  transform: translateY(-3px);
}

.dz-section-testimonials .card-body {
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

/* decorative opening quotation mark */
.dz-section-testimonials .card-body::before {
  content: '\201C';
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: oklch(0.40 0.12 260 / 0.1);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  pointer-events: none;
}

/* quote text */
.dz-section-testimonials .card-body .italic,
.dz-section-testimonials .card-body p:first-child {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cf-text-primary);
  position: relative;
  z-index: 1;
}

/* author name */
.dz-section-testimonials .card-body .font-medium {
  font-weight: 650;
  color: var(--cf-text-primary);
  font-size: 0.95rem;
}

/* author role */
.dz-section-testimonials .card-body .text-sm {
  color: var(--cf-text-secondary);
  font-size: 0.85rem;
}

/* accent bar at top of card */
.dz-section-testimonials .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--cf-navy), var(--cf-teal));
  border-radius: 0 0 2px 2px;
}


/* ============================================================
   FAQ
   ============================================================ */

.dz-section-faq {
  padding: 6rem 1.5rem;
}

.dz-faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dz-faq-list .collapse {
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius) !important;
  background: white;
  transition: all var(--cf-transition);
}

.dz-faq-list .collapse:hover {
  border-color: oklch(0.82 0.05 260);
}

.dz-faq-list .collapse-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cf-text-primary);
  padding: 1.25rem 1.5rem;
  min-height: auto;
}

.dz-faq-list .collapse-content {
  padding: 0 1.5rem 1.25rem;
}

.dz-faq-list .collapse-content p {
  color: var(--cf-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* open state accent */
.dz-faq-list .collapse input:checked ~ .collapse-title {
  color: var(--cf-navy);
}


/* ============================================================
   CTA SECTIONS
   ============================================================ */

.dz-section-cta {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* CTA uses the network background too */
.dz-section-cta::before {
  content: '';
  position: absolute;
  inset: -6%;
  background: url('/static/images/hero-network.webp') center / cover no-repeat;
  animation: heroDrift 35s ease-in-out infinite;
  z-index: 0;
  will-change: transform;
}

.dz-section-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    var(--cf-grain),
    radial-gradient(ellipse at center, transparent 30%, oklch(0.08 0.06 260 / 0.5) 100%),
    linear-gradient(
      160deg,
      oklch(0.14 0.10 260 / 0.88) 0%,
      oklch(0.20 0.12 255 / 0.84) 50%,
      oklch(0.16 0.08 248 / 0.90) 100%
    );
}

.dz-section-cta > * {
  position: relative;
  z-index: 2;
}

.dz-section-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-wrap: balance;
  text-shadow: 0 2px 20px oklch(0 0 0 / 0.3);
}

.dz-section-cta .dz-subhead {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px oklch(0 0 0 / 0.2);
}

/* Reduced motion for CTA */
@media (prefers-reduced-motion: reduce) {
  .dz-section-cta::before {
    animation: none !important;
    transform: scale(1.02) !important;
  }
}


/* ============================================================
   CARD GRID
   ============================================================ */

.dz-section-card-grid {
  padding: 6rem 1.5rem;
}

.dz-card-grid {
  gap: 1.5rem;
  align-items: stretch;
}

.dz-card-item {
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-lg);
  padding: 2rem;
  background: white;
  box-shadow: var(--cf-shadow-sm);
  transition: all var(--cf-transition);
  display: flex;
  flex-direction: column;
}

.dz-card-item:hover {
  box-shadow: var(--cf-shadow-md);
  transform: translateY(-4px);
  border-color: oklch(0.82 0.05 260);
}

.dz-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  background: oklch(0.94 0.04 260);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--cf-transition);
}

.dz-card-item:hover .dz-card-icon {
  background: oklch(0.90 0.06 260);
}

.dz-card-icon svg,
.dz-card-icon [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--cf-navy);
}

.dz-card-item h3 {
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--cf-text-primary);
  margin-bottom: 0.75rem;
}

.dz-card-item p {
  color: var(--cf-text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
  flex-grow: 1;
}

.dz-card-item .btn {
  align-self: flex-start;
  margin-top: 1.25rem;
}


/* ============================================================
   SPLIT CONTENT
   ============================================================ */

.dz-section-split-content {
  padding: 5rem 1.5rem;
}

.dz-split-grid {
  gap: 4rem;
  align-items: center;
}

.dz-split-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--cf-text-primary);
}

.dz-split-text p {
  color: var(--cf-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

/* bold text in markdown bullet lists */
.dz-split-text strong {
  color: var(--cf-text-primary);
  font-weight: 650;
}

.dz-split-media img {
  border-radius: var(--cf-radius-lg);
  box-shadow: var(--cf-shadow-md);
  transition: box-shadow var(--cf-transition);
}

.dz-section-split-content:hover .dz-split-media img {
  box-shadow: var(--cf-shadow-lg);
}

/* alternating backgrounds for visual rhythm */
.dz-section-split-content:nth-of-type(even) {
  background: var(--cf-warm-grey);
}


/* ============================================================
   TRUST BAR
   ============================================================ */

.dz-section-trust-bar {
  padding: 2.5rem 1.5rem;
  background: var(--cf-warm-grey);
  border-top: 1px solid var(--cf-border);
  border-bottom: 1px solid var(--cf-border);
}

.dz-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.dz-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cf-text-secondary);
  letter-spacing: 0.01em;
  transition: color var(--cf-transition);
}

.dz-trust-item:hover {
  color: var(--cf-navy);
}

.dz-trust-item svg,
.dz-trust-item [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--cf-teal);
  flex-shrink: 0;
}


/* ============================================================
   VALUE HIGHLIGHT
   ============================================================ */

.dz-section-value-highlight {
  padding: 6rem 1.5rem;
  background: var(--cf-warm-grey);
  text-align: center;
}

.dz-section-value-highlight h2,
.dz-value-headline {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--cf-text-primary);
  margin-bottom: 1.5rem;
}

.dz-value-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cf-text-secondary);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   MARKDOWN CONTENT SECTIONS (about page story, etc.)
   ============================================================ */

.dz-section-markdown .dz-section-content {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.dz-section-markdown p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cf-text-secondary);
  margin-bottom: 1.25rem;
}

.dz-section-markdown ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.dz-section-markdown li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cf-text-secondary);
}

.dz-section-markdown li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cf-teal);
}

.dz-section-markdown strong {
  color: var(--cf-text-primary);
  font-weight: 650;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

nav,
[role="banner"] nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* ============================================================
   FOOTER
   ============================================================ */

footer,
[role="contentinfo"] {
  background: oklch(0.15 0.04 260);
}

footer h4,
[role="contentinfo"] h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
}


/* ============================================================
   SELECTION COLOR
   ============================================================ */

::selection {
  background: oklch(0.45 0.15 260 / 0.25);
  color: var(--cf-text-primary);
}


/* ============================================================
   DARK MODE
   ============================================================ */

[data-theme="dark"] {
  --cf-warm-white: oklch(0.15 0.01 260);
  --cf-warm-grey: oklch(0.13 0.01 260);
  --cf-text-primary: oklch(0.92 0.01 260);
  --cf-text-secondary: oklch(0.70 0.02 260);
  --cf-border: oklch(0.25 0.02 260);
  --cf-shadow-sm:
    0 1px 3px oklch(0 0 0 / 0.2),
    0 1px 2px oklch(0 0 0 / 0.15);
  --cf-shadow-md:
    0 4px 12px oklch(0 0 0 / 0.3),
    0 2px 4px oklch(0 0 0 / 0.2);
  --cf-shadow-lg:
    0 12px 32px oklch(0 0 0 / 0.4),
    0 4px 8px oklch(0 0 0 / 0.25);
}

[data-theme="dark"] .dz-feature-item,
[data-theme="dark"] .dz-card-item,
[data-theme="dark"] .dz-pricing-tier,
[data-theme="dark"] .dz-section-testimonials .card,
[data-theme="dark"] .dz-faq-list .collapse {
  background: oklch(0.18 0.015 260);
  border-color: oklch(0.25 0.02 260);
}

[data-theme="dark"] .dz-feature-icon,
[data-theme="dark"] .dz-card-icon {
  background: oklch(0.22 0.04 260);
}

[data-theme="dark"] .dz-feature-icon svg,
[data-theme="dark"] .dz-card-icon svg,
[data-theme="dark"] .dz-feature-icon [data-lucide],
[data-theme="dark"] .dz-card-icon [data-lucide] {
  color: oklch(0.75 0.12 260);
}

[data-theme="dark"] .dz-pricing-highlighted {
  border-color: oklch(0.55 0.15 260);
  background: oklch(0.20 0.03 260);
}

[data-theme="dark"] .dz-pricing-highlighted::before {
  background: oklch(0.50 0.15 260);
}

[data-theme="dark"] .dz-pricing-features li {
  border-bottom-color: oklch(0.25 0.02 260);
}

[data-theme="dark"] .dz-section-testimonials .card::after {
  background: linear-gradient(90deg, oklch(0.50 0.15 260), oklch(0.55 0.12 190));
}

[data-theme="dark"] .dz-trust-item svg,
[data-theme="dark"] .dz-trust-item [data-lucide] {
  color: oklch(0.60 0.12 190);
}

[data-theme="dark"] .dz-section-pricing {
  background: linear-gradient(180deg, oklch(0.13 0.01 260) 0%, oklch(0.15 0.01 260) 100%);
}

[data-theme="dark"] .dz-split-media img {
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.4);
}

[data-theme="dark"] footer,
[data-theme="dark"] [role="contentinfo"] {
  background: oklch(0.10 0.02 260);
}

[data-theme="dark"] .dz-section-markdown li::before {
  background: oklch(0.55 0.12 190);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .dz-section-hero:has(.dz-hero-with-media) {
    min-height: auto;
  }

  .dz-hero-with-media {
    padding: 4rem 1.25rem;
    flex-direction: column;
  }

  .dz-hero-with-media .dz-hero-media {
    max-width: 100%;
    flex: none;
  }

  .dz-hero-with-media .dz-hero-media::before {
    display: none;
  }

  .dz-section-hero:not(:has(.dz-hero-with-media)) {
    padding: 5rem 1.25rem 4rem;
  }

  .dz-section-hero .btn,
  .dz-section-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .dz-section-header h2 {
    font-size: 2rem;
  }

  .dz-pricing-highlighted {
    transform: none;
  }

  .dz-pricing-highlighted:hover {
    transform: translateY(-2px);
  }

  .dz-trust-strip {
    gap: 1.5rem;
  }

  .dz-trust-item {
    font-size: 0.8rem;
  }

  .dz-section-cta h2 {
    font-size: 1.75rem;
  }

  .dz-split-grid {
    gap: 2rem;
  }

  .dz-section-testimonials .card-body::before {
    font-size: 3.5rem;
  }

  .dz-section-features,
  .dz-section-pricing,
  .dz-section-steps,
  .dz-section-testimonials,
  .dz-section-faq,
  .dz-section-cta,
  .dz-section-card-grid,
  .dz-section-value-highlight {
    padding: 4rem 1.25rem;
  }
}

/* Tablet — 2-col pricing grid */
@media (min-width: 640px) and (max-width: 1023px) {
  .dz-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
