:root {
  --whyzerr-orange: #D46B08;
  --whyzerr-orange-hover: #F5841F;
  --whyzerr-orange-dark: #B85A00;
  --whyzerr-orange-light: rgba(245, 132, 31, 0.08);
  --whyzerr-teal: #067DA2;
  --whyzerr-teal-dark: #056687;
  --whyzerr-teal-light: rgba(6, 125, 162, 0.06);
  --whyzerr-dark: #1B1B1B;
  --whyzerr-gray: #54595F;
  --whyzerr-light-gray: #666666;
  --whyzerr-bg-alt: #F7F8FA;
  --whyzerr-white: #FFFFFF;
  --whyzerr-font-display: 'Kanit', sans-serif;
  --whyzerr-font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ========================================
   Keyframe Animations
   ======================================== */

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

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 40px rgba(245, 132, 31, 0.12);
  }
  50% {
    text-shadow: 0 0 60px rgba(245, 132, 31, 0.25),
                 0 0 120px rgba(245, 132, 31, 0.08);
  }
}

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

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 132, 31, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(245, 132, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 132, 31, 0);
  }
}

/* ========================================
   Scroll-Triggered Reveal System
   ======================================== */

.whyzerr-scroll-reveal[data-reveal="left"] > *,
.whyzerr-scroll-reveal[data-reveal="right"] > * {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.whyzerr-scroll-reveal[data-reveal="left"] > * {
  transform: translateX(-50px);
}

.whyzerr-scroll-reveal[data-reveal="right"] > * {
  transform: translateX(50px);
}

.whyzerr-scroll-reveal[data-reveal="up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.whyzerr-scroll-reveal.is-visible > * {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.whyzerr-scroll-reveal[data-reveal="up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whyzerr-scroll-reveal.is-visible > *:nth-child(1) { transition-delay: 0s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(8) { transition-delay: 0.56s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(9) { transition-delay: 0.64s; }
.whyzerr-scroll-reveal.is-visible > *:nth-child(10) { transition-delay: 0.72s; }

/* Hero staggered entrance */
.whyzerr-hero-reveal {
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ========================================
   Page Layout Overrides
   ======================================== */

.entry-content-wrap:has(.whyzerr-hero) {
  padding: 0;
}

.content-area:has(.whyzerr-hero) {
  margin-top: 0;
  margin-bottom: 0;
}

.entry.single-entry:has(.whyzerr-hero) {
  box-shadow: none;
}

/* ========================================
   Header Enhancement
   ======================================== */

#masthead {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

#masthead .custom-logo {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

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

.whyzerr-hero,
.whyzerr-section,
.whyzerr-section-alt {
  max-width: none !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  box-sizing: border-box;
}

body:has(.whyzerr-hero) {
  overflow-x: hidden;
}

.whyzerr-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #067DA2 0%, #056687 50%, #055E7A 100%);
  padding: 7rem 2rem 5.5rem;
  text-align: center;
  margin-bottom: 0;
}

.whyzerr-hero h1,
.whyzerr-hero .wp-block-heading {
  color: var(--whyzerr-white) !important;
  font-family: var(--whyzerr-font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: textGlow 5s ease-in-out 1.2s infinite;
}

.whyzerr-hero h1.whyzerr-hero-reveal,
.whyzerr-hero .wp-block-heading.whyzerr-hero-reveal {
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             textGlow 5s ease-in-out 1.2s infinite;
}

.whyzerr-hero p {
  color: var(--whyzerr-white) !important;
  opacity: 0.92;
  font-family: var(--whyzerr-font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.whyzerr-hero .wp-block-buttons {
  justify-content: center;
  margin-top: 2.5rem;
  gap: 1.25rem;
}

.whyzerr-hero .wp-block-button__link {
  font-family: var(--whyzerr-font-body);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  letter-spacing: 0.02em;
}

.whyzerr-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background-color: var(--whyzerr-orange) !important;
  color: var(--whyzerr-white) !important;
  border: none;
}

.whyzerr-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background-color: var(--whyzerr-teal) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6, 125, 162, 0.45);
}

.whyzerr-hero .is-style-outline .wp-block-button__link {
  border: 2px solid var(--whyzerr-white) !important;
  color: var(--whyzerr-white) !important;
  background: transparent !important;
}

.whyzerr-hero .is-style-outline .wp-block-button__link:hover {
  background: var(--whyzerr-white) !important;
  color: var(--whyzerr-dark) !important;
  border-color: var(--whyzerr-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Particles canvas */
#particles-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.whyzerr-hero .wp-block-group__inner-container > *:not(#particles-hero),
.whyzerr-hero > *:not(#particles-hero) {
  position: relative;
  z-index: 1;
}

/* ========================================
   Section Styling
   ======================================== */

.whyzerr-section {
  padding: 5.5rem 2rem;
  background-color: var(--whyzerr-white);
  transition: background 0.3s ease;
}

.whyzerr-section-alt {
  background: linear-gradient(160deg, #f7f8fa 0%, #eef2f5 100%);
  padding: 5.5rem 2rem;
  border-top: 3px solid var(--whyzerr-orange);
  position: relative;
}

.whyzerr-section h2,
.whyzerr-section-alt h2 {
  font-family: var(--whyzerr-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--whyzerr-teal) !important;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.whyzerr-section h3,
.whyzerr-section-alt h3 {
  font-family: var(--whyzerr-font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 700;
  color: var(--whyzerr-teal) !important;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.whyzerr-section p,
.whyzerr-section-alt p {
  font-family: var(--whyzerr-font-body);
  line-height: 1.75;
  color: var(--whyzerr-gray);
}

/* ========================================
   CTA Button Pairs (outside hero)
   ======================================== */

.whyzerr-cta .wp-block-buttons {
  gap: 1rem;
  margin-top: 2.5rem;
}

.whyzerr-cta .wp-block-button__link {
  font-family: var(--whyzerr-font-body);
  font-weight: 600;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.4s ease;
  letter-spacing: 0.02em;
}

.whyzerr-cta .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background-color: var(--whyzerr-orange) !important;
  color: var(--whyzerr-white) !important;
}

.whyzerr-cta .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background-color: var(--whyzerr-teal) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 125, 162, 0.35);
}

.whyzerr-cta .is-style-outline .wp-block-button__link {
  border: 2px solid var(--whyzerr-teal) !important;
  color: var(--whyzerr-teal) !important;
  background: transparent !important;
}

.whyzerr-cta .is-style-outline .wp-block-button__link:hover {
  background-color: var(--whyzerr-teal) !important;
  color: var(--whyzerr-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 125, 162, 0.25);
}

/* Global button overrides for Kadence palette colors */
.wp-block-button__link.has-theme-palette-1-background-color {
  background-color: var(--whyzerr-orange) !important;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.wp-block-button__link.has-theme-palette-1-background-color:hover {
  background-color: var(--whyzerr-teal) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 125, 162, 0.35);
}

/* ========================================
   Pricing Cards
   ======================================== */

.whyzerr-pricing-cards {
  display: flex;
  gap: 1.75rem !important;
  margin: 2.5rem 0 3.5rem;
}

.whyzerr-pricing-cards > * {
  flex: 1;
}

.whyzerr-pricing-card {
  background: var(--whyzerr-white);
  border-radius: 16px;
  padding: 2.75rem 2.25rem !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8e8;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whyzerr-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.whyzerr-pricing-featured {
  border-color: var(--whyzerr-orange) !important;
  border-width: 2px !important;
  position: relative;
  transform: scale(1.04);
  background: linear-gradient(160deg, #fff 0%, rgba(245, 132, 31, 0.03) 100%);
}

.whyzerr-pricing-featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 20px 50px rgba(245, 132, 31, 0.15);
}

.whyzerr-pricing-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--whyzerr-teal) 0%, var(--whyzerr-teal-dark) 100%);
  color: var(--whyzerr-white);
  padding: 5px 24px;
  border-radius: 20px;
  font-family: var(--whyzerr-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 3px 10px rgba(6, 125, 162, 0.3);
}

.whyzerr-pricing-card h2 {
  font-family: var(--whyzerr-font-display) !important;
  font-size: 1.6rem !important;
  color: var(--whyzerr-teal) !important;
  margin-bottom: 0.5rem;
}

.whyzerr-pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1.75rem 0;
}

.whyzerr-pricing-card ul li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  color: var(--whyzerr-gray);
  font-size: 0.95rem;
  line-height: 1.55;
}

.whyzerr-pricing-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--whyzerr-teal);
  font-weight: 700;
  font-size: 1.1rem;
}

.whyzerr-pricing-card .wp-block-buttons {
  margin-top: auto;
}

.whyzerr-pricing-card .wp-block-button__link {
  border-radius: 50px;
  transition: all 0.4s ease;
}

.whyzerr-pricing-price {
  font-family: var(--whyzerr-font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--whyzerr-orange);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.whyzerr-pricing-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--whyzerr-gray);
}

.whyzerr-pricing-subtitle {
  font-family: var(--whyzerr-font-body);
  font-size: 0.9rem;
  color: var(--whyzerr-light-gray);
  margin-bottom: 1.25rem;
}

.whyzerr-pricing-btn {
  display: block;
  text-align: center;
  background: var(--whyzerr-orange) !important;
  color: var(--whyzerr-white) !important;
  font-family: var(--whyzerr-font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  margin-top: auto;
}

.whyzerr-pricing-btn:hover {
  background: var(--whyzerr-teal) !important;
  color: var(--whyzerr-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 125, 162, 0.35);
}

.whyzerr-pricing-featured .whyzerr-pricing-btn {
  background: var(--whyzerr-teal) !important;
}

.whyzerr-pricing-featured .whyzerr-pricing-btn:hover {
  background: var(--whyzerr-orange) !important;
  box-shadow: 0 8px 25px rgba(245, 132, 31, 0.35);
}

.whyzerr-pricing-badge {
  display: none;
}

.whyzerr-pricing-card {
  display: flex;
  flex-direction: column;
}

/* ========================================
   FAQ Accordion (Kadence Blocks)
   ======================================== */

.kt-accordion-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--whyzerr-white);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 35px rgba(180, 190, 200, 0.35);
  border: 1px solid #f0f0f0;
}

.kt-accordion-header-wrap {
  border: none !important;
  border-bottom: 1px solid #e8e8e8 !important;
}

.kt-blocks-accordion-header {
  padding: 1.35rem 0 !important;
  background: transparent !important;
  font-family: var(--whyzerr-font-display) !important;
  font-weight: 600 !important;
  color: var(--whyzerr-dark) !important;
  font-size: 1.1rem !important;
  transition: color 0.25s ease;
}

.kt-blocks-accordion-header:hover {
  color: var(--whyzerr-teal) !important;
}

.kt-blocks-accordion-header[aria-expanded="true"] {
  color: var(--whyzerr-teal) !important;
}

.kt-accordion-panel {
  padding: 0.5rem 0 1.5rem !important;
}

.kt-accordion-panel p {
  font-family: var(--whyzerr-font-body);
  color: var(--whyzerr-gray);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.kt-btn-svg-icon-wrap svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.kt-blocks-accordion-header[aria-expanded="true"] .kt-btn-svg-icon-wrap svg {
  transform: rotate(180deg);
}

/* ========================================
   Feature Lists
   ======================================== */

.whyzerr-section ul,
.whyzerr-section-alt ul {
  list-style: none;
  padding-left: 0;
}

.whyzerr-section ul li,
.whyzerr-section-alt ul li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  color: var(--whyzerr-gray);
  line-height: 1.65;
  font-family: var(--whyzerr-font-body);
}

.whyzerr-section ul li strong,
.whyzerr-section-alt ul li strong {
  color: var(--whyzerr-dark);
}

.whyzerr-section ul li::before,
.whyzerr-section-alt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--whyzerr-orange);
  box-shadow: 0 0 8px rgba(245, 132, 31, 0.3);
}

/* ========================================
   Stat Display (80% section)
   ======================================== */

.whyzerr-stat-row {
  gap: 3rem !important;
}

.whyzerr-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.whyzerr-stat-number {
  display: block;
  font-family: var(--whyzerr-font-display);
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--whyzerr-orange);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.whyzerr-stat-label {
  display: block;
  font-family: var(--whyzerr-font-body);
  font-size: 1.05rem;
  color: var(--whyzerr-gray);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* ========================================
   Feature Card Grid
   ======================================== */

.whyzerr-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.whyzerr-feature-card {
  background: var(--whyzerr-white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.whyzerr-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.whyzerr-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--whyzerr-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--whyzerr-orange);
  transition: background 0.3s ease, color 0.3s ease;
}

.whyzerr-feature-card:hover .whyzerr-feature-icon {
  background: var(--whyzerr-orange);
  color: var(--whyzerr-white);
}

.whyzerr-feature-card h3 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--whyzerr-dark);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.whyzerr-feature-card p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.92rem;
  color: var(--whyzerr-light-gray);
  line-height: 1.65;
  margin: 0;
}

/* ========================================
   Industry Card Grid
   ======================================== */

.whyzerr-industry-row {
  gap: 3rem !important;
}

.whyzerr-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.whyzerr-industry-card {
  background: var(--whyzerr-white);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.whyzerr-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--whyzerr-orange);
}

.whyzerr-industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--whyzerr-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--whyzerr-teal);
}

.whyzerr-industry-card h4 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--whyzerr-dark);
  margin: 0 0 0.35rem;
}

.whyzerr-industry-card p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.88rem;
  color: var(--whyzerr-light-gray);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   Areas Served List
   ======================================== */

.whyzerr-areas-row {
  gap: 3rem !important;
}

.whyzerr-areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.whyzerr-area-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--whyzerr-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--whyzerr-dark);
  padding: 0.6rem 1rem;
  background: var(--whyzerr-white);
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.whyzerr-area-item:hover {
  border-color: var(--whyzerr-orange);
  box-shadow: 0 2px 10px rgba(245, 132, 31, 0.1);
}

.whyzerr-local-badge {
  background: linear-gradient(145deg, var(--whyzerr-teal-light), rgba(6, 125, 162, 0.12));
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(6, 125, 162, 0.15);
}

.whyzerr-local-badge svg {
  margin-bottom: 1rem;
}

.whyzerr-local-badge h3 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--whyzerr-teal) !important;
  margin: 0 0 0.75rem;
}

.whyzerr-local-badge p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.92rem;
  color: var(--whyzerr-gray);
  line-height: 1.65;
  margin: 0;
}

/* ========================================
   Pricing CTA Card
   ======================================== */

.whyzerr-pricing-cta-card {
  background: linear-gradient(135deg, #055E7A 0%, #04506a 50%, #034459 100%);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.whyzerr-pricing-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 132, 31, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.whyzerr-pricing-cta-card::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 125, 162, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.whyzerr-pricing-cta-card > * {
  position: relative;
  z-index: 1;
}

.whyzerr-pricing-cta-card h2 {
  font-family: var(--whyzerr-font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--whyzerr-white) !important;
  margin: 0 0 1rem;
}

.whyzerr-section .whyzerr-pricing-cta-card h2,
.whyzerr-section-alt .whyzerr-pricing-cta-card h2,
.whyzerr-section-accent .whyzerr-pricing-cta-card h2,
.whyzerr-section-dark .whyzerr-pricing-cta-card h2 {
  color: var(--whyzerr-white) !important;
}

.whyzerr-pricing-cta-card p {
  font-family: var(--whyzerr-font-body);
  font-size: 1.1rem;
  color: #e0e8ec !important;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.whyzerr-pricing-cta-card p strong {
  color: var(--whyzerr-orange);
  font-size: 1.25rem;
}

.whyzerr-pricing-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.whyzerr-btn-primary,
.whyzerr-btn-outline {
  font-family: var(--whyzerr-font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  letter-spacing: 0.02em;
  display: inline-block;
}

.whyzerr-btn-primary {
  background: var(--whyzerr-orange);
  color: var(--whyzerr-white);
}

.whyzerr-btn-primary:hover {
  background: #d9710f;
  color: var(--whyzerr-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 132, 31, 0.45);
}

.whyzerr-btn-outline {
  border: 2px solid var(--whyzerr-white);
  color: var(--whyzerr-white);
  background: transparent;
}

.whyzerr-btn-outline:hover {
  border-color: var(--whyzerr-white);
  background: var(--whyzerr-white);
  color: var(--whyzerr-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.whyzerr-pricing-cta-card .whyzerr-btn-primary {
  background: var(--whyzerr-orange) !important;
  color: var(--whyzerr-white) !important;
}

.whyzerr-pricing-cta-card .whyzerr-btn-primary:hover {
  background: #d9710f !important;
  color: var(--whyzerr-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 132, 31, 0.45);
}

.whyzerr-pricing-cta-card .whyzerr-btn-outline {
  border-color: var(--whyzerr-white) !important;
  color: var(--whyzerr-white) !important;
  background: transparent !important;
}

.whyzerr-pricing-cta-card .whyzerr-btn-outline:hover {
  background: var(--whyzerr-white) !important;
  color: var(--whyzerr-dark) !important;
}

/* ========================================
   Comparison Section (Pricing page)
   ======================================== */

.whyzerr-comparison h3 {
  font-family: var(--whyzerr-font-display);
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.whyzerr-comparison h3:last-of-type {
  color: var(--whyzerr-orange) !important;
}

/* ========================================
   Contact Page
   ======================================== */

.whyzerr-contact-form-wrap {
  background: var(--whyzerr-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8e8;
}

.whyzerr-contact-form-wrap h2 {
  margin-top: 0;
}

.whyzerr-contact-form-wrap .kb-adv-form .kb-field {
  margin-bottom: 1.25rem;
}

.whyzerr-contact-form-wrap .kb-adv-form label {
  font-family: var(--whyzerr-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--whyzerr-dark);
  margin-bottom: 0.4rem;
  display: block;
}

.whyzerr-contact-form-wrap .kb-adv-form input[type="text"],
.whyzerr-contact-form-wrap .kb-adv-form input[type="email"],
.whyzerr-contact-form-wrap .kb-adv-form input[type="tel"],
.whyzerr-contact-form-wrap .kb-adv-form textarea {
  width: 100%;
  font-family: var(--whyzerr-font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fafbfc;
  color: var(--whyzerr-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whyzerr-contact-form-wrap .kb-adv-form input:focus,
.whyzerr-contact-form-wrap .kb-adv-form textarea:focus {
  border-color: var(--whyzerr-teal);
  box-shadow: 0 0 0 3px rgba(6, 125, 162, 0.1);
  background: var(--whyzerr-white);
  outline: none;
}

.whyzerr-contact-form-wrap .kb-adv-form textarea {
  min-height: 140px;
  resize: vertical;
}

.whyzerr-contact-form-wrap .kb-adv-form .kb-submit-field .kb-forms-submit {
  background: var(--whyzerr-orange) !important;
  color: var(--whyzerr-white) !important;
  font-family: var(--whyzerr-font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 0.02em;
  width: 100%;
}

.whyzerr-contact-form-wrap .kb-adv-form .kb-submit-field .kb-forms-submit:hover {
  background: var(--whyzerr-teal) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 125, 162, 0.35);
}

.whyzerr-contact-info {
  background: var(--whyzerr-teal-light);
  padding: 2.25rem;
  border-radius: 16px;
  border-left: 4px solid var(--whyzerr-teal);
  box-shadow: 0 4px 20px rgba(6, 125, 162, 0.08);
}

.whyzerr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(6, 125, 162, 0.1);
}

.whyzerr-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.whyzerr-contact-item:first-child {
  padding-top: 0;
}

.whyzerr-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.whyzerr-contact-item strong {
  font-family: var(--whyzerr-font-display);
  font-size: 0.95rem;
  color: var(--whyzerr-dark);
}

.whyzerr-contact-item div {
  font-family: var(--whyzerr-font-body);
  font-size: 0.92rem;
  color: var(--whyzerr-gray);
  line-height: 1.6;
}

.whyzerr-contact-info p {
  margin-bottom: 0.5rem;
  font-family: var(--whyzerr-font-body);
}

.whyzerr-contact-info a {
  color: var(--whyzerr-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.whyzerr-contact-info a:hover {
  color: var(--whyzerr-orange);
}

/* ========================================
   Global Link Color
   ======================================== */

.entry-content a:not(.wp-block-button__link) {
  color: var(--whyzerr-teal);
  text-decoration: none;
  transition: color 0.25s ease;
}

.entry-content a:not(.wp-block-button__link):hover {
  color: var(--whyzerr-orange);
}

/* ========================================
   Floating Action Buttons
   ======================================== */

.whyzerr-float-btn {
  position: fixed;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
  text-decoration: none;
}

.whyzerr-float-btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#whyzerr-contact-float {
  bottom: 90px;
  background-color: var(--whyzerr-orange);
  color: var(--whyzerr-white);
  box-shadow: 0 4px 15px rgba(245, 132, 31, 0.4);
  animation: pulseRing 2.5s ease-out infinite;
  animation-play-state: paused;
}

#whyzerr-contact-float.is-visible {
  animation-play-state: running;
}

#whyzerr-contact-float:hover {
  background-color: var(--whyzerr-white);
  color: var(--whyzerr-orange);
  box-shadow: 0 6px 25px rgba(245, 132, 31, 0.35);
  transform: translateY(0) scale(1.1);
  animation-play-state: paused;
}

#whyzerr-back-to-top {
  bottom: 28px;
  background-color: var(--whyzerr-teal);
  color: var(--whyzerr-white);
  box-shadow: 0 4px 15px rgba(6, 125, 162, 0.35);
}

#whyzerr-back-to-top:hover {
  background-color: var(--whyzerr-orange);
  box-shadow: 0 6px 25px rgba(245, 132, 31, 0.35);
  transform: translateY(0) scale(1.1);
}

/* ========================================
   Accessibility — Focus Indicators
   ======================================== */

a:focus-visible,
button:focus-visible,
.wp-block-button__link:focus-visible,
.whyzerr-btn-primary:focus-visible,
.whyzerr-btn-outline:focus-visible,
.whyzerr-float-btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--whyzerr-teal);
  outline-offset: 3px;
}

.whyzerr-hero a:focus-visible,
.whyzerr-hero button:focus-visible,
.whyzerr-pricing-cta-card a:focus-visible {
  outline-color: var(--whyzerr-white);
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Accessibility — Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .whyzerr-scroll-reveal > *,
  .whyzerr-scroll-reveal[data-reveal="up"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .whyzerr-hero-reveal {
    opacity: 1 !important;
    animation: none !important;
  }

  .whyzerr-hero h1,
  .whyzerr-hero .wp-block-heading {
    animation: none !important;
  }

  #whyzerr-contact-float {
    animation: none !important;
  }

  .whyzerr-feature-card,
  .whyzerr-industry-card,
  .whyzerr-pricing-card,
  .whyzerr-area-item {
    transition: none !important;
  }
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  .whyzerr-pricing-featured {
    transform: none;
  }

  .whyzerr-pricing-featured:hover {
    transform: translateY(-6px);
  }

  .whyzerr-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .whyzerr-hero {
    padding: 4.5rem 1.5rem 3.5rem;
  }

  .whyzerr-section,
  .whyzerr-section-alt {
    padding: 3.5rem 1.5rem;
  }

  .whyzerr-pricing-cards {
    flex-direction: column !important;
  }

  .whyzerr-pricing-card {
    padding: 2.25rem 1.75rem !important;
  }

  .whyzerr-hero .wp-block-buttons {
    flex-direction: column;
    align-items: center;
  }

  .whyzerr-hero .wp-block-button {
    width: 100%;
    max-width: 320px;
  }

  .whyzerr-hero .wp-block-button__link {
    width: 100%;
    text-align: center;
  }

  .kt-accordion-wrap {
    padding: 1.5rem 1.25rem;
  }

  .whyzerr-float-btn {
    right: 16px;
    width: 46px;
    height: 46px;
  }

  #whyzerr-contact-float {
    bottom: 78px;
  }

  #whyzerr-back-to-top {
    bottom: 22px;
  }

  .whyzerr-scroll-reveal[data-reveal="left"] > *,
  .whyzerr-scroll-reveal[data-reveal="right"] > * {
    transform: translateY(30px);
  }

  .whyzerr-features {
    grid-template-columns: 1fr;
  }

  .whyzerr-industry-grid {
    grid-template-columns: 1fr;
  }

  .whyzerr-areas-list {
    grid-template-columns: 1fr;
  }

  .whyzerr-stat-row,
  .whyzerr-industry-row,
  .whyzerr-areas-row {
    flex-direction: column !important;
  }

  .whyzerr-stat {
    padding: 1.5rem 1rem;
  }

  .whyzerr-pricing-cta-card {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .whyzerr-pricing-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .whyzerr-btn-primary,
  .whyzerr-btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .whyzerr-local-badge {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .whyzerr-hero {
    padding: 3.5rem 1rem 2.5rem;
  }

  .whyzerr-pricing-card ul li {
    font-size: 0.9rem;
  }

  .whyzerr-section,
  .whyzerr-section-alt {
    padding: 2.5rem 1rem;
  }
}

/* Kadence form loading overlay — hidden by default, shown by JS during submit */
.kb-form-loading.kb-form-loading-none {
  display: none;
}

/* ========================================
   Horizontal Process Steps
   ======================================== */

.whyzerr-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 0;
}

.whyzerr-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--whyzerr-orange), var(--whyzerr-teal));
  z-index: 0;
}

.whyzerr-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.whyzerr-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whyzerr-teal);
  color: var(--whyzerr-white);
  font-family: var(--whyzerr-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(6, 125, 162, 0.3);
}

.whyzerr-step h4 {
  font-family: var(--whyzerr-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--whyzerr-dark);
  margin: 0 0 0.4rem;
}

.whyzerr-step p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.85rem;
  color: var(--whyzerr-light-gray);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ========================================
   Stats Banner (Dark Full-Width)
   ======================================== */

.whyzerr-stats-banner {
  background: linear-gradient(135deg, var(--whyzerr-dark) 0%, #2a2a2a 100%);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: none !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  box-sizing: border-box;
}

.whyzerr-stat-item {
  text-align: center;
}

.whyzerr-stat-value {
  display: block;
  font-family: var(--whyzerr-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--whyzerr-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.whyzerr-stat-desc {
  font-family: var(--whyzerr-font-body);
  font-size: 0.95rem;
  color: #999;
  max-width: 180px;
  line-height: 1.4;
}

.whyzerr-section-dark .whyzerr-stats-banner {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: auto !important;
  background: transparent;
  padding: 0;
}

.whyzerr-section-accent .whyzerr-pricing-cta-card {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Vertical Timeline
   ======================================== */

.whyzerr-timeline {
  position: relative;
  max-width: 700px;
  margin: 2.5rem auto;
  padding-left: 3rem;
}

.whyzerr-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--whyzerr-teal), var(--whyzerr-orange));
  border-radius: 3px;
}

.whyzerr-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.whyzerr-timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -3rem;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--whyzerr-teal);
  color: var(--whyzerr-white);
  font-family: var(--whyzerr-font-display);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--whyzerr-white), 0 2px 10px rgba(6, 125, 162, 0.25);
  z-index: 1;
}

.whyzerr-timeline-item h4 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--whyzerr-dark);
  margin: 0 0 0.35rem;
}

.whyzerr-timeline-item p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.95rem;
  color: var(--whyzerr-gray);
  margin: 0;
  line-height: 1.65;
}

/* ========================================
   Comparison Cards (Side-by-Side)
   ======================================== */

.whyzerr-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 2.5rem auto;
}

.whyzerr-compare-card {
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 2px solid #e8e8e8;
}

.whyzerr-compare-card.whyzerr-compare-old {
  background: #fafafa;
  border-color: #e0e0e0;
}

.whyzerr-compare-card.whyzerr-compare-new {
  background: linear-gradient(160deg, #fff 0%, rgba(6, 125, 162, 0.04) 100%);
  border-color: var(--whyzerr-teal);
  box-shadow: 0 4px 20px rgba(6, 125, 162, 0.1);
}

.whyzerr-compare-label {
  display: inline-block !important;
  font-family: var(--whyzerr-font-display) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 6px 18px !important;
  border-radius: 20px !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}

.whyzerr-compare-old .whyzerr-compare-label {
  background: #eee !important;
  color: #888 !important;
}

.whyzerr-compare-new .whyzerr-compare-label {
  background: var(--whyzerr-teal) !important;
  color: var(--whyzerr-white) !important;
}

.whyzerr-section .whyzerr-compare-card h3,
.whyzerr-section-alt .whyzerr-compare-card h3,
.whyzerr-compare-card h3 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.whyzerr-section .whyzerr-compare-old h3,
.whyzerr-section-alt .whyzerr-compare-old h3,
.whyzerr-compare-old h3 { color: #666 !important; }

.whyzerr-section .whyzerr-compare-new h3,
.whyzerr-section-alt .whyzerr-compare-new h3,
.whyzerr-compare-new h3 { color: var(--whyzerr-teal) !important; }

.whyzerr-compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whyzerr-compare-card ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-family: var(--whyzerr-font-body);
  font-size: 0.92rem;
  color: var(--whyzerr-gray);
  line-height: 1.55;
}

.whyzerr-compare-old ul li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #ccc;
  font-weight: 700;
}

.whyzerr-compare-new ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--whyzerr-teal);
  font-weight: 700;
}

/* ========================================
   Callout Box
   ======================================== */

.whyzerr-callout-box {
  background: linear-gradient(145deg, var(--whyzerr-orange-light), rgba(245, 132, 31, 0.04));
  border-left: 5px solid var(--whyzerr-orange);
  border-radius: 0 16px 16px 0;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
}

.whyzerr-callout-box p {
  font-family: var(--whyzerr-font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--whyzerr-dark);
  line-height: 1.7;
  margin: 0;
}

.whyzerr-callout-box strong {
  color: var(--whyzerr-orange);
}

/* ========================================
   Mini Card Grid
   ======================================== */

.whyzerr-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.whyzerr-mini-card {
  background: var(--whyzerr-white);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.whyzerr-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--whyzerr-teal);
}

.whyzerr-mini-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--whyzerr-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--whyzerr-teal);
}

.whyzerr-mini-card h4 {
  font-family: var(--whyzerr-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--whyzerr-dark);
  margin: 0 0 0.3rem;
}

.whyzerr-mini-card p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.82rem;
  color: var(--whyzerr-light-gray);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   Alert Banner
   ======================================== */

.whyzerr-alert-banner {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border: 2px solid var(--whyzerr-orange);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.whyzerr-alert-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whyzerr-orange);
  color: var(--whyzerr-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyzerr-alert-banner h3 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--whyzerr-orange-dark) !important;
  margin: 0 0 0.25rem;
}

.whyzerr-alert-banner p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.92rem;
  color: var(--whyzerr-gray);
  margin: 0;
  line-height: 1.55;
}

/* ========================================
   Pill / Badge Group
   ======================================== */

.whyzerr-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.whyzerr-pill {
  font-family: var(--whyzerr-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background: var(--whyzerr-white);
  border: 2px solid #e8e8e8;
  color: var(--whyzerr-dark);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.whyzerr-pill:hover {
  border-color: var(--whyzerr-teal);
  background: var(--whyzerr-teal-light);
  color: var(--whyzerr-teal);
}

.whyzerr-pill svg { width: 16px; height: 16px; }

/* ========================================
   Numbered Benefits (01, 02, 03)
   ======================================== */

.whyzerr-numbered-list {
  max-width: 800px;
  margin: 2.5rem auto;
}

.whyzerr-numbered-item {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.whyzerr-numbered-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 56px;
  bottom: -16px;
  width: 2px;
  background: #e8e8e8;
}

.whyzerr-numbered-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--whyzerr-teal), var(--whyzerr-teal-dark));
  color: var(--whyzerr-white);
  font-family: var(--whyzerr-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 125, 162, 0.2);
  position: relative;
  z-index: 1;
}

.whyzerr-numbered-content h3 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--whyzerr-dark) !important;
  margin: 0 0 0.35rem;
}

.whyzerr-numbered-content p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.95rem;
  color: var(--whyzerr-gray);
  margin: 0;
  line-height: 1.65;
}

/* ========================================
   Split Row (Text + Visual Side-by-Side)
   ======================================== */

.whyzerr-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.whyzerr-split-row.whyzerr-split-reverse {
  direction: rtl;
}

.whyzerr-split-row.whyzerr-split-reverse > * {
  direction: ltr;
}

.whyzerr-split-visual {
  background: linear-gradient(145deg, var(--whyzerr-teal-light), rgba(6, 125, 162, 0.08));
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(6, 125, 162, 0.12);
}

.whyzerr-split-visual svg { color: var(--whyzerr-teal); }

.whyzerr-split-visual.whyzerr-split-visual-orange {
  background: linear-gradient(145deg, var(--whyzerr-orange-light), rgba(245, 132, 31, 0.08));
  border-color: rgba(245, 132, 31, 0.12);
}

.whyzerr-split-visual-orange svg { color: var(--whyzerr-orange); }

.whyzerr-split-text h2 {
  font-family: var(--whyzerr-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--whyzerr-teal) !important;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.whyzerr-split-text p {
  font-family: var(--whyzerr-font-body);
  color: var(--whyzerr-gray);
  line-height: 1.75;
}

/* ========================================
   Values Cards (About Page)
   ======================================== */

.whyzerr-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.whyzerr-value-card {
  background: var(--whyzerr-white);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.whyzerr-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.whyzerr-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--whyzerr-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--whyzerr-orange);
}

.whyzerr-value-card:nth-child(2) .whyzerr-value-icon {
  background: var(--whyzerr-teal-light);
  color: var(--whyzerr-teal);
}

.whyzerr-value-card:nth-child(3) .whyzerr-value-icon {
  background: linear-gradient(135deg, rgba(245, 132, 31, 0.06), rgba(6, 125, 162, 0.06));
  color: var(--whyzerr-teal-dark);
}

.whyzerr-value-card h3 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--whyzerr-dark);
  margin: 0 0 0.5rem;
}

.whyzerr-value-card p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.92rem;
  color: var(--whyzerr-light-gray);
  margin: 0;
  line-height: 1.65;
}

/* ========================================
   Cost Comparison Grid
   ======================================== */

.whyzerr-cost-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.whyzerr-cost-card {
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyzerr-cost-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.whyzerr-cost-card.whyzerr-cost-muted {
  background: #fafafa;
  border-color: #ddd;
}

.whyzerr-cost-card.whyzerr-cost-highlight {
  border-color: var(--whyzerr-orange);
  background: linear-gradient(160deg, #fff 0%, rgba(245, 132, 31, 0.04) 100%);
  box-shadow: 0 4px 20px rgba(245, 132, 31, 0.1);
  transform: scale(1.03);
}

.whyzerr-cost-card.whyzerr-cost-highlight:hover {
  transform: scale(1.03) translateY(-4px);
}

.whyzerr-cost-card h4 {
  font-family: var(--whyzerr-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.whyzerr-cost-muted h4 { color: #888; }
.whyzerr-cost-highlight h4 { color: var(--whyzerr-orange); }

.whyzerr-cost-price {
  font-family: var(--whyzerr-font-display);
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  display: block;
}

.whyzerr-cost-muted .whyzerr-cost-price {
  color: #888;
  text-decoration: line-through;
  text-decoration-color: #ccc;
}

.whyzerr-cost-highlight .whyzerr-cost-price { color: var(--whyzerr-orange); }

.whyzerr-cost-detail {
  font-family: var(--whyzerr-font-body);
  font-size: 0.85rem;
  color: var(--whyzerr-light-gray);
  line-height: 1.5;
}

/* ========================================
   Dark Section Variant
   ======================================== */

.whyzerr-section-dark {
  background: linear-gradient(135deg, var(--whyzerr-dark) 0%, #2a2a2a 50%, #1f1f1f 100%);
  padding: 5.5rem 2rem;
  max-width: none !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  box-sizing: border-box;
}

.whyzerr-section-dark h2 {
  font-family: var(--whyzerr-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--whyzerr-white) !important;
  margin-bottom: 1.5rem;
}

.whyzerr-section-dark h3 { color: var(--whyzerr-white) !important; }

.whyzerr-section-dark p {
  font-family: var(--whyzerr-font-body);
  color: #aaa;
  line-height: 1.75;
}

.whyzerr-section-dark .whyzerr-mini-card {
  background: #2a2a2a;
  border-color: #3a3a3a;
}

.whyzerr-section-dark .whyzerr-mini-card:hover {
  border-color: var(--whyzerr-orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.whyzerr-section-dark .whyzerr-mini-card h4 { color: var(--whyzerr-white); }
.whyzerr-section-dark .whyzerr-mini-card p { color: #999; }

/* ========================================
   Checklist Grid (2-column)
   ======================================== */

.whyzerr-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin: 1.5rem 0;
}

.whyzerr-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--whyzerr-font-body);
  font-size: 0.95rem;
  color: var(--whyzerr-gray);
  padding: 0.5rem 0;
  line-height: 1.55;
}

.whyzerr-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--whyzerr-teal-light);
  color: var(--whyzerr-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.whyzerr-check-icon svg { width: 14px; height: 14px; }

/* ========================================
   Icon Feature Rows
   ======================================== */

.whyzerr-icon-rows {
  max-width: 800px;
  margin: 2rem auto;
}

.whyzerr-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  background: var(--whyzerr-white);
  border-radius: 14px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyzerr-icon-row:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.whyzerr-icon-row-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--whyzerr-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whyzerr-teal);
}

.whyzerr-icon-row:nth-child(even) .whyzerr-icon-row-icon {
  background: var(--whyzerr-orange-light);
  color: var(--whyzerr-orange);
}

.whyzerr-icon-row h4 {
  font-family: var(--whyzerr-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--whyzerr-dark);
  margin: 0 0 0.3rem;
}

.whyzerr-icon-row p {
  font-family: var(--whyzerr-font-body);
  font-size: 0.9rem;
  color: var(--whyzerr-gray);
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   Gradient Accent Section
   ======================================== */

.whyzerr-section-accent {
  background: linear-gradient(135deg, rgba(6, 125, 162, 0.04) 0%, rgba(245, 132, 31, 0.04) 100%);
  padding: 5.5rem 2rem;
  max-width: none !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  box-sizing: border-box;
  border-top: 3px solid var(--whyzerr-teal);
}

.whyzerr-section-accent h2 {
  font-family: var(--whyzerr-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--whyzerr-teal) !important;
  margin-bottom: 1.5rem;
}

.whyzerr-section-accent p {
  font-family: var(--whyzerr-font-body);
  color: var(--whyzerr-gray);
  line-height: 1.75;
}

/* ========================================
   New Layout Responsive Additions
   ======================================== */

@media (max-width: 768px) {
  .whyzerr-steps {
    flex-direction: column;
    gap: 2rem;
    padding-left: 2rem;
  }

  .whyzerr-steps::before {
    top: 0; bottom: 0;
    left: 27px; right: auto;
    width: 3px; height: auto;
  }

  .whyzerr-step {
    display: flex;
    text-align: left;
    gap: 1rem;
    align-items: flex-start;
  }

  .whyzerr-step-number {
    margin: 0;
    width: 44px; height: 44px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .whyzerr-step p { max-width: none; }

  .whyzerr-stats-banner {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .whyzerr-compare { grid-template-columns: 1fr; }

  .whyzerr-mini-cards { grid-template-columns: 1fr 1fr; }

  .whyzerr-alert-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }

  .whyzerr-split-row { grid-template-columns: 1fr; gap: 2rem; }
  .whyzerr-split-row.whyzerr-split-reverse { direction: ltr; }

  .whyzerr-values { grid-template-columns: 1fr; }
  .whyzerr-cost-compare { grid-template-columns: 1fr; }

  .whyzerr-cost-card.whyzerr-cost-highlight { transform: none; }
  .whyzerr-cost-card.whyzerr-cost-highlight:hover { transform: translateY(-4px); }

  .whyzerr-checklist-grid { grid-template-columns: 1fr; }

  .whyzerr-section-dark,
  .whyzerr-section-accent { padding: 3.5rem 1.5rem; }

  .whyzerr-numbered-item { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .whyzerr-mini-cards { grid-template-columns: 1fr; }

  .whyzerr-stats-banner { padding: 2.5rem 1rem; }

  .whyzerr-section-dark,
  .whyzerr-section-accent { padding: 2.5rem 1rem; }
}
