/* ===================================
   WILS SERVICES - PREMIUM CSS LAYER
   Phase 1: Foundation Enhancement
   Non-breaking CSS additions
   =================================== */

/* ================================
   1. ADVANCED COLOR SYSTEM
   ================================ */
:root {
  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  --gradient-primary-reverse: linear-gradient(315deg, #16a34a 0%, #15803d 100%);
  --gradient-accent: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --gradient-success: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
  --gradient-subtle: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  --gradient-dark-subtle: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  
  /* Layered Shadows - Premium */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 20px 64px rgba(0, 0, 0, 0.25);
  
  /* Glow Effects */
  --shadow-glow: 0 0 20px rgba(22, 163, 74, 0.25);
  --shadow-glow-strong: 0 0 32px rgba(22, 163, 74, 0.4);
  --shadow-glow-hover: 0 0 40px rgba(22, 163, 74, 0.5);
  
  /* Animation Timing */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out-cubic: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Transition Durations */
  --duration-fast: 0.15s;
  --duration-base: 0.22s;
  --duration-medium: 0.35s;
  --duration-slow: 0.5s;
}

/* ================================
   2. ENHANCED NAVIGATION
   ================================ */
nav {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
}

.nav-links a {
  position: relative;
  transition: color var(--duration-base) var(--ease-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-smooth);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta a {
  background: var(--gradient-primary) !important;
  border: 2px solid transparent !important;
  transition: all var(--duration-base) var(--ease-smooth) !important;
  position: relative;
  overflow: hidden;
}

.nav-cta a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform var(--duration-base) var(--ease-smooth);
}

.nav-cta a:hover {
  box-shadow: var(--shadow-glow) !important;
  transform: translateY(-2px) !important;
}

.nav-cta a:hover::before {
  transform: translateX(0);
}

/* ================================
   3. ENHANCED HERO SECTION
   ================================ */
.hero {
  background: var(--gradient-subtle);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(22, 163, 74, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  background: rgba(240, 253, 244, 0.8) !important;
  border: 1px solid rgba(22, 163, 74, 0.2) !important;
  backdrop-filter: blur(8px);
  transition: all var(--duration-base) var(--ease-smooth);
  animation: eyebrowPulse 3s var(--ease-smooth) infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero h1 {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleSlide 0.8s var(--ease-out-quad) forwards;
}

@keyframes heroTitleSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 em::after {
  animation: underlineGrow 0.8s var(--ease-out-quad) 0.3s forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero p {
  animation: heroPSlide 0.8s var(--ease-out-quad) 0.15s forwards;
  opacity: 0;
}

@keyframes heroPSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  animation: heroActionsSlide 0.8s var(--ease-out-quad) 0.3s forwards;
  opacity: 0;
}

@keyframes heroActionsSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   4. PREMIUM BUTTONS
   ================================ */
.btn-primary {
  background: var(--gradient-primary) !important;
  border: 2px solid transparent !important;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-smooth) !important;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform var(--duration-base) var(--ease-smooth);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-glow-strong) !important;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:active {
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-glow) !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.6) !important;
  border: 2px solid rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(10px);
  transition: all var(--duration-base) var(--ease-smooth) !important;
}

.btn-outline:hover {
  background: rgba(240, 253, 244, 0.9) !important;
  border-color: var(--y) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.15);
}

/* Magnetic Button Effect - Hover Attraction */
.btn-primary,
.btn-outline {
  --mouse-x: 0;
  --mouse-y: 0;
}

.btn-primary:hover,
.btn-outline:hover {
  --mouse-x: var(--_mouse-x, 0px);
  --mouse-y: var(--_mouse-y, 0px);
}

/* ================================
   5. PREMIUM CARDS
   ================================ */

/* Carousel Cards */
.carousel-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.carousel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
  pointer-events: none;
}

.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    var(--shadow-glow);
  border-color: rgba(22, 163, 74, 0.3) !important;
  filter: none !important;
}

.carousel-card:hover::before {
  opacity: 1;
}

.cc-img img {
  transition: transform var(--duration-medium) var(--ease-smooth);
}

.carousel-card:hover .cc-img img {
  transform: scale(1.08);
}

/* Product Cards */
.prod-card {
  background: var(--w) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
}

.prod-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  border-radius: var(--radius);
  transition: opacity var(--duration-base) var(--ease-smooth);
  pointer-events: none;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(22, 163, 74, 0.2) !important;
}

.prod-card:hover::after {
  opacity: 1;
}

.pc-img img {
  transition: transform var(--duration-medium) var(--ease-smooth);
}

.prod-card:hover .pc-img img {
  transform: scale(1.05);
}

.pc-order-btn {
  background: var(--gradient-primary) !important;
  border: none !important;
  transition: all var(--duration-base) var(--ease-smooth) !important;
  position: relative;
  overflow: hidden;
}

.pc-order-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform var(--duration-base) var(--ease-smooth);
}

.pc-order-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow) !important;
}

.pc-order-btn:hover::before {
  transform: translateX(0);
}

/* Grid columns version */
.prod-grid.cols-2 .prod-card {
  box-shadow: var(--shadow-md) !important;
}

.prod-grid.cols-2 .prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
}

/* ================================
   6. FILTER TABS ENHANCEMENT
   ================================ */
.ftab {
  background: rgba(242, 242, 242, 0.6) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(8px);
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
}

.ftab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--duration-base) var(--ease-smooth);
}

.ftab:hover {
  transform: translateY(-2px);
  background: rgba(240, 253, 244, 0.8) !important;
  border-color: rgba(22, 163, 74, 0.3) !important;
}

.ftab:hover::after {
  width: 70%;
}

.ftab.active {
  background: var(--gradient-primary) !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-glow);
}

.ftab.active::after {
  width: 0;
}

.ftab svg {
  transition: all var(--duration-base) var(--ease-smooth);
}

.ftab:hover svg,
.ftab.active svg {
  transform: rotate(-5deg);
}

/* ================================
   7. MODAL & OVERLAY ENHANCEMENT
   ================================ */
.modal-overlay {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(8px);
  animation: backdropFadeIn var(--duration-base) var(--ease-smooth);
}

@keyframes backdropFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

.modal {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.25) !important;
  animation: modalSlideUp var(--duration-medium) var(--ease-smooth);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  background: rgba(242, 242, 242, 0.8) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  transition: all var(--duration-base) var(--ease-smooth);
}

.modal-close:hover {
  transform: rotate(90deg);
  background: var(--gradient-primary) !important;
  color: white !important;
  border-color: transparent !important;
}

/* ================================
   8. ENHANCED FOOTER
   ================================ */
footer {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%) !important;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(22, 163, 74, 0.3) 50%,
    transparent 100%
  );
}

.footer-logo em {
  animation: colorPulse 3s var(--ease-smooth) infinite;
}

@keyframes colorPulse {
  0%, 100% {
    color: #16a34a;
  }
  50% {
    color: #10b981;
  }
}

.footer-col ul li a {
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--duration-base) var(--ease-smooth);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition: all var(--duration-base) var(--ease-smooth);
}

.footer-social a:hover {
  transform: translateY(-3px) rotate(5deg);
  background: var(--gradient-primary) !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-glow);
}

/* ================================
   9. WHATSAPP BUTTON ENHANCEMENT
   ================================ */
.wa-float-btn {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
  transition: all var(--duration-base) var(--ease-smooth);
}

.wa-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6) !important;
}

.wa-float-label {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* ================================
   10. TESTIMONIALS ENHANCEMENT
   ================================ */
.testi-card {
  background: var(--w) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

/* Featured carousel color harmony */
.carousel-card {
  background:
    linear-gradient(135deg,
      rgba(var(--card-accent, 22, 163, 74), 0.16) 0%,
      rgba(var(--card-accent, 22, 163, 74), 0.48) 48%,
      rgba(var(--card-accent, 22, 163, 74), 0.86) 100%
    ) !important;
  border: 1px solid rgba(var(--card-accent, 22, 163, 74), 0.34) !important;
  box-shadow: 0 22px 52px rgba(var(--card-accent, 22, 163, 74), 0.18) !important;
}

.carousel-card::before {
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.86), rgba(255,255,255,.58) 30%, transparent 58%),
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.38) 48%, transparent 72%) !important;
}

.carousel-card::after {
  background:
    linear-gradient(100deg,
      transparent 0%,
      rgba(var(--card-accent, 22, 163, 74), 0.4) 42%,
      rgba(var(--card-accent, 22, 163, 74), 0.94) 100%
    ) !important;
}

.cc-fade {
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(var(--card-accent, 22, 163, 74), 0.24) 44%,
      rgba(var(--card-accent, 22, 163, 74), 0.92) 100%
    ) !important;
}

.cc-content {
  background:
    linear-gradient(135deg,
      rgba(var(--card-accent, 22, 163, 74), 0.98),
      rgba(var(--card-accent, 22, 163, 74), 0.72)
    ) !important;
  box-shadow: inset 1px 0 0 rgba(255,255,255,.14);
}

.cc-btn {
  background: rgba(255,255,255,.24) !important;
  border-color: rgba(255,255,255,.58) !important;
  color: #fff !important;
}

/* Capture carousel polish */
.screenshots-section{
  padding:4px 0 44px !important;
  overflow:hidden !important;
}
.sc-track-outer{
  max-width:100vw !important;
  overflow:hidden !important;
  padding:18px 0 24px !important;
  scroll-behavior:smooth;
}
.sc-track{
  gap:0 !important;
  align-items:center;
  padding:0 !important;
  box-sizing:border-box;
  transform:none!important;
  transition:none!important;
}
.sc-slide{
  flex:0 0 100% !important;
  width:100% !important;
  height:520px !important;
  border-radius:0 !important;
  background-size:contain !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  border:0 !important;
  background-color:transparent!important;
  box-shadow:none!important;
  cursor:pointer;
  transform:scale(.94);
  opacity:.42;
  transition:transform .45s ease, opacity .45s ease, box-shadow .45s ease;
}
@media(max-width:430px){
  .sc-track-outer{
    max-width:100vw !important;
  }
  .sc-track{
    padding-left:0!important;
    padding-right:0!important;
  }
  .sc-slide{
    flex-basis:100% !important;
    width:100% !important;
    height:500px !important;
  }
}
.sc-slide.active{
  transform:scale(1);
  opacity:1;
  box-shadow:none!important;
}
.sc-slide::after{
  display:none!important;
  content:none!important;
}
.sc-slide.active::after,
.sc-slide:hover::after{
  display:none!important;
}
.sc-arrow{
  z-index:5 !important;
  background:linear-gradient(135deg,#16a34a,#087f3d) !important;
  box-shadow:0 18px 34px rgba(22,163,74,.3) !important;
}
.sc-dots{
  margin-top:22px !important;
}
.sc-dot{
  width:8px !important;
  height:8px !important;
  background:rgba(22,163,74,.18) !important;
}
.sc-dot.active{
  width:28px !important;
  background:#16a34a !important;
}
.sc-lb-img-wrap{
  border-radius:26px !important;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.42);
}

/* Equal category buttons */
.filter-tabs{
  align-items:stretch !important;
}
.ftab{
  width:118px !important;
  min-width:118px !important;
  min-height:54px !important;
  justify-content:center !important;
  text-align:center !important;
}

/* Trust rail counter impact */
.trust-item{
  transform:none!important;
}
.trust-item strong{
  display:inline-block;
  min-width:3.2ch;
  font-variant-numeric:tabular-nums;
}
.trust-item.counted{
  box-shadow:0 18px 42px rgba(22,163,74,.14), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-smooth);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
}

.testi-card:hover::before {
  transform: scaleX(1);
}

.testi-text {
  border-left: 3px solid var(--gradient-primary) !important;
}

/* ================================
   11. FOCUS & ACCESSIBILITY
   ================================ */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--y) !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
  outline: none !important;
}

button:focus-visible {
  outline: 2px solid var(--y);
  outline-offset: 2px;
}

/* ================================
   12. SMOOTH SCROLLBAR
   ================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: background var(--duration-base) var(--ease-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-primary-reverse);
}

/* ================================
   13. GLOBAL TRANSITIONS & POLISH
   ================================ */

/* Smooth page transitions */
html {
  scroll-behavior: smooth;
}

/* Image zoom on hover */
img {
  transition: transform var(--duration-medium) var(--ease-smooth);
}

/* Remove button default styling */
button {
  outline: none;
  border: none;
}

/* ================================
   14. RESPONSIVE MOBILE POLISH
   ================================ */

@media (max-width: 768px) {
  .hero h1 {
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .btn-primary,
  .btn-outline {
    transition: all var(--duration-fast) var(--ease-smooth);
  }
  
  .carousel-card:hover {
    transform: translateY(-6px);
  }
  
  .prod-card:hover {
    transform: translateY(-3px);
  }
  
  .testi-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .nav-links a::after {
    height: 1px;
  }
  
  .btn-primary,
  .btn-outline {
    font-size: 0.82rem;
    padding: 10px 20px;
  }
  
  .carousel-card:hover {
    transform: translateY(-4px);
  }
}

/* ================================
   15. DARK MODE FOUNDATION (FUTURE)
   ================================ */

@media (prefers-color-scheme: dark) {
  /* Will be implemented in Phase 3 */
  /* Placeholder for dark mode variables */
}

/* ================================
   16. PERFORMANCE OPTIMIZATION
   ================================ */

/* Enable GPU acceleration for animations */
.carousel-card,
.prod-card,
.testi-card,
.btn-primary,
.btn-outline,
.ftab {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================
   17. FRONTEND GOD POLISH PASS
   Cinematic commerce layer, intentionally loaded last.
   ================================ */
:root {
  --ink-deep: #07110c;
  --ink-soft: #1c2a21;
  --glass-line: rgba(255, 255, 255, 0.32);
  --surface-soft: #fbfcf8;
  --gold: #f5c542;
  --coral: #ef4444;
}

body {
  background:
    linear-gradient(180deg, #f7fbf4 0%, #ffffff 36%, #f7faf6 100%) !important;
}

nav {
  background: rgba(255, 255, 255, 0.82) !important;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08) !important;
}

.nav-inner {
  max-width: 1180px !important;
}

.logo img {
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.hero-banner-shell {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  isolation: isolate;
  background: #07110c;
}

.hero-banner-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 10, 7, 0.96) 0%, rgba(4, 10, 7, 0.78) 38%, rgba(4, 10, 7, 0.22) 76%, rgba(4, 10, 7, 0.04) 100%),
    linear-gradient(180deg, rgba(4, 10, 7, 0.08) 0%, rgba(4, 10, 7, 0.72) 100%);
  pointer-events: none;
}

.hero-banner-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  z-index: 3;
  background: linear-gradient(180deg, transparent, #f7fbf4);
  pointer-events: none;
}

.hero-banner-wrap {
  height: 470px !important;
  overflow: hidden;
}

.hero-banner-slide {
  height: 470px !important;
}

.hero-banner-slide img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.01);
}

.hero-banner-overlay {
  position: absolute;
  z-index: 4;
  left: max(22px, calc((100vw - 1180px) / 2 + 22px));
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, calc(100vw - 44px));
  color: #fff;
}

.hero-banner-overlay::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -26px;
  top: -28px;
  width: min(560px, calc(100vw - 28px));
  height: calc(100% + 56px);
  border-radius: 0 28px 28px 0;
  background: linear-gradient(90deg, rgba(4, 10, 7, 0.72), rgba(4, 10, 7, 0.18), transparent);
  filter: blur(0.2px);
}

.hero-banner-overlay .hero-eyebrow {
  color: rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero-banner-overlay h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.9rem, 7.8vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.hero-banner-overlay h1 em {
  display: block;
  font-style: normal;
  color: var(--gold);
}

.hero-banner-overlay p {
  max-width: 520px;
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: .76rem;
  font-weight: 700;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.hero-proof-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
}

.hero-banner-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
}

.hero-banner-dots button {
  background: rgba(255,255,255,0.38) !important;
}

.hero-banner-dots button.active {
  background: #fff !important;
}

.hero-cta-bar {
  max-width: 1180px;
  margin: -28px auto 0;
  position: relative;
  z-index: 8;
  padding: 0 22px 12px !important;
}

.btn-primary,
.btn-outline,
.nav-cta a {
  min-height: 46px;
  border-radius: 999px !important;
}

.btn-primary {
  background: linear-gradient(135deg, #16a34a 0%, #0f7a36 100%) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.28), inset 0 1px 0 rgba(255,255,255,0.22) !important;
}

.btn-outline {
  background: rgba(255,255,255,0.86) !important;
  border-color: rgba(17,24,39,0.08) !important;
  color: var(--ink-deep) !important;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08) !important;
}

.trust-rail {
  max-width: 960px;
  margin: 0 auto 18px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.trust-item {
  min-height: 72px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f5fbf2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-item strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ink-deep);
}

.trust-item span {
  margin-top: 6px;
  font-size: 0.72rem;
  color: #5b665f;
}

.carousel-wrap,
.filter-wrap,
.prod-grid,
.how-wrap,
.why-wrap,
.testi-section,
.divider,
.sec-head {
  max-width: 1180px !important;
}

.sec-head {
  padding-top: 34px !important;
}

.sec-head h2,
.testi-head h2 {
  color: var(--ink-deep) !important;
}

.sec-head h2 em,
.testi-head h2 em {
  color: #16a34a !important;
}

.carousel-card {
  min-height: 210px !important;
  border-radius: 20px !important;
  box-shadow: 0 22px 50px rgba(6, 14, 10, 0.22) !important;
}

.cc-content {
  padding: 24px 18px 18px 10px !important;
}

.cc-name {
  font-size: 1.12rem !important;
}

.cc-btn,
.pc-order-btn {
  border-radius: 999px !important;
}

.prod-grid {
  gap: 18px !important;
}

@media (min-width: 700px) {
  .prod-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  }

  .prod-card {
    border-radius: 18px !important;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08) !important;
  }

  .pc-img {
    aspect-ratio: 1 / 1.08 !important;
  }
}

.prod-card {
  overflow: hidden;
}

.pc-badge,
.cc-badge {
  border-radius: 999px !important;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 22px rgba(17,24,39,0.14);
}

.filter-tabs {
  padding: 8px 0 !important;
}

.ftab {
  border-radius: 999px !important;
  min-width: auto !important;
  flex-direction: row !important;
  padding: 10px 15px !important;
  background: rgba(255,255,255,0.84) !important;
}

.how-step,
.testi-card,
.cmp-wrap {
  border-radius: 18px !important;
  border-color: rgba(17,24,39,0.08) !important;
  background: rgba(255,255,255,0.82) !important;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07) !important;
}

.step-num {
  -webkit-text-stroke: 0 !important;
  color: #16a34a !important;
}

.why-badge {
  background: #fff !important;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.community-bar {
  background: linear-gradient(100deg, #07110c 0%, #146c35 48%, #16a34a 100%) !important;
  min-height: 92px;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 680px) {
  .hero-banner-shell,
  .hero-banner-wrap,
  .hero-banner-slide {
    min-height: auto;
    height: auto !important;
  }

  .hero-banner-shell::before {
    display: none;
  }

  .hero-banner-shell::after {
    display: none;
  }

  .hero-banner-shell {
    background: #070b08;
    overflow: visible;
  }

  .hero-banner-wrap {
    height: auto !important;
    background: #070b08;
  }

  .hero-banner-track {
    align-items: stretch;
  }

  .hero-banner-slide {
    height: auto !important;
    background: #070b08;
  }

  .hero-banner-slide img {
    width: 100%;
    height: auto !important;
    max-height: none;
    object-fit: contain;
    object-position: center top;
    filter: saturate(1.08) contrast(1.02);
    transform: none;
  }

  .hero-banner-overlay {
    display: none;
  }

  .hero-banner-overlay::before {
    display: none;
  }

  .hero-banner-overlay .hero-eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
    font-size: .62rem;
    padding: 6px 10px;
    margin-bottom: 12px;
  }

  .hero-banner-overlay h1 {
    font-size: clamp(2.42rem, 12vw, 4.3rem);
    max-width: 340px;
    line-height: .96;
    margin-bottom: 12px;
  }

  .hero-banner-overlay p {
    max-width: 330px;
    font-size: 0.92rem;
    line-height: 1.58;
    color: rgba(255,255,255,.82);
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 14px;
  }

  .hero-proof-row span {
    min-height: 32px;
    padding: 6px 9px;
    font-size: .68rem;
    justify-content: center;
  }

  .hero-proof-row span:last-child {
    grid-column: 1 / -1;
  }

  .hero-cta-bar {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 28px);
    padding: 0 !important;
  }

  .hero-cta-bar .btn-primary,
  .hero-cta-bar .btn-outline {
    justify-content: center;
    min-height: 50px;
    padding: 12px 10px !important;
    font-size: .8rem;
    box-shadow: 0 18px 36px rgba(17,24,39,.16) !important;
  }

  .trust-rail {
    width: calc(100% - 28px);
    grid-template-columns: repeat(3, 1fr);
    margin: 10px auto 8px;
    padding: 0;
    gap: 6px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .trust-item {
    min-height: 52px;
    border-radius: 14px;
    padding: 7px 4px;
    border: 1px solid rgba(17,24,39,.07);
    box-shadow: 0 10px 24px rgba(17,24,39,.06);
  }

  .trust-item strong {
    font-size: 1.02rem;
  }

  .trust-item span {
    font-size: .58rem;
    line-height: 1.2;
  }

  .carousel-card {
    min-height: 178px !important;
  }
}

/* ================================
   18. MOBILE-FIRST IMPACT PASS
   Stronger visual rhythm for the storefront.
   ================================ */
body {
  background:
    radial-gradient(circle at 12% 16%, rgba(34,197,94,.16), transparent 28%),
    radial-gradient(circle at 92% 34%, rgba(245,197,66,.18), transparent 24%),
    linear-gradient(180deg, #f8fff8 0%, #ffffff 34%, #f4fbf5 100%) !important;
}

nav {
  box-shadow: 0 10px 34px rgba(8, 18, 12, 0.08) !important;
}

.hero-banner-shell {
  box-shadow: 0 28px 80px rgba(8,18,12,.18);
}

.hero-cta-bar .btn-primary,
.hero-cta-bar .btn-outline {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-cta-bar .btn-primary {
  border: 1px solid rgba(255,255,255,.24) !important;
}

.hero-cta-bar .btn-outline {
  border: 1px solid rgba(17,24,39,.08) !important;
}

.trust-item {
  position: relative;
  overflow: hidden;
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(34,197,94,.18), transparent 65%);
  pointer-events: none;
}

.carousel-wrap {
  margin-top: 18px;
}

.carousel-card {
  isolation: isolate;
}

.carousel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%),
    radial-gradient(circle at 88% 16%, rgba(245,197,66,.2), transparent 32%);
  pointer-events: none;
}

.cc-img,
.cc-content,
.cc-badge {
  position: relative;
  z-index: 1;
}

.cc-btn {
  font-family: "Poppins", sans-serif !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
}

.sec-head {
  position: relative;
}

.sec-head h2 {
  font-size: clamp(1.45rem, 4vw, 2.05rem) !important;
}

.filter-tabs {
  align-items: center;
}

.ftab {
  box-shadow: 0 12px 28px rgba(17,24,39,.06);
}

.prod-card {
  isolation: isolate;
}

.prod-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.7), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(34,197,94,.14), transparent 30%);
  pointer-events: none;
}

.prod-card > * {
  position: relative;
  z-index: 1;
}

.pc-name {
  letter-spacing: 0;
}

.pc-order-btn {
  font-family: "Poppins", sans-serif !important;
  font-weight: 900 !important;
}

.testi-card,
.how-step,
.cmp-wrap {
  backdrop-filter: blur(14px);
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at 0% 12%, rgba(34,197,94,.2), transparent 30%),
      radial-gradient(circle at 100% 28%, rgba(245,197,66,.2), transparent 28%),
      linear-gradient(180deg, #f8fff7 0%, #ffffff 28%, #f4fbf5 100%) !important;
  }

  nav {
    padding: 0 16px !important;
    background: rgba(255,255,255,.92) !important;
    border-bottom: 1px solid rgba(17,24,39,.06) !important;
    box-shadow: 0 12px 30px rgba(8,18,12,.08) !important;
  }

  .nav-inner {
    height: 56px !important;
  }

  .logo {
    font-size: 1.18rem !important;
  }

  .logo img {
    width: 30px !important;
    height: 30px !important;
    border-radius: 9px !important;
  }

  .burger {
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #0b120e !important;
    box-shadow: 0 12px 24px rgba(8,18,12,.18);
  }

  .burger span {
    width: 18px !important;
    height: 2px !important;
    background: #fff !important;
  }

  .hero-banner-shell {
    border-bottom: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 18px 48px rgba(8,18,12,.12);
  }

  .hero-banner-slide img {
    display: block;
  }

  .hero-cta-bar {
    margin-top: 16px;
    gap: 10px;
  }

  .hero-cta-bar .btn-primary,
  .hero-cta-bar .btn-outline {
    min-height: 54px;
    border-radius: 18px !important;
    font-size: .82rem;
  }

  .hero-cta-bar .btn-primary {
    background: linear-gradient(135deg, #15b85a 0%, #07843a 100%) !important;
    box-shadow: 0 18px 36px rgba(22,163,74,.32), inset 0 1px 0 rgba(255,255,255,.24) !important;
  }

  .hero-cta-bar .btn-outline {
    background: #fff !important;
    box-shadow: 0 16px 30px rgba(17,24,39,.1) !important;
  }

  .trust-rail {
    margin-top: 12px;
  }

  .trust-item {
    background: rgba(255,255,255,.92);
  }

  .trust-item strong {
    font-size: 1.1rem;
    color: #07110c;
  }

  .carousel-wrap {
    padding: 18px 0 0 !important;
    margin-top: 10px;
  }

  .carousel-track {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px !important;
  }

  .carousel-card {
    min-height: 188px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 22px 48px rgba(8,18,12,.22) !important;
  }

  .cc-img {
    width: 46% !important;
    background: rgba(255,255,255,.9);
  }

  .cc-img img {
    object-fit: contain !important;
    padding: 14px;
  }

  .cc-content {
    padding: 18px 14px 16px 10px !important;
  }

  .cc-name {
    font-size: 1.05rem !important;
    line-height: 1.15 !important;
  }

  .cc-price {
    font-size: 1rem !important;
  }

  .sec-head {
    padding: 34px 16px 14px !important;
  }

  .sec-head h2 {
    font-size: 1.48rem !important;
    line-height: 1.05;
  }

  .grid-toggle {
    border-radius: 16px !important;
    padding: 5px !important;
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 14px 30px rgba(17,24,39,.1);
  }

  .gtbtn {
    width: 34px;
    height: 34px;
    justify-content: center;
    border-radius: 12px !important;
  }

  .filter-wrap {
    margin-bottom: 12px !important;
    padding: 0 16px !important;
  }

  .filter-tabs {
    gap: 9px !important;
  }

  .ftab {
    min-height: 48px;
    padding: 9px 14px !important;
    border-radius: 18px !important;
    background: #fff !important;
    font-size: .7rem !important;
    box-shadow: 0 12px 26px rgba(17,24,39,.08);
  }

  .ftab.active {
    background: linear-gradient(135deg, #15b85a, #07843a) !important;
    color: #fff !important;
    box-shadow: 0 16px 32px rgba(22,163,74,.28);
  }

  .prod-grid {
    gap: 12px !important;
    padding: 0 16px 20px !important;
  }

  .prod-card {
    min-height: 112px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(17,24,39,.07) !important;
    box-shadow: 0 18px 42px rgba(17,24,39,.1) !important;
    background: rgba(255,255,255,.96) !important;
  }

  .prod-card:hover {
    transform: translateY(-2px) !important;
  }

  .pc-img {
    width: 112px !important;
    min-width: 112px !important;
    background: linear-gradient(135deg, #fff, #eef8ee) !important;
  }

  .pc-img img {
    object-fit: contain !important;
    padding: 10px;
  }

  .pc-img::after {
    display: none !important;
  }

  .pc-overlay {
    padding: 15px 14px 48px 14px !important;
    justify-content: flex-start !important;
  }

  .pc-name {
    font-family: "Poppins", sans-serif;
    font-size: .92rem !important;
    line-height: 1.15 !important;
  }

  .pc-plat {
    font-size: .62rem !important;
    margin-top: 4px;
  }

  .pc-price {
    font-size: .9rem !important;
    margin-top: 4px;
  }

  .pc-order-btn {
    position: absolute !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    min-width: 112px;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 26px rgba(22,163,74,.28) !important;
  }

  .pc-badge {
    left: 10px !important;
    top: 10px !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 20px rgba(17,24,39,.16);
  }

  .prod-grid.cols-2 {
    gap: 10px !important;
  }

  .prod-grid.cols-2 .prod-card {
    border-radius: 22px !important;
  }

  .prod-grid.cols-2 .pc-img {
    width: 100% !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .prod-grid.cols-2 .pc-overlay {
    padding: 10px 10px 48px !important;
    position: static !important;
    background: #fff !important;
  }

  .prod-grid.cols-2 .pc-order-btn {
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px) !important;
  }

  .wa-float {
    right: 18px !important;
    bottom: 18px !important;
  }

  .wa-float-btn {
    width: 58px !important;
    height: 58px !important;
    box-shadow: 0 16px 34px rgba(37,211,102,.42) !important;
  }
}
