/* ==========================================================================
   GrowNexa Media - Modern Agency Landing Page Stylesheet
   Theme: Alternating High-Contrast Dark & Light Design System
   ========================================================================== */

/* -----------------------------
   Custom Properties & Design Tokens
   ----------------------------- */
:root {
  /* Dark Section Colors */
  --bg-dark-deep: #08080a;
  --bg-dark-surface: #0e0f13;
  --bg-dark-charcoal: #13141a;
  --bg-dark-card: rgba(22, 24, 32, 0.75);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-hover: rgba(255, 255, 255, 0.18);
  --text-dark-primary: #f8fafc;
  --text-dark-secondary: #94a3b8;
  --text-dark-muted: #64748b;

  /* Light Section Colors */
  --bg-light-canvas: #f8f8f6;
  --bg-light-pure: #ffffff;
  --bg-light-card: #ffffff;
  --border-light: rgba(15, 23, 42, 0.08);
  --border-light-hover: rgba(99, 102, 241, 0.25);
  --text-light-primary: #0f172a;
  --text-light-secondary: #475569;
  --text-light-muted: #94a3b8;

  /* Brand Accents & Gradients */
  --accent-primary: #6366f1;
  --accent-indigo: #4f46e5;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --glow-gradient: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);

  /* WhatsApp Brand Palette */
  --wa-green: #25d366;
  --wa-green-hover: #1ebe5b;
  --wa-green-dark: #128c7e;
  --wa-green-glow: rgba(37, 211, 102, 0.35);
  --wa-green-soft: rgba(37, 211, 102, 0.1);
  --wa-green-border: rgba(37, 211, 102, 0.25);

  /* Geometry & Shadows */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-dark-card: 0 12px 36px rgba(0, 0, 0, 0.45);
  --shadow-glow-wa: 0 8px 25px rgba(37, 211, 102, 0.3);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Animation Timings */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -----------------------------
   Reset & Base Styles
   ----------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark-primary);
  background-color: var(--bg-dark-deep);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Accessibility: focus ring */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* -----------------------------
   Layout Containers & Utilities
   ----------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.w-full {
  width: 100%;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* Section Header Shared Patterns */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge-dark {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.section-badge-light {
  background: rgba(99, 102, 241, 0.08);
  color: #4f46e5;
  border: 1px solid rgba(99, 102, 241, 0.16);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.6;
}

/* Section Theme Classes */
.theme-dark {
  background-color: var(--bg-dark-deep);
  color: var(--text-dark-primary);
}

.theme-dark .section-subtitle {
  color: var(--text-dark-secondary);
}

.theme-dark-alt {
  background-color: var(--bg-dark-charcoal);
  color: var(--text-dark-primary);
}

.theme-dark-alt .section-subtitle {
  color: var(--text-dark-secondary);
}

.theme-light {
  background-color: var(--bg-light-canvas);
  color: var(--text-light-primary);
}

.theme-light .section-title {
  color: var(--text-light-primary);
}

.theme-light .section-subtitle {
  color: var(--text-light-secondary);
}

/* Text Gradients */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -----------------------------
   Button Component System
   ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* WhatsApp Buttons (Distinct Green Brand Accent) */
.btn-whatsapp {
  background-color: var(--wa-green);
  color: #062b14;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background-color: var(--wa-green-hover);
  color: #031c0d;
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.42);
  transform: translateY(-2px);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.btn-whatsapp svg {
  fill: currentColor;
  width: 19px;
  height: 19px;
}

.btn-whatsapp:hover svg {
  transform: scale(1.08);
}

/* WhatsApp Outline / Soft Variant for light or small cards */
.btn-whatsapp-subtle {
  background: var(--wa-green-soft);
  color: #0b7c39;
  border: 1px solid var(--wa-green-border);
  font-weight: 600;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-whatsapp-subtle:hover {
  background: var(--wa-green);
  color: #062b14;
  border-color: var(--wa-green);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.theme-dark .btn-whatsapp-subtle,
.theme-dark-alt .btn-whatsapp-subtle {
  background: rgba(37, 211, 102, 0.12);
  color: #34d399;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.theme-dark .btn-whatsapp-subtle:hover,
.theme-dark-alt .btn-whatsapp-subtle:hover {
  background: var(--wa-green);
  color: #052611;
  border-color: var(--wa-green);
}

/* Primary Dark / White Accent Button */
.btn-primary {
  background: #ffffff;
  color: #0b0c10;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.25);
}

/* Secondary Ghost / Glass Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary-light {
  background: rgba(15, 23, 42, 0.04);
  color: #1e293b;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.btn-secondary-light:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.2);
  transform: translateY(-2px);
}

/* -----------------------------
   1. Header / Sticky Navbar
   ----------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  z-index: 1002;
}

.logo-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 60%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.logo-icon-box svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.brand-text span {
  color: #818cf8;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #94a3b8;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Navbar Right CTA */
.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta-btn {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* Hamburger Button */
.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  z-index: 1002;
}

.menu-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.menu-toggle-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: #0f1015;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #cbd5e1;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  color: #ffffff;
}

.mobile-nav-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* -----------------------------
   2. Hero Section (Dark - #0B0B0D)
   ----------------------------- */
.hero-section {
  position: relative;
  padding-top: 170px;
  padding-bottom: 120px;
  background-color: var(--bg-dark-deep);
  overflow: hidden;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.22;
  filter: blur(14px) brightness(0.55);
  transform: scale(1.12);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 70%, rgba(99, 102, 241, 0.14) 0%, transparent 60%),
              linear-gradient(180deg, rgba(8, 8, 10, 0.84) 0%, rgba(8, 8, 10, 0.96) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.hero-tagline-badge .badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--wa-green);
  animation: pulse-ring 2s infinite ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-copy {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}

.trust-item-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
}

/* Hero Graphic / Featured Showcase */
.hero-visual {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.hero-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 45px rgba(212, 175, 55, 0.25);
  background: #0d0f15;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.hero-image-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.85), 0 0 60px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.8);
}

.hero-featured-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero-image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 45%, rgba(212, 175, 55, 0.12) 100%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.badge-icon-gold {
  background: linear-gradient(135deg, #d4af37, #f59e0b);
  color: #0b0c10;
}

.hero-dashboard-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 28, 38, 0.85) 0%, rgba(16, 17, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
}

.dash-title-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.dash-subtitle-text {
  font-size: 0.75rem;
  color: #94a3b8;
}

.dash-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(37, 211, 102, 0.12);
  color: #34d399;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-ring 1.8s infinite;
}

/* Analytics Graph Graphic */
.analytics-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
}

.dash-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.dash-stat-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.dash-stat-growth {
  font-size: 0.75rem;
  color: #34d399;
  font-weight: 600;
}

.dash-chart-svg {
  width: 100%;
  height: 110px;
  margin-top: 10px;
  overflow: visible;
}

/* Floating Badges on Hero Graphic */
.floating-badge {
  position: absolute;
  padding: 12px 18px;
  background: rgba(18, 20, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  animation: float-slow 4s ease-in-out infinite alternate;
}

.floating-badge-1 {
  top: -24px;
  right: -20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: -24px;
  left: -20px;
  animation-delay: 1.5s;
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #ffffff;
}

.badge-icon-meta {
  background: linear-gradient(135deg, #0081fb, #0064e0);
  color: #ffffff;
}

.floating-badge h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.floating-badge p {
  font-size: 0.75rem;
  color: #94a3b8;
}

@keyframes float-slow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* -----------------------------
   Dynamic Section Background Art (Sections 2, 4, 6, etc.)
   ----------------------------- */
.section-with-bg {
  position: relative;
  overflow: hidden;
}

.section-with-bg .section-bg-art {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.section-with-bg-light .section-bg-art {
  opacity: 0.16;
  filter: blur(4px) contrast(1.1);
  transform: scale(1.05);
}

.section-with-bg-light .section-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 65%),
              linear-gradient(180deg, rgba(248, 248, 246, 0.86) 0%, rgba(248, 248, 246, 0.94) 100%);
  pointer-events: none;
  z-index: 1;
}

.section-with-bg-dark .section-bg-art {
  opacity: 0.20;
  filter: blur(8px) brightness(0.65);
  transform: scale(1.06);
}

.section-with-bg-dark .section-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.14) 0%, transparent 65%),
              linear-gradient(180deg, rgba(8, 8, 10, 0.85) 0%, rgba(8, 8, 10, 0.96) 100%);
  pointer-events: none;
  z-index: 1;
}

.section-with-bg > .container {
  position: relative;
  z-index: 2;
}

/* -----------------------------
   3. Best Services Section (Light - #F8F8F6)
   ----------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-light-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-top {
  margin-bottom: 24px;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon-box {
  background: var(--accent-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
}

.service-card-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* -----------------------------
   4. Why GrowNexa Section (Dark Charcoal - #121316)
   ----------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.feature-block {
  background: rgba(26, 28, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition-normal);
  position: relative;
}

.feature-block:hover {
  background: rgba(28, 31, 41, 0.9);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #818cf8;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

.why-us-cta-center {
  text-align: center;
}

/* -----------------------------
   5. How It Works Section (Light - #F8F8F6)
   ----------------------------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 56px;
}

.process-step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.25);
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
}

.process-cta-center {
  text-align: center;
}

/* -----------------------------
   6. Packages Section (Dark - #0B0B0D)
   ----------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background: rgba(18, 20, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* Most Popular Featured Tier */
.package-card.featured {
  background: linear-gradient(180deg, rgba(30, 33, 48, 0.95) 0%, rgba(18, 20, 28, 0.95) 100%);
  border: 1.5px solid #6366f1;
  box-shadow: 0 16px 45px rgba(99, 102, 241, 0.25);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.35);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.3);
}

.package-header {
  margin-bottom: 24px;
}

.package-tier-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.package-for {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  min-height: 44px;
}

.package-price-wrap {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.package-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #818cf8;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.package-price-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
}

.package-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
  flex-grow: 1;
}

.package-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.feature-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card.featured .feature-check-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #34d399;
}

.feature-check-icon svg {
  width: 12px;
  height: 12px;
}

/* -----------------------------
   7. Social Proof Section (Light - #F8F8F6)
   ----------------------------- */
.proof-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-quote-icon {
  width: 32px;
  height: 32px;
  color: #c7d2fe;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: normal;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light-primary);
}

.client-meta {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.proof-cta-center {
  text-align: center;
}

/* -----------------------------
   8. FAQ Section (Dark Charcoal - #121316)
   ----------------------------- */
.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(22, 24, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  background: rgba(28, 30, 42, 0.9);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.faq-question-btn:hover {
  color: #a5b4fc;
}

.faq-icon-arrow {
  width: 22px;
  height: 22px;
  color: #818cf8;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-inner {
  padding: 0 26px 24px 26px;
  font-size: 0.96rem;
  color: var(--text-dark-secondary);
  line-height: 1.65;
}

.faq-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.faq-cta-text {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 16px;
  font-weight: 500;
}

/* -----------------------------
   9. Final CTA (High-Contrast Section)
   ----------------------------- */
.final-cta-section {
  background-color: var(--bg-light-canvas);
  padding: 100px 0;
}

.final-cta-card {
  position: relative;
  background: linear-gradient(145deg, #0d0f15 0%, #151722 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
}

.final-cta-copy {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 36px;
}

.final-cta-btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* -----------------------------
   10. Footer (Dark - #0B0B0D)
   ----------------------------- */
.footer {
  background-color: #060709;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 36px 0;
  color: #94a3b8;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-col p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-link-item a:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--wa-green);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-btn {
  color: #94a3b8;
  font-size: 0.85rem;
}

.legal-btn:hover {
  color: #ffffff;
}

/* -----------------------------
   11. Floating WhatsApp Button
   ----------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--wa-green);
  color: #03230f;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
  color: #021609;
}

.floating-pulse-beacon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-full);
  border: 2px solid var(--wa-green);
  animation: pulse-out 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

@keyframes pulse-out {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* -----------------------------
   12. Interactive Modal System (Consultation & Legal)
   ----------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background: #111319;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-normal);
  color: #ffffff;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-window {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Consultation Form Controls */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #818cf8;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.form-select option {
  background-color: #1a1c24;
  color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 10px;
}

/* -----------------------------
   Scroll Animations & Reveal
   ----------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
   Responsive Breakpoints
   ----------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-6px);
  }

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

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta-wrap {
    display: none;
  }

  .menu-toggle-btn {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .final-cta-card {
    padding: 48px 24px;
  }

  .final-cta-btn-row {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-btn-row .btn {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
   Mobile Exclusive Top Banner (Hidden on Desktop, Visible ONLY on Mobile <= 768px)
   --------------------------------------------------------------------------- */
.mobile-exclusive-banner-section {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-exclusive-banner-section {
    display: block !important;
    width: 100%;
    margin-bottom: 28px;
    position: relative;
    z-index: 5;
  }

  .hero-section {
    padding-top: 95px !important;
    padding-bottom: 50px !important;
  }

  .mobile-exclusive-banner-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.65);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.25);
    background: #0d0f15;
    cursor: pointer;
    transition: transform var(--transition-normal);
  }

  .mobile-exclusive-banner-card:active {
    transform: scale(0.985);
  }

  .mobile-top-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Interactive overlay WhatsApp button positioned directly on top of the banner */
  .mobile-banner-wa-btn {
    position: absolute;
    top: 70.8%;
    left: 7.5%;
    width: 85%;
    height: 12.4%;
    border-radius: 9999px;
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.94) 0%, rgba(18, 140, 126, 0.98) 100%);
    border: 2.5px solid #ffffff;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7), 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
    text-decoration: none;
    z-index: 10;
    animation: wa-btn-pulse 2.2s infinite ease-in-out;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .mobile-banner-wa-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.95);
  }

  .mobile-banner-wa-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    flex-shrink: 0;
  }

  .mobile-banner-wa-arrow {
    width: 18px !important;
    height: 18px !important;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none !important;
    margin-left: 2px;
  }

  @keyframes wa-btn-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    70% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 15px rgba(0, 0, 0, 0.5);
    }
  }

  /* Hide the duplicate desktop card on mobile */
  .hero-visual {
    display: none !important;
  }
}

