/* ================================================================
   MAINTENANCE PAGE — EasyCart SME
   Design: Premium SaaS / Glassmorphism / Stripe-inspired
   File: css/maintenance.css  (standalone, no existing styles imported)
================================================================ */

/* ---- TOKENS -------------------------------------------------- */
:root {
  --primary:      #0F172A;
  --primary-mid:  #1E293B;
  --accent:       #F4C430;
  --accent-rgb:   244, 196, 48;
  --accent-glow:  rgba(244, 196, 48, 0.25);
  --accent-light: rgba(244, 196, 48, 0.10);

  --bg:           #020617;
  --bg-2:         #060f21;
  --surface:      rgba(15, 23, 42, 0.85);
  --surface-2:    rgba(30, 41, 59, 0.6);

  --text:         #F8FAFC;
  --text-muted:   #94A3B8;
  --text-dim:     #475569;

  --glass:        rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-hover:  rgba(255, 255, 255, 0.08);

  --green:        #25D366;
  --green-glow:   rgba(37, 211, 102, 0.30);

  --font:         'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.6);
}

/* ---- RESET --------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ---- UTILITY ------------------------------------------------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border) 30%, var(--glass-border) 70%, transparent);
}

/* ---- SCROLL ANIMATIONS --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  background: rgba(2, 6, 23, 0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  animation: slideDown 0.8s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}

.brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), #f0a500);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  box-shadow: 0 0 20px var(--accent-glow);
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.brand-name span { color: var(--accent); }

.brand-badge {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.6;
  font-family: var(--font);
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6ee7b7;
}

.nav-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.8s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(244,196,48,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(99,102,241,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(16,185,129,0.04) 0%, transparent 70%),
    linear-gradient(160deg, #020617 0%, #060f21 50%, #0a0a2e 100%);
  animation: gradientShift 12s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(15deg) brightness(1.05); }
  100% { filter: hue-rotate(-10deg) brightness(0.95); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,196,48,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,196,48,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
  animation: blobFloat 18s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F4C430, transparent 70%);
  top: -200px; left: -150px;
  animation-duration: 20s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  bottom: -150px; right: -100px;
  animation-duration: 16s;
  animation-delay: -8s;
}
.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #10b981, transparent 70%);
  top: 50%; right: 20%;
  animation-duration: 22s;
  animation-delay: -4s;
}

@keyframes blobFloat {
  0%,  100% { transform: translate(0, 0) scale(1); }
  33%        { transform: translate(40px, -60px) scale(1.08); }
  66%        { transform: translate(-30px, 40px) scale(0.95); }
}

/* Particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Floating glass cards */
.hero-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.float-card .fc-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.82rem;
  margin-bottom: 3px;
}

.float-card .fc-value { color: var(--accent); font-weight: 700; }

.float-card-1 { top: 22%; left: 4%;  animation: float1 7s ease-in-out infinite; }
.float-card-2 { top: 30%; right: 4%; animation: float2 8s ease-in-out infinite; }
.float-card-3 { bottom: 25%; left: 6%;  animation: float3 9s ease-in-out infinite; }
.float-card-4 { bottom: 20%; right: 5%; animation: float1 6s ease-in-out infinite; animation-delay: -3s; }

@keyframes float1 {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%      { transform: translateY(-18px) rotate(1deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0px) rotate(1deg); }
  50%      { transform: translateY(-22px) rotate(-1deg); }
}
@keyframes float3 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  animation: heroEntrance 1.2s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(50px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  animation: heroEntrance 1.2s 0.05s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.pulse-ring {
  position: relative;
  width: 10px; height: 10px;
  display: inline-block;
  flex-shrink: 0;
}

.pulse-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  animation: heroEntrance 1.2s 0.15s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.hero-title .accent-word {
  background: linear-gradient(135deg, var(--accent) 20%, #f0a500 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title .accent-word::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 48px;
  animation: heroEntrance 1.2s 0.30s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

/* CTA Buttons (disabled) */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroEntrance 1.2s 0.45s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.btn-disabled {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: not-allowed;
  transition: all 0.3s ease;
  overflow: visible;
}

.btn-disabled::after {
  content: 'Available once services resume.';
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--primary-mid);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 20;
}

.btn-disabled:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.btn-disabled-primary {
  background: var(--accent);
  color: var(--primary);
  opacity: 0.45;
  box-shadow: 0 0 20px rgba(244,196,48,0.15);
}

.btn-disabled-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  opacity: 0.6;
}

.btn-disabled-ghost {
  background: var(--glass);
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  opacity: 0.6;
  backdrop-filter: blur(8px);
}

.btn-disabled:hover { transform: translateY(-2px); }

/* ================================================================
   MARKETING SHOWCASE
================================================================ */
.marketing-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title span { color: var(--accent); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Marketing grid */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.marketing-grid .mcard:nth-child(1) { grid-column: 1 / 3; }
.marketing-grid .mcard:nth-child(4) { grid-column: 2 / 4; }

.mcard {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease, border-color 0.3s ease;
  animation: floatCardAnim 6s ease-in-out infinite;
  cursor: default;
  min-height: 220px;
}

.mcard:nth-child(2) { animation-delay: -1s;   animation-duration: 7s; }
.mcard:nth-child(3) { animation-delay: -2s;   animation-duration: 8s; }
.mcard:nth-child(4) { animation-delay: -3s;   animation-duration: 6.5s; }
.mcard:nth-child(5) { animation-delay: -1.5s; animation-duration: 7.5s; }

@keyframes floatCardAnim {
  0%,  100% { transform: translateY(0); }
  50%        { transform: translateY(-7px); }
}

.mcard:hover {
  transform: translateY(-12px) scale(1.015) !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px var(--accent-glow);
  border-color: rgba(244,196,48,0.28);
  animation-play-state: paused;
}

/* Shimmer */
.mcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.035) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  z-index: 1;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Glass shine */
.mcard::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.mcard-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mcard-placeholder-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
}

.mcard-placeholder-icon {
  font-size: 5rem;
  opacity: 0.06;
  color: var(--accent);
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  filter: blur(1px);
}

.mcard-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(2,6,23,0.88));
  z-index: 3;
}

.mcard-inner {
  position: relative;
  z-index: 5;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 220px;
}

.mcard-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}

.mcard-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.mcard-coming {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Gradient accents */
.mcard-1 .mcard-placeholder-bg { background: linear-gradient(135deg, #F4C430, #f0a500); }
.mcard-2 .mcard-placeholder-bg { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.mcard-3 .mcard-placeholder-bg { background: linear-gradient(135deg, #10b981, #059669); }
.mcard-4 .mcard-placeholder-bg { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.mcard-5 .mcard-placeholder-bg { background: linear-gradient(135deg, #3b82f6, #06b6d4); }

/* ================================================================
   FEATURES
================================================================ */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(244,196,48,0.02) 50%, transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.fcard {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}

.fcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,196,48,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fcard:hover {
  transform: translateY(-8px);
  border-color: rgba(244,196,48,0.18);
  background: var(--glass-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(244,196,48,0.07);
}

.fcard:hover::before { opacity: 1; }

.fcard-icon {
  width: 50px; height: 50px;
  background: var(--accent-light);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.fcard:hover .fcard-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: scale(1.1) rotate(5deg);
}

.fcard-icon i { color: var(--accent); transition: color 0.3s; }
.fcard:hover .fcard-icon i { color: var(--primary); }

.fcard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.fcard-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================================
   STATUS + ROADMAP
================================================================ */
.status-section { padding: 100px 0; }

.status-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.status-widget {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.status-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #f0a500, var(--accent));
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
}

.sw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.sw-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.sw-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.sw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
  gap: 12px;
}

.sw-row:last-child { border-bottom: none; padding-bottom: 0; }

.sw-key {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sw-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

.sw-val.offline {
  color: #f87171;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sw-val.offline::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 8px #f87171;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

.sw-val.soon { color: var(--accent); }

/* Roadmap widget */
.roadmap-widget {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.rw-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.roadmap-list::before {
  content: '';
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(244,196,48,0.08) 100%);
  border-radius: 2px;
}

.rm-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.rm-item.visible { opacity: 1; transform: translateX(0); }

.rm-dot {
  width: 40px; height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--accent), #f0a500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 0 20px var(--accent-glow), 0 0 0 4px var(--accent-light);
  position: relative;
  z-index: 1;
}

.rm-content { flex: 1; padding-top: 8px; }

.rm-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.rm-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-name span { color: var(--accent); }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-thank {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 14px 18px;
  background: var(--accent-light);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  max-width: 320px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px; height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-light);
  border-color: var(--accent-glow);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

/* Status indicators in footer */
.status-indicator {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

.offline-ind {
  background: #f87171;
  box-shadow: 0 0 6px #f87171;
  animation: blink 1.5s infinite;
}

.online-ind {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 1.8s infinite;
}

.pending-ind {
  background: #fbbf24;
  box-shadow: 0 0 6px #fbbf24;
  animation: blink 2s infinite;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.zambia-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
================================================================ */
.wa-container {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-tooltip {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.55;
  box-shadow: var(--shadow);
  position: relative;
  animation: tooltipIn 0.5s 1.2s cubic-bezier(0.34,1.2,0.64,1) both;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wa-tooltip.hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.wa-tooltip strong { color: var(--text); font-weight: 600; }

.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 22px;
  width: 12px; height: 12px;
  background: rgba(15,23,42,0.95);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  transform: rotate(45deg);
}

@keyframes tooltipIn {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* WhatsApp button */
.wa-btn {
  position: relative;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4);
  animation:
    waEntrance 0.8s 1s cubic-bezier(0.34,1.2,0.64,1) both,
    waPulse 3.5s 2s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.3s ease;
  text-decoration: none;
}

.wa-btn:hover {
  transform: translateY(-5px) scale(1.09);
  box-shadow: 0 16px 48px rgba(37,211,102,0.50);
}

@keyframes waEntrance {
  from { opacity: 0; transform: scale(0.3) rotate(-45deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 0 0 18px rgba(37,211,102,0);
  }
}

.wa-glow-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: glowRing 2.5s ease-in-out infinite;
}

@keyframes glowRing {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.15); opacity: 0.15; }
}

.ripple-effect {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  opacity: 1;
}

.wa-btn.late-jiggle {
  animation: lateJiggle 0.7s cubic-bezier(0.34,1.2,0.64,1) both;
}

@keyframes lateJiggle {
  0%   { transform: rotate(0deg) scale(1); }
  20%  { transform: rotate(-14deg) scale(1.12); }
  40%  { transform: rotate(11deg) scale(1.10); }
  60%  { transform: rotate(-6deg) scale(1.05); }
  80%  { transform: rotate(4deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .float-card-1, .float-card-4 { display: none; }
}

@media (max-width: 900px) {
  .float-card { display: none; }
  .marketing-grid { grid-template-columns: 1fr 1fr; }
  .marketing-grid .mcard:nth-child(1) { grid-column: 1 / 3; }
  .marketing-grid .mcard:nth-child(4) { grid-column: 1 / 3; }
  .status-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .marketing-grid { grid-template-columns: 1fr; }
  .marketing-grid .mcard:nth-child(1),
  .marketing-grid .mcard:nth-child(4) { grid-column: 1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-status-text { display: none; }
  .wa-container { bottom: 18px; right: 18px; }
  .wa-btn { width: 54px; height: 54px; font-size: 1.4rem; }
  .wa-tooltip { max-width: 200px; font-size: 0.78rem; }
}

@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-disabled { width: 100%; max-width: 260px; justify-content: center; }
}
