/*
 Theme Name:   JA-CODE Divi Child
 Theme URI:    https://ja-zum-leben.at
 Description:  Divi 5 Child Theme für JA zum Leben / JA-CODE
 Author:       Sascha Kohler
 Author URI:   https://sascha-kohler.at
 Template:     Divi
 Version:      1.0.0
 Text Domain:  ja-code-divi-child
*/

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* --- Colors: Base --- */
  --jzl-white: #ffffff;
  --jzl-cream: #faf8f5;
  --jzl-warm-white: #f7f5f2;
  --jzl-light-gray: #e8e4df;

  /* --- Colors: Primary (Purple) --- */
  --jzl-purple: #7e56c2;
  --jzl-purple-soft: #9b7dd4;
  --jzl-purple-light: #ebe4f5;
  --jzl-purple-glow: rgba(126, 86, 194, 0.15);

  /* --- Colors: Accent (Gold) --- */
  --jzl-gold: #c9a227;
  --jzl-gold-soft: #e8c882;
  --jzl-gold-light: #fdf6e3;

  /* --- Colors: Accent (Sage/Green) --- */
  --jzl-sage: #6b9080;
  --jzl-sage-soft: #a4c3b2;
  --jzl-sage-light: #eef4f2;

  /* --- Colors: Accent (Coral) --- */
  --jzl-coral: #e07b53;
  --jzl-coral-soft: #f4a582;

  /* --- Colors: Text --- */
  --jzl-text-dark: #2d2a32;
  --jzl-text-medium: #5a5662;
  --jzl-text-light: #8a8694;

  /* --- Gradients --- */
  --jzl-gradient-warm: linear-gradient(
    135deg,
    var(--jzl-purple) 0%,
    var(--jzl-coral) 100%
  );
  --jzl-gradient-nature: linear-gradient(
    135deg,
    var(--jzl-sage) 0%,
    var(--jzl-purple) 100%
  );

  /* --- Typography: Font Families --- */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Crimson Pro", Georgia, serif;

  /* --- Typography: Font Sizes (Tailwind-Style, Fluid with clamp) --- */
  --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1rem + 1vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2vw, 3rem);
  --text-5xl: clamp(3rem, 2rem + 3vw, 4rem);
  --text-6xl: clamp(3.75rem, 2.5rem + 4vw, 5rem);

  /* --- Typography: Font Weights --- */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* --- Typography: Line Heights --- */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 2;

  /* --- Spacing --- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* --- Layout --- */
  --container-max: 1200px;
  --section-padding-y: 6rem;
  --section-padding-x: 2rem;

  /* --- Border Radius --- */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-purple-glow: 0 8px 25px var(--jzl-purple-glow);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-card: 400ms ease;

  /* --animation-delay ---*/
  --animation-delay-1: 0.2s;
  --animation-delay-2: 0.4s;
  --animation-delay-3: 0.6s;
  --animation-delay-4: 0.8s;
  --animation-delay-5: 1s;
  --animation-delay-6: 1.2s;
  --animation-delay-7: 1.4s;
  --animation-delay-8: 1.6s;
  --animation-delay-9: 1.8s;
}

/* ==========================================================================
   2. BASE STYLES (Reset, Body, Typography Defaults)
   ========================================================================== */

body {
  background: var(--jzl-cream);
  color: var(--jzl-text-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
}

h1 {
  font-size: var(--text-5xl);
}
h2 {
  font-size: var(--text-4xl);
}
h3 {
  font-size: var(--text-2xl);
}
h4 {
  font-size: var(--text-xl);
}
h5 {
  font-size: var(--text-lg);
}
h6 {
  font-size: var(--text-base);
}

a {
  color: var(--jzl-purple);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--jzl-purple-soft);
}

/* ==========================================================================
   3. LAYOUT COMPONENTS (Header, Footer, Navigation)
   ========================================================================== */

/* --- Global Header / Navigation --- */
/* Section-Level: Fixed Header Container */
.jzl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.jzl-header.is-scrolled {
  box-shadow: var(--shadow-nav);
}

/* Row-Level: Header Row */
.jzl-header .et_pb_row {
  padding: var(--space-md) 0 !important;
  transition: padding var(--transition-base);
}

.jzl-header.is-scrolled .et_pb_row {
  padding: 0.75rem 0 !important;
}

/* Column 1: Logo Column */
.jzl-header-col-logo .et_pb_image_wrap img {
  max-height: 40px;
  width: auto;
}

.jzl-header-col-logo .et_pb_text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--jzl-text-dark);
}

/* Column 3: CTA Button Column */
.jzl-header-col-cta {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: 0.75rem var(--space-lg) !important;
  background: var(--jzl-purple) !important;
  color: var(--jzl-white) !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  transition: all var(--transition-base);
}

.jzl-header-col-cta:hover {
  background: var(--jzl-purple-soft) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple-glow);
}
/* --- CTA Section: Bereit für dein JA --- */
/* Section-Heading */

.jzl-section-cta .et_pb_text_inner h2 strong {
  background: linear-gradient(
    135deg,
    var(--jzl-gold) 0%,
    var(--jzl-coral) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons (Nested Row Columns) */
.jzl-cta-btn-primary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-2xl) !important;
  background: var(--jzl-white) !important;
  color: var(--jzl-purple) !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  transition: all var(--transition-base);
}

.jzl-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.jzl-cta-btn-secondary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-2xl) !important;
  background: transparent !important;
  color: var(--jzl-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-base);
}

.jzl-cta-btn-secondary:hover {
  border-color: var(--jzl-white) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.jzl-mag-btn-secondary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-2xl) !important;
  background: var(--jzl-white);
  color: var(--jzl-text-dark) !important;
  border: 2px solid var(--jzl-text-medium) !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-base);
}

.jzl-cta-btn-secondary:hover {
  border-color: var(--jzl-purple-glow) !important;
  color: var(--jzl-purple-glow) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.jzl-footer {
  background: var(--jzl-text-dark);
  color: var(--jzl-white);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.jzl-footer-logo h4 {
  margin-bottom: var(--space-lg);
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jzl-footer-links .et_pb_text_inner ul {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.jzl-footer-links a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-base);
}

.jzl-footer-links a:hover {
  color: var(--jzl-white);
}

.jzl-footer-contact {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  cursor: pointer;
}

.jzl-footer-contact a {
  color: var(--jzl-purple-soft);
  text-decoration: none;
}

.jzl-footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   4. SECTION STYLES (Hero, CTA, Cards, etc.)
   ========================================================================== */

/* --- Section Backgrounds --- */
.jzl-section-white {
  background: var(--jzl-white);
}

.jzl-section-cream {
  background: var(--jzl-cream);
}

.jzl-section-purple-light {
  background: var(--jzl-purple-light);
}

.jzl-section-purple {
  background: var(--jzl-purple);
  color: var(--jzl-white);
}

.jzl-section-gradient-purple {
  background: linear-gradient(
    180deg,
    var(--jzl-purple-light) 0%,
    var(--jzl-cream) 100%
  );
}

/* --- Section Header (Badge, Title, Subtitle) --- */
.jzl-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--jzl-purple);
  background: var(--jzl-purple-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.jzl-section-badge.sage {
  color: var(--jzl-sage);
  background: var(--jzl-sage-light);
}

.jzl-section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-md);
}

.jzl-section-title .highlight {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jzl-section-subtitle {
  font-size: var(--text-lg);
  color: var(--jzl-text-medium);
  line-height: var(--leading-relaxed);
}

/* --- Insight Section --- */
.jzl-section-insight {
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/* Header-Row: Badge, Title, Subtitle */
.jzl-section-header {
  text-align: center;
}

.jzl-section-header .jzl-section-badge {
  display: inline-flex;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  color: var(--jzl-purple);
}

.jzl-section-header .et_pb_text_inner h2 {
  color: var(--jzl-text-dark);
}

.jzl-section-header .et_pb_text_inner h2 strong {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Insight Cards */
.jzl-insight-card .et_pb_text {
  background: var(--jzl-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid transparent;
  transition: all var(--transition-card);
}

.jzl-insight-card .et_pb_text:hover {
  transform: translateY(-5px);
  border-color: var(--jzl-purple-light);
  box-shadow: 0 15px 40px rgba(126, 86, 194, 0.1);
}

.jzl-insight-card .et_pb_text_inner > p:first-child {
  margin-bottom: var(--space-lg);
}

/* --- Guides Section --- */
.jzl-section-guides {
  background: var(--jzl-cream);
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/* Guide Card Container (Column-Level) */
.jzl-guide-card {
  background: var(--jzl-white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.jzl-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Module 1: Guide Header (Avatar + Name) */
.jzl-guide-card .jzl-guide-header .et_pb_blurb_content {
  position: relative;
  padding-left: 1.7rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.jzl-guide-card .jzl-guide-header .et_pb_blurb_container::before {
  content: "G";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--jzl-white);
  background: var(--jzl-gradient-nature);
}

.jzl-guide-sascha .jzl-guide-header .et_pb_blurb_container::before {
  content: "S";
  background: var(--jzl-gradient-warm);
}

.jzl-guide-card .jzl-guide-header .et_pb_text_inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jzl-text-dark);
  margin: 0;
  line-height: 1.2;
}

/* Module 2: Guide Role */
.jzl-guide-card .jzl-guide-role .et_pb_text_inner {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--jzl-purple);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Module 3: Guide Bio */
.jzl-guide-card .jzl-guide-bio .et_pb_text_inner {
  color: var(--jzl-text-medium);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Module 4: Expertise Tags (Liste) */
.jzl-guide-card .jzl-guide-expertise .et_pb_text_inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.jzl-guide-card .jzl-guide-expertise .et_pb_text_inner ul li {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  background: var(--jzl-cream);
  color: var(--jzl-text-medium);
}

/* Module 5: Contribution Box */
.jzl-guide-card .jzl-guide-contribution .et_pb_text_inner {
  padding-top: 1.5rem;
  border-top: 1px solid var(--jzl-light-gray);
}

.jzl-guide-card .jzl-guide-contribution .et_pb_text_inner h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jzl-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.jzl-guide-card .jzl-guide-contribution .et_pb_text_inner p {
  color: var(--jzl-text-dark);
  font-size: 1rem;
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* --- Quote Section --- */
.jzl-section-quote {
  background: var(--jzl-cream);
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/* Quote Block Container (Column-Level) */
.jzl-quote-block {
  padding: 3rem;
  background: var(--jzl-white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.jzl-quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--jzl-purple);
  opacity: 0.15;
  line-height: 1;
}

/* --- Transformation Section --- */
.jzl-section-transformation {
  background: linear-gradient(
    180deg,
    var(--jzl-purple-light) 0%,
    var(--jzl-cream) 100%
  );
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

.jzl-transformation-card {
  background: var(--jzl-white);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.jzl-transformation-card .jzl-transformation-icon .et_pb_text_inner {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--jzl-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* --- Program Section --- */
.jzl-section-program {
  background: var(--jzl-white);
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/* Program Step Container (Column-Level) */
.jzl-program-step {
  background: var(--jzl-cream);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.jzl-program-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.jzl-program-opener::before {
  background: var(--jzl-coral);
}

.jzl-program-deep-dive::before {
  background: var(--jzl-purple);
}

/* Step Badge */
.jzl-program-step .jzl-step-badge .et_pb_text_inner {
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}

.jzl-program-opener .jzl-step-badge .et_pb_text_inner {
  background: rgba(224, 123, 83, 0.1);
}

.jzl-program-deep-dive .jzl-step-badge .et_pb_text_inner {
  background: var(--jzl-purple-light);
}

/* Program Title */
.jzl-program-step .jzl-program-title .et_pb_text_inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jzl-text-dark);
  margin-bottom: 0.5rem;
}

/* Program Date */
.jzl-program-step .jzl-program-date .et_pb_text_inner {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

/* Program Description */
.jzl-program-step .et_pb_text_inner p {
}

/* Program Features List */
.jzl-program-step .jzl-program-features .et_pb_text_inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jzl-program-step .jzl-program-features .et_pb_text_inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.jzl-program-step .jzl-program-features .et_pb_text_inner ul li::before {
  content: "◆";
  color: var(--jzl-sage);
  font-size: 0.6rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* --- CTA Section: Bereit für dein JA --- */
/* Section-Heading */

.jzl-section-cta {
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

.jzl-section-cta .et_pb_text_inner h2 strong {
  background: linear-gradient(
    135deg,
    var(--jzl-gold) 0%,
    var(--jzl-coral) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Hero Section --- */
/* Section-Level: Hero Container */
.jzl-hero {
  min-height: 100vh;
  padding-top: 8rem !important;
  padding-bottom: var(--space-3xl) !important;
  background: linear-gradient(
    180deg,
    var(--jzl-white) 0%,
    var(--jzl-cream) 100%
  );
  position: relative;
  overflow: hidden;
}

.jzl-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--jzl-purple-light) 0%,
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}

.jzl-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--jzl-sage-light) 0%,
    transparent 70%
  );
  opacity: 0.5;
  pointer-events: none;
}

/* Row-Level: Hero Row */
.jzl-hero .et_pb_row {
  align-items: center;
}

/* Column 1: Content Column */
.jzl-hero-col-content {
  position: relative;
  z-index: 2;
}

/* Badge Module in Content Column */
.jzl-hero-col-content > .et_pb_module:first-child .et_pb_text_inner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--jzl-sage);
  background: var(--jzl-sage-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
}

/* Headline Module */
.jzl-hero-col-content .et_pb_text_inner h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-md);
}

.jzl-hero-col-content .et_pb_text_inner h1 em,
.jzl-hero-col-content .et_pb_text_inner h1 strong {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: var(--font-bold);
}

/* Subtitle Module */
.jzl-hero-col-content .jzl-hero-subtitle .et_pb_text_inner {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  color: var(--jzl-text-medium);
  line-height: var(--leading-normal);
}

/* Insight Quote Module */
.jzl-hero-col-content .jzl-hero-insight .et_pb_text_inner {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--jzl-text-dark);
  padding: var(--space-lg);
  background: var(--jzl-white);
  border-left: 4px solid var(--jzl-purple);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}

/* Button Row in Content Column */
.jzl-hero-col-content .jzl-hero-buttons .et_pb_button_module_wrapper {
  display: inline-block;
  margin-right: var(--space-md);
  margin-bottom: var(--space-md);
}

.jzl-hero-col-content .jzl-hero-buttons .et_pb_button {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  padding: var(--space-lg) var(--space-2xl) !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-base);
}

/* Primary Button */
.jzl-hero-col-content .jzl-hero-btn-primary .et_pb_button {
  background: var(--jzl-purple) !important;
  color: var(--jzl-white) !important;
  border: none !important;
}

.jzl-hero-col-content .jzl-hero-btn-primary .et_pb_button:hover {
  background: var(--jzl-purple-soft) !important;
}

/* Secondary Button */
.jzl-hero-col-content .jzl-hero-btn-secondary .et_pb_button {
  background: transparent !important;
  color: var(--jzl-text-dark) !important;
  border: 2px solid var(--jzl-light-gray) !important;
  border-radius: var(--radius-full) !important;
}

.jzl-hero-col-content .jzl-hero-btn-secondary .et_pb_button:hover {
  border-color: var(--jzl-purple) !important;
  color: var(--jzl-text-dark) !important;
}

/* Trust Indicator Module */
.jzl-hero-col-content .jzl-hero-trust .et_pb_text_inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--jzl-text-light);
  position: relative;
  padding-left: 5.5rem;
}

.jzl-hero-col-content .jzl-hero-trust .et_pb_text_inner::before,
.jzl-hero-col-content .jzl-hero-trust .et_pb_text_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--jzl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: var(--font-semibold);
  color: var(--jzl-white);
  box-shadow: var(--shadow-sm);
}

.jzl-hero-col-content .jzl-hero-trust .et_pb_text_inner::before {
  left: 0;
  background: var(--jzl-sage);
  content: "G";
}

.jzl-hero-col-content .jzl-hero-trust .et_pb_text_inner::after {
  left: 1.6rem;
  background: var(--jzl-purple);
  content: "S";
}

/* Column 2: Visual Card Column */
.jzl-hero-col-visual {
  position: relative;
  background: var(--jzl-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  z-index: 2;
}

.jzl-hero-col-visual .et_pb_text h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-sm);
}

.jzl-hero-col-visual .et_pb_text p {
  color: var(--jzl-text-medium);
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
}

.jzl-hero-col-visual .et_pb_text strong {
  font-family: var(--font-display);
  color: var(--jzl-purple);
  font-weight: var(--font-semibold);
}

.jzl-hero-col-visual .et_pb_text ul {
  list-style: none;
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
}

.jzl-hero-col-visual .et_pb_text ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--jzl-text-dark);
  margin-bottom: 0.75rem;
}

.jzl-hero-col-visual .et_pb_text ul li::before {
  content: "✓";
  color: var(--jzl-sage);
  font-weight: var(--font-bold);
}

/* ==========================================================================
   5. MODULE STYLES (Buttons, Forms, Cards, etc.)
   ========================================================================== */

/* --- Buttons --- */
.jzl-btn-primary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-2xl) !important;
  background: var(--jzl-purple);
  color: var(--jzl-white);
  border: 2px solid var(--jzl-text-medium) !important;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.jzl-btn-primary:hover {
  background: var(--jzl-purple-soft) !important;
  color: var(--jzl-text-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple-glow);
}

.jzl-btn-secondary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-2xl) !important;
  background: transparent;
  color: var(--jzl-text-dark);
  border: 2px solid var(--jzl-light-gray);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.jzl-btn-secondary:hover {
  border-color: var(--jzl-purple);
  color: var(--jzl-text-dark);
}

.jzl-btn-light {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-xl);
  background: var(--jzl-white);
  color: var(--jzl-purple);
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.jzl-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.jzl-btn-outline-light {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--jzl-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.jzl-btn-outline-light:hover {
  border-color: var(--jzl-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--jzl-white);
}

/* --- Cards --- */
.jzl-card {
  background: var(--jzl-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-card);
}

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

.jzl-card-cream {
  background: var(--jzl-cream);
  border: 1px solid transparent;
}

.jzl-card-cream:hover {
  border-color: var(--jzl-purple-light);
  box-shadow: 0 15px 40px rgba(126, 86, 194, 0.1);
}

/* --- Icon Boxes --- */
.jzl-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

.jzl-icon-box.purple {
  background: var(--jzl-purple-light);
}

.jzl-icon-box.sage {
  background: var(--jzl-sage-light);
}

.jzl-icon-box.gold {
  background: var(--jzl-gold-light);
}

/* --- Expertise Tags --- */
.jzl-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  background: var(--jzl-cream);
  color: var(--jzl-text-medium);
}

/* ==========================================================================
   6. UTILITY CLASSES
   ========================================================================== */

.jzl-text-center {
  text-align: center;
}

.jzl-text-white {
  color: var(--jzl-white);
}

.jzl-text-white .jzl-section-title {
  color: var(--jzl-white);
}

.jzl-text-white .jzl-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.jzl-text-white .jzl-section-title .highlight {
  background: linear-gradient(
    135deg,
    var(--jzl-gold) 0%,
    var(--jzl-coral) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   7. ANIMATIONS
   ========================================================================== */

/* Scroll Animation Base */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--animation-delay-1, 0s);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable animations in Divi Builder */
body.et-fb [data-animate],
body.et_fb_preview [data-animate] {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   8. RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 767px) {
  :root {
    --section-padding-y: 4rem;
    --section-padding-x: 1.5rem;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
