/* ───────────────────────────────────────────────────────────────
   SALESFLOW SUPPORT — Premium Background Motion (Unique Design)
   Features:
   • Layered aurora ribbons (conic & radial gradients)
   • Parallax star dust (multi-layer drift + twinkle)
   • Neon perspective grid floor (subtle)
   • Floating glass orbs with soft glow trails
   • Prefers-reduced-motion safe
   Notes:
   - No HTML changes needed. Uses existing elements:
     .background-container, .gradient-bg, .floating-shapes, .grid-pattern
   - Works in dark/light; tuned for dark.
   ─────────────────────────────────────────────────────────────── */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;

  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --border-color: #374151;
  --success-color: #10b981;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  --border-radius: 10px;
  --transition: all 0.3s ease;

  /* FX controls */
  --fx-opacity: 1;
  --fx-grid-opacity: 0.18;
  --fx-stars-opacity: 0.35;
  --fx-ribbon-opacity: 0.65;
  --fx-glow: 40px;

  /* Star drift speeds */
  --stars-a-speed: 120s;
  --stars-b-speed: 180s;
  --stars-c-speed: 240s;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 13px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ───────────────────────────────────────────────────────────────
   BACKGROUND FX STACK (No HTML changes required)
   Uses existing structure:
   <div class="background-container">
     <div class="gradient-bg"></div>
     <div class="floating-shapes"> … </div>
     <div class="grid-pattern"></div>
   </div>
   ─────────────────────────────────────────────────────────────── */

.background-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--fx-opacity);
}

/* Base deep-space gradient & animated color bloom */
.gradient-bg {
  position: absolute;
  inset: -10%;
  background: radial-gradient(
      1200px 900px at 10% 15%,
      rgba(59, 130, 246, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 900px at 85% 30%,
      rgba(139, 92, 246, 0.12),
      transparent 60%
    ),
    radial-gradient(
      700px 600px at 50% 85%,
      rgba(6, 182, 212, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg-primary) 0%, #0b1327 40%, #0b142b 100%);
  filter: saturate(110%);
  animation: bgShift 26s ease-in-out infinite alternate;
  will-change: background-position, transform;
}

/* Aurora ribbons (unique conic-gradient ribbons, slow spin + drift) */
.gradient-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(
      from 210deg at 30% 40%,
      rgba(59, 130, 246, 0) 0deg,
      rgba(59, 130, 246, 0.45) 20deg,
      rgba(139, 92, 246, 0.35) 80deg,
      rgba(6, 182, 212, 0.3) 140deg,
      rgba(59, 130, 246, 0) 200deg
    ),
    conic-gradient(
      from -45deg at 75% 60%,
      rgba(6, 182, 212, 0) 0deg,
      rgba(6, 182, 212, 0.35) 40deg,
      rgba(139, 92, 246, 0.3) 120deg,
      rgba(59, 130, 246, 0.25) 170deg,
      rgba(6, 182, 212, 0) 220deg
    );
  mix-blend-mode: screen;
  filter: blur(52px) saturate(120%);
  opacity: var(--fx-ribbon-opacity);
  transform-origin: 50% 50%;
  animation: ribbonSpin 80s linear infinite,
    ribbonDrift 28s ease-in-out infinite alternate;
}

/* Star dust layers (parallax drift + soft twinkle) */
.gradient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1px 1px at 12% 18%,
      rgba(255, 255, 255, 0.65),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 78% 22%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 33% 66%,
      rgba(255, 255, 255, 0.5),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 62% 81%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 88% 72%,
      rgba(255, 255, 255, 0.45),
      transparent 60%
    );
  background-repeat: no-repeat;
  opacity: var(--fx-stars-opacity);
  animation: twinkle 4s ease-in-out infinite;
  mask-image: radial-gradient(
    1200px 900px at 50% 50%,
    #000 55%,
    transparent 100%
  );
}

/* Additional randomized star drift layers using multiple backgrounds */
.background-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1.2px 1.2px at 15% 25%,
      rgba(255, 255, 255, 0.7),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 45% 10%,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      1.1px 1.1px at 70% 35%,
      rgba(255, 255, 255, 0.65),
      transparent 60%
    ),
    radial-gradient(
      1.2px 1.2px at 20% 80%,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 85% 75%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      1.2px 1.2px at 55% 65%,
      rgba(255, 255, 255, 0.65),
      transparent 60%
    );
  background-repeat: no-repeat;
  opacity: calc(var(--fx-stars-opacity) * 0.85);
  animation: starDriftA var(--stars-a-speed) linear infinite;
}

.background-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1.1px 1.1px at 8% 60%,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      1.2px 1.2px at 40% 48%,
      rgba(255, 255, 255, 0.65),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 66% 18%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      1.1px 1.1px at 90% 42%,
      rgba(255, 255, 255, 0.5),
      transparent 60%
    ),
    radial-gradient(
      1.2px 1.2px at 74% 86%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    );
  background-repeat: no-repeat;
  opacity: calc(var(--fx-stars-opacity) * 0.65);
  animation: starDriftB var(--stars-b-speed) linear infinite;
}

/* Subtle neon perspective grid “floor” near bottom */
.grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-pattern::before {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 70vh;
  bottom: -22vh;
  background-image: repeating-linear-gradient(
      to right,
      rgba(99, 102, 241, 0.08) 0 1px,
      transparent 1px 80px
    ),
    repeating-linear-gradient(
      to top,
      rgba(16, 185, 129, 0.08) 0 1px,
      transparent 1px 80px
    );
  transform: perspective(900px) rotateX(62deg);
  transform-origin: 50% 100%;
  filter: drop-shadow(0 0 14px rgba(99, 102, 241, 0.12));
  opacity: var(--fx-grid-opacity);
  animation: gridScroll 28s linear infinite;
  mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 25%,
    #000 65%,
    #000 100%
  );
}

/* Floating glass orbs with soft trails (reusing .floating-shapes & .shape-*) */
.floating-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
      120% 120% at 30% 30%,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      80% 80% at 70% 70%,
      rgba(59, 130, 246, 0.25),
      rgba(139, 92, 246, 0.22) 50%,
      rgba(6, 182, 212, 0.2)
    );
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15),
    inset 0 0 18px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: saturate(115%);
  will-change: transform, opacity, filter;
  opacity: 0.8;
  /* glow trail */
}
.shape::after {
  content: "";
  position: absolute;
  inset: -25%;
  border-radius: inherit;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(99, 102, 241, 0.35),
    transparent 60%
  );
  filter: blur(var(--fx-glow));
  opacity: 0.6;
}

/* Individual sizes/paths */
.shape-1 {
  width: 240px;
  height: 240px;
  top: 18%;
  left: 10%;
  animation: orbFloatA 22s ease-in-out infinite;
}
.shape-2 {
  width: 180px;
  height: 180px;
  top: 58%;
  right: 12%;
  animation: orbFloatB 26s ease-in-out infinite;
}
.shape-3 {
  width: 140px;
  height: 140px;
  top: 30%;
  right: 32%;
  animation: orbFloatC 20s ease-in-out infinite;
}
.shape-4 {
  width: 95px;
  height: 95px;
  bottom: 20%;
  left: 22%;
  animation: orbFloatD 18s ease-in-out infinite;
}

/* Optional: slight tilt on hover scroll */
@keyframes bgShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -1.5%, 0) scale(1.02);
  }
}
@keyframes ribbonSpin {
  0% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1.05);
  }
}
@keyframes ribbonDrift {
  0% {
    filter: blur(52px) saturate(120%);
    transform: translate3d(-1%, 1%, 0) rotate(0deg);
  }
  100% {
    filter: blur(58px) saturate(130%);
    transform: translate3d(1%, -1%, 0) rotate(0deg);
  }
}
@keyframes starDriftA {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-3vw, -2vh, 0);
  }
}
@keyframes starDriftB {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(3vw, -1vh, 0);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
    filter: brightness(1);
  }
  50% {
    opacity: 0.55;
    filter: brightness(1.25);
  }
}
@keyframes gridScroll {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 600px 380px, 300px 520px;
  }
}

/* Orb paths — bezier-ish floats (unique motions per orb) */
@keyframes orbFloatA {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  20% {
    transform: translate3d(18px, -14px, 0) rotate(6deg);
  }
  40% {
    transform: translate3d(6px, -32px, 0) rotate(0deg);
  }
  60% {
    transform: translate3d(-22px, -18px, 0) rotate(-6deg);
  }
  80% {
    transform: translate3d(-10px, 8px, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@keyframes orbFloatB {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate3d(-16px, -12px, 0) rotate(4deg) scale(1.02);
  }
  50% {
    transform: translate3d(-8px, 10px, 0) rotate(0deg) scale(0.98);
  }
  75% {
    transform: translate3d(12px, 6px, 0) rotate(-3deg) scale(1.01);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}
@keyframes orbFloatC {
  0% {
    transform: translate3d(0, 0, 0);
  }
  30% {
    transform: translate3d(-14px, 12px, 0);
  }
  60% {
    transform: translate3d(10px, 6px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes orbFloatD {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(10px, -8px, 0);
  }
  50% {
    transform: translate3d(0px, -14px, 0);
  }
  75% {
    transform: translate3d(-10px, -4px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* ───────────────────────────────────────────────────────────────
   NAVIGATION
   ─────────────────────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-lg);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
}
.logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  box-shadow: var(--shadow-md);
}
.brand-text {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 7px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}
.nav-link:hover::before {
  left: 100%;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  gap: 0.2rem;
}
.mobile-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ───────────────────────────────────────────────────────────────
   MAIN CONTENT
   ─────────────────────────────────────────────────────────────── */

.main-content {
  padding-top: 70px;
  min-height: 100vh;
}

/* Hero */
.hero-section {
  padding: 2rem 0;
  text-align: center;
}
.hero-content {
  max-width: 550px;
  margin: 0 auto;
}
.hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}
.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  animation: fadeInUp 1s ease-out 0.2s both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Support Section */
.support-section {
  padding: 2rem 0;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto;
}
.support-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.support-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.support-card:hover::before {
  transform: scaleX(1);
}
.support-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59, 130, 246, 0.3);
}
.card-header {
  margin-bottom: 1rem;
}
.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.support-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}
.card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.card-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.85rem;
}
.contact-info {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.7rem;
  border-radius: 7px;
  margin-bottom: 1rem;
}
.info-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.2rem;
}
.info-value {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
}
.card-footer {
  margin-top: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}

/* Contact Section */
.contact-section {
  padding: 2rem 0;
  background: rgba(30, 41, 59, 0.2);
}
.contact-wrapper {
  max-width: 950px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-item {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 1rem;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out 0.6s both;
}
.contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-lg);
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: white;
  box-shadow: var(--shadow-md);
}
.contact-details h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.contact-details p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.8rem;
}
.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}
.contact-details a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-left p {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.footer-right {
  display: flex;
  gap: 1rem;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.7rem;
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.8rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.8rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .support-card {
    padding: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-section {
    padding: 1rem 0;
  }
  .support-section {
    padding: 1rem 0;
  }
  .contact-section {
    padding: 1rem 0;
  }
  .support-card {
    padding: 0.8rem;
  }
  .contact-item {
    padding: 0.8rem;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-subtitle {
    font-size: 0.75rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
}

/* Additional Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.card-icon:hover {
  animation: pulse 1s infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--secondary-color)
  );
}

/* Reduced Motion — be kind to GPUs & users */
@media (prefers-reduced-motion: reduce) {
  :root {
    --fx-opacity: 0.65;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .grid-pattern::before,
  .gradient-bg,
  .gradient-bg::before,
  .gradient-bg::after,
  .background-container::before,
  .background-container::after {
    animation: none !important;
  }
}
