/* Prevent background flash */
html.dark-mode {
  background-color: #121212 !important;
}

/* Smooth color transitions for targeted layout containers and typography */
body,
body .site-header,
body .zubuz-iconbox-wrap2,
body .zubuz-pricing-wrap,
body .zubuz-tools-item,
body .zubuz-subscribe-two input[type="email"],
body .sub-menu,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body span,
body a,
body li {
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease !important;
}

/* Elegant Theme Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0c0c0c;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  outline: none;
  padding: 0;
  margin-right: 0;
}

/* ==========================================================================
   HEADER NAVIGATION - ZERO OVERLAP & FLEXBOX ARCHITECTURE
   ========================================================================== */

.site-header {
  position: relative;
  width: 100%;
  z-index: 2147483645 !important;
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Sticky Header on Scroll */
.site-header.sticky-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2147483645 !important;
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
}

body.dark-mode .site-header,
body.dark-mode .site-header.sticky-menu {
  background-color: #121212 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.dark-mode .site-header.sticky-menu {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* ==========================================================================
   DESIGN SYSTEM SPACING TOKENS & VERTICAL RHYTHM REFACTOR
   ========================================================================== */
:root {
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 120px;

  --lh-heading: 1.18;
  --lh-body: 1.6;
}

/* Hero Section Top Clearance Below Header */
.zubuz-hero-section2 {
  padding-top: 140px !important;
  padding-bottom: var(--space-3xl) !important;
}

/* Outer Section Vertical Padding Standardization (96px Desktop / 64px Mobile) */
.zubuz-brand-logo-section {
  padding-top: var(--space-3xl) !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.zubuz-cta-section2 {
  padding-top: var(--space-3xl) !important;
  padding-bottom: var(--space-3xl) !important;
}

.section,
.zubuz-section-padding,
.zubuz-section-padding2,
.zubuz-section-padding3 {
  padding-top: var(--space-3xl) !important;
  padding-bottom: var(--space-3xl) !important;
}

@media (max-width: 768px) {
  .zubuz-hero-section2 {
    padding-top: 100px !important;
    padding-bottom: var(--space-2xl) !important;
  }

  .zubuz-brand-logo-section,
  .zubuz-cta-section2,
  .section,
  .zubuz-section-padding,
  .zubuz-section-padding2,
  .zubuz-section-padding3 {
    padding-top: var(--space-2xl) !important;
    padding-bottom: var(--space-2xl) !important;
  }
}

/* Section Header to Content Gap (Strict 40px Bottom Margin Across All Pages) */
.zubuz-section-title,
.zubuz-section-title.mb-5,
.zubuz-section-title.mb-4,
.zubuz-two-column-title {
  margin-bottom: 40px !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}

.zubuz-section-title h1,
.zubuz-section-title h2 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Reset stray top margins on content elements following section titles */
.trustpilot-slider-wrap,
.zubuz-pricing-wrap,
.zubuz-video-column,
.zubuz-iconbox-wrap2 {
  margin-top: 0 !important;
}

/* Solution 1 Thumbnail 1296x640 px Dimensions & Left Border Extension */
.zubuz-v3-thumb,
.zubuz-v3-thumb>img {
  aspect-ratio: 1296 / 640 !important;
  width: 100% !important;
  object-fit: contain !important;
}

@media (min-width: 992px) {
  .zubuz-v3-thumb {
    margin-left: calc(-1 * ((100vw - 100%) / 2 + 15px)) !important;
    width: calc(100% + ((100vw - 100%) / 2 + 15px)) !important;
    position: relative !important;
  }

  .zubuz-v3-thumb>img {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
  }
}

/* Solution 2 Thumbnail 1296x640 px Dimensions & Right Border Extension */
.zubuz-v3-thumb2,
.zubuz-v3-thumb2>img {
  aspect-ratio: 1296 / 640 !important;
  width: 100% !important;
  object-fit: contain !important;
  margin-top: 50px !important;
  /* Control top margin */
  margin-bottom: 0px !important;
  /* Control bottom margin */
}

@media (min-width: 992px) {
  .zubuz-v3-thumb2 {
    margin-right: calc(-1 * ((100vw - 100%) / 2 + 15px)) !important;
    width: calc(100% + ((100vw - 100%) / 2 + 15px)) !important;
    margin-left: 0 !important;
    position: relative !important;
  }

  .zubuz-v3-thumb2>img {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
  }
}

.zubuz-v3-card,
.zubuz-v3-card2 {
  display: none !important;
}

.zubuz-hero-thumb-card1 img,
.zubuz-hero-thumb-card2 img,
.zubuz-hero-thumb-card3 img,
.zubuz-v3-card img,
.zubuz-v3-card2 img {
  box-shadow: none !important;
  filter: none !important;
}

.zubuz-hero-thumb-card2 img,
.zubuz-hero-thumb-card3 img {
  width: 140px !important;
  height: 140px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  box-shadow: none !important;
}

.zubuz-hero-thumb-card2 {
  bottom: 50px !important;
  right: 260px !important;
}

.zubuz-hero-thumb-card3 {
  bottom: 150px !important;
  right: 120px !important;
}

/* Secondary Hero Button (White BG, Blue Border, Blue Text) */
.hero-cta-btn2 {
  background-color: #ffffff !important;
  border: 2px solid #2962FF !important;
  color: #2962FF !important;
  transition: all 0.3s ease !important;
}

.hero-cta-btn2 span {
  color: #2962FF !important;
  transition: color 0.3s ease !important;
}

.hero-cta-btn2:hover {
  background-color: #2962FF !important;
  border-color: #2962FF !important;
  color: #ffffff !important;
}

.hero-cta-btn2:hover span {
  color: #ffffff !important;
}

/* All 60px Section Titles Line Height & Spacing */
.zubuz-section-title h1,
.zubuz-section-title h2,
.zubuz-hero-content h1,
.zubuz-cta-content h2 {
  font-size: 60px !important;
  font-weight: 800 !important;
  line-height: var(--lh-heading) !important;
  margin-bottom: var(--space-sm) !important;
}

@media (max-width: 768px) {

  .zubuz-section-title h1,
  .zubuz-section-title h2,
  .zubuz-hero-content h1,
  .zubuz-cta-content h2 {
    font-size: 34px !important;
  }
}

/* Heading & Typography Vertical Baseline */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--lh-heading) !important;
}

p,
span,
li {
  line-height: var(--lh-body) !important;
}

/* Grid & Card Inner Padding Symmetry (32px Equal Padding) */
.zubuz-iconbox-wrap2,
.zubuz-pricing-wrap,
.trustpilot-card,
.zubuz-video-column {
  border-radius: 20px !important;
  padding: var(--space-lg) !important;
}

/* Flexible Grid Gaps */
.row.g-4,
.row.g-5 {
  --bs-gutter-x: var(--space-lg) !important;
  --bs-gutter-y: var(--space-lg) !important;
}

@media (min-width: 992px) {

  /* 1. Navbar Container: Flex Row with 3 Groups (Logo, Nav, Utilities) */
  .site-navbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  /* GROUP 1: Far Left Logo */
  .site-navbar .brand-logo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    flex-shrink: 0 !important;
    margin: 0 32px 0 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .site-navbar .brand-logo a {
    display: flex !important;
    align-items: center !important;
  }

  .site-navbar .brand-logo img {
    height: auto !important;
    max-height: 55px !important;
    width: auto !important;
  }

  /* GROUP 2: Center Primary Navigation Items */
  .site-navbar .menu-block-wrapper {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    margin: 0 24px !important;
    max-width: none !important;
    background: transparent !important;
  }

  .site-navbar .menu-block {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .site-navbar .site-menu-main {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
    /* Enforces clean horizontal gap between links */
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
  }

  .site-navbar .site-menu-main>.nav-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .site-navbar .site-menu-main>.nav-item>.nav-link-item {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
  }

  /* GROUP 3: Far Right Utilities (Theme Toggle, Merchant Login, Get Started) */
  .site-navbar .header-btn {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    float: none !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    /* Uniform gap between theme toggle, login, get started */
  }

  /* Theme Toggle Button Baseline Alignment */
  .site-navbar .theme-toggle-btn {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
  }

  /* Merchant Login Button */
  .site-navbar .zubuz-header-btn-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  .site-navbar .zubuz-login-btn {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  /* Get Started Pill Button */
  .site-navbar .zubuz-header-btn {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
}

.theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
  border-color: rgba(0, 0, 0, 0.15);
}

.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}

/* Light mode state: show moon, hide sun */
body:not(.dark-mode) .theme-toggle-btn .sun-icon {
  transform: translateY(40px) rotate(45deg);
  opacity: 0;
}

body:not(.dark-mode) .theme-toggle-btn .moon-icon {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

/* Dark mode state: show sun, hide moon */
body.dark-mode .theme-toggle-btn .sun-icon {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

body.dark-mode .theme-toggle-btn .moon-icon {
  transform: translateY(-40px) rotate(-45deg);
  opacity: 0;
}

/* Dark mode overrides */
body.dark-mode {
  background-color: #121212 !important;
  color: #e2e8f0 !important;

  /* Override CSS variables used inside app.css */
  --heading-color: #ffffff;
  --body-color: #e2e8f0;
  --primary-color: #2962FF;
  /* Brand Blue */
  --gray-color: #94a3b8;
  --light-color: #1e293b;
  --light-bg: #181818;
  --white-bg: #121212;
}

/* Theme Toggle Button in Dark Mode */
body.dark-mode .theme-toggle-btn {
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body.dark-mode .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 12px rgba(41, 98, 255, 0.2);
}

/* Solid Header (Light Mode: #ffffff, Dark Mode: #121212) */
header.zubuz-header-section,
header.zubuz-header-section.sticky-menu {
  background-color: #ffffff !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease !important;
}

body.dark-mode header.zubuz-header-section,
body.dark-mode header.zubuz-header-section.sticky-menu {
  background-color: #121212 !important;
  background: #121212 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Typography, Links & Buttons */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .h1,
body.dark-mode .h2,
body.dark-mode .h3,
body.dark-mode .h4,
body.dark-mode .h5,
body.dark-mode .h6 {
  color: #ffffff !important;
}

body.dark-mode .nav-link-item {
  color: #cbd5e1 !important;
}

body.dark-mode .nav-link-item:hover,
body.dark-mode .nav-link-item.active {
  color: #6366f1 !important;
}

body.dark-mode .zubuz-login-btn {
  color: #cbd5e1 !important;
}

body.dark-mode .zubuz-login-btn:hover {
  color: #6366f1 !important;
}

body.dark-mode .zubuz-default-btn.zubuz-header-btn.pill {
  background-color: #2962FF !important;
}

body.dark-mode .zubuz-default-btn.zubuz-header-btn.pill:hover {
  background-color: #1d4ed8 !important;
}

/* Dropdown Sub-menu */
body.dark-mode .sub-menu {
  background-color: #121212 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode .sub-menu--item a {
  color: #cbd5e1 !important;
}

body.dark-mode .sub-menu--item a:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
}

/* Brand Partners Logos - invert for dark mode */
body.dark-mode .zubuz-brand-item img {
  filter: brightness(0) invert(1) opacity(0.65) !important;
}

/* Features grid cards */
body.dark-mode .zubuz-iconbox-wrap2 {
  background-color: #121212 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

body.dark-mode .zubuz-iconbox-data h3 {
  color: #ffffff !important;
}

body.dark-mode .zubuz-iconbox-data p {
  color: #94a3b8 !important;
}

/* Customer satisfaction stats details */
body.dark-mode .zubuz-hero-rating ul li {
  color: #cbd5e1 !important;
}

body.dark-mode .zubuz-counter-data h2,
body.dark-mode .zubuz-counter-data p {
  color: #ffffff !important;
}

body.dark-mode .zubuz-counter-data p {
  color: #94a3b8 !important;
}

/* Leads Section checklists */
body.dark-mode .zubuz-iconbox-wrap-left .zubuz-iconbox-data span {
  color: #ffffff !important;
}

body.dark-mode .zubuz-iconbox-wrap-left .zubuz-iconbox-data p {
  color: #94a3b8 !important;
}

/* Pricing Section - Clean High Contrast Styling */
#pricing {
  background-color: #ffffff;
}

body.dark-mode #pricing {
  background-color: #121212 !important;
}

.zubuz-pricing-wrap {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease !important;
}

.pricing-featured-card {
  border: 2px solid #2962FF !important;
  box-shadow: 0 10px 30px rgba(41, 98, 255, 0.15) !important;
}

body.dark-mode .zubuz-pricing-wrap {
  background-color: #181818 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

body.dark-mode .pricing-featured-card {
  background-color: #1a1a1a !important;
  border: 2px solid #2962FF !important;
  box-shadow: 0 10px 30px rgba(41, 98, 255, 0.25) !important;
}

.zubuz-pricing-wrap h3,
.zubuz-pricing-wrap h2,
.zubuz-pricing-wrap .plan-includes-title {
  color: #0f172a !important;
}

body.dark-mode .zubuz-pricing-wrap h3,
body.dark-mode .zubuz-pricing-wrap h2,
body.dark-mode .zubuz-pricing-wrap .plan-includes-title {
  color: #ffffff !important;
}

.zubuz-pricing-wrap p,
.zubuz-pricing-wrap ul li {
  color: #475569 !important;
}

body.dark-mode .zubuz-pricing-wrap p,
body.dark-mode .zubuz-pricing-wrap ul li {
  color: #cbd5e1 !important;
}

body.dark-mode .zubuz-pricing-btn:hover,
body.dark-mode .zubuz-pricing-btn.active {
  background-color: #2962FF !important;
  border-color: #2962FF !important;
  color: #ffffff !important;
}

body.dark-mode #pricing-features-table .table-responsive {
  background: #181818 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode #pricing-features-table table {
  color: #e2e8f0 !important;
}

body.dark-mode #pricing-features-table thead {
  background: rgba(41, 98, 255, 0.15) !important;
}

body.dark-mode #pricing-features-table thead th {
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode #pricing-features-table tbody td {
  color: #cbd5e1 !important;
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

body.dark-mode #pricing-features-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02) !important;
}

/* Integration Tools Wrapper */
body.dark-mode .zubuz-tools-item {
  background-color: #121212 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Footer Section */
body.dark-mode .zubuz-footer-section {
  background-color: #0d0d0d !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.dark-mode .zubuz-footer-textarea p,
body.dark-mode .zubuz-footer-menu ul li a {
  color: #94a3b8 !important;
}

body.dark-mode .zubuz-footer-menu ul li a:hover {
  color: #ffffff !important;
}

body.dark-mode .zubuz-footer-title p {
  color: #ffffff !important;
}

body.dark-mode .zubuz-copywright p {
  color: #64748b !important;
}

/* Preloader background */
body.dark-mode .zubuz-preloader-wrap {
  background: #121212 !important;
}

/* Three-way Pricing Switch styling */
.pricing-btn {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-toggle-three-way {
  position: relative;
  display: inline-flex;
  background: #EEF2F6;
  padding: 5px;
  border-radius: 35px;
  border: 1px solid #E2E8F0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.pricing-toggle-three-way .pricing-tab {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 8px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  border-radius: 30px;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pricing-toggle-three-way .pricing-tab:hover {
  color: #0F172A;
}

.pricing-toggle-three-way .pricing-tab.active {
  color: #0F172A !important;
  font-weight: 700;
}

.pricing-toggle-three-way .sliding-pill {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: #FFFFFF !important;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

body.dark-mode .pricing-toggle-three-way {
  background: #1c1c1c;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .pricing-toggle-three-way .pricing-tab {
  color: #cbd5e1;
}

body.dark-mode .pricing-toggle-three-way .pricing-tab.active {
  color: #ffffff;
}

body.dark-mode .pricing-toggle-three-way .sliding-pill {
  background: #2962FF;
}

/* Quarterly Pricing Selector Rule */
[data-pricing-dynamic][data-value-active="quarterly"] .dynamic-value:before {
  content: attr(data-quarterly);
}

[data-pricing-dynamic][data-value-active="six-months"] .dynamic-value:before {
  content: attr(data-six-months);
}

/* Contact Us Section active states */
.contact-tab-btn.active {
  background: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-tab-btn.active h4 {
  color: #2962FF !important;
}

.contact-tab-btn.active p {
  color: #475569 !important;
}

.contact-tab-btn.active .tab-badge {
  opacity: 1 !important;
}

.volume-btn.active {
  background: #ffffff !important;
  border-color: #2962FF !important;
  color: #2962FF !important;
  box-shadow: 0 4px 12px rgba(41, 98, 255, 0.15);
}

/* Trustpilot Carousel Styling (Premium Clean Design) */
.trustpilot-slider-wrap {
  margin-top: 40px;
}

.trustpilot-carousel .slick-track {
  display: flex !important;
}

.trustpilot-carousel .slick-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}

.trustpilot-carousel .slick-slide>div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trustpilot-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px;
  margin: 15px 10px;
  /* spacing between carousel cards */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 30px);
}

.trustpilot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(41, 98, 255, 0.08);
  border-color: rgba(41, 98, 255, 0.2);
}

.trustpilot-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.trustpilot-stars img {
  width: 16px;
  height: 16px;
}

.trustpilot-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.trustpilot-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 25px;
  font-style: italic;
  flex-grow: 1;
}

.trustpilot-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

.trustpilot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trustpilot-author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0px 0 !important;
  line-height: 1.15 !important;
}

.trustpilot-author-info span {
  font-size: 12px;
  color: #64748b;
  margin-top: 1px !important;
  line-height: 1.15 !important;
  display: block;
}

.tiktok-icon {
  color: #111827;
}

body.dark-mode .tiktok-icon {
  color: #ffffff;
}

/* Dark Mode Overrides for Trustpilot Card */
body.dark-mode .trustpilot-card {
  background: #121212;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.dark-mode .trustpilot-card:hover {
  border-color: rgba(41, 98, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .trustpilot-card h3 {
  color: #ffffff;
}

body.dark-mode .trustpilot-card p {
  color: #cbd5e1;
}

body.dark-mode .trustpilot-author {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .trustpilot-author-info h4 {
  color: #ffffff;
}

body.dark-mode .trustpilot-author-info span {
  color: #94a3b8;
}

body.dark-mode .trustpilot-avatar {
  border-color: #121212;
}

/* Slick Custom dots for trustpilot carousel */
.trustpilot-carousel-dots,
.slick-dots {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 30px 0 0 0 !important;
  gap: 8px !important;
  height: 12px !important;
  min-height: 12px !important;
  max-height: 12px !important;
}

.trustpilot-carousel-dots li,
.slick-dots li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 8px !important;
  min-height: 8px !important;
  max-height: 8px !important;
  width: 8px !important;
  min-width: 8px !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.trustpilot-carousel-dots li.slick-active,
.slick-dots li.slick-active {
  width: 24px !important;
  min-width: 24px !important;
  height: 8px !important;
  min-height: 8px !important;
  max-height: 8px !important;
}

.trustpilot-carousel-dots li button,
.slick-dots li button {
  border: none !important;
  background-color: #cbd5e1 !important;
  text-indent: -9999px !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  width: 100% !important;
  height: 8px !important;
  min-height: 8px !important;
  max-height: 8px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  outline: none !important;
  box-shadow: none !important;
}

.trustpilot-carousel-dots li button::before,
.slick-dots li button::before,
.trustpilot-carousel-dots li button::after,
.slick-dots li button::after {
  display: none !important;
  content: none !important;
}

.trustpilot-carousel-dots li.slick-active button,
.slick-dots li.slick-active button {
  background-color: #2962FF !important;
  width: 100% !important;
  height: 8px !important;
  min-height: 8px !important;
  max-height: 8px !important;
  border-radius: 4px !important;
}

body.dark-mode .trustpilot-carousel-dots li button,
body.dark-mode .slick-dots li button {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

body.dark-mode .trustpilot-carousel-dots li.slick-active button,
body.dark-mode .slick-dots li.slick-active button {
  background-color: #2962FF !important;
}

/* Completely Hide Theme Toggle Button (Light Mode Only) */
.theme-toggle-btn,
#theme-toggle {
  display: none !important;
}

/* Counter accent symbols (e.g. %, K, +) styled in brand blue */
.zubuz-counter-number em {
  color: #2962FF !important;
}

/* Process Step Number Circles: Permanent Brand Blue BG, White Text, NO Hover Effect */
.zubuz-iconbox-number,
.zubuz-iconbox-wrap-left:first-child .zubuz-iconbox-number,
.zubuz-iconbox-number.active,
.zubuz-iconbox-wrap-left:hover .zubuz-iconbox-number,
.zubuz-iconbox-number:hover {
  background-color: #2962FF !important;
  background: #2962FF !important;
  color: #ffffff !important;
  border: 1px solid #2962FF !important;
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}

/* ===== LOGO SIZE CONTROL ===== */
.brand-logo img,
.site-logo img,
.theme-logo,
.light-version-logo,
.blue-logo-light {
  max-width: 320px !important;
  max-height: 100px !important;
  height: auto;
  display: inline-block !important;
}

/* Blue Logo Filter for Light Mode */
body:not(.dark-mode) .blue-logo-light {
  filter: invert(24%) sepia(90%) saturate(6000%) hue-rotate(220deg) brightness(95%) contrast(105%) !important;
}

/* Header styles for About Us and Careers pages (sitting on Blue Hero Banner when NOT scrolled) */
.header-blue-bg:not(.sticky-menu) .nav-link-item,
.header-blue-bg:not(.sticky-menu) .zubuz-login-btn,
.header-blue-bg:not(.sticky-menu) .theme-toggle-btn {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.header-blue-bg:not(.sticky-menu) .mobile-menu-trigger span,
.header-blue-bg:not(.sticky-menu) .mobile-menu-trigger span:before,
.header-blue-bg:not(.sticky-menu) .mobile-menu-trigger span:after {
  background-color: #ffffff !important;
}

/* Header logo at top of page (unscrolled) is WHITE on About Us & Careers in Light Mode */
body:not(.dark-mode) .header-blue-bg:not(.sticky-menu) .sticky-blue-logo {
  filter: brightness(0) invert(1) !important;
}

/* When scrolled (.sticky-menu) in Light Mode on About Us & Careers, logo turns BLUE (#2962FF) */
body:not(.dark-mode) .header-blue-bg.sticky-menu .sticky-blue-logo {
  filter: invert(24%) sepia(90%) saturate(6000%) hue-rotate(220deg) brightness(95%) contrast(105%) !important;
}

/* Scrolled nav items in Light Mode return to dark/blue readability against blurred white header */
body:not(.dark-mode) .header-blue-bg.sticky-menu .nav-link-item {
  color: #0c0c0c !important;
}

body:not(.dark-mode) .header-blue-bg.sticky-menu .nav-link-item:hover,
body:not(.dark-mode) .header-blue-bg.sticky-menu .nav-link-item.active {
  color: #2962FF !important;
}

body:not(.dark-mode) .header-blue-bg.sticky-menu .zubuz-login-btn {
  color: #0c0c0c !important;
}

body:not(.dark-mode) .header-blue-bg.sticky-menu .zubuz-login-btn:hover {
  color: #2962FF !important;
}

body:not(.dark-mode) .header-blue-bg.sticky-menu .theme-toggle-btn {
  color: #0c0c0c !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
}

body:not(.dark-mode) .header-blue-bg.sticky-menu .mobile-menu-trigger span,
body:not(.dark-mode) .header-blue-bg.sticky-menu .mobile-menu-trigger span:before,
body:not(.dark-mode) .header-blue-bg.sticky-menu .mobile-menu-trigger span:after {
  background-color: #000000 !important;
}

/* In Dark Mode on About Us & Careers, header logo remains WHITE */
body.dark-mode .header-blue-bg .sticky-blue-logo {
  filter: brightness(0) invert(1) !important;
}

/* Reduced Hero Height for Inner Pages (About Us, Careers, Single Career) */
.zubuz-breadcrumb {
  padding: 170px 0 90px !important;
}

/* Universal H1 Page Titles Across All Pages */
.zubuz-breadcrumb h1.post__title,
.zubuz-breadcrumb h1,
h1.post__title,
.zubuz-hero-section h1,
.zubuz-hero-content h1 {
  font-size: 60px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

@media (max-width: 991px) {
  .zubuz-breadcrumb {
    padding: 140px 0 80px !important;
  }

  .zubuz-breadcrumb h1.post__title,
  .zubuz-breadcrumb h1,
  h1.post__title,
  .zubuz-hero-section h1,
  .zubuz-hero-content h1 {
    font-size: 42px !important;
  }
}

@media (max-width: 767px) {
  .zubuz-breadcrumb {
    padding: 130px 0 70px !important;
  }

  .zubuz-breadcrumb h1.post__title,
  .zubuz-breadcrumb h1,
  h1.post__title,
  .zubuz-hero-section h1,
  .zubuz-hero-content h1 {
    font-size: 32px !important;
  }
}

/* Footer Menu Link Font Size & Spacing (16px, font-weight 600, tight spacing) */
.zubuz-footer-menu ul {
  gap: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.zubuz-footer-menu ul li {
  margin: 3px 0 !important;
  padding: 0 !important;
}

.zubuz-footer-menu ul li a {
  font-size: 16px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  padding: 2px 0 !important;
}

/* Modern Sleek Newsletter Input Container */
.footer-newsletter-form .newsletter-input-wrap {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 50px !important;
  padding: 4px 4px 4px 16px !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
}

.footer-newsletter-form .newsletter-input-wrap:focus-within {
  border-color: #2962FF !important;
  box-shadow: 0 0 0 3px rgba(41, 98, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.09) !important;
}

.footer-newsletter-form input.form-control,
.footer-newsletter-form input.form-control:focus {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 14px !important;
  outline: none !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  padding: 0 6px 0 0 !important;
}

.footer-newsletter-form input::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

.footer-newsletter-form button.newsletter-btn {
  background: #2962FF !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(41, 98, 255, 0.35) !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.footer-newsletter-form button.newsletter-btn:hover {
  background: #1e4bd8 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(41, 98, 255, 0.5) !important;
}

.footer-newsletter-form button.newsletter-btn:hover {
  background: #1e4bd8 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(41, 98, 255, 0.5) !important;
}

/* Footer Social Icon Buttons Hover */
.social-icon-btn:hover {
  background: #2962FF !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* Perks Cards Symmetry & Brand Blue Icon Badges */
.perks-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  padding: 28px 24px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  background-color: var(--white-bg);
  transition: all 0.3s ease !important;
}

body.dark-mode .perks-card {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background-color: #121212 !important;
}

.perks-card:hover {
  border-color: #2962FF !important;
  box-shadow: 0 10px 30px rgba(41, 98, 255, 0.12) !important;
  transform: translateY(-4px);
}

.perks-icon-box {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: rgba(41, 98, 255, 0.1);
  color: #2962FF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.perks-card:hover .perks-icon-box {
  background-color: #2962FF !important;
  color: #ffffff !important;
  transform: scale(1.08);
}

/* Pricing Table Blue Checkmarks */
.zubuz-pricing-body ul li i,
.zubuz-pricing-body li i {
  color: #2962FF !important;
  margin-right: 10px !important;
  font-size: 18px !important;
  vertical-align: middle !important;
}

/* Hero Title Shape & Text Overlap Fix */
.zubuz-hero-content h1 span.zubuz-title-shape {
  position: relative !important;
  display: inline-block !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  z-index: 1 !important;
  width: auto !important;
  padding: 0 4px !important;
}

.zubuz-hero-content h1 span.zubuz-title-shape img {
  position: absolute !important;
  bottom: -4px !important;
  left: 0 !important;
  width: 100% !important;
  height: 85% !important;
  top: auto !important;
  right: auto !important;
  z-index: -1 !important;
  object-fit: fill !important;
  display: block !important;
}

.zubuz-pricing-body ul li img,
.zubuz-pricing-body li img {
  filter: invert(24%) sepia(90%) saturate(6000%) hue-rotate(220deg) brightness(95%) contrast(105%) !important;
}

/* Merchant Auth Popup Modal */
.merchant-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.merchant-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.merchant-modal-card {
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 440px;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.merchant-modal-overlay.active .merchant-modal-card {
  transform: translateY(0) scale(1);
}

body.dark-mode .merchant-modal-card {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.merchant-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
}

.merchant-modal-close:hover {
  color: #0f172a;
}

body.dark-mode .merchant-modal-close:hover {
  color: #ffffff;
}

.auth-tabs-nav {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 14px;
  margin-bottom: 24px;
}

body.dark-mode .auth-tabs-nav {
  background: #262626;
}

.auth-tab-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.auth-tab-btn.active {
  background: #ffffff;
  color: #2962FF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.dark-mode .auth-tab-btn {
  color: #a3a3a3;
}

body.dark-mode .auth-tab-btn.active {
  background: #181818;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.merchant-form .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

body.dark-mode .merchant-form .form-label {
  color: #cbd5e1;
}

.merchant-form .form-control {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  transition: all 0.2s ease;
}

body.dark-mode .merchant-form .form-control {
  background: #262626;
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.merchant-form .form-control:focus {
  border-color: #2962FF;
  box-shadow: 0 0 0 3px rgba(41, 98, 255, 0.15);
  outline: none;
}

.auth-submit-btn {
  width: 100%;
  background: #2962FF;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.auth-submit-btn:hover {
  background: #1d4ed8;
}

/* Symmetrical Problem Grid Cards */
.zubuz-iconbox-wrap-left.iconbox-left-border {
  height: 100% !important;
  min-height: 145px !important;
  display: flex !important;
  align-items: flex-start !important;
  padding: 28px 24px !important;
  border-radius: 16px !important;
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERRIDES (@media (max-width: 991px))
   ========================================================================== */
@media (max-width: 991px) {
  /* Disable forced aspect ratio & object-fit cropping on mobile */
  .dark-bg .zubuz-v3-thumb2,
  .zubuz-v3-thumb2,
  [class*="v3-thumb"] {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .dark-bg .zubuz-v3-thumb2 img,
  .zubuz-v3-thumb2 img,
  [class*="v3-thumb"] img {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

/* Prevent the fixed/sticky header from overlaying the custom viewport scrollbar on desktop */
@media (min-width: 992px) {
  header.zubuz-header-section,
  .site-header,
  .site-header--sticky,
  .site-header--absolute,
  #sticky-menu,
  .site-header.sticky-menu {
    width: calc(100% - 10px) !important;
    right: 10px !important;
    left: auto !important;
  }

  html[dir="rtl"] header.zubuz-header-section,
  html[dir="rtl"] .site-header,
  html[dir="rtl"] .site-header--sticky,
  html[dir="rtl"] .site-header--absolute,
  html[dir="rtl"] #sticky-menu,
  html[dir="rtl"] .site-header.sticky-menu {
    right: auto !important;
    left: 10px !important;
  }
}