/* ==========================================================================
   ASTHAPAY - FLUX PRO TOTAL PURE WHITE GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

:root {
  --flux-font-sans: 'Hind Siliguri', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --flux-font-display: 'Outfit', 'Hind Siliguri', var(--flux-font-sans);
  --flux-font-mono: 'JetBrains Mono', monospace;

  /* Primary Brand Accents */
  --flux-primary: #2563eb;
  --flux-primary-hover: #1d4ed8;
  --flux-primary-glow: rgba(37, 99, 235, 0.25);
  --flux-cyan: #0891b2;
  --flux-cyan-glow: rgba(8, 145, 178, 0.25);
  --flux-violet: #7c3aed;
  --flux-emerald: #059669;
  --flux-amber: #d97706;

  /* Total Pure White Glassmorphism Tokens */
  --flux-bg-canvas: #ffffff;
  --flux-bg-glass: rgba(255, 255, 255, 0.92);
  --flux-bg-glass-card: #ffffff;
  --flux-bg-glass-hover: #ffffff;
  --flux-border-glass: #e2e8f0;
  --flux-border-glass-hover: rgba(37, 99, 235, 0.45);

  /* Deep High-Contrast Typography */
  --flux-text-main: #0f172a;
  --flux-text-secondary: #334155;
  --flux-text-muted: #64748b;
  --flux-text-dim: #94a3b8;

  /* Geometry & Elevation */
  --flux-radius-sm: 8px;
  --flux-radius-md: 14px;
  --flux-radius-lg: 20px;
  --flux-radius-xl: 26px;
  --flux-radius-full: 9999px;
  --flux-glass-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 20px 40px -15px rgba(37, 99, 235, 0.05);
  --flux-glass-shadow-hover: 0 20px 45px -10px rgba(37, 99, 235, 0.14), 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Ensure data-aos animated elements are always visible without blank white spaces */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Base resets & typography */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--flux-font-sans);
  background-color: #ffffff;
  color: var(--flux-text-main);
  margin: 0;
  padding: 0;
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ethereal Glowing White Mesh */
.flux-mesh-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(37, 99, 235, 0.06), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(8, 145, 178, 0.05), transparent 40%),
    radial-gradient(circle at 50% 60%, rgba(124, 58, 237, 0.04), transparent 50%),
    #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--flux-font-display);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-top: 0;
  text-wrap: balance;
}

a {
  color: var(--flux-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--flux-primary-hover);
}

/* Fluid Section System */
.flux-section {
  padding: clamp(50px, 8vw, 95px) 0;
  position: relative;
}

.flux-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(30px, 5vw, 50px) auto;
}

.flux-section-title {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
  color: #0f172a;
}

.flux-section-subtitle {
  font-size: clamp(15px, 2vw, 18.5px);
  color: var(--flux-text-muted);
  line-height: 1.7;
  margin: 0 auto;
}

/* ==========================================================================
   TOTAL PURE WHITE GLASSMORPHISM COMPONENTS
   ========================================================================== */

/* Floating Pure White Glass Header */
.flux-glass-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 16px;
}

.flux-glass-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid #e2e8f0;
  border-radius: var(--flux-radius-full);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flux-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.flux-nav-brand img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.flux-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flux-nav-link-item {
  color: var(--flux-text-secondary);
  font-size: 15.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.flux-nav-link-item:hover {
  color: var(--flux-primary);
}

/* Glass Buttons */
.flux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--flux-radius-full);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.flux-nav-cta {
  padding: 8px 18px;
  font-size: 14px;
  height: 38px;
}

.flux-btn:active {
  transform: scale(0.97);
}

.flux-btn-glow {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.3);
}

.flux-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
  color: #ffffff !important;
}

.flux-btn-glass {
  background: #ffffff;
  color: var(--flux-text-main) !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.flux-btn-glass:hover {
  background: #ffffff;
  border-color: var(--flux-primary);
  color: var(--flux-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.15);
}

.flux-btn-lg {
  padding: 16px 34px;
  font-size: 18px;
  border-radius: var(--flux-radius-full);
}

/* Pure White Glass Cards */
.flux-glass-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #e2e8f0;
  border-radius: var(--flux-radius-xl);
  padding: clamp(20px, 3.5vw, 34px);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.flux-glass-card:hover {
  border-color: var(--flux-border-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.12), 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Hero Section */
.flux-hero-section {
  padding-top: clamp(110px, 15vw, 175px);
  padding-bottom: clamp(50px, 8vw, 100px);
  position: relative;
  background: #ffffff;
}

.flux-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--flux-radius-full);
  color: var(--flux-primary);
  font-size: clamp(12.5px, 2.2vw, 14.5px);
  font-weight: 700;
  margin-bottom: 20px;
}

.flux-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: fluxPulse 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes fluxPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.flux-hero-title {
  font-size: clamp(26px, 5.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.26;
  color: #0f172a;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.flux-gradient-text {
  background: linear-gradient(135deg, #0f172a 15%, #2563eb 65%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flux-hero-subtitle {
  font-size: clamp(15.5px, 2vw, 20px);
  color: var(--flux-text-secondary);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.flux-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.flux-hero-btn {
  padding: 14px 28px;
  font-size: 16.5px;
}

/* Hero Metrics / Trust Grid */
.flux-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}

.flux-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--flux-text-muted);
}

.flux-trust-item strong {
  color: var(--flux-text-main);
  font-weight: 700;
}

/* Checkout Preview Card (Pure White) */
.flux-checkout-preview {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--flux-radius-xl);
  padding: clamp(16px, 3.5vw, 28px);
  box-shadow: 0 20px 50px -15px rgba(37, 99, 235, 0.12), 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
}

.flux-gateway-grid-demo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.flux-gateway-badge {
  padding: 12px 6px;
  border-radius: var(--flux-radius-md);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.flux-gateway-badge.active,
.flux-gateway-badge:hover {
  background: #eff6ff;
  border-color: var(--flux-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.12);
}

/* Gateway Support Strip */
.flux-gateway-strip {
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.flux-gateway-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.flux-gateway-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--flux-radius-full);
  font-weight: 600;
  font-size: 14px;
  color: var(--flux-text-secondary);
  white-space: nowrap;
}

/* Step Number Box */
.flux-step-number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  transition: all 0.3s ease;
}

.flux-step-1 {
  background: #eff6ff;
  color: var(--flux-primary);
  border: 2px solid var(--flux-primary);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
}

.flux-step-2 {
  background: #ecfeff;
  color: var(--flux-cyan);
  border: 2px solid var(--flux-cyan);
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.15);
}

.flux-step-3 {
  background: #ecfdf5;
  color: var(--flux-emerald);
  border: 2px solid var(--flux-emerald);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
}

/* Feature Icon Wrap */
.flux-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--flux-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

/* Code Snippet Card (Total Pure White with Light Syntax Highlighting) */
.flux-code-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--flux-radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 20px 40px -15px rgba(37, 99, 235, 0.08);
}

.flux-code-header {
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.flux-code-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.flux-code-tab-btn {
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--flux-radius-sm);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--flux-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.flux-code-tab-btn.active,
.flux-code-tab-btn:hover {
  background: #eff6ff;
  border-color: var(--flux-primary);
  color: var(--flux-primary);
}

.flux-code-body {
  padding: 22px;
  margin: 0;
  background: #ffffff;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 13.5px;
  line-height: 1.7;
  color: #1e293b;
  overflow-x: auto;
  max-height: 380px;
}

/* Pricing Grid & Pure White Cards */
.flux-pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--flux-radius-xl);
  padding: clamp(24px, 4vw, 36px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.flux-pricing-card.popular {
  background: #ffffff;
  border: 2px solid var(--flux-primary);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px -10px rgba(37, 99, 235, 0.18);
}

.flux-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: var(--flux-radius-full);
}

.flux-price-number {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.flux-price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--flux-primary);
  margin-right: 2px;
}

.flux-pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.flux-pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--flux-text-secondary);
}

.flux-pricing-feature-item i {
  color: var(--flux-emerald);
  font-size: 16px;
  flex-shrink: 0;
}

/* Glass Drawer (Mobile) */
.flux-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #ffffff;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-right: 1px solid #e2e8f0;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.08);
  z-index: 1050;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.flux-mobile-drawer.open {
  transform: translateX(0);
}

.flux-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.flux-drawer-close {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--flux-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.flux-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flux-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--flux-radius-md);
  color: var(--flux-text-main);
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.flux-drawer-link:hover {
  background: #eff6ff;
  color: var(--flux-primary);
}

/* ==========================================================================
   AESTHETIC FLOATING MOBILE DOCK (PREMIUM GLASS ISLAND)
   ========================================================================== */
.flux-mobile-dock {
  position: fixed;
  bottom: clamp(16px, 4vw, 24px);
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}

.flux-dock-glass-shell {
  pointer-events: auto;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 20px 40px -10px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(226, 232, 240, 0.85),
    0 8px 16px -4px rgba(37, 99, 235, 0.08);
  border-radius: 9999px;
  padding: 6px 8px 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flux-dock-nav-items {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: space-around;
}

.flux-dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 14px;
  color: #64748b;
  text-decoration: none !important;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  min-width: 48px;
}

.flux-dock-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 22px;
  margin-bottom: 2px;
}

.flux-dock-icon-wrapper i {
  font-size: 17px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.flux-dock-active-dot {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.8);
  transition: transform 0.25s ease;
}

.flux-dock-item.active {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}

.flux-dock-item.active .flux-dock-icon-wrapper i {
  transform: scale(1.1);
  color: #2563eb;
}

.flux-dock-item.active .flux-dock-active-dot {
  transform: translateX(-50%) scale(1);
}

.flux-dock-item:active {
  transform: scale(0.92);
}

/* Radiant Glowing Catchy CTA Button */
.flux-dock-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #06b6d4 100%);
  background-size: 200% auto;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 6px 18px -2px rgba(37, 99, 235, 0.42), 0 2px 6px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fluxCtaGradient 4s ease infinite;
}

@keyframes fluxCtaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.flux-dock-cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  animation: fluxShimmerSlide 2.8s infinite;
}

@keyframes fluxShimmerSlide {
  100% { transform: translateX(100%); }
}

.flux-dock-cta-arrow {
  font-size: 19px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.flux-dock-cta:hover .flux-dock-cta-arrow,
.flux-dock-cta:active .flux-dock-cta-arrow {
  transform: translateX(3px);
}

.flux-dock-cta:active {
  transform: scale(0.95);
}

/* Mobile Toggle Hamburger Button */
.flux-mobile-toggle {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--flux-text-main);
  width: 38px;
  height: 38px;
  border-radius: var(--flux-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.flux-mobile-toggle:hover {
  background: #eff6ff;
  color: var(--flux-primary);
}

/* Pure White Glassmorphic Footer */
.flux-glass-footer {
  background: #ffffff;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid #e2e8f0;
  padding: clamp(50px, 8vw, 80px) 0 30px 0;
  color: var(--flux-text-secondary);
}

.flux-footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 14px;
  color: var(--flux-text-muted);
}
