/* ================================================================
   POWERIX PREMIUM - MODERN & PROFESSIONAL CSS
   Enhanced with Boxicons, glassmorphism, and SaaS-level design
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---- Enhanced CSS Variables ---- */
:root {
  /* Primary Colors */
  --px-green:       #2a9148;
  --px-green-dark:  #1e7338;
  --px-green-light: #3dbd62;
  --px-teal:        #2a9148;
  --px-teal-dark:   #1e7338;
  --px-lime:        #a8e63d;
  
  /* Neutrals */
  --px-dark:        #0d1f12;
  --px-dark2:       #132a19;
  --px-dark3:       #1c3c24;
  --px-white:       #ffffff;
  --px-off-white:   #f0f9f2;
  --px-text:        #1a2e1e;
  --px-text-muted:  #5a7a60;
  --px-bg-light:    #f8fbfa;
  
  /* Enhanced Shadows */
  --px-shadow-xs:   0 2px 8px rgba(0,0,0,0.08);
  --px-shadow-sm:   0 4px 16px rgba(0,0,0,0.1);
  --px-shadow-md:   0 8px 24px rgba(0,0,0,0.12);
  --px-shadow-lg:   0 12px 40px rgba(0,0,0,0.15);
  --px-shadow-xl:   0 20px 60px rgba(0,0,0,0.2);
  --px-shadow-green: 0 8px 32px rgba(45,186,78,0.25);
  --px-shadow-glow: 0 0 40px rgba(45,186,78,0.15);
  
  /* Borders */
  --px-border:      rgba(45,186,78,0.15);
  --px-border-light: rgba(45,186,78,0.08);
  
  /* Radius */
  --radius-xs:      6px;
  --radius-sm:      10px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-pill:    50px;
  
  /* Transitions */
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  
  /* Layout */
  --nav-h:          72px;
  --container-max:  1240px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--px-text);
  background: var(--px-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { 
  text-decoration: none; 
  color: inherit; 
  transition: var(--transition);
}

img { 
  max-width: 100%; 
  display: block; 
  height: auto;
}

ul { 
  list-style: none; 
}

/* ================================================================
   TOPBAR - ENHANCED
   ================================================================ */
.px-topbar {
  background: linear-gradient(180deg, var(--px-dark) 0%, rgba(13,31,18,0.95) 100%);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.px-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.px-topbar a { 
  color: rgba(255,255,255,0.7); 
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.px-topbar a:hover { 
  color: var(--px-green-light); 
}

.px-topbar-left { 
  display: flex; 
  gap: 28px; 
  align-items: center; 
}

.px-topbar-left span { 
  display: flex; 
  align-items: center; 
  gap: 8px;
  font-weight: 500;
}

.px-topbar-left i { 
  color: var(--px-green); 
  font-size: 13px; 
}

.px-topbar-right { 
  display: flex; 
  gap: 14px; 
}

.px-topbar-right a {
  width: 32px; 
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.px-topbar-right a:hover { 
  background: var(--px-green); 
  color: #fff;
  border-color: var(--px-green);
  transform: translateY(-2px);
}

/* ================================================================
   NAVBAR - PROFESSIONAL
   ================================================================ */
.px-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--px-border-light);
  transition: var(--transition);
  height: var(--nav-h);
  box-shadow: 0 2px 0 rgba(0,0,0,0.02);
}

.px-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-bottom-color: var(--px-border);
}

.px-navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.px-logo { 
  display: flex; 
  align-items: center; 
  gap: 12px;
  flex-shrink: 0;
}

.px-logo img { 
  height: 40px; 
  width: auto;
  transition: var(--transition);
}

.px-logo:hover img {
  transform: scale(1.05);
}

.px-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.px-nav-links li { 
  position: relative; 
}

.px-nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  color: var(--px-text);
  transition: var(--transition);
  display: flex; 
  align-items: center; 
  gap: 6px;
  position: relative;
}

.px-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--px-green), var(--px-teal));
  transition: var(--transition);
  transform: translateX(-50%);
}

.px-nav-links a:hover::after,
.px-nav-links a.active::after {
  width: calc(100% - 36px);
}

.px-nav-links a:hover,
.px-nav-links a.active {
  color: var(--px-green-dark);
}

.px-nav-links .has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 4px;
  opacity: 0.5;
}

/* Dropdown */
.px-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--px-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  border: 1px solid var(--px-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: var(--transition);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.px-nav-links li:hover .px-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.px-dropdown a {
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding: 13px 18px;
  border-radius: 0;
  font-size: 13.5px;
  color: var(--px-text);
  border-bottom: 1px solid var(--px-border-light);
  transition: var(--transition);
}

.px-dropdown a:last-child { 
  border-bottom: none; 
}

.px-dropdown a:hover { 
  background: var(--px-off-white); 
  color: var(--px-green-dark);
  padding-left: 22px;
}

.px-dropdown a .dd-icon {
  width: 32px; 
  height: 32px;
  background: linear-gradient(135deg, rgba(45,186,78,0.15), rgba(0,184,160,0.1));
  border-radius: var(--radius-sm);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 16px;
  color: var(--px-green);
  flex-shrink: 0;
  border: 1px solid var(--px-border-light);
}

/* CTA Button */
.btn-consult {
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(45,186,78,0.35);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-consult::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-consult:hover {
  background: linear-gradient(135deg, var(--px-green-dark), var(--px-teal-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45,186,78,0.45);
}

.btn-consult:hover::before {
  opacity: 1;
}

/* Hamburger */
.px-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--px-border);
  transition: var(--transition);
}

.px-hamburger span {
  width: 22px; 
  height: 2px;
  background: var(--px-text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.px-hamburger:hover {
  background: var(--px-off-white);
}

.px-hamburger.open span:nth-child(1) { 
  transform: rotate(45deg) translate(6px,6px); 
}

.px-hamburger.open span:nth-child(2) { 
  opacity: 0; 
}

.px-hamburger.open span:nth-child(3) { 
  transform: rotate(-45deg) translate(5px,-6px); 
}

/* ================================================================
   CONTAINER
   ================================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   HERO SECTION - PREMIUM
   ================================================================ */
.px-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e6330 0%, #2a8a44 35%, #236b38 70%, #1a5a2c 100%);
}

/* Animated background with glassmorphism */
.px-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 70% 50%, rgba(45,186,78,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,184,160,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(168,230,61,0.08) 0%, transparent 50%);
  animation: heroGlowPremium 12s ease-in-out infinite alternate;
}

@keyframes heroGlowPremium {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Grid overlay */
.px-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,186,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,186,78,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.px-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-hero-content { 
  animation: fadeSlideUp 1s ease both; 
}

@keyframes fadeSlideUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to   { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.px-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,186,78,0.12);
  border: 1px solid rgba(45,186,78,0.3);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--px-green-light);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.px-hero-badge::before {
  content: '';
  width: 6px; 
  height: 6px;
  background: var(--px-green-light);
  border-radius: 50%;
  animation: pulsePremium 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 12px var(--px-green-light);
}

@keyframes pulsePremium {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
    box-shadow: 0 0 12px var(--px-green-light);
  }
  50% { 
    opacity: 0.5; 
    transform: scale(1.3);
    box-shadow: 0 0 24px var(--px-green-light);
  }
}

.px-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1.2px;
}

.px-hero h1 span {
  background: linear-gradient(135deg, var(--px-green-light) 0%, var(--px-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { 
    background: linear-gradient(135deg, var(--px-green-light), var(--px-teal));
    -webkit-background-clip: text;
  }
  50% { 
    background: linear-gradient(135deg, var(--px-teal), var(--px-green-light));
    -webkit-background-clip: text;
  }
}

.px-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.px-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: var(--transition-slow);
  box-shadow: 0 8px 32px rgba(45,186,78,0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 14px 42px rgba(45,186,78,0.5);
}

.btn-primary:hover::before { 
  opacity: 1; 
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.btn-outline-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,186,78,0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn-outline-white:hover {
  border-color: var(--px-green-light);
  color: var(--px-green-light);
  background: rgba(45,186,78,0.1);
}

/* Hero Stats */
.px-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.px-hero-stat {}

.px-hero-stat .stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.px-hero-stat .stat-num span { 
  color: var(--px-green-light);
  display: inline-block;
  margin-left: 4px;
}

.px-hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 6px;
  font-weight: 500;
}

/* Hero Visual */
.px-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeSlideUp 1.2s 0.3s ease both;
}

.px-hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Floating energy icons */
.px-energy-icons {
  position: absolute;
  inset: -60px;
  pointer-events: none;
}

.e-icon {
  position: absolute;
  width: 60px; 
  height: 60px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(45,186,78,0.25);
  border-radius: var(--radius-md);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 24px;
  backdrop-filter: blur(12px);
  animation: floatIconPremium 6s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.e-icon:nth-child(1) { top: 5%;  left: -5%;  animation-delay: 0s; }
.e-icon:nth-child(2) { top: 10%; right: -5%; animation-delay: 1s; }
.e-icon:nth-child(3) { bottom: 20%; left: -8%; animation-delay: 2s; }
.e-icon:nth-child(4) { bottom: 5%; right: -3%; animation-delay: 1.5s; }
.e-icon:nth-child(5) { top: 45%; left: -10%; animation-delay: 0.5s; }

@keyframes floatIconPremium {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  33% { 
    transform: translateY(-16px) rotate(4deg); 
  }
  66% { 
    transform: translateY(8px) rotate(-3deg); 
  }
}

/* Hero main image card */
.px-hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid rgba(45,186,78,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(45,186,78,0.1);
}

.px-hero-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.px-hero-img-card:hover img {
  transform: scale(1.02);
}

.px-hero-img-overlay {
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.px-hero-img-overlay p {
  color: rgba(255,255,255,0.95);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Floating card on hero image */
.px-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(45,186,78,0.2);
  animation: floatCardPremium 5s ease-in-out infinite;
}

.px-float-card.card-tl { 
  top: -16px; 
  left: -16px; 
}

.px-float-card.card-br { 
  bottom: 60px; 
  right: -16px; 
}

@keyframes floatCardPremium {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-12px); 
  }
}

.px-float-card .fc-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--px-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.px-float-card .fc-value {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--px-green-dark);
  line-height: 1.2;
  margin-top: 2px;
  letter-spacing: -0.5px;
}

.px-float-card .fc-sub {
  font-size: 11px;
  color: var(--px-text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* ================================================================
   SECTION COMMONS - REFINED
   ================================================================ */
.px-section { 
  padding: 100px 0; 
}

.px-section-sm { 
  padding: 70px 0; 
}

.px-section-header { 
  text-align: center; 
  margin-bottom: 64px; 
}

.px-section-header .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(45,186,78,0.1), rgba(0,184,160,0.08));
  color: var(--px-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--px-border);
  margin-bottom: 16px;
}

.px-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--px-text);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.px-section-header p {
  font-size: 16px;
  color: var(--px-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* ================================================================
   FEATURES / WHY POWERIX - PREMIUM
   ================================================================ */
.px-features { 
  background: linear-gradient(180deg, #f4f9f6 0%, #ffffff 100%);
}

.px-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.px-feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--px-border-light);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.px-feature-card::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--px-green), var(--px-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.px-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,186,78,0.04), transparent);
  opacity: 0;
  transition: var(--transition);
}

.px-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(45,186,78,0.12);
  border-color: var(--px-green);
}

.px-feature-card:hover::before { 
  transform: scaleX(1); 
}

.px-feature-card:hover::after {
  opacity: 1;
}

.px-feature-icon {
  width: 64px; 
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(45,186,78,0.15), rgba(0,184,160,0.12));
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--px-border-light);
  transition: var(--transition);
}

.px-feature-card:hover .px-feature-icon {
  background: linear-gradient(135deg, rgba(45,186,78,0.25), rgba(0,184,160,0.2));
  transform: scale(1.08) rotate(2deg);
}

.px-feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--px-text);
  letter-spacing: -0.3px;
}

.px-feature-card p {
  font-size: 14.5px;
  color: var(--px-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

/* ================================================================
   STORE SELECTION - PREMIUM
   ================================================================ */
.px-store-hero {
  position: relative;
  padding: 110px 0 70px;
    background: linear-gradient(160deg, #1e6330 0%, #2a8a44 50%, #1e6330 100%);

  overflow: hidden;
  text-align: center;
}

.px-store-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(45,186,78,0.1), transparent 70%);
  animation: heroGlowPremium 12s ease-in-out infinite;
}

.px-store-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,186,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,186,78,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.px-store-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.px-store-hero h1 span {
  background: linear-gradient(135deg, var(--px-green-light), var(--px-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.px-store-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Wave divider */
.px-wave {
  position: relative;
  margin-top: -2px;
}

.px-wave svg { 
  display: block; 
  width: 100%; 
}

/* Store Cards */
.px-stores-section { 
  padding: 70px 0 100px; 
  background: linear-gradient(180deg, var(--px-off-white) 0%, #ffffff 100%);
}

.px-stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.px-store-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--px-border-light);
  transition: var(--transition-slow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

.px-store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--px-green), transparent);
  z-index: 1;
}

.px-store-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(45,186,78,0.18);
  border-color: var(--px-green);
}

.px-store-card-img {
  height: 240px;
    background: linear-gradient(135deg, #2a7a42 0%, #1e6330 50%, #1a5a2c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.px-store-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(45,186,78,0.2), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,184,160,0.15), transparent 50%);
}

.px-store-card-img img {
  height: 180px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.35));
  transition: var(--transition-slow);
}

.px-store-card:hover .px-store-card-img img {
  transform: scale(1.08) translateY(-6px);
}

/* Store type badge */
.px-store-type {
  position: absolute;
  top: 18px; 
  right: 18px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.px-store-type.generator { 
  background: rgba(168,230,61,0.15); 
  color: #a8e63d; 
  border: 1px solid rgba(168,230,61,0.35);
}

.px-store-type.customer { 
  background: rgba(0,184,160,0.15); 
  color: #00e5cc; 
  border: 1px solid rgba(0,184,160,0.35);
}

.px-store-card-body {
  padding: 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.px-store-card-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--px-text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.px-store-card-body .store-tagline {
  font-size: 14.5px;
  color: var(--px-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 400;
}

.px-store-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.px-store-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--px-text);
  font-weight: 500;
  transition: var(--transition);
}

.px-store-features li::before {
  content: '';
  width: 24px; 
  height: 24px;
  background: linear-gradient(135deg, rgba(45,186,78,0.15), rgba(0,184,160,0.1));
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--px-green-dark);
  flex-shrink: 0;
  border: 1px solid var(--px-border-light);
  position: relative;
}

.px-store-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a9438' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.px-store-card:hover .px-store-features li {
  padding-left: 4px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: var(--transition-slow);
  cursor: pointer;
  border: 2px solid var(--px-green);
  color: var(--px-green-dark);
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-store::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  z-index: -1;
  transition: var(--transition);
  transform: scaleX(0);
  transform-origin: left;
}

.btn-store:hover {
  color: #fff;
  box-shadow: var(--px-shadow-green);
  transform: translateY(-2px);
}

.btn-store:hover::before {
  transform: scaleX(1);
}

.btn-store .store-btn-icon {
  width: 28px; 
  height: 28px;
  background: var(--px-green);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.btn-store:hover .store-btn-icon {
  background: #fff;
  color: var(--px-green-dark);
  transform: scale(1.1);
}

/* ================================================================
   NEWS SECTION / Page
   ================================================================ */
.px-news-hero {
  position: relative;
  padding: 90px 0 70px;
      background: linear-gradient(160deg, #1e6330 0%, #236b38 50%, #1a5a2c 100%);
  text-align: center;
  overflow: hidden;
}

.px-news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(45,186,78,0.12), transparent 70%);
  animation: heroGlowPremium 12s ease-in-out infinite;
}

.px-news-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,186,78,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,186,78,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.px-news-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  position: relative; 
  z-index: 1;
  letter-spacing: -0.8px;
}

.px-news-section { 
  padding: 80px 0; 
}

.px-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.px-news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--px-border-light);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.px-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(45,186,78,0.12);
  border-color: var(--px-green);
}

.px-news-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0f9f2, #e8f5f0);
}

.px-news-card-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: var(--transition-slow);
}

.px-news-card:hover .px-news-card-img img { 
  transform: scale(1.08) rotate(1deg);
}

.px-news-badge {
  position: absolute;
  top: 16px; 
  left: 16px;
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(45,186,78,0.35);
}

.px-news-card-body { 
  padding: 26px; 
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.px-news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--px-text-muted);
  margin-bottom: 12px;
}

.px-news-meta span { 
  display: flex; 
  align-items: center; 
  gap: 5px;
  font-weight: 500;
}

.px-news-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--px-text);
  margin-bottom: 12px;
  transition: var(--transition);
  letter-spacing: -0.3px;
}

.px-news-card:hover .px-news-card-body h3 { 
  color: var(--px-green-dark); 
}

.px-news-card-body p {
  font-size: 14px;
  color: var(--px-text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  margin-bottom: 16px;
}

.px-news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--px-green-dark);
  transition: var(--transition);
}

.px-news-card-link:hover { 
  gap: 12px;
  color: var(--px-green);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.px-contact-section { 
  padding: 90px 0; 
}

.px-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.px-contact-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--px-text);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.px-contact-left p {
  font-size: 16px;
  color: var(--px-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.px-contact-info { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

.px-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(45,186,78,0.04), transparent);
  border-radius: var(--radius-md);
  border: 1px solid var(--px-border-light);
  transition: var(--transition-slow);
}

.px-contact-info-item:hover {
  border-color: var(--px-green);
  background: linear-gradient(135deg, rgba(45,186,78,0.08), rgba(0,184,160,0.04));
  transform: translateX(4px);
}

.px-contact-info-icon {
  width: 48px; 
  height: 48px;
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  border-radius: var(--radius-md);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(45,186,78,0.25);
}

.px-contact-info-item h4 {
  font-weight: 700;
  font-size: 12px;
  color: var(--px-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}

.px-contact-info-item p, 
.px-contact-info-item a {
  font-size: 15px;
  font-weight: 600;
  color: var(--px-text);
  transition: var(--transition);
  line-height: 1.5;
}

.px-contact-info-item a:hover { 
  color: var(--px-green-dark); 
}

/* Contact Form */
.px-contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--px-border-light);
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
}

.px-contact-form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--px-text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.px-contact-form-card > p {
  font-size: 14.5px;
  color: var(--px-text-muted);
  margin-bottom: 32px;
}

.px-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.px-form-group { 
  margin-bottom: 18px; 
}

.px-form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--px-text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.px-form-group input,
.px-form-group textarea,
.px-form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--px-border-light);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--px-text);
  background: var(--px-off-white);
  transition: var(--transition);
  outline: none;
  font-weight: 500;
}

.px-form-group input::placeholder,
.px-form-group textarea::placeholder {
  color: var(--px-text-muted);
}

.px-form-group input:focus,
.px-form-group textarea:focus,
.px-form-group select:focus {
  border-color: var(--px-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45,186,78,0.12);
}

.px-form-group textarea { 
  resize: vertical; 
  min-height: 140px; 
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: var(--transition-slow);
  box-shadow: 0 8px 32px rgba(45,186,78,0.35);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45,186,78,0.45);
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* ================================================================
   FOOTER - PREMIUM
   ================================================================ */
.px-footer {
  background: linear-gradient(180deg, var(--px-dark) 0%, rgba(13,31,18,0.98) 100%);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.px-footer-main {
  padding: 80px 0 50px;
}

.px-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 56px;
}

.px-footer-brand img { 
  height: 44px; 
  margin-bottom: 18px;
  transition: var(--transition);
}

.px-footer-brand:hover img {
  transform: scale(1.05);
}

.px-footer-brand p {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  font-weight: 400;
}

.px-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.px-footer-social a {
  width: 40px; 
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.px-footer-social a:hover { 
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  color: #fff; 
  border-color: var(--px-green);
  transform: translateY(-3px);
}

.px-footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.px-footer-col ul { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.px-footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex; 
  align-items: center; 
  gap: 6px;
  font-weight: 500;
}

.px-footer-col ul a:hover { 
  color: var(--px-green-light); 
  transform: translateX(5px); 
}

.px-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.px-footer-contact li i {
  color: var(--px-green);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.px-footer-contact li a { 
  color: rgba(255,255,255,0.55); 
  transition: var(--transition); 
}

.px-footer-contact li a:hover { 
  color: var(--px-green-light); 
}

.px-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.px-footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.px-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.px-footer-bottom a { 
  color: var(--px-green-light);
  transition: var(--transition);
}

.px-footer-bottom a:hover {
  color: #fff;
}

/* ================================================================
   PAGE HERO (generic)
   ================================================================ */
.px-page-hero {
  background: linear-gradient(160deg, #1e6330, #236b38, #1a5a2c);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.px-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(45,186,78,0.1), transparent 70%);
}

.px-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,186,78,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,186,78,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.px-page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  position: relative; 
  z-index: 1;
}

.px-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  position: relative; 
  z-index: 1;
  font-weight: 500;
}

.px-breadcrumb a { 
  color: var(--px-green-light); 
  transition: var(--transition); 
}

.px-breadcrumb a:hover { 
  color: #fff; 
}

.px-breadcrumb span { 
  color: rgba(255,255,255,0.3); 
}

/* ================================================================
   SCROLL TO TOP - MODERN
   ================================================================ */
.px-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; 
  height: 48px;
  background: linear-gradient(135deg, var(--px-green), var(--px-teal));
  color: #fff;
  border-radius: 12px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: var(--transition-slow);
  box-shadow: 0 8px 32px rgba(45,186,78,0.3);
  z-index: 999;
  border: none;
  position: relative;
  overflow: hidden;
}

.px-scroll-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.px-scroll-top.show { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0) scale(1);
}

.px-scroll-top:hover { 
  background: linear-gradient(135deg, var(--px-green-dark), var(--px-teal-dark));
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(45,186,78,0.4);
}

.px-scroll-top:hover::before {
  opacity: 1;
}

/* ================================================================
   ANIMATIONS & UTILITIES
   ================================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.34,1.56,0.64,1), 
              transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-green { 
  color: var(--px-green-dark); 
}

.text-muted { 
  color: var(--px-text-muted); 
}

.fw-700 { 
  font-weight: 700; 
}

.fw-900 {
  font-weight: 900;
}

.mt-4 { 
  margin-top: 16px; 
}

.mb-4 { 
  margin-bottom: 16px; 
}

/* ================================================================
   MOBILE RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .px-features-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .px-news-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .px-footer-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .px-topbar { 
    display: none; 
  }
  
  .px-hamburger { 
    display: flex; 
  }
  
  .px-nav-links, 
  .btn-consult {
    display: none;
  }
  
  .px-nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; 
    right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--px-border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 999;
  }
  
  .px-dropdown { 
    position: static; 
    opacity: 1; 
    visibility: visible; 
    transform: none; 
    box-shadow: none; 
    border: none;
    background: var(--px-off-white);
    margin-top: 8px;
  }

  .px-hero .container { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    text-align: center; 
  }
  
  .px-hero-sub { 
    max-width: 100%; 
    margin: 0 auto 36px; 
  }
  
  .px-hero-actions { 
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .px-hero-actions a {
    width: 100%;
  }
  
  .px-hero-stats { 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 24px; 
  }
  
  .px-hero-visual { 
    max-width: 100%; 
    margin: 0 auto; 
  }

  .px-features-grid { 
    grid-template-columns: 1fr; 
  }
  
  .px-stores-grid { 
    grid-template-columns: 1fr; 
  }
  
  .px-news-grid { 
    grid-template-columns: 1fr; 
  }
  
  .px-contact-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  
  .px-footer-grid { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  
  .px-form-row { 
    grid-template-columns: 1fr; 
  }
  
  .px-contact-form-card { 
    padding: 32px 24px; 
  }

  .px-section {
    padding: 70px 0;
  }

  .px-section-sm {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .px-hero h1 { 
    font-size: 2.4rem; 
  }
  
  .px-section-header h2 { 
    font-size: 2rem; 
  }
  
  .px-stores-grid, 
  .px-news-grid { 
    grid-template-columns: 1fr; 
  }

  .px-contact-left h2 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 16px;
  }

  .px-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}