/* CSS Variables - Dark Theme Design System */
:root {
  /* Brand Colors */
  --wp-primary: #0d3d56;
  --wp-accent: #e63e6d;
  --wp-accent-light: #ff4d6d;
  --wp-secondary: #22d3ee;

  /* Dark Theme Backgrounds */
  --bg-dark: #020205;
  --bg-dark-800: #0a0a0f;
  --bg-dark-700: #141418;
  --bg-dark-600: #1e1e24;
  --bg-grey: #fafafa;
  --bg-white: #ffffff;

  /* Light theme fallbacks */
  --wp-primary-light: rgba(13, 61, 86, 0.08);
  --wp-secondary-light: rgba(34, 211, 238, 0.08);
  --wp-primary-dark: #052c44;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Border Colors */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-divider: rgba(255, 255, 255, 0.08);
  --border-divider-grey: rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-headings: "Plus Jakarta Sans", "Open Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", "Montserrat", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(230, 62, 109, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* Critical LCP Styles */
.weltpixel-2025-home .hero-section .lead {
  font-family: var(--font-body);
  font-size: 2.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 90%;
  display: block;
  content-visibility: auto;
  contain-intrinsic-size: 0 100px;
}

.weltpixel-2025-home {
  /* Base Styles - Dark Theme */
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

/* Scoped selectors */
.weltpixel-2025-home * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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


@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.weltpixel-2025-home .animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.weltpixel-2025-home .animate-delay-1 {
  animation-delay: 0.1s;
}
.weltpixel-2025-home .animate-delay-2 {
  animation-delay: 0.2s;
}
.weltpixel-2025-home .animate-delay-3 {
  animation-delay: 0.3s;
}
.weltpixel-2025-home .animate-delay-4 {
  animation-delay: 0.4s;
}
.weltpixel-2025-home .animate-delay-5 {
  animation-delay: 0.5s;
}

.weltpixel-2025-home .btn {
  border-radius: 8px;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  line-height: 1.5;
  border: 1px solid transparent;
  overflow: hidden;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.weltpixel-2025-home .btn:hover,
.weltpixel-2025-home .btn:focus {
  /* Remove global lift effect on hover */
  transform: none;
  text-decoration: none;
}

/* Primary/Get Started Button */
.weltpixel-2025-home .btn-primary,
.weltpixel-2025-home .btn-get-started {
  background: var(--wp-accent);
  border: 1px solid var(--wp-accent);
  color: white;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}

.weltpixel-2025-home .btn-primary:hover,
.weltpixel-2025-home .btn-primary:focus,
.weltpixel-2025-home .btn-get-started:hover,
.weltpixel-2025-home .btn-get-started:focus {
  /* Simple hover: keep background, just adjust border */
  border-color: var(--wp-accent-light);
  box-shadow: none;
}

/* Watch Demo Button */
.weltpixel-2025-home .btn-watch-demo {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}

.weltpixel-2025-home .btn-watch-demo:hover,
.weltpixel-2025-home .btn-watch-demo:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: white !important;
  border-color: white;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Reviews Button */
.weltpixel-2025-home .btn-reviews {
  background: #f46f25 !important;
  border: 1px solid #f46f25 !important;
  color: white !important;
  box-shadow: none !important;
}

.weltpixel-2025-home .btn-reviews:hover,
.weltpixel-2025-home .btn-reviews:focus {
  background: #ff8533 !important;
  border-color: #ff8533 !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(244, 111, 37, 0.4), 0 0 0 1px rgba(255, 133, 51, 0.2) inset !important;
  transform: none !important;
}

/* Outline Button Variants */
.weltpixel-2025-home .btn-outline-primary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}

.weltpixel-2025-home .hero-section .btn-outline-primary {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.weltpixel-2025-home .btn-outline-primary:hover,
.weltpixel-2025-home .btn-outline-primary:focus {
  background-color: var(--wp-primary);
  color: white !important;
  border-color: var(--wp-primary);
  box-shadow: 0 4px 12px rgba(7, 55, 86, 0.15);
}

.weltpixel-2025-home .btn-outline-light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
}

.weltpixel-2025-home .btn-outline-light:hover,
.weltpixel-2025-home .btn-outline-light:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* ============================================
   Hero CTA Hover Overrides (Simple Border Only)
   ============================================ */
/* Magento hero CTA - using Magento orange (#f46f25) */
.weltpixel-2025-home .hero-section .btn-get-started,
.weltpixel-2025-home .hero-product-magento .btn-get-started {
  background: #f46f25 !important;
  border: 1px solid #f46f25 !important;
  color: white !important;
}

.weltpixel-2025-home .hero-section .btn-get-started:hover,
.weltpixel-2025-home .hero-section .btn-get-started:focus,
.weltpixel-2025-home .hero-product-magento .btn-get-started:hover,
.weltpixel-2025-home .hero-product-magento .btn-get-started:focus {
  background: #ff8533 !important;
  border-color: #ff8533 !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(244, 111, 37, 0.4), 0 0 0 1px rgba(255, 133, 51, 0.2) inset !important;
  transform: none !important;
}

/* Shopify hero CTA */
.weltpixel-2025-home .hero-section .btn-shopify:hover,
.weltpixel-2025-home .hero-section .btn-shopify:focus {
  background: #b5d66a !important;
  border-color: #b5d66a !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(150, 191, 72, 0.4), 0 0 0 1px rgba(181, 214, 106, 0.2) inset !important;
  transform: none !important;
}

/* Hero outline buttons - simple border-only hover */
.weltpixel-2025-home .hero-section .btn-outline-primary:hover,
.weltpixel-2025-home .hero-section .btn-outline-primary:focus {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: white !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Magento card outline button - orange border on hover */
.weltpixel-2025-home .hero-product-magento .btn-outline-primary:hover,
.weltpixel-2025-home .hero-product-magento .btn-outline-primary:focus,
.weltpixel-2025-home .hero-product-magento .btn-watch-demo:hover,
.weltpixel-2025-home .hero-product-magento .btn-watch-demo:focus {
  background-color: rgba(255, 133, 51, 0.1) !important;
  border-color: #ff8533 !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(244, 111, 37, 0.3), 0 0 0 1px rgba(255, 133, 51, 0.2) inset !important;
  transform: none !important;
}

/* Shopify card outline button - green border on hover */
.weltpixel-2025-home .hero-product-shopify .btn-outline-primary:hover,
.weltpixel-2025-home .hero-product-shopify .btn-outline-primary:focus {
  background-color: rgba(181, 214, 106, 0.1) !important;
  border-color: #b5d66a !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(150, 191, 72, 0.3), 0 0 0 1px rgba(181, 214, 106, 0.2) inset !important;
  transform: none !important;
}

/* Large Button Variant */
.weltpixel-2025-home .btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Button Hover Effect - Disabled for hero buttons */
.weltpixel-2025-home .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.weltpixel-2025-home .btn:hover::after {
  width: 300%;
  height: 300%;
}

/* Disable grey fill effect for hero buttons */
.weltpixel-2025-home .hero-section .btn::after,
.weltpixel-2025-home .hero-product-card .btn::after,
.weltpixel-2025-home .btn-reviews::after {
  display: none !important;
}

/* Card Styles */
.weltpixel-2025-home .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  background-clip: border-box;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
}

.weltpixel-2025-home .card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: var(--border-hover);
}

.weltpixel-2025-home .card-body {
  flex: 1 1 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
}

.weltpixel-2025-home .card-body p {
  color: var(--text-secondary);
}

/* Feature Cards */
.weltpixel-2025-home .feature-card {
  background-color: rgba(10, 10, 15, 0.8);
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  pointer-events: none;
}

.weltpixel-2025-home .feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  border-color: var(--border-hover);
}

.weltpixel-2025-home .feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.weltpixel-2025-home .feature-card:hover .icon-wrapper {
  background: transparent;
}

.weltpixel-2025-home .feature-card:hover .icon-wrapper i {
  color: var(--wp-accent);
}

.weltpixel-2025-home .feature-card h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-primary);
  text-transform: uppercase;
  font-weight: 800;
}

.weltpixel-2025-home .feature-card p {
  color: var(--text-secondary);
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Base Styles */
.weltpixel-2025-home h1,
.weltpixel-2025-home h2,
.weltpixel-2025-home h3,
.weltpixel-2025-home h4,
.weltpixel-2025-home h5,
.weltpixel-2025-home h6 {
  font-family: var(--font-headings);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.weltpixel-2025-home h1 {
  font-size: 5.5rem;
  line-height: 1.1;
}

.weltpixel-2025-home h2 {
  font-size: 4rem;
  line-height: 1.2;
}

.weltpixel-2025-home h3 {
  font-size: 3.25rem;
  line-height: 1.3;
}

.weltpixel-2025-home h4 {
  font-size: 2.75rem;
  line-height: 1.4;
}

.weltpixel-2025-home .display-5 {
  font-size: 4rem;
  font-family: var(--font-headings);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Responsive Typography */
@media (max-width: 800px) {
  .weltpixel-2025-home h1 {
    font-size: 4.5rem;
  }

  .weltpixel-2025-home h2 {
    font-size: 3.5rem;
  }

  .weltpixel-2025-home h3 {
    font-size: 2.875rem;
  }

  .weltpixel-2025-home h4 {
    font-size: 2.5rem;
  }

  .weltpixel-2025-home .display-5 {
    font-size: 3.5rem;
  }

  .weltpixel-2025-home .hero-section h1 {
    font-size: 4.5rem;
  }

  .weltpixel-2025-home .hero-section .featured-product h2 {
    font-size: 3rem;
  }

  .weltpixel-2025-home .feature-card h3.h4 {
    font-size: 2.5rem;
  }

  .weltpixel-2025-home .feature-card h3.h5 {
    font-size: 2.25rem;
  }

  .weltpixel-2025-home .testimonial-card .review-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .weltpixel-2025-home h1 {
    font-size: 4rem;
  }

  .weltpixel-2025-home h2 {
    font-size: 3.25rem;
  }

  .weltpixel-2025-home h3 {
    font-size: 2.75rem;
  }

  .weltpixel-2025-home h4 {
    font-size: 2.375rem;
  }

  .weltpixel-2025-home .display-5 {
    font-size: 3.25rem;
  }

  .weltpixel-2025-home .hero-section h1 {
    font-size: 4rem;
  }

  .weltpixel-2025-home .hero-section .featured-product h2 {
    font-size: 2.75rem;
  }

  .weltpixel-2025-home .feature-card h3.h4 {
    font-size: 2.375rem;
  }

  .weltpixel-2025-home .feature-card h3.h5 {
    font-size: 2.125rem;
  }
}

.weltpixel-2025-home .navbar,
.weltpixel-2025-home .navbar-brand,
.weltpixel-2025-home .navbar-nav,
.weltpixel-2025-home .navbar .btn-outline-light {
  display: none;
}

/* Hero Section */
.weltpixel-2025-home .hero-section {
  background-color: var(--bg-dark) !important;
  background-image: none !important;
  background: var(--bg-dark) !important;
  color: white;
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.weltpixel-2025-home .hero-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.weltpixel-2025-home .hero-row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .hero-section {
    padding: 5rem 0 6rem;
  }

  .weltpixel-2025-home .hero-row > [class*="col-"] {
    width: 100%;
  }

  .weltpixel-2025-home .hero-section .row.g-4 > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row {
    flex-direction: column;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center;
  }

  .weltpixel-2025-home .hero-section .stat-item::after {
    display: none;
  }

  .weltpixel-2025-home .seo-content .row > [class*="col-lg-6"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .weltpixel-2025-home .testimonials .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .weltpixel-2025-home .testimonials .testimonial-card {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .weltpixel-2025-home .hero-section .stat-title {
    font-size: 1.1rem;
  }

  .weltpixel-2025-home .hero-section .stat-number {
    font-size: 2rem;
  }

  .weltpixel-2025-home .hero-section .stat-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .hero-section {
    padding: 4rem 0 5rem;
  }

  .weltpixel-2025-home .hero-section .row.g-4 > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .weltpixel-2025-home .hero-section .row.g-4 > .col-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper {
    text-align: center;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row {
    align-items: center;
    justify-content: center;
  }

  .weltpixel-2025-home .hero-section .stat-item {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .weltpixel-2025-home .hero-section .stat-item::after {
    display: none;
  }

  .weltpixel-2025-home .hero-section .stat-title {
    font-size: 1.1rem;
  }

  .weltpixel-2025-home .hero-section .stat-number {
    font-size: 2rem;
  }

  .weltpixel-2025-home .hero-section .stat-description {
    font-size: 1.1rem;
  }
}

.weltpixel-2025-home .hero-section::before,
.weltpixel-2025-home .hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent !important;
  background-image: none !important;
}

.weltpixel-2025-home .hero-section .container {
  position: relative;
  z-index: 2;
}

/* Override align-items-center utility class for hero row - must be more specific */
.weltpixel-2025-home .hero-section > .container > .row.align-items-center {
  /* Simply align hero columns to the top - override utility class with !important */
  align-items: flex-start !important;
}

/* Ensure main container matches Shopify width (~1280px) */
@media (min-width: 1200px) {
  .weltpixel-2025-home .container {
    max-width: 1280px;
  }
}

@media (min-width: 992px) {
  .weltpixel-2025-home .hero-section .col-lg-7 {
    padding-right: 2rem;
  }

  .weltpixel-2025-home .hero-section .col-lg-5 {
    padding-left: 2rem;
  }

  /* Right hero column: stack dashboard + chart, no forced equal-height */
  .weltpixel-2025-home .hero-section .col-lg-5.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  /* Remove extra vertical offset inside right column */
  .weltpixel-2025-home .hero-section .hero-right-column .event-dashboard {
    margin: 0;
    max-width: 100%;
  }

  .weltpixel-2025-home .hero-section .hero-right-column .trend-chart-wrapper {
    margin-top: 0;
  }
  
  .weltpixel-2025-home .hero-section .col-lg-6 .trend-chart-wrapper {
    margin-top: 0;
    height: 100%;
  }
}

.weltpixel-2025-home .hero-section .company-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--wp-secondary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .weltpixel-2025-home .hero-section .company-tag {
    font-size: 0.95rem;
  }
}

.weltpixel-2025-home .hero-section h1 {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 0;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .hero-section h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .hero-section h1 {
    font-size: 3.25rem;
    line-height: 1.15;
  }
}

.weltpixel-2025-home .hero-section .featured-product {
  border-left: 3px solid var(--wp-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.weltpixel-2025-home .hero-section .featured-label {
  display: inline-block;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--wp-accent);
  font-weight: 600;
}

.weltpixel-2025-home .hero-section .featured-product h2 {
  font-size: 3.25rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-primary);
}

.weltpixel-2025-home .accent-text {
  color: var(--wp-accent);
}

/* ===============================
   New Hero Product Split (Magento vs Shopify)
   =============================== */
.weltpixel-2025-home .hero-subtitle {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.weltpixel-2025-home .hero-product-row {
  margin-top: 0.5rem;
}

/* Ensure product cards have equal height */
.weltpixel-2025-home .hero-section .row.g-4 {
  align-items: stretch;
}

.weltpixel-2025-home .hero-section .row.g-4 > [class*="col-"] {
  display: flex;
}

.weltpixel-2025-home .hero-section .row.g-4 > [class*="col-"] > .hero-product-card {
  flex: 1;
}

.weltpixel-2025-home .hero-product-card {
  background-color: rgba(2, 2, 5, 0.9);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.weltpixel-2025-home .hero-product-logo {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  opacity: 0.4;
  pointer-events: none;
}

.weltpixel-2025-home .hero-product-logo i {
  font-size: 6rem;
  line-height: 1;
  display: block;
}

.weltpixel-2025-home .hero-product-magento .hero-product-logo i {
  color: #f46f25;
}

.weltpixel-2025-home .hero-product-shopify .hero-product-logo i {
  color: #96bf48;
}

.weltpixel-2025-home .hero-product-card:hover {
  /* Subtle emphasis only – no vertical movement */
  transform: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.weltpixel-2025-home .hero-product-magento {
  /* Magento card with brand orange border and glow */
  background: rgba(2, 2, 5, 0.95);
  border: 1.5px solid rgba(244, 111, 37, 0.4) !important;
  box-shadow: 0 4px 20px rgba(244, 111, 37, 0.15), 
              0 0 40px rgba(244, 111, 37, 0.08) !important;
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home .hero-product-magento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(244, 111, 37, 0.12), transparent 60%);
  pointer-events: none;
  border-radius: 16px;
  z-index: 0;
}

.weltpixel-2025-home .hero-product-magento:hover {
  border-color: rgba(244, 111, 37, 0.6) !important;
  box-shadow: 0 8px 32px rgba(244, 111, 37, 0.25), 
              0 0 60px rgba(244, 111, 37, 0.12) !important;
}

.weltpixel-2025-home .hero-product-shopify {
  /* Shopify card with green border and glow */
  background: rgba(2, 2, 5, 0.95);
  border: 1.5px solid rgba(150, 191, 72, 0.4) !important;
  box-shadow: 0 4px 20px rgba(150, 191, 72, 0.15), 
              0 0 40px rgba(150, 191, 72, 0.08) !important;
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home .hero-product-shopify::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(150, 191, 72, 0.12), transparent 60%);
  pointer-events: none;
  border-radius: 16px;
  z-index: 0;
}

.weltpixel-2025-home .hero-product-shopify:hover {
  border-color: rgba(150, 191, 72, 0.6) !important;
  box-shadow: 0 8px 32px rgba(150, 191, 72, 0.25), 
              0 0 60px rgba(150, 191, 72, 0.12) !important;
}

.weltpixel-2025-home .hero-product-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.weltpixel-2025-home .hero-product-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.weltpixel-2025-home .hero-product-pill-magento {
  /* Magento badge with brand orange tint */
  background: rgba(244, 111, 37, 0.18);
  color: #ffe0d1;
}

.weltpixel-2025-home .hero-product-pill-shopify {
  background: rgba(150, 191, 72, 0.16);
  color: #e9f4d1;
}

.weltpixel-2025-home .hero-product-copy {
  font-size: 1.425rem;
  color: var(--text-secondary);
  margin: 0.35rem 0 0.75rem;
  line-height: 1.5;
}

.weltpixel-2025-home .hero-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.weltpixel-2025-home .hero-integration-pill {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.weltpixel-2025-home .hero-integration-pill:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background-color: rgba(15, 23, 42, 1);
}

/* Platform logo icons using Iconify */
.weltpixel-2025-home .hero-integration-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.weltpixel-2025-home .hero-integration-logo:hover {
  border-color: rgba(148, 163, 184, 0.6);
  background-color: rgba(15, 23, 42, 1);
  transform: scale(1.05);
}

.weltpixel-2025-home .hero-integration-logo i {
  display: block;
  line-height: 1;
}

.weltpixel-2025-home .hero-product-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

/* Standardize all hero CTA buttons to same width */
.weltpixel-2025-home .hero-product-ctas .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 1.5rem;
}

.weltpixel-2025-home .hero-product-meta {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.weltpixel-2025-home .hero-product-meta li::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--wp-secondary);
}

@media (max-width: 991px) {
  .weltpixel-2025-home .hero-product-card {
    padding: 1.5rem 1.25rem;
  }
  
  .weltpixel-2025-home .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .hero-product-ctas .btn {
    width: 100%;
  }
  
  .weltpixel-2025-home .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
  }
}

/* ===============================
   Event Dashboard (Hero Visual)
   =============================== */
.weltpixel-2025-home .event-dashboard {
  background: rgba(2, 2, 5, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.75);
  padding: 1.5rem 1.3rem 1.3rem;
  width: 100%;
  max-width: 520px;
  margin: 2rem auto 0;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weltpixel-2025-home .event-dashboard:hover {
  /* Keep hover subtle – no vertical movement */
  transform: none;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.85);
}

.weltpixel-2025-home .event-dashboard-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.weltpixel-2025-home .event-dashboard-dots {
  display: inline-flex;
  gap: 0.3rem;
}

.weltpixel-2025-home .event-dashboard-dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  display: block;
}

.weltpixel-2025-home .event-dashboard-dots span:nth-child(1) {
  background-color: #f97373;
}

.weltpixel-2025-home .event-dashboard-dots span:nth-child(2) {
  background-color: #facc15;
}

.weltpixel-2025-home .event-dashboard-dots span:nth-child(3) {
  background-color: #4ade80;
}

.weltpixel-2025-home .event-dashboard-title {
  flex: 1;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
}

.weltpixel-2025-home .event-dashboard-title span {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.weltpixel-2025-home .event-dashboard-body {
  background-color: rgba(8, 8, 12, 0.9);
  border-radius: 14px;
  padding: 1.1rem 1rem 0.9rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.weltpixel-2025-home .event-dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.weltpixel-2025-home .event-dashboard-top-label {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 500;
}

.weltpixel-2025-home .event-dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.05rem;
  font-family: var(--font-mono);
  color: #22c55e;
}

.weltpixel-2025-home .event-dashboard-status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background-color: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
  animation: none;
}

.weltpixel-2025-home .event-dashboard-stream {
  margin-top: 0.3rem;
  height: 260px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.weltpixel-2025-home .event-row-wrapper {
  height: 0;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(-16px);
  transition: height 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    margin-bottom 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.weltpixel-2025-home .event-row-wrapper.event-row-enter {
  height: 44px;
  margin-bottom: 8px;
  opacity: 1;
  transform: translateY(0);
}

.weltpixel-2025-home .event-row-wrapper.event-row-exit {
  height: 0 !important;
  margin-bottom: 0 !important;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition-duration: 0.5s;
}

.weltpixel-2025-home .event-row,
.weltpixel-2025-home .event-row-static {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.4rem;
  height: 44px;
  border-radius: 999px;
  background-color: rgba(8, 8, 12, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: all 0.5s ease;
}

.weltpixel-2025-home .event-row-active {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 20px -5px rgba(34, 197, 94, 0.15);
}

.weltpixel-2025-home .event-row-muted {
  background-color: rgba(8, 8, 12, 0.5);
  border-color: rgba(148, 163, 184, 0.4);
  box-shadow: none;
}

.weltpixel-2025-home .event-platform {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.weltpixel-2025-home .event-platform span {
  transform: translateY(0.5px);
}

.weltpixel-2025-home .event-platform-ga {
  background-color: rgba(227, 116, 0, 0.2);
  color: #fed7aa;
}

.weltpixel-2025-home .event-platform-meta {
  background-color: rgba(0, 129, 251, 0.2);
  color: #bfdbfe;
}

.weltpixel-2025-home .event-platform-tiktok {
  background-color: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.weltpixel-2025-home .event-platform-generic {
  background-color: rgba(148, 163, 184, 0.2);
  color: #e5e7eb;
}

.weltpixel-2025-home .event-name {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weltpixel-2025-home .event-amount {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--wp-secondary);
}

.weltpixel-2025-home .event-dashboard-footer {
  margin-top: 0.85rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.975rem;
  color: var(--text-muted);
}

.weltpixel-2025-home .event-dashboard-footer-left {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.weltpixel-2025-home .event-dashboard-footer-right {
  display: inline-flex;
  align-items: center;
}

.weltpixel-2025-home .event-dashboard-footer-pill {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-family: var(--font-mono);
}


@media (max-width: 991px) {
  .weltpixel-2025-home .event-dashboard {
    margin-top: 2.5rem;
    max-width: 100%;
  }
  
  .weltpixel-2025-home .hero-section .col-lg-5 {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .event-dashboard {
    max-width: 100%;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .weltpixel-2025-home .hero-section .col-lg-5 {
    margin-top: 2.5rem;
  }
}

.weltpixel-2025-home .feature-card:hover {
}

/* Additional Typography Classes */
.weltpixel-2025-home .fw-bold {
  font-weight: 800;
}

.weltpixel-2025-home .lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.weltpixel-2025-home .google-ecosystem {
  background-color: var(--bg-dark) !important;
  background-image: none !important;
  background: var(--bg-dark) !important;
  color: var(--text-primary);
  padding: 6rem 0;
}

.weltpixel-2025-home .google-ecosystem .lead {
  color: var(--text-secondary);
}

.weltpixel-2025-home .google-ecosystem h1,
.weltpixel-2025-home .google-ecosystem h2,
.weltpixel-2025-home .google-ecosystem h3,
.weltpixel-2025-home .google-ecosystem h4,
.weltpixel-2025-home .google-ecosystem .display-5,
.weltpixel-2025-home .google-ecosystem p,
.weltpixel-2025-home .google-ecosystem span,
.weltpixel-2025-home .google-ecosystem div:not(.btn) {
  color: var(--text-primary);
}

.weltpixel-2025-home .google-ecosystem h1,
.weltpixel-2025-home .google-ecosystem h2,
.weltpixel-2025-home .google-ecosystem h3,
.weltpixel-2025-home .google-ecosystem h4,
.weltpixel-2025-home .google-ecosystem .display-5 {
  text-transform: none;
  letter-spacing: -0.01em;
}

/* Feature cards in google-ecosystem section - white background */
.weltpixel-2025-home .google-ecosystem .feature-card {
  background-color: #ffffff !important;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  color: #1a1a1a !important;
}

.weltpixel-2025-home .google-ecosystem .feature-card::before {
  background: transparent;
}

.weltpixel-2025-home .google-ecosystem .feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.15);
}

.weltpixel-2025-home .google-ecosystem .feature-card h3,
.weltpixel-2025-home .google-ecosystem .feature-card h4,
.weltpixel-2025-home .google-ecosystem .feature-card p {
  color: #1a1a1a !important;
}

.weltpixel-2025-home .google-ecosystem .feature-card .icon-wrapper i {
  color: var(--wp-accent);
}

.weltpixel-2025-home .testimonials {
  background-color: var(--bg-grey) !important;
  background-image: none !important;
  background: var(--bg-grey) !important;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.weltpixel-2025-home .testimonials::before,
.weltpixel-2025-home .testimonials::after {
  background: transparent !important;
  background-image: none !important;
}

.weltpixel-2025-home .testimonials h1,
.weltpixel-2025-home .testimonials h2,
.weltpixel-2025-home .testimonials h3,
.weltpixel-2025-home .testimonials h4,
.weltpixel-2025-home .testimonials .display-5,
.weltpixel-2025-home .testimonials p,
.weltpixel-2025-home .testimonials span,
.weltpixel-2025-home .testimonials div:not(.btn) {
  color: #1a1a1a;
}

.weltpixel-2025-home .partners-section {
  padding: 4rem 0;
  background-color: var(--bg-white) !important;
  color: #1a1a1a;
  position: relative;
}

.weltpixel-2025-home .partners-section .lead {
  color: #4a4a4a;
}

.weltpixel-2025-home .partners-section .text-muted {
  color: #4a4a4a !important;
}

.weltpixel-2025-home .partners-section h1,
.weltpixel-2025-home .partners-section h2,
.weltpixel-2025-home .partners-section h3,
.weltpixel-2025-home .partners-section h4,
.weltpixel-2025-home .partners-section .display-5,
.weltpixel-2025-home .partners-section p,
.weltpixel-2025-home .partners-section span,
.weltpixel-2025-home .partners-section div:not(.btn) {
  color: #1a1a1a;
}

.weltpixel-2025-home .partners-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
}

.weltpixel-2025-home .partner-card {
  flex: 0 1 200px;
  padding: 0.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: transparent;
  transform: none !important;
  transition: none !important;
}

.weltpixel-2025-home .partner-card:hover {
  transform: none !important;
}

.weltpixel-2025-home .partner-card img {
  width: 200px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  transform: none !important;
}

.weltpixel-2025-home .partner-card:hover img {
  opacity: 1;
  transform: none !important;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .partners-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .weltpixel-2025-home .partner-card {
    flex: 0 0 200px;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .partner-card {
    flex: 0 0 200px;
  }
}

/* Testimonials Section Spacing */
.weltpixel-2025-home .testimonials h2,
.weltpixel-2025-home .testimonials .display-5,
.weltpixel-2025-home .testimonials .lead {
  color: #1a1a1a;
}

.weltpixel-2025-home .testimonials .display-5 {
  margin-bottom: 1rem;
}

.weltpixel-2025-home .testimonials .lead {
  margin-bottom: 3rem;
  opacity: 0.9;
  width: 100%;
}

/* Section Spacing Adjustments */
.weltpixel-2025-home .google-ecosystem + section {
  padding-top: 6rem;
}

.weltpixel-2025-home .testimonials + section {
  padding-top: 6rem;
}

/* Card Spacing in Features */
.weltpixel-2025-home .google-ecosystem .row {
  display: flex;
  flex-wrap: wrap;
}

/* Google Ecosystem Section */
.weltpixel-2025-home .google-ecosystem .row > [class*="col-"] {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  padding: 0 1rem;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .google-ecosystem .row > [class*="col-"] {
    flex: 0 0 50%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .google-ecosystem .row > [class*="col-"] {
    flex: 0 0 100%;
    width: 100%;
  }
}

.weltpixel-2025-home .stats-counter {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.weltpixel-2025-home .icon-wrapper i {
  color: var(--wp-secondary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.weltpixel-2025-home .feature-card:hover .icon-wrapper i {
  color: var(--wp-accent);
}

.weltpixel-2025-home .seo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.8;
  padding: 0;
}

.weltpixel-2025-home .seo-content h2,
.weltpixel-2025-home .seo-content h3 {
  color: var(--text-primary);
}

.weltpixel-2025-home .seo-content .lead {
  color: var(--text-secondary);
}

.weltpixel-2025-home .seo-content p {
  color: var(--text-secondary);
}

.weltpixel-2025-home .seo-content .text-center {
  margin-bottom: 3rem;
}

.weltpixel-2025-home .seo-content .lead {
  font-size: 1.15rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  width: 100% !important;
}

.weltpixel-2025-home .seo-content .row {
  margin: 0;
}

.weltpixel-2025-home .seo-content .col-lg-6 {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.weltpixel-2025-home .seo-content .col-lg-6:last-child {
  margin-bottom: 0;
}

.weltpixel-2025-home .seo-content .d-flex.align-items-center {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.weltpixel-2025-home .seo-content .icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(1, 203, 225, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.weltpixel-2025-home .seo-content .icon-wrapper i {
  font-size: 1.75rem;
  color: var(--wp-secondary);
}

.weltpixel-2025-home .seo-content h3.h4 {
  font-size: 2.25rem;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.3;
}

.weltpixel-2025-home .seo-content h2.h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 800 !important;
}

.weltpixel-2025-home .seo-content p {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.weltpixel-2025-home .seo-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.weltpixel-2025-home .seo-content ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.weltpixel-2025-home .seo-content ul li:last-child {
  margin-bottom: 0;
}

.weltpixel-2025-home .seo-content ul li i {
  color: var(--wp-secondary);
  font-size: 1rem;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .seo-content .text-center {
    margin-bottom: 2.5rem;
  }

  .weltpixel-2025-home .seo-content .icon-wrapper {
    width: 56px;
    height: 56px;
    margin-right: 1.25rem;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .seo-content .text-center {
    margin-bottom: 2rem;
  }

  .weltpixel-2025-home .seo-content .row {
    margin: 0 -16px;
  }

  .weltpixel-2025-home .seo-content .col-lg-6 {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .weltpixel-2025-home .seo-content .d-flex {
    gap: 1rem;
  }

  .weltpixel-2025-home .seo-content .icon-wrapper {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
  }

  .weltpixel-2025-home .seo-content .icon-wrapper i {
    font-size: 1.25rem;
  }
}

/* Testimonial Cards */
.weltpixel-2025-home .testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.weltpixel-2025-home .testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.weltpixel-2025-home .testimonial-card .review-title {
  font-size: 2.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-right: 3rem;
  letter-spacing: 0.5px;
}

.weltpixel-2025-home .testimonial-card .quote {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  flex-grow: 1;
}

.weltpixel-2025-home .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.weltpixel-2025-home .testimonial-card .author-info h4 {
  font-size: 1.4rem;
  margin: 0;
  color: #1a1a1a;
}

.weltpixel-2025-home .testimonial-card .author-info p {
  font-size: 1.2rem;
  margin: 0;
  color: #4a4a4a;
}

.weltpixel-2025-home .testimonial-card .quote-icon {
  color: #1a1a1a;
  opacity: 0.15;
  font-size: 3rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.weltpixel-2025-home .testimonials .text-center {
  position: relative;
  z-index: 2;
}

/* Stats Section Styles */
.weltpixel-2025-home .stats-section {
  background-color: var(--bg-grey) !important;
  background-image: none !important;
  background: var(--bg-grey) !important;
  color: #1a1a1a;
  padding: 6rem 0;
}

.weltpixel-2025-home .stats-section::before,
.weltpixel-2025-home .stats-section::after {
  background: transparent !important;
  background-image: none !important;
}

.weltpixel-2025-home .google-ecosystem::before,
.weltpixel-2025-home .google-ecosystem::after {
  background: transparent !important;
  background-image: none !important;
}

.weltpixel-2025-home .trusted-brands-section::before,
.weltpixel-2025-home .trusted-brands-section::after {
  background: transparent !important;
  background-image: none !important;
}

.weltpixel-2025-home .stats-section h1,
.weltpixel-2025-home .stats-section h2,
.weltpixel-2025-home .stats-section h3,
.weltpixel-2025-home .stats-section h4,
.weltpixel-2025-home .stats-section .display-5,
.weltpixel-2025-home .stats-section p,
.weltpixel-2025-home .stats-section span,
.weltpixel-2025-home .stats-section div:not(.btn) {
  color: #1a1a1a;
}

.weltpixel-2025-home .stats-section .text-muted {
  color: #4a4a4a !important;
}

/* Text utility classes in white sections */
.weltpixel-2025-home .experience-stats-section .text-muted,
.weltpixel-2025-home .stats-section .text-muted,
.weltpixel-2025-home .testimonials .text-muted {
  color: #4a4a4a !important;
}

.weltpixel-2025-home .experience-stats-section .text-primary,
.weltpixel-2025-home .stats-section .text-primary,
.weltpixel-2025-home .testimonials .text-primary {
  color: #1a1a1a !important;
}

/* Text utility classes in grey sections */
.weltpixel-2025-home .trusted-brands-section .text-muted,
.weltpixel-2025-home .seo-content-section .text-muted {
  color: #4a4a4a !important;
}

.weltpixel-2025-home .trusted-brands-section .text-primary,
.weltpixel-2025-home .seo-content-section .text-primary {
  color: #1a1a1a !important;
}

/* Text utility classes in dark sections */
.weltpixel-2025-home .google-ecosystem .text-muted {
  color: var(--text-secondary) !important;
}

.weltpixel-2025-home .google-ecosystem .text-primary {
  color: var(--text-primary) !important;
}

.weltpixel-2025-home .stats-item {
  padding: 2rem;
  transition: transform 0.3s ease;
}

.weltpixel-2025-home .stats-item:hover {
}

.weltpixel-2025-home .stats-icon {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.weltpixel-2025-home .stats-counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wp-primary);
  margin: 1rem 0;
}

/* Pearl Theme Section Styles */
.weltpixel-2025-home #pearl-theme {
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home #pearl-theme .feature-list {
  margin-top: 2rem;
}

.weltpixel-2025-home #pearl-theme .feature-list li {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.weltpixel-2025-home #pearl-theme .feature-list li i {
  font-size: 1rem;
  width: 24px;
}

.weltpixel-2025-home .rating {
  display: flex;
  align-items: center;
}

.weltpixel-2025-home .rating i {
  color: #ffc107;
  margin-right: 2px;
}

.weltpixel-2025-home .rating span {
  color: #666;
  font-size: 1.2rem;
}

.weltpixel-2025-home .theme-badge {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: #198754;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.2);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weltpixel-2025-home .theme-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(25, 135, 84, 0.3);
  background: #157347;
}

/* Pearl Features Section Styles */
.weltpixel-2025-home .pearl-features {
  background-color: #ffffff;
}

.weltpixel-2025-home .pearl-features .feature-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.weltpixel-2025-home .pearl-features .feature-card:hover {
  border-color: var(--wp-secondary);
  box-shadow: 0 8px 24px rgba(1, 203, 225, 0.15);
}

.weltpixel-2025-home .pearl-features .icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(1, 203, 225, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.weltpixel-2025-home .pearl-features .icon-wrapper i {
  color: var(--wp-secondary);
  font-size: 1.75rem;
}

.weltpixel-2025-home .pearl-features .card-body {
  padding: 2rem;
}

.weltpixel-2025-home .pearl-features .card-body h3 {
  color: var(--wp-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}

.weltpixel-2025-home .pearl-features .card-body p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.weltpixel-2025-home .pearl-features .card-body ul li {
  color: #555;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.weltpixel-2025-home .pearl-features .card-body ul li i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About Section Styles */
.weltpixel-2025-home #about {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home #about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
}

.weltpixel-2025-home #about .mission-statement {
  position: relative;
  padding: 3rem 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.weltpixel-2025-home #about .mission-statement::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--wp-accent);
}

.weltpixel-2025-home #about .mission-statement .h3 {
  color: var(--wp-accent);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.weltpixel-2025-home #about .mission-statement .lead {
  color: var(--wp-primary);
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1rem;
}

.weltpixel-2025-home #about .about-story {
  max-width: 1000px;
  margin: 0 auto;
  color: #555;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(7, 55, 86, 0.08);
}

.weltpixel-2025-home #about .founder-quote {
  position: relative;
  padding: 3rem;
  background: var(--wp-primary);
  border-radius: 16px;
  margin-top: 4rem;
  color: white;
  transform: translateZ(0);
}

.weltpixel-2025-home #about .founder-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-size: 8rem;
  color: var(--wp-accent);
  font-family: var(--font-headings);
  opacity: 1;
  transform: rotate(-8deg);
  text-shadow: 2px 2px 20px rgba(243, 13, 73, 0.2);
  z-index: 1;
  transition: transform 0.3s ease;
}

.weltpixel-2025-home #about .founder-quote:hover::before {
  transform: rotate(-12deg) scale(1.1);
}

.weltpixel-2025-home #about .founder-quote p.fst-italic {
  font-size: 1.8rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 2rem;
  position: relative;
}

.weltpixel-2025-home #about .founder-quote .text-primary {
  color: var(--wp-secondary) !important;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.weltpixel-2025-home #about .founder-quote small {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 1.2rem;
}

.weltpixel-2025-home #about .mt-5 {
  margin-top: 5rem !important;
  text-align: center;
}

.weltpixel-2025-home #about .btn {
  margin: 0 0.5rem;
}

@media (max-width: 767px) {
  .weltpixel-2025-home #about .mission-statement {
    padding: 2rem 1rem;
  }

  .weltpixel-2025-home #about .about-story {
    padding: 1.5rem;
    font-size: 1.4rem;
  }

  .weltpixel-2025-home #about .founder-quote {
    padding: 2rem;
    margin-top: 3rem;
  }

  .weltpixel-2025-home #about .founder-quote p.fst-italic {
    font-size: 1.6rem;
  }

  .weltpixel-2025-home #about .founder-quote::before {
    font-size: 6rem;
    top: -30px;
    left: 30px;
  }
}

/* Key Stats */
.weltpixel-2025-home .hero-section .key-stats-wrapper {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .hero-section .key-stats-wrapper {
    margin-top: 4rem;
    padding-top: 3rem;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .hero-section .key-stats-wrapper {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }
}

.weltpixel-2025-home .hero-section .key-stats-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.weltpixel-2025-home .hero-section .stat-item {
  color: white;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  position: relative;
}

.weltpixel-2025-home .hero-section .stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.weltpixel-2025-home .hero-section .col-md-3:last-child .stat-item::after {
  display: none;
}

.weltpixel-2025-home .hero-section .stat-item:hover {
}

.weltpixel-2025-home .hero-section .stat-icon {
  font-size: 2.5rem;
  color: var(--wp-secondary);
  margin-bottom: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.weltpixel-2025-home .hero-section .stat-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.weltpixel-2025-home .hero-section .stat-item:hover .stat-icon {
  color: var(--wp-accent);
}

.weltpixel-2025-home .hero-section .stat-item:hover .stat-icon::after {
  opacity: 1;
}

.weltpixel-2025-home .hero-section .stat-title {
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.weltpixel-2025-home .hero-section .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wp-secondary);
  margin: 0.5rem 0;
  font-family: var(--font-headings);
  line-height: 1.2;
}

.weltpixel-2025-home .hero-section .stat-description {
  font-size: 1.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Partners Section Styles */
.weltpixel-2025-home .partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
}

.weltpixel-2025-home .partner-hover {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  background: white;
  padding: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.weltpixel-2025-home .partners-section .text-center {
  margin-top: 4rem !important;
}

.weltpixel-2025-home .partner-hover p {
  margin: 0;
  font-size: 1.8rem;
  color: var(--wp-primary);
  font-weight: 500;
}

.weltpixel-2025-home .partner-card:hover .partner-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Partner Program Section */
.weltpixel-2025-home .partner-program::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
}

.weltpixel-2025-home .partner-program h2 {
  color: var(--wp-primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-weight: 800;
  margin-top: 0;
}

.weltpixel-2025-home .partner-program h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--wp-accent);
}

.weltpixel-2025-home .partner-program-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 4px 6px rgba(7, 55, 86, 0.1));
}

.weltpixel-2025-home .partner-program .text-center.mb-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.weltpixel-2025-home .partner-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  gap: 1.5rem;
}

.weltpixel-2025-home .partner-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--wp-primary);
  padding: 2rem;
  background: white;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100px;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(7, 55, 86, 0.05);
}

.weltpixel-2025-home .partner-benefits li i {
  color: var(--wp-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 13, 73, 0.1);
  border-radius: 50%;
}

.weltpixel-2025-home .partner-benefits li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(7, 55, 86, 0.08);
}

.weltpixel-2025-home .partner-process {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.weltpixel-2025-home .partner-process li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 5.5rem;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  background: white;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weltpixel-2025-home .partner-process li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(7, 55, 86, 0.08);
}

.weltpixel-2025-home .partner-process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--wp-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.weltpixel-2025-home .partner-process li:hover::before {
  transform: translateY(-50%) scale(1.1);
}

.weltpixel-2025-home .partner-program .btn-primary {
  padding: 1.25rem 3.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--wp-accent);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weltpixel-2025-home .partner-program .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(243, 13, 73, 0.25);
}

/* Global Section Spacing */
.weltpixel-2025-home section,
.weltpixel-2025-home section.hero-section,
.weltpixel-2025-home section.bg-light,
.weltpixel-2025-home .google-ecosystem,
.weltpixel-2025-home .testimonials,
.weltpixel-2025-home .partners-section,
.weltpixel-2025-home .partner-program,
.weltpixel-2025-home .pearl-features,
.weltpixel-2025-home .pearl-testimonials {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.weltpixel-2025-home section.hero-section {
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .weltpixel-2025-home section,
  .weltpixel-2025-home section.hero-section,
  .weltpixel-2025-home section.bg-light,
  .weltpixel-2025-home .google-ecosystem,
  .weltpixel-2025-home .testimonials,
  .weltpixel-2025-home .partners-section,
  .weltpixel-2025-home .partner-program,
  .weltpixel-2025-home .pearl-features,
  .weltpixel-2025-home .pearl-testimonials {
    padding: 60px 0;
  }

  .weltpixel-2025-home section.hero-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home section,
  .weltpixel-2025-home section.hero-section,
  .weltpixel-2025-home section.bg-light,
  .weltpixel-2025-home .google-ecosystem,
  .weltpixel-2025-home .testimonials,
  .weltpixel-2025-home .partners-section,
  .weltpixel-2025-home .partner-program,
  .weltpixel-2025-home .pearl-features,
  .weltpixel-2025-home .pearl-testimonials {
    padding: 40px 0;
  }

  .weltpixel-2025-home section.hero-section {
    padding-bottom: 60px;
  }
}

/* Container Max-Width Adjustments */
@media (min-width: 1400px) {
  .weltpixel-2025-home .container {
    max-width: 1280px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
  .weltpixel-2025-home .row.g-4 > [class*="col-"] {
    margin-bottom: 2rem;
  }

  .weltpixel-2025-home .row.g-4 > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

/* Card Heights and Spacing */
.weltpixel-2025-home .feature-card,
.weltpixel-2025-home .testimonial-card,
.weltpixel-2025-home .partner-card {
  height: 100%;
  margin-bottom: 0;
}

/* Button Responsive Adjustments */
@media (max-width: 767px) {
  .weltpixel-2025-home .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .weltpixel-2025-home .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .weltpixel-2025-home .d-flex.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }

  .weltpixel-2025-home .d-flex.gap-3 .btn {
    width: 100%;
  }
}

/* Partner Program Responsive */
@media (max-width: 767px) {
  .weltpixel-2025-home .partner-program-logo {
    max-width: 200px;
    margin-bottom: 2rem;
  }

  .weltpixel-2025-home .partner-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .weltpixel-2025-home .partner-benefits li {
    font-size: 1rem;
    padding: 1.5rem;
    height: 80px;
  }

  .weltpixel-2025-home .partner-benefits li i {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
  }

  .weltpixel-2025-home .partner-process li {
    font-size: 0.95rem;
    padding: 1.25rem 1rem 1.25rem 3.5rem;
    line-height: 1.5;
  }

  .weltpixel-2025-home .partner-process li::before {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .weltpixel-2025-home .partner-process li:hover::before {
    transform: translateY(-50%) scale(1.1);
  }
}

/* Stats and Features Responsive */
@media (max-width: 767px) {
  .weltpixel-2025-home .stats-counter {
    font-size: 2rem;
  }

  .weltpixel-2025-home .icon-wrapper {
    margin-bottom: 1rem;
  }

  .weltpixel-2025-home .feature-card .card-body {
    padding: 1.5rem;
  }
}

/* About Section Responsive */
@media (max-width: 767px) {
  .weltpixel-2025-home #about .mission-statement {
    padding: 1.5rem 0;
  }

  .weltpixel-2025-home #about .founder-quote {
    padding: 1.5rem;
  }

  .weltpixel-2025-home .about-story {
    padding: 0 1rem;
  }
}

/* Pearl Theme Testimonials */
.weltpixel-2025-home .pearl-testimonials {
  padding: 6rem 0;
}

.weltpixel-2025-home .pearl-testimonials h2,
.weltpixel-2025-home .pearl-testimonials .display-5,
.weltpixel-2025-home .pearl-testimonials .lead {
  color: white;
  float: none;
}

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 3px solid var(--wp-accent);
  outline-offset: 2px;
}

.weltpixel-2025-home .btn:focus-visible {
  outline-offset: 4px;
}

/* Skip to Main Content */
.weltpixel-2025-home .skip-to-main {
  position: fixed;
  top: -100%;
  left: 0;
  padding: 1rem 2rem;
  background: var(--wp-primary);
  color: white;
  z-index: 1050;
  transition: top 0.3s ease;
}

.weltpixel-2025-home .skip-to-main:focus {
  top: 0;
}

/* Enhanced Button Hover States */
.weltpixel-2025-home .btn {
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.weltpixel-2025-home .btn:hover::after {
  width: 300%;
  height: 300%;
}

/* Enhanced Card Interactions */
.weltpixel-2025-home .feature-card,
.weltpixel-2025-home .testimonial-card {
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

/* Keyboard Navigation Indicator */
.weltpixel-2025-home:not(.using-mouse) *:focus {
  outline: 3px solid var(--wp-accent) !important;
  outline-offset: 2px !important;
}

/* Base Grid System */
.weltpixel-2025-home .row {
  display: flex;
  flex-wrap: wrap;
}

.weltpixel-2025-home .row > [class*="col-"] {
  padding: 0 1rem;
}

/* Column Widths */
[class*="col-lg-3"] {
  flex: 0 0 25%;
  width: 25%;
}

[class*="col-lg-4"] {
  flex: 0 0 33.333333%;
  width: 33.333333%;
}

[class*="col-lg-6"] {
  flex: 0 0 50%;
  width: 50%;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  [class*="col-lg-3"],
  [class*="col-lg-4"] {
    flex: 0 0 50%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  [class*="col-lg-3"],
  [class*="col-lg-4"],
  [class*="col-lg-6"] {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* Row Gaps */
.weltpixel-2025-home .row.g-4 > * {
  padding: 0 1rem 0 0;
  margin-bottom: 2rem;
}

.weltpixel-2025-home .row.g-5 > * {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .row.g-5 > * {
    margin-bottom: 4rem;
  }

  .weltpixel-2025-home .row.g-4 > * {
    padding: 0;
  }
}

/* Section-specific styles */
.weltpixel-2025-home .seo-content .row,
.weltpixel-2025-home .google-ecosystem .row,
.weltpixel-2025-home .partners-section .row,
.weltpixel-2025-home .testimonials .row,
.weltpixel-2025-home .pearl-testimonials .row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
}

/* Container */
.weltpixel-2025-home .container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .weltpixel-2025-home .container {
    max-width: 1280px;
  }
}

/* Utility Classes - Add !important to ensure they take precedence */
.weltpixel-2025-home .mt-4 {
  margin-top: 1.5rem !important;
}

.weltpixel-2025-home .mt-5 {
  margin-top: 3rem !important;
}

.weltpixel-2025-home .mt-4 {
  margin-top: 1.5rem !important;
}

.weltpixel-2025-home .mb-4 {
  margin-bottom: 1.5rem !important;
}

.weltpixel-2025-home .mb-5 {
  margin-bottom: 3rem !important;
}

/* Google Analytics Features Section */
.weltpixel-2025-home .google-ecosystem .row > [class*="col-lg-4"] {
  flex: 0 0 33.333333%;
  width: 33.333333%;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .google-ecosystem .row > [class*="col-lg-4"] {
    flex: 0 0 50%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .google-ecosystem .row > [class*="col-lg-4"] {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .weltpixel-2025-home .hero-section .stat-title {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }
}

/* Remove these trust indicator styles */
.weltpixel-2025-home .trust-indicators,
.weltpixel-2025-home .trust-item,
.weltpixel-2025-home .trust-icon,
.weltpixel-2025-home .trust-content,
.weltpixel-2025-home .trust-content h3,
.weltpixel-2025-home .trust-content p {
  display: none;
}

.weltpixel-2025-home .partners-section .row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.weltpixel-2025-home .partner-program .row {
  align-items: center;
}

.weltpixel-2025-home .partner-program h2 {
  color: var(--wp-primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-weight: 800;
  margin-top: 0;
}

.weltpixel-2025-home .hero-section .col-lg-5 {
  position: relative;
}

.weltpixel-2025-home .hero-section .col-lg-5 img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
  will-change: transform;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .hero-section .col-lg-5 {
    max-width: 90%;
    margin: 3rem auto 0;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .hero-section .col-lg-5,
  .weltpixel-2025-home #pearl-theme .col-lg-6:last-child {
    margin-top: 4rem;
  }
}

/* Pain Points Section */
.weltpixel-2025-home .pain-points-section {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.weltpixel-2025-home .pain-points-section .text-primary {
  color: var(--text-primary) !important;
}

.weltpixel-2025-home .pain-points-section .lead {
  color: var(--text-secondary);
}

.weltpixel-2025-home .pain-points-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.weltpixel-2025-home .problems-list,
.weltpixel-2025-home .solutions-list {
  background-color: rgba(10, 10, 15, 0.8);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  align-items: stretch;
}

.weltpixel-2025-home .problems-list::before,
.weltpixel-2025-home .solutions-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  pointer-events: none;
}

.weltpixel-2025-home .list-title {
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  flex-shrink: 0;
}

.weltpixel-2025-home .pain-point-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  flex: 0 0 auto;
  align-items: start;
}

.weltpixel-2025-home .pain-point-item:last-child {
  border-bottom: none;
}

.weltpixel-2025-home .pain-point-item:hover {
  background: rgba(34, 211, 238, 0.05);
}

.weltpixel-2025-home .pain-point-icon,
.weltpixel-2025-home .pain-point-check {
  padding-top: 0.25rem;
}

.weltpixel-2025-home .pain-point-icon i {
  font-size: 1.75rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.weltpixel-2025-home .pain-point-check i {
  font-size: 1.75rem;
  color: #22c55e;
  transition: transform 0.3s ease;
}

.weltpixel-2025-home .pain-point-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.weltpixel-2025-home .pain-point-content h4 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
}

.weltpixel-2025-home .pain-point-content p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .pain-points-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .weltpixel-2025-home .pain-point-item {
    padding: 2rem 1.5rem;
  }

  .weltpixel-2025-home .pain-point-content h4 {
    font-size: 1.5rem;
  }

  .weltpixel-2025-home .pain-point-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .problems-list,
  .weltpixel-2025-home .solutions-list {
    padding: 2rem;
  }

  .weltpixel-2025-home .pain-point-item {
    padding: 1.5rem;
  }

  .weltpixel-2025-home .pain-point-content h4 {
    font-size: 1.3rem;
  }

  .weltpixel-2025-home .pain-point-content p {
    font-size: 1.1rem;
  }
}

/* Trusted Brands Section */
.weltpixel-2025-home .trusted-brands-section {
  padding: 4rem 0;
  background-color: var(--bg-grey) !important;
  background-image: none !important;
  background: var(--bg-grey) !important;
  color: #1a1a1a;
  position: relative;
}

.weltpixel-2025-home .trusted-brands-section .lead {
  color: #4a4a4a;
}

.weltpixel-2025-home .trusted-brands-section h1,
.weltpixel-2025-home .trusted-brands-section h2,
.weltpixel-2025-home .trusted-brands-section h3,
.weltpixel-2025-home .trusted-brands-section h4,
.weltpixel-2025-home .trusted-brands-section .display-5,
.weltpixel-2025-home .trusted-brands-section p,
.weltpixel-2025-home .trusted-brands-section span,
.weltpixel-2025-home .trusted-brands-section div:not(.btn) {
  color: #1a1a1a;
}

.weltpixel-2025-home .trusted-brands-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
}

.weltpixel-2025-home .trusted-brands-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.weltpixel-2025-home .brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 2rem;
  background: transparent;
  position: relative;
  transition: background-color 0.3s ease;
}

/* Vertical borders */
.weltpixel-2025-home .brand-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* Horizontal borders */
.weltpixel-2025-home .brand-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.weltpixel-2025-home .brand-card:nth-child(4n)::after {
  display: none;
}

.weltpixel-2025-home .brand-card:nth-last-child(-n + 4)::before {
  display: none;
}

.weltpixel-2025-home .brand-card:hover {
  background: rgba(255, 255, 255, 0.5);
}

.weltpixel-2025-home .brand-card img {
  width: 160px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  filter: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  background-color: var(--bg-grey);
  padding: 0.5rem;
  border-radius: 4px;
}

.weltpixel-2025-home .brand-card:hover img {
  filter: none;
  opacity: 1;
  background-color: transparent;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .trusted-brands-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .weltpixel-2025-home .brand-card {
    height: 100px;
    padding: 1.5rem;
  }

  .weltpixel-2025-home .brand-card:nth-child(4n)::after {
    display: block;
  }

  .weltpixel-2025-home .brand-card:nth-child(3n)::after {
    display: none;
  }

  .weltpixel-2025-home .brand-card:nth-last-child(-n + 4)::before {
    display: block;
  }

  .weltpixel-2025-home .brand-card:nth-last-child(-n + 3)::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .trusted-brands-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .weltpixel-2025-home .brand-card {
    height: 90px;
    padding: 1.25rem;
  }

  .weltpixel-2025-home .brand-card img {
    width: 140px;
    max-height: 45px;
  }

  .weltpixel-2025-home .brand-card:nth-child(3n)::after {
    display: block;
  }

  .weltpixel-2025-home .brand-card:nth-child(2n)::after {
    display: none;
  }

  .weltpixel-2025-home .brand-card:nth-last-child(-n + 3)::before {
    display: block;
  }

  .weltpixel-2025-home .brand-card:nth-last-child(-n + 2)::before {
    display: none;
  }
}

/* Experience Stats Section */
.weltpixel-2025-home .experience-stats-section {
  background-color: var(--bg-white) !important;
  background-image: none !important;
  background: var(--bg-white) !important;
  color: #1a1a1a;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home .experience-stats-section::before,
.weltpixel-2025-home .experience-stats-section::after {
  background: transparent !important;
  background-image: none !important;
}

.weltpixel-2025-home .experience-stats-section h1,
.weltpixel-2025-home .experience-stats-section h2,
.weltpixel-2025-home .experience-stats-section h3,
.weltpixel-2025-home .experience-stats-section h4,
.weltpixel-2025-home .experience-stats-section .display-5,
.weltpixel-2025-home .experience-stats-section p,
.weltpixel-2025-home .experience-stats-section span,
.weltpixel-2025-home .experience-stats-section div:not(.btn) {
  color: #1a1a1a;
}

.weltpixel-2025-home .experience-stat-desc {
  color: #4a4a4a;
}

.weltpixel-2025-home .experience-stats-section::after {
  display: none;
}

.weltpixel-2025-home .experience-stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.weltpixel-2025-home .experience-stat-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 4rem;
  position: relative;
}

.weltpixel-2025-home .experience-stat-icon {
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.weltpixel-2025-home .experience-stat-icon svg {
  width: 48px;
  height: 48px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.weltpixel-2025-home .experience-stat-card:hover .experience-stat-icon {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Shopify GA4 Section */
.weltpixel-2025-home .shopify-ga4-section {
  background: #fff;
  position: relative;
}

.weltpixel-2025-home .shopify-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(150, 191, 72, 0.1);
  color: #96bf48;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
}

.weltpixel-2025-home .shopify-badge svg {
  flex-shrink: 0;
}

.weltpixel-2025-home .shopify-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.weltpixel-2025-home .shopify-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-dark);
  border-radius: 12px;
  min-width: 100px;
}

.weltpixel-2025-home .shopify-stat-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--wp-primary);
  line-height: 1;
}

.weltpixel-2025-home .shopify-stat-label {
  font-size: 1.2rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
  text-align: center;
}

.weltpixel-2025-home .btn-shopify {
  background: #96bf48;
  border: 1px solid #96bf48;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}

.weltpixel-2025-home .btn-shopify:hover,
.weltpixel-2025-home .btn-shopify:focus {
  /* Simple hover: keep background, just adjust border to Shopify green */
  border-color: #b5d66a;
  color: #fff !important;
  box-shadow: none;
}

.weltpixel-2025-home .btn-shopify svg {
  flex-shrink: 0;
}

.weltpixel-2025-home .bg-shopify {
  background: #96bf48 !important;
}

.weltpixel-2025-home .shopify-app-badge {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #96bf48;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(150, 191, 72, 0.2);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.weltpixel-2025-home .shopify-app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(150, 191, 72, 0.3);
  background: #7a9e3a;
}

/* Shopify Features Section */
.weltpixel-2025-home .shopify-features {
  background-color: #f8f9fa;
}

.weltpixel-2025-home .shopify-features .feature-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.weltpixel-2025-home .shopify-features .feature-card:hover {
  border-color: #96bf48;
  box-shadow: 0 8px 24px rgba(150, 191, 72, 0.15);
}

.weltpixel-2025-home .shopify-features .icon-wrapper {
  background: rgba(150, 191, 72, 0.1);
}

.weltpixel-2025-home .shopify-features .icon-wrapper i {
  color: #96bf48;
}

/* Shopify GA4 Section - Mobile Layout */
.weltpixel-2025-home .shopify-ga4-row {
  display: flex;
  flex-wrap: wrap;
}

.weltpixel-2025-home .shopify-ga4-buttons {
  display: none;
}

.weltpixel-2025-home .shopify-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.weltpixel-2025-home .shopify-cta-buttons .btn {
  flex: 1;
  min-width: 200px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .weltpixel-2025-home .shopify-ga4-row {
    flex-direction: column;
  }

  .weltpixel-2025-home .shopify-ga4-content {
    order: 1;
  }

  .weltpixel-2025-home .shopify-ga4-image {
    order: 2;
    margin-top: 2rem;
  }

  .weltpixel-2025-home .shopify-ga4-buttons {
    display: block;
    order: 3;
  }

  .weltpixel-2025-home .shopify-ga4-content .shopify-cta-buttons {
    display: none;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .shopify-stats-row {
    justify-content: center;
    gap: 1rem;
  }

  .weltpixel-2025-home .shopify-stat {
    flex: 1 1 calc(33.333% - 0.75rem);
    padding: 1rem 0.75rem;
    min-width: 0;
  }

  .weltpixel-2025-home .shopify-stat-number {
    font-size: 2rem;
  }

  .weltpixel-2025-home .shopify-stat-label {
    font-size: 0.85rem;
  }

  .weltpixel-2025-home .shopify-cta-buttons .btn {
    flex: 1 1 100%;
    min-width: 0;
  }
}

.weltpixel-2025-home .experience-stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.weltpixel-2025-home .experience-stat-number {
  font-family: var(--font-headings);
  font-size: 4.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.weltpixel-2025-home .experience-stat-plus {
  color: #1a1a1a;
  font-size: 3rem;
  margin-left: 0.25rem;
}

.weltpixel-2025-home .experience-stat-label {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.weltpixel-2025-home .experience-stat-desc {
  font-size: 1.35rem;
  color: #4a4a4a;
  line-height: 1.5;
  max-width: 280px;
  margin-top: 0.5rem;
}

.weltpixel-2025-home .experience-stat-divider {
  width: 1px;
  height: 120px;
  position: relative;
  flex-shrink: 0;
}

.weltpixel-2025-home .experience-stat-divider svg {
  height: 100%;
  width: 24px;
  color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .weltpixel-2025-home .experience-stats-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .weltpixel-2025-home .experience-stat-card {
    padding: 2.5rem 2rem;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
  }

  .weltpixel-2025-home .experience-stat-content {
    align-items: center;
  }

  .weltpixel-2025-home .experience-stat-desc {
    text-align: center;
  }

  .weltpixel-2025-home .experience-stat-divider {
    width: 200px;
    height: 1px;
    transform: rotate(0);
  }

  .weltpixel-2025-home .experience-stat-divider svg {
    width: 100%;
    height: 24px;
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .experience-stats-section {
    padding: 4rem 0;
  }

  .weltpixel-2025-home .experience-stat-icon {
    width: 80px;
    height: 80px;
  }

  .weltpixel-2025-home .experience-stat-icon svg {
    width: 36px;
    height: 36px;
  }

  .weltpixel-2025-home .experience-stat-number {
    font-size: 3.5rem;
  }

  .weltpixel-2025-home .experience-stat-plus {
    font-size: 2.25rem;
  }

  .weltpixel-2025-home .experience-stat-label {
    font-size: 1.4rem;
  }

  .weltpixel-2025-home .experience-stat-desc {
    font-size: 1.25rem;
    max-width: 260px;
  }
}

/* ============================================
   Section Backgrounds & Text Colors (Dark Theme)
   ============================================ */
/* SEO Content Section - grey */
.weltpixel-2025-home .seo-content-section {
  background-color: var(--bg-grey) !important;
  background-image: none !important;
  background: var(--bg-grey) !important;
  color: #1a1a1a;
}

.weltpixel-2025-home .seo-content-section h1,
.weltpixel-2025-home .seo-content-section h2,
.weltpixel-2025-home .seo-content-section h3,
.weltpixel-2025-home .seo-content-section h4,
.weltpixel-2025-home .seo-content-section .display-5,
.weltpixel-2025-home .seo-content-section p,
.weltpixel-2025-home .seo-content-section span,
.weltpixel-2025-home .seo-content-section div:not(.btn),
.weltpixel-2025-home .seo-content-section li {
  color: #1a1a1a;
}

.weltpixel-2025-home .seo-content-section h2,
.weltpixel-2025-home .seo-content-section h3.h2,
.weltpixel-2025-home .seo-content-section .display-5 {
  font-weight: 800 !important;
}

.weltpixel-2025-home .seo-content-section .seo-content h2,
.weltpixel-2025-home .seo-content-section .seo-content h3,
.weltpixel-2025-home .seo-content-section .seo-content h4 {
  color: #1a1a1a;
}

.weltpixel-2025-home .seo-content-section .seo-content .lead,
.weltpixel-2025-home .seo-content-section .seo-content p {
  color: #4a4a4a;
}

.weltpixel-2025-home .seo-content-section .seo-content .icon-wrapper i {
  color: var(--wp-secondary);
}

.weltpixel-2025-home .seo-content-section::before,
.weltpixel-2025-home .seo-content-section::after {
  background: transparent !important;
  background-image: none !important;
}

/* Default section background - dark */
.weltpixel-2025-home section:not(.hero-section):not(.testimonials):not(.experience-stats-section):not(.stats-section) {
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

/* Override bg-light to use dark background */
.weltpixel-2025-home section.bg-light {
  background-color: var(--bg-white) !important;
  color: #1a1a1a;
}

.weltpixel-2025-home section.bg-light .text-muted,
.weltpixel-2025-home section.bg-light .lead {
  color: #4a4a4a !important;
}

.weltpixel-2025-home section.bg-light h1,
.weltpixel-2025-home section.bg-light h2,
.weltpixel-2025-home section.bg-light h3,
.weltpixel-2025-home section.bg-light h4,
.weltpixel-2025-home section.bg-light .display-5 {
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: -0.01em;
}

.weltpixel-2025-home section.bg-light .feature-card {
  background-color: #ffffff !important;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: #1a1a1a !important;
}

.weltpixel-2025-home section.bg-light .feature-card h3,
.weltpixel-2025-home section.bg-light .feature-card h4,
.weltpixel-2025-home section.bg-light .feature-card p {
  color: #1a1a1a !important;
}

/* Feature cards in grey sections need dark text */
.weltpixel-2025-home .experience-stats-section .feature-card,
.weltpixel-2025-home .stats-section .feature-card,
.weltpixel-2025-home .testimonials .feature-card {
  background-color: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
}

.weltpixel-2025-home .experience-stats-section .feature-card h3,
.weltpixel-2025-home .experience-stats-section .feature-card p,
.weltpixel-2025-home .stats-section .feature-card h3,
.weltpixel-2025-home .stats-section .feature-card p,
.weltpixel-2025-home .testimonials .feature-card h3,
.weltpixel-2025-home .testimonials .feature-card p {
  color: #1a1a1a;
}

.weltpixel-2025-home section .text-muted {
  color: var(--text-secondary) !important;
}

.weltpixel-2025-home section .lead {
  color: var(--text-secondary);
}

/* Text success color for checkmarks */
.weltpixel-2025-home .text-success {
  color: #22c55e !important;
}


/* ============================================
   Standardized Heading Colors
   ============================================ */
/* Base heading styles - white on dark backgrounds */
.weltpixel-2025-home section h1,
.weltpixel-2025-home section h2,
.weltpixel-2025-home section h3,
.weltpixel-2025-home section h4,
.weltpixel-2025-home section h5,
.weltpixel-2025-home section h6 {
  color: var(--text-primary);
}

/* Display headings */
.weltpixel-2025-home .display-5 {
  color: var(--text-primary);
  font-weight: 800 !important;
}

/* Ensure all main section headings have font-weight 800 */
.weltpixel-2025-home section h2,
.weltpixel-2025-home section h3.h2,
.weltpixel-2025-home section .display-5 {
  font-weight: 800 !important;
}

/* White sections - dark headings */
.weltpixel-2025-home .experience-stats-section h1,
.weltpixel-2025-home .experience-stats-section h2,
.weltpixel-2025-home .experience-stats-section h3,
.weltpixel-2025-home .experience-stats-section h4,
.weltpixel-2025-home .experience-stats-section h5,
.weltpixel-2025-home .experience-stats-section h6,
.weltpixel-2025-home .experience-stats-section .display-5,
.weltpixel-2025-home .stats-section h1,
.weltpixel-2025-home .stats-section h2,
.weltpixel-2025-home .stats-section h3,
.weltpixel-2025-home .stats-section h4,
.weltpixel-2025-home .stats-section h5,
.weltpixel-2025-home .stats-section h6,
.weltpixel-2025-home .stats-section .display-5,
.weltpixel-2025-home .testimonials h1,
.weltpixel-2025-home .testimonials h2,
.weltpixel-2025-home .testimonials h3,
.weltpixel-2025-home .testimonials h4,
.weltpixel-2025-home .testimonials h5,
.weltpixel-2025-home .testimonials h6,
.weltpixel-2025-home .testimonials .display-5 {
  color: #1a1a1a;
  font-weight: 800 !important;
}

/* Grey sections - dark headings */
.weltpixel-2025-home .trusted-brands-section h1,
.weltpixel-2025-home .trusted-brands-section h2,
.weltpixel-2025-home .trusted-brands-section h3,
.weltpixel-2025-home .trusted-brands-section h4,
.weltpixel-2025-home .trusted-brands-section h5,
.weltpixel-2025-home .trusted-brands-section h6,
.weltpixel-2025-home .trusted-brands-section .display-5,
.weltpixel-2025-home .seo-content-section h1,
.weltpixel-2025-home .seo-content-section h2,
.weltpixel-2025-home .seo-content-section h3,
.weltpixel-2025-home .seo-content-section h4,
.weltpixel-2025-home .seo-content-section h5,
.weltpixel-2025-home .seo-content-section h6,
.weltpixel-2025-home .seo-content-section .display-5 {
  color: #1a1a1a;
  font-weight: 800 !important;
}

/* Dark section headings */
.weltpixel-2025-home .google-ecosystem h1,
.weltpixel-2025-home .google-ecosystem h2,
.weltpixel-2025-home .google-ecosystem h3,
.weltpixel-2025-home .google-ecosystem h4,
.weltpixel-2025-home .google-ecosystem h5,
.weltpixel-2025-home .google-ecosystem h6,
.weltpixel-2025-home .google-ecosystem .display-5 {
  color: var(--text-primary);
  font-weight: 800 !important;
}

/* Remove any accent colors from headings - use standard colors */
.weltpixel-2025-home section h1,
.weltpixel-2025-home section h2,
.weltpixel-2025-home section h3,
.weltpixel-2025-home section h4 {
  color: inherit;
}

/* Specific overrides for accent text - only use for highlights */
.weltpixel-2025-home .text-highlight,
.weltpixel-2025-home .accent-text {
  color: var(--wp-secondary);
}

/* Grey sections - accent text should be darker */
.weltpixel-2025-home .experience-stats-section .text-highlight,
.weltpixel-2025-home .experience-stats-section .accent-text,
.weltpixel-2025-home .stats-section .text-highlight,
.weltpixel-2025-home .stats-section .accent-text,
.weltpixel-2025-home .testimonials .text-highlight,
.weltpixel-2025-home .testimonials .accent-text {
  color: var(--wp-primary);
}

/* ============================================
   Trend Chart Component
   ============================================ */
.weltpixel-2025-home .trend-chart-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 3rem;
}

.weltpixel-2025-home .trend-chart-container {
  border-radius: 18px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(2, 2, 5, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.75);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.weltpixel-2025-home .trend-chart-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background-color: rgba(8, 8, 12, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.weltpixel-2025-home .trend-chart-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.weltpixel-2025-home .trend-chart-dots {
  display: flex;
  gap: 0.375rem;
}

.weltpixel-2025-home .trend-chart-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  display: block;
}

.weltpixel-2025-home .trend-chart-dots span:nth-child(1) {
  background-color: rgba(239, 68, 68, 0.4);
}

.weltpixel-2025-home .trend-chart-dots span:nth-child(2) {
  background-color: rgba(234, 179, 8, 0.4);
}

.weltpixel-2025-home .trend-chart-dots span:nth-child(3) {
  background-color: rgba(34, 197, 94, 0.4);
}

.weltpixel-2025-home .trend-chart-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.weltpixel-2025-home .trend-chart-header-right {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .weltpixel-2025-home .trend-chart-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
}

.weltpixel-2025-home .trend-chart-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background-color: var(--bg-dark-700);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.weltpixel-2025-home .trend-chart-content {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.weltpixel-2025-home .trend-chart-sidebar {
  display: none;
  width: 12rem;
  flex-direction: column;
  border-right: 1px solid var(--border-subtle);
  background-color: rgba(8, 8, 12, 0.3);
}

@media (min-width: 768px) {
  .weltpixel-2025-home .trend-chart-sidebar {
    display: flex;
  }
}

.weltpixel-2025-home .trend-chart-sidebar-section {
  padding: 0.75rem;
}

.weltpixel-2025-home .trend-chart-sidebar-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  padding: 0 0.75rem;
}

.weltpixel-2025-home .trend-chart-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.weltpixel-2025-home .trend-chart-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.weltpixel-2025-home .trend-chart-menu-item:hover {
  color: var(--text-primary);
}

.weltpixel-2025-home .trend-chart-menu-active {
  background-color: rgba(34, 211, 238, 0.1);
  color: var(--wp-secondary);
}

.weltpixel-2025-home .trend-chart-menu-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.weltpixel-2025-home .trend-chart-sidebar-footer {
  margin-top: auto;
  padding: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.weltpixel-2025-home .trend-chart-main {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.weltpixel-2025-home .trend-chart-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .weltpixel-2025-home .trend-chart-kpis {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 100%;
  }
}

.weltpixel-2025-home .trend-chart-kpi {
  background-color: var(--bg-dark);
  padding: 0.75rem;
  min-width: 0;
  overflow: visible;
}

.weltpixel-2025-home .trend-chart-kpi-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weltpixel-2025-home .trend-chart-kpi-value {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 0;
  flex-wrap: wrap;
}

.weltpixel-2025-home .trend-chart-kpi-number {
  white-space: nowrap;
  flex-shrink: 0;
}

.weltpixel-2025-home .trend-chart-kpi-change {
  white-space: nowrap;
  flex-shrink: 0;
}

.weltpixel-2025-home .trend-chart-kpi-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.weltpixel-2025-home .trend-chart-kpi-change {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.weltpixel-2025-home .trend-chart-kpi-positive {
  color: #22c55e;
}

.weltpixel-2025-home .trend-chart-kpi-secondary {
  color: var(--wp-secondary);
}

.weltpixel-2025-home .trend-chart-kpi-blue {
  color: #60a5fa;
}

.weltpixel-2025-home .trend-chart-kpi-purple {
  color: #a78bfa;
}

.weltpixel-2025-home .trend-chart-area {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 1.5rem;
  background-color: rgba(2, 2, 5, 0.4);
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .weltpixel-2025-home .trend-chart-area {
    height: 280px;
  }
}

.weltpixel-2025-home .trend-chart-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0.1;
  pointer-events: none;
}

.weltpixel-2025-home .trend-chart-grid-line {
  width: 100%;
  height: 1px;
  background-color: var(--text-muted);
}

.weltpixel-2025-home #growthCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.weltpixel-2025-home .trend-chart-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}

.weltpixel-2025-home .trend-chart-tooltip {
  position: absolute;
  top: 25px;
  right: 1rem;
  pointer-events: none;
  max-width: calc(100% - 2rem);
  z-index: 10;
}

.weltpixel-2025-home .trend-chart-tooltip-content {
  background-color: var(--wp-secondary);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.weltpixel-2025-home .trend-chart-tooltip-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background-color: white;
  animation: none;
}

.weltpixel-2025-home .trend-chart-trust-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ============================================
   Data Journey Component
   ============================================ */

.weltpixel-2025-home .data-journey-image-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.weltpixel-2025-home .data-journey-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ============================================
   Mobile Hard Overrides (Hero + Key Stats)
   ============================================ */
@media (max-width: 767px) {
  .weltpixel-2025-home .hero-section .hero-product-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .weltpixel-2025-home .hero-section .hero-product-row > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .weltpixel-2025-home .hero-section .hero-product-row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .weltpixel-2025-home .hero-section .stat-item {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* ============================================
   Mobile Cleanup Overrides (Hero + Key Stats)
   ============================================ */
@media (max-width: 767px) {
  .weltpixel-2025-home .hero-section .row.g-4 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .weltpixel-2025-home .hero-section .row.g-4 > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .weltpixel-2025-home .hero-section .row.g-4 > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: center !important;
  }

  .weltpixel-2025-home .hero-section .hero-product-card {
    width: 100% !important;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper {
    text-align: center;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .weltpixel-2025-home .hero-section .key-stats-wrapper .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .weltpixel-2025-home .hero-section .stat-item {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ============================================
   ROI Calculator Section
   ============================================ */
.weltpixel-2025-home .roi-calculator-section {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.weltpixel-2025-home .roi-calculator-section .text-muted {
  color: var(--text-secondary) !important;
}

.weltpixel-2025-home .roi-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 0.75rem;
}

.weltpixel-2025-home .roi-calculator-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 2.5rem;
  background: rgba(10, 10, 15, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(12px);
}

.weltpixel-2025-home .roi-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(48px);
  pointer-events: none;
}

.weltpixel-2025-home .roi-card-content {
  position: relative;
  z-index: 1;
}

.weltpixel-2025-home .roi-slider-block {
  margin-bottom: 2rem;
}

.weltpixel-2025-home .roi-slider-label {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.weltpixel-2025-home .roi-slider-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.weltpixel-2025-home .roi-slider-value #roi-spend-display {
  font-size: 3.1rem;
  color: #22c55e;
}

.weltpixel-2025-home .roi-slider-suffix {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.weltpixel-2025-home .roi-slider-input {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(to right, #22c55e 0%, #22c55e 9%, #141418 9%, #141418 100%);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.weltpixel-2025-home .roi-slider-input:focus {
  outline: none;
}

.weltpixel-2025-home .roi-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #22c55e;
  border: 4px solid #0a0a0f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 0 0 2px #22c55e;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.weltpixel-2025-home .roi-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(74, 222, 128, 0.9);
}

.weltpixel-2025-home .roi-slider-input::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #22c55e;
  border: 4px solid #0a0a0f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 0 0 2px #22c55e;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.weltpixel-2025-home .roi-slider-input::-moz-range-thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(74, 222, 128, 0.9);
}

.weltpixel-2025-home .roi-slider-range {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.weltpixel-2025-home .roi-savings-card {
  border-radius: 16px;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  text-align: center;
}

.weltpixel-2025-home .roi-savings-card-highlight {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(140deg, rgba(34, 197, 94, 0.12), rgba(10, 10, 15, 0.8));
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.12);
}

.weltpixel-2025-home .roi-savings-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.weltpixel-2025-home .roi-savings-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 2.25rem;
  color: #22c55e;
}

.weltpixel-2025-home .roi-savings-suffix {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.weltpixel-2025-home .roi-message {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.weltpixel-2025-home .roi-message-emphasis {
  color: #f8fafc;
  font-weight: 600;
}

.weltpixel-2025-home .roi-message-highlight {
  color: #4ade80;
  font-weight: 600;
}

.weltpixel-2025-home .roi-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.weltpixel-2025-home .roi-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.weltpixel-2025-home .roi-cta-group .btn {
  flex: 1 1 240px;
  min-width: 240px;
}

.weltpixel-2025-home .roi-calculator-section .btn-get-started {
  background: #f46f25 !important;
  border: 1px solid #f46f25 !important;
  color: white !important;
}

.weltpixel-2025-home .roi-calculator-section .btn-get-started:hover,
.weltpixel-2025-home .roi-calculator-section .btn-get-started:focus {
  background: #ff8533 !important;
  border-color: #ff8533 !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(244, 111, 37, 0.4), 0 0 0 1px rgba(255, 133, 51, 0.2) inset !important;
  transform: none !important;
}

.weltpixel-2025-home .roi-calculator-section .btn-shopify:hover,
.weltpixel-2025-home .roi-calculator-section .btn-shopify:focus {
  background: #b5d66a !important;
  border-color: #b5d66a !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(150, 191, 72, 0.4), 0 0 0 1px rgba(181, 214, 106, 0.2) inset !important;
  transform: none !important;
}

.weltpixel-2025-home .roi-calculator-section .btn::after {
  display: none !important;
}

/* ============================================
   Meta Dashboard Section
   ============================================ */
.weltpixel-2025-home .meta-dashboard-section {
  background: #ffffff;
}

.weltpixel-2025-home .meta-dashboard-section .text-center.mb-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weltpixel-2025-home .meta-dashboard-blurb {
  font-size: 1rem;
  color: #6b7280;
  border-left: 2px solid rgba(8, 102, 255, 0.4);
  padding-left: 0.75rem;
  margin-top: 1rem;
}

.weltpixel-2025-home .meta-dashboard-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0866ff;
  margin-bottom: 0.75rem;
}

.weltpixel-2025-home .meta-dashboard-shell {
  background: #f5f6f7;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.15);
  width: 100%;
}

.weltpixel-2025-home .meta-dashboard-topbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.weltpixel-2025-home .meta-dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #1c2b33;
  font-size: 1.3rem;
}

.weltpixel-2025-home .meta-logo {
  width: 32px;
  height: 32px;
  color: #0866ff;
}

.weltpixel-2025-home .meta-dashboard-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weltpixel-2025-home .meta-dashboard-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.95rem;
  color: #1c2b33;
  font-weight: 500;
}

.weltpixel-2025-home .meta-store-name {
  display: none;
}

.weltpixel-2025-home .meta-store-avatar {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #95bf47;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.weltpixel-2025-home .meta-dashboard-user {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.weltpixel-2025-home .meta-dashboard-body {
  display: flex;
  background: #f5f6f7;
}

.weltpixel-2025-home .meta-sidebar-primary {
  width: 56px;
  background: #f5f6f7;
  border-right: 1px solid #e5e7eb;
  padding: 1rem 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.weltpixel-2025-home .meta-sidebar-dot {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #d1d5db;
}

.weltpixel-2025-home .meta-sidebar-dot-active {
  background: rgba(8, 102, 255, 0.2);
}

.weltpixel-2025-home .meta-sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.weltpixel-2025-home .meta-sidebar-secondary {
  width: 230px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 1rem 0;
  display: none;
}

.weltpixel-2025-home .meta-sidebar-section {
  padding: 0 0.9rem 1rem;
}

.weltpixel-2025-home .meta-sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0866ff;
  margin-bottom: 1rem;
}

.weltpixel-2025-home .meta-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.weltpixel-2025-home .meta-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.82rem;
  color: #4b5563;
}

.weltpixel-2025-home .meta-sidebar-item-active {
  background: #ebf5ff;
  color: #0866ff;
  border-radius: 8px;
  font-weight: 600;
}

.weltpixel-2025-home .meta-sidebar-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.75rem 0.9rem;
}

.weltpixel-2025-home .meta-sidebar-datasets {
  padding: 0 0.9rem;
}

.weltpixel-2025-home .meta-sidebar-dataset {
  background: #f9fafb;
  border-radius: 10px;
  padding: 0.6rem 0.6rem 0.5rem;
  margin-bottom: 0.6rem;
}

.weltpixel-2025-home .meta-sidebar-dataset.active {
  background: #f3f4f6;
}

.weltpixel-2025-home .meta-sidebar-dataset-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f2937;
}

.weltpixel-2025-home .meta-sidebar-dataset-dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #d1d5db;
  display: inline-block;
  position: relative;
}

.weltpixel-2025-home .meta-sidebar-dataset-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9ca3af;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.weltpixel-2025-home .meta-sidebar-dataset-dot.muted {
  background: #e5e7eb;
}

.weltpixel-2025-home .meta-sidebar-dataset-id {
  display: block;
  font-size: 0.7rem;
  color: #9ca3af;
  margin-left: 1.4rem;
}

.weltpixel-2025-home .meta-dashboard-main {
  flex: 1;
  background: #f5f6f7;
  min-width: 0;
}

.weltpixel-2025-home .meta-dashboard-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.weltpixel-2025-home .meta-dashboard-header-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weltpixel-2025-home .meta-dashboard-app {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #95bf47;
  font-size: 1.2rem;
}

.weltpixel-2025-home .meta-dashboard-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c2b33;
}

.weltpixel-2025-home .meta-dashboard-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.weltpixel-2025-home .meta-dashboard-date {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 1rem;
  color: #6b7280;
  background: #ffffff;
}

.weltpixel-2025-home .meta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.98rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
}

.weltpixel-2025-home .meta-button-primary {
  background: #006b4e;
  border-color: #006b4e;
  color: #ffffff;
  font-weight: 600;
}

.weltpixel-2025-home .meta-dashboard-tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 1.5rem;
  background: #ffffff;
  overflow-x: auto;
  scrollbar-width: none;
}

.weltpixel-2025-home .meta-dashboard-tabs::-webkit-scrollbar {
  display: none;
}

.weltpixel-2025-home .meta-tab {
  background: transparent;
  border: none;
  padding: 0.75rem 0;
  font-size: 1.02rem;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.weltpixel-2025-home .meta-tab.active {
  color: #0866ff;
  border-bottom-color: #0866ff;
  font-weight: 600;
}

.weltpixel-2025-home .meta-pill {
  background: #e5e7eb;
  color: #6b7280;
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  font-size: 0.8rem;
}

.weltpixel-2025-home .meta-pill-alert {
  background: #a20c17;
  color: #ffffff;
}

.weltpixel-2025-home .meta-activities-card {
  margin: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.weltpixel-2025-home .meta-activities-top {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e5e7eb;
}

.weltpixel-2025-home .meta-chart-column {
  flex: 1;
  min-width: 0;
}

.weltpixel-2025-home .meta-activities-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1rem 0;
}

.weltpixel-2025-home .meta-subtab {
  border: none;
  background: transparent;
  padding: 0 0 0.75rem;
  font-size: 0.98rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 2px solid transparent;
}

.weltpixel-2025-home .meta-subtab.active {
  color: #0866ff;
  border-bottom-color: #0866ff;
  font-weight: 600;
}

.weltpixel-2025-home .meta-chart {
  padding: 1rem 1rem 0;
}

.weltpixel-2025-home .meta-chart p {
  font-size: 0.98rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.weltpixel-2025-home .meta-chart-area {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 0.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.weltpixel-2025-home .meta-chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: right;
  padding-right: 0.4rem;
  height: 130px;
}

.weltpixel-2025-home .meta-chart-graph {
  position: relative;
  height: 130px;
}

.weltpixel-2025-home .meta-chart-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    #f3f4f6,
    #f3f4f6 1px,
    transparent 1px,
    transparent 26px
  );
}

.weltpixel-2025-home .meta-chart-graph svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.weltpixel-2025-home .meta-chart-dates {
  grid-column: 2 / 3;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #6b7280;
  padding-top: 0.5rem;
}

.weltpixel-2025-home .meta-table-controls {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.weltpixel-2025-home .meta-controls-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.weltpixel-2025-home .meta-search {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.95rem;
  color: #9ca3af;
  background: #f9fafb;
}

.weltpixel-2025-home .meta-search span {
  color: #d1d5db;
}

.weltpixel-2025-home .meta-table-wrapper {
  overflow-x: auto;
}

.weltpixel-2025-home .meta-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.weltpixel-2025-home .meta-table th {
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.weltpixel-2025-home .meta-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  font-size: 1rem;
  color: #374151;
}

.weltpixel-2025-home .meta-table tbody tr:hover {
  background: #f9fafb;
}

.weltpixel-2025-home .meta-event {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weltpixel-2025-home .meta-event-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.weltpixel-2025-home .meta-event-name {
  font-weight: 600;
  color: #1c2b33;
  font-size: 1.05rem;
}

.weltpixel-2025-home .meta-event-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.weltpixel-2025-home .meta-event-status span,
.weltpixel-2025-home .meta-status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  display: inline-block;
}

.weltpixel-2025-home .meta-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #16a34a;
  font-weight: 500;
  font-size: 0.95rem;
}

.weltpixel-2025-home .meta-muted {
  color: #9ca3af;
}

.weltpixel-2025-home .meta-integration {
  color: #4b5563;
}

.weltpixel-2025-home .meta-info {
  width: 14px;
  height: 14px;
  color: #9ca3af;
  margin-left: 0.25rem;
}

.weltpixel-2025-home .meta-emq {
  color: #0866ff;
  font-weight: 600;
}

.weltpixel-2025-home .meta-total {
  font-weight: 600;
  color: #1c2b33;
}

.weltpixel-2025-home .meta-subtotal {
  font-size: 0.9rem;
  color: #9ca3af;
}

.weltpixel-2025-home .meta-align-right {
  text-align: right;
}

.weltpixel-2025-home .meta-table-icon {
  width: 36px;
  text-align: right;
  color: #9ca3af;
}

.weltpixel-2025-home .meta-info-panel {
  display: none;
  border-left: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1rem;
}

.weltpixel-2025-home .meta-info-block {
  margin-bottom: 1.25rem;
}

.weltpixel-2025-home .meta-info-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.weltpixel-2025-home .meta-info-value {
  font-size: 1.05rem;
  color: #4b5563;
}

.weltpixel-2025-home .meta-info-link {
  font-size: 0.95rem;
  color: #0866ff;
  text-decoration: none;
}

.weltpixel-2025-home .meta-dashboard-caption {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  margin-top: 1rem;
}

.weltpixel-2025-home .meta-icon {
  width: 16px;
  height: 16px;
}

.weltpixel-2025-home .meta-hide-sm {
  display: none;
}

.weltpixel-2025-home .meta-hide-md {
  display: none;
}

.weltpixel-2025-home .meta-hide-sm-flex {
  display: none;
}

.weltpixel-2025-home .meta-hide-sm-control {
  display: none;
}

@media (min-width: 768px) {
  .weltpixel-2025-home .meta-sidebar-primary {
    display: flex;
  }

  .weltpixel-2025-home .meta-hide-sm {
    display: table-cell;
  }
}

@media (min-width: 576px) {
  .weltpixel-2025-home .meta-store-name {
    display: inline;
  }

  .weltpixel-2025-home .meta-hide-sm-flex {
    display: inline-flex;
  }

  .weltpixel-2025-home .meta-hide-sm-control {
    display: inline-flex;
  }
}

@media (min-width: 992px) {
  .weltpixel-2025-home .meta-sidebar-secondary {
    display: block;
  }

  .weltpixel-2025-home .meta-hide-md {
    display: table-cell;
  }
}

@media (min-width: 1200px) {
  .weltpixel-2025-home .meta-info-panel {
    display: block;
  }

  .weltpixel-2025-home .meta-activities-top {
    flex-direction: row;
  }

  .weltpixel-2025-home .meta-info-panel {
    width: 240px;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .meta-dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .weltpixel-2025-home .meta-dashboard-profile {
    width: 100%;
    justify-content: space-between;
  }

  .weltpixel-2025-home .meta-dashboard-tabs {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .weltpixel-2025-home .meta-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .weltpixel-2025-home .roi-calculator-card {
    padding: 2rem 1.5rem;
  }

  .weltpixel-2025-home .roi-slider-value #roi-spend-display {
    font-size: 2.2rem;
  }

  .weltpixel-2025-home .roi-savings-value {
    font-size: 1.65rem;
  }
}
