/* ===================================
   VyaparLink Premium CSS v3.0
   Traditional India x Digital India
   =================================== */

:root {
  --blue: #0A4FBF;
  --blue-light: #1a65e0;
  --blue-dark: #073a8f;
  --blue-pale: #EFF6FF;
  --green: #43B02A;
  --green-light: #52c934;
  --green-dark: #339922;
  --green-pale: #F0FDF4;
  --saffron: #FF9933;
  --saffron-light: #FFB347;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --danger: #EF4444;
  --orange: #F97316;
  --purple: #8B5CF6;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(10,79,191,0.10);
  --shadow-lg: 0 16px 56px rgba(10,79,191,0.18);
  --shadow-green: 0 8px 24px rgba(67,176,42,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Inter', sans-serif;
  --font-head: 'Inter', sans-serif;
  --font-hindi: 'Baloo 2', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-red { color: var(--danger); }
.section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: var(--gray-900); margin: 16px 0 12px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
}
.section-tag.success-tag { background: #D1FAE5; color: #065F46; }
.section-tag.danger-tag { background: #FEE2E2; color: #991B1B; }
.section-tag.blue-tag { background: #DBEAFE; color: #1E40AF; }
.section-tag.green-tag { background: #D1FAE5; color: #065F46; }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

.modal-overlay.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: white;
  border-radius: 28px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.dash-modal-box {
  max-width: 900px;
  padding: 40px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); }

.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-brand {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}
.modal-brand span { color: var(--green); }

.modal-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 6px;
}

.modal-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.demo-form { display: flex; flex-direction: column; gap: 12px; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  font-size: 0.97rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  outline: none;
  transition: var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(10,79,191,0.08);
}

.demo-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.demo-submit-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,79,191,0.3); }

.modal-contacts {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.modal-contacts a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
}
.modal-contacts a:hover { color: var(--green); }
.modal-note { text-align: center; font-size: 0.78rem; color: var(--gray-400); margin-top: 12px; }

/* Dashboard Modal */
.dash-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 6px;
}
.dash-modal-sub { text-align: center; color: var(--gray-500); margin-bottom: 28px; }

.dash-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dm-card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.dm-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }

.dm-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
}
.dm-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.blue-dm { background: #DBEAFE; }
.green-dm { background: #D1FAE5; }
.purple-dm { background: #F5F3FF; }
.orange-dm { background: #FFF7ED; }
.red-dm { background: #FEE2E2; }
.wa-dm { background: #D1FAE5; }

.dm-card-name { font-size: 0.88rem; font-weight: 700; color: var(--gray-800); }
.dm-card-sub { font-size: 0.75rem; color: var(--gray-500); }
.dm-new-badge {
  position: absolute;
  right: 0;
  top: -8px;
  background: var(--blue);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.dm-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 0.82rem;
}
.dm-num { font-weight: 700; }
.dm-num.blue { color: var(--blue); }
.dm-num.green { color: var(--green); }
.dm-num.orange { color: var(--orange); }
.green-row { background: #F0FDF4; }
.orange-row { background: #FFF7ED; }

.dm-avatars { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.dm-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
.dm-av-count { font-size: 0.78rem; color: var(--gray-500); }
.dm-msg-preview {
  font-size: 0.78rem;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 8px 10px;
  border-radius: 8px;
  font-style: italic;
}

.dm-stock-label { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--gray-600); margin-bottom: 8px; }
.dm-stock-label span { font-weight: 700; color: var(--green); }
.dm-progress { height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.dm-progress-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 4px; }

.dm-invoice-btn, .dm-alert-btn {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: default;
  margin-bottom: 6px;
  display: inline-block;
}
.dm-invoice-btn { background: #FFF3CD; color: #856404; }
.dm-alert-btn { background: #FEE2E2; color: #991B1B; }
.dm-card-note { font-size: 0.72rem; color: var(--gray-400); }

.dm-wa-row { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 4px 0; border-bottom: 1px solid var(--gray-100); }
.dm-wa-val { font-weight: 700; }
.dm-wa-val.blue { color: var(--blue); }
.dm-wa-val.green { color: var(--green); }

.dash-modal-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.dash-modal-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-green); }

/* ===== FLOATING PILL NAVBAR ===== */
.navbar {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1px solid rgba(10, 79, 191, 0.08);
  box-shadow: 0 12px 40px rgba(10, 79, 191, 0.08);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 12px 0 28px;
}
.navbar.scrolled {
  top: 46px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 48px rgba(10, 79, 191, 0.15);
  border-color: rgba(10, 79, 191, 0.12);
}

.nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  max-width: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
}

.nav-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF8C00, #FF6B00);
  color: white !important;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
  animation: badge-pulse 1.8s infinite ease-in-out;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-demo-badge:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 107, 0, 0.45);
}
.nav-demo-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: whitePulse 1.6s infinite;
}
@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.45);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-full {
  height: 82px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-full {
  transform: scale(1.03);
}


/* ===== FOOTER LOGO — FULL (NO CROP) ===== */
.footer-logo-row {
  margin-bottom: 16px;
}
.footer-logo-full {
  height: 100px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

/* Hide old round styles */
.footer-logo-round-wrap { display: none; }
.nav-logo-round { display: none; }
.footer-logo-img { display: none; }
.nav-logo-img { display: none; }

/* ===== BUSINESS SECTION ===== */
.business-section {
  background: linear-gradient(160deg, #F8FBFF 0%, #FFFEF7 100%);
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.biz-card {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: 20px;
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(10,79,191,0.07);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
}
.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10,79,191,0.14);
  border-color: rgba(10,79,191,0.2);
}
.biz-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.biz-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.biz-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.biz-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--blue-pale), #F0FDF4);
  border-radius: 20px;
  border: 1.5px solid rgba(10,79,191,0.12);
}
.biz-cta p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.btn-green-sm {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(67,176,42,0.35);
}
.btn-green-sm:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(67,176,42,0.45);
}


.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; justify-content: center; margin: 0 auto; }
.nav-link {
  text-decoration: none;
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}
.nav-link:hover { color: var(--blue); background: var(--blue-pale); }
.nav-link.nav-highlight {
  background: #EFF6FF;
  color: #1E40AF;
  font-weight: 700;
  border: 1px solid #BFDBFE;
}

.nav-actions { display: flex; gap: 12px; align-items: center; }

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #E8F5E9;
  color: #2e7d32;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-whatsapp-nav:hover { background: #C8E6C9; color: #1b5e20; transform: scale(1.05); }
.btn-whatsapp-nav span { display: none; }

.btn-primary-nav {
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
  transition: all 0.25s ease;
  background: linear-gradient(135deg, #d946ef, #8b5cf6);
  font-family: var(--font-body);
}
.btn-primary-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45); }

.btn-demo-nav {
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
  transition: all 0.25s ease;
  background: linear-gradient(135deg, #FF8C00, #FF6B00);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-demo-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
  background: linear-gradient(150deg, #FFFEF7 0%, #F0F9FF 40%, #F0FDF4 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(10,79,191,0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(67,176,42,0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255,153,51,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.25;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.25; }
  90% { opacity: 0.25; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #FFF3CD, #D1FAE5);
  border: 1px solid rgba(67,176,42,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #065F46;
  margin-bottom: 20px;
}
.badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.5);opacity:0.7} }

.hero-heading {
  font-family: var(--font-hindi);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.18;
  margin-bottom: 18px;
}
.hero-sub-ticker {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 56px;
  max-width: 520px;
  margin-bottom: 28px;
  text-align: left;
}
.hero-ticker-icon {
  font-size: 1.3rem;
  line-height: 1.4;
  animation: floatIcon 3s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}
.hero-ticker-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}
.hero-ticker-text.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}
.hero-ticker-text.fade-in {
  opacity: 0;
  transform: translateY(8px);
}

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

.hero-stats { display: flex; gap: 24px; align-items: center; margin-bottom: 32px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-val { display: flex; align-items: baseline; gap: 1px; }
.stat-num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--blue); }
.stat-plus { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--blue); }
.stat-label { font-size: 0.78rem; color: var(--gray-600); font-weight: 500; }
.stat-divider { width: 1px; height: 38px; background: var(--gray-200); }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.btn-green-lg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}
.btn-green-lg:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(67,176,42,0.4); }

.btn-blue-lg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(10,79,191,0.2);
  transition: var(--transition);
}
.btn-blue-lg:hover { background: var(--blue); color: white; transform: translateY(-3px); }

.btn-orange-lg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #FF8C00, #FF6B00);
  color: white;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}
.btn-orange-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 107, 0, 0.5);
  color: white;
}

.hero-trust { display: flex; align-items: center; gap: 12px; }
.trust-avatars { display: flex; }
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
}
.avatar:not(:first-child) { margin-left: -8px; }
.hero-trust p { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }

/* Phone Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.phone-link-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.phone-link-wrapper:hover {
  transform: scale(1.02);
}
.phone-demo-hint {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF8C00, #FF6B00);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
  animation: hint-pulse 2s infinite ease-in-out;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
@keyframes hint-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
  }
  50% {
    transform: translateX(-50%) scale(1.06);
    box-shadow: 0 10px 22px rgba(255, 107, 0, 0.6);
  }
}

.phone-frame {
  width: 272px;
  height: 548px;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 44px;
  padding: 13px;
  box-shadow:
    0 40px 80px rgba(10,79,191,0.28),
    0 0 0 2px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  z-index: 10;
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%,100%{ transform: translateY(0) rotate(-1.5deg); }
  50%{ transform: translateY(-14px) rotate(1.5deg); }
}
.phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  z-index: 20;
}
.phone-screen {
  background: white;
  border-radius: 34px;
  height: 100%;
  overflow: hidden;
  padding: 10px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-header { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.app-logo-mini { display: flex; align-items: center; gap: 5px; font-family: var(--font-head); font-weight: 800; font-size: 0.75rem; color: var(--gray-900); }
.app-search { font-size: 0.9rem; }
.app-banner {
  background: linear-gradient(90deg, var(--saffron), #FF6B00);
  border-radius: 8px;
  padding: 5px 10px;
  text-align: center;
}
.app-banner-text { font-size: 0.62rem; font-weight: 700; color: white; }
.app-cats { display: flex; gap: 5px; padding: 2px 0; }
.cat { padding: 3px 10px; border-radius: 50px; font-size: 0.65rem; font-weight: 600; background: var(--gray-100); color: var(--gray-600); white-space: nowrap; }
.cat.active { background: var(--blue); color: white; }
.app-products { display: flex; flex-direction: column; gap: 7px; flex: 1; overflow: hidden; }
.app-product { display: flex; gap: 8px; padding: 7px; background: var(--gray-50); border-radius: 10px; align-items: center; }
.prod-img { width: 48px; height: 48px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.prod-info { flex: 1; }
.prod-name { font-size: 0.68rem; font-weight: 600; color: var(--gray-800); }
.prod-price { font-size: 0.76rem; font-weight: 800; color: var(--blue); margin: 2px 0; }
.prod-badge { font-size: 0.58rem; padding: 2px 6px; background: #D1FAE5; color: #065F46; border-radius: 4px; display: inline-block; font-weight: 600; }
.app-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 9px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white; border: none; border-radius: 10px;
  font-size: 0.68rem; font-weight: 700; cursor: pointer; width: 100%;
  animation: green-pulse 3s ease-in-out infinite;
}
@keyframes green-pulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(67,176,42,0.4); }
  50%{ box-shadow: 0 0 0 7px rgba(67,176,42,0); }
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  min-width: 168px;
  z-index: 20;
  border: 1px solid rgba(255,255,255,0.9);
}
.float-order { top: 14%; right: -8%; animation: float1 7s ease-in-out infinite; }
.float-whatsapp { bottom: 30%; right: -12%; animation: float2 8s ease-in-out infinite; }
.float-sales { bottom: 8%; left: -8%; animation: float3 6s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.float-icon.green { background: #D1FAE5; }
.float-icon.blue-float { background: #DBEAFE; }
.float-icon.wa-float-icon { background: var(--green); color: white; }
.float-title { font-size: 0.75rem; font-weight: 700; color: var(--gray-800); }
.float-sub { font-size: 0.68rem; color: var(--gray-600); }
.up { color: var(--green); font-weight: 700; }

.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); }
.scroll-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: scroll-bounce 2s ease-in-out infinite; }
@keyframes scroll-bounce { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(14px);opacity:0.3} }

/* ===== PRE-LAUNCH UNLIMITED STYLES ===== */
.pl-unlimited-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,153,51,0.2), rgba(67,176,42,0.2));
  border: 2px solid rgba(255,153,51,0.5);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.pl-ul-icon { font-size: 2.5rem; flex-shrink: 0; }
.pl-ul-title { font-size: 1rem; font-weight: 900; color: var(--saffron-light); letter-spacing: 0.05em; margin-bottom: 4px; }
.pl-ul-sub { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.pl-unlimited-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.pl-unlimited-section { margin-bottom: 20px; }
.pl-ul-label { font-size: 0.9rem; font-weight: 700; color: var(--blue); margin-bottom: 14px; }

.pl-ul-chip {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  align-self: flex-start;
  margin-top: 2px;
  white-space: nowrap;
}

/* ===== PRE-LAUNCH SECTION ===== */
.prelaunch-section {
  background: linear-gradient(160deg, var(--gray-900) 0%, #1a2a4a 60%, #0d2137 100%);
  position: relative;
  padding: 100px 0 80px;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: -55px;
  left: 0;
  z-index: 10;
  height: 140px;
  pointer-events: none;
}

.prelaunch-ticker {
  background: linear-gradient(90deg, #0A4FBF 0%, #2563EB 40%, #10B981 75%, #43B02A 100%);
  padding: 20px 0;
  line-height: 1;
  white-space: nowrap;
  width: 116%;
  margin-left: -8%;
  transform: rotate(-1.8deg);
  box-shadow: 0 10px 30px rgba(10, 79, 191, 0.25);
  position: relative;
  z-index: 2;
  margin-top: 35px;
  pointer-events: auto;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.prelaunch-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,153,51,0.2);
  border: 1px solid rgba(255,153,51,0.5);
  border-radius: 50px;
  color: var(--saffron-light);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.prelaunch-left h2 {
  font-family: var(--font-hindi);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.25;
  margin-bottom: 16px;
}
.pl-highlight {
  background: linear-gradient(135deg, var(--saffron), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prelaunch-left > p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 28px; line-height: 1.75; }
.pl-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pl-feat { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.92rem; flex-wrap: wrap; }
.pl-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pl-counter-wrap { margin-bottom: 28px; }
.pl-counter-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.pl-counter { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.pl-count-num { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--saffron-light); }
.pl-count-total { font-size: 1.2rem; color: rgba(255,255,255,0.5); }
.pl-bar-wrap {}
.pl-bar { height: 10px; background: rgba(255,255,255,0.15); border-radius: 5px; overflow: hidden; margin-bottom: 8px; }
.pl-bar-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 5px; }
.pl-bar-text { font-size: 0.83rem; color: rgba(255,255,255,0.6); }
.pl-bar-text strong { color: var(--saffron-light); }

.pl-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--saffron), #FF6B00);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(255,153,51,0.4);
  margin-bottom: 14px;
}
.pl-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,153,51,0.5); }
.pl-urgency { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Pre-launch Price Card */
.pl-price-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}
.pl-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pl-price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), #FF6B00);
  color: white;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.pl-price-old { font-size: 1.5rem; font-weight: 600; color: var(--gray-400); text-decoration: line-through; }
.pl-price-old span { font-size: 0.9rem; }
.pl-price-new {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.pl-price-new span { font-size: 1rem; color: var(--gray-500); font-weight: 400; }
.pl-savings {
  display: inline-block;
  background: #D1FAE5;
  color: #065F46;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pl-divider { height: 1px; background: var(--gray-200); margin-bottom: 20px; }
.pl-plan-name { font-weight: 700; color: var(--gray-700); font-size: 0.95rem; margin-bottom: 16px; }
.pl-included { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pl-included li { display: flex; align-items: flex-start; gap: 10px; }
.pl-li-icon {
  width: 34px;
  height: 34px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pl-included li strong { font-size: 0.87rem; color: var(--gray-800); display: block; margin-bottom: 2px; }
.pl-included li p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }

.pl-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  margin-bottom: 10px;
}
.pl-card-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.pl-card-note { text-align: center; font-size: 0.78rem; color: var(--gray-400); }

/* ===== PROBLEM SECTION ===== */
.problem-section { background: #FFF8F8; }
.problems-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-bottom: 48px; }
.problem-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 2px solid #FEE2E2;
  text-align: center;
  transition: var(--transition);
}
.problem-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(239,68,68,0.12); border-color: var(--danger); }
.prob-icon { font-size: 2.4rem; margin-bottom: 14px; }
.problem-card h3 { font-size: 0.88rem; font-weight: 700; color: #991B1B; margin-bottom: 8px; line-height: 1.4; }
.problem-card p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.6; }
.problem-arrow { text-align: center; }
.arrow-down { font-size: 2.5rem; color: var(--blue); animation: bounce-down 2s ease-in-out infinite; margin-bottom: 8px; }
@keyframes bounce-down { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
.problem-arrow p { font-size: 1rem; font-weight: 700; color: var(--blue); }

/* ===== SOLUTION SECTION ===== */
.solution-section { background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 22px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.feature-card:hover::before { transform: scaleX(1); }
.feat-icon { font-size: 1.9rem; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-icon.blue-icon { background: var(--blue-pale); }
.feat-icon.green-icon { background: var(--green-pale); }
.feat-icon.purple-icon { background: #F5F3FF; }
.feat-icon.orange-icon { background: #FFF7ED; }
.feature-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feature-card p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.hiw-section { background: linear-gradient(160deg, var(--blue-pale), var(--green-pale)); }
.steps-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 58px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 0;
}
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(40px);
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}
.step-icon-wrap {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(10,79,191,0.25);
}
.step-icon { font-size: 1.9rem; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* ===== BIZ SECTION ===== */
.biz-section { background: white; }
.biz-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.biz-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px 12px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
}
.biz-card:hover { background: var(--blue-pale); border-color: var(--blue); transform: translateY(-6px); box-shadow: var(--shadow); }
.biz-card span { font-size: 2rem; display: block; margin-bottom: 8px; }
.biz-card p { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); }

/* ===== DASHBOARD SECTION ===== */
.dashboard-section {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 96px 0;
}

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

.dash-feature-card {
  background: white;
  border-radius: 20px;
  padding: 22px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.1);
}
.dash-feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.2); }
.dash-blue-card { border: 2px solid var(--blue-light); }

.dfc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
}
.dfc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: var(--blue-pale);
}
.dfc-icon.green-dfc { background: var(--green-pale); }
.dfc-icon.purple-dfc { background: #F5F3FF; }
.dfc-icon.orange-dfc { background: #FFF7ED; }
.dfc-icon.red-dfc { background: #FEE2E2; }
.dfc-icon.wa-dfc { background: var(--green-pale); }
.dfc-name { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.dfc-sub { font-size: 0.75rem; color: var(--gray-500); }
.dfc-new {
  position: absolute;
  right: 0;
  top: -5px;
  background: var(--blue);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
}

.dfc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.dfc-row.grn-bg { background: #F0FDF4; }
.dfc-row.org-bg { background: #FFF7ED; }
.c-blue { color: var(--blue); font-weight: 700; }
.c-green { color: var(--green); font-weight: 700; }
.c-orange { color: var(--orange); font-weight: 700; }

.dfc-click-hint { font-size: 0.72rem; color: var(--blue); text-align: right; margin-top: 8px; font-weight: 600; }

.dfc-avatars { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.dfc-av {
  width: 26px; height: 26px; border-radius: 50%; color: white;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.dfc-av-txt { font-size: 0.75rem; color: var(--gray-500); }
.dfc-msg { font-size: 0.75rem; color: var(--gray-600); background: var(--gray-50); padding: 8px 10px; border-radius: 8px; font-style: italic; }

.dfc-stock-label { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--gray-600); margin-bottom: 8px; }
.dfc-stock-label span { font-weight: 700; color: var(--green); }
.dfc-progress { height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.dfc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 4px; }

.dfc-invoice-btn { padding: 7px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; background: #FFF3CD; color: #856404; display: inline-block; margin-bottom: 6px; cursor: default; }
.dfc-alert-btn { padding: 7px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; background: #FEE2E2; color: #991B1B; display: inline-block; margin-bottom: 6px; cursor: default; }
.dfc-note { font-size: 0.72rem; color: var(--gray-400); }
.dfc-wa-row { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 4px 0; border-bottom: 1px solid var(--gray-100); }
.wa-blue { color: var(--blue); font-weight: 700; }
.wa-green { color: var(--green); font-weight: 700; }

.dash-cta-row { text-align: center; }
.dash-preview-btn {
  padding: 14px 32px;
  background: white;
  color: var(--blue);
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.dash-preview-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.2); }

/* ===== POS HIGHLIGHT SECTION ===== */
.pos-highlight-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.pos-highlight-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(67, 176, 42, 0.05) 0%, rgba(13, 33, 79, 0.05) 100%);
  pointer-events: none;
}
.pos-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.pos-header h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 16px;
  font-family: var(--font-accent);
}
.pos-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.6;
}
.pos-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.pos-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.pos-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pos-card-other {
  border-top: 4px solid #EF4444; /* Red for competitors */
}
.pos-card-vl {
  border: 2px solid var(--green);
  border-top: 4px solid var(--green);
  background: linear-gradient(180deg, rgba(67, 176, 42, 0.03) 0%, rgba(255,255,255,1) 100%);
}
.pos-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.pos-card-other .pos-icon-box { background: #FEE2E2; color: #EF4444; }
.pos-card-vl .pos-icon-box { background: #DCFCE7; color: var(--green); }
.pos-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.pos-card-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.pos-card-other .pos-card-price { color: #EF4444; text-decoration: line-through; opacity: 0.8; }
.pos-card-vl .pos-card-price { color: var(--green); }
.pos-card-desc {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.pos-vl-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(67, 176, 42, 0.3);
}

/* ===== PRICING ===== */
.pricing-section { background: linear-gradient(160deg, var(--gray-50), var(--blue-pale)); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: var(--blue); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.premium-card {
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  border-color: transparent;
  color: white;
  transform: scale(1.03);
}
.premium-card:hover { transform: scale(1.03) translateY(-8px); border-color: transparent; }
.popular-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-green);
}
.plan-icon { font-size: 2rem; margin-bottom: 8px; }
.plan-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.premium-card .plan-name { color: rgba(255,255,255,0.9); }
.plan-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.premium-card .plan-price { color: white; }
.currency { font-size: 1.4rem; margin-top: 6px; }
.period { font-size: 0.95rem; color: var(--gray-400); align-self: flex-end; margin-bottom: 5px; }
.premium-card .period { color: rgba(255,255,255,0.6); }
.plan-products {
  font-size: 0.9rem; font-weight: 700; color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 14px; border-radius: 8px;
  display: inline-block; margin-bottom: 24px;
}
.premium-card .plan-products { background: rgba(255,255,255,0.15); color: white; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--gray-700); }
.premium-card .plan-features li { color: rgba(255,255,255,0.9); }
.check {
  width: 20px; height: 20px;
  background: var(--green); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; flex-shrink: 0;
}
.plan-btn {
  display: block; width: 100%; text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-size: 0.97rem; font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  transition: var(--transition);
}
.plan-btn-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.plan-btn-outline:hover { background: var(--blue); color: white; }
.plan-btn-solid { background: white; color: var(--blue); }
.plan-btn-solid:hover { background: var(--green); color: white; }
.plan-note { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 10px; }
.premium-card .plan-note { color: rgba(255,255,255,0.5); }

/* ===== TRUST SECTION ===== */
.trust-section { background: white; }
.trust-badges-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.trust-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  min-width: 260px;
  transition: var(--transition);
  text-align: center;
}
.trust-badge-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.india-card { border-color: rgba(255,153,51,0.3); background: linear-gradient(135deg, #FFFBF0, #FFF); }
.digital-card { border-color: rgba(10,79,191,0.2); background: linear-gradient(135deg, #F0F9FF, #FFF); }

.trust-badge-img {
  max-width: 200px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.di-img { max-height: 70px; }
.di-fallback { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.di-digital { font-size: 1.5rem; font-weight: 900; color: var(--blue); }
.di-india { font-size: 1.5rem; font-weight: 900; color: var(--saffron); }

.trust-badge-card p { font-size: 0.85rem; color: var(--gray-600); }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-100);
  transition: var(--transition);
}
.trust-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: var(--shadow); background: var(--blue-pale); }
.trust-icon { font-size: 2.8rem; margin-bottom: 14px; }
.trust-card h4 { font-size: 0.97rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.trust-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ===== WHY US SECTION ===== */
.why-section {
  background: #F8FAFC;
  padding: 80px 0;
}
.why-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.why-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-badge {
  background: #EFF6FF;
  color: #1E40AF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  align-self: flex-start;
  border: 1px solid #DBEAFE;
  font-family: var(--font-body);
}
.why-left h2 {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: 4px;
}
.why-left h2 span {
  color: var(--blue);
}
.why-sub {
  font-size: 0.98rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-item-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}
.why-item-card:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.why-ico-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.1rem;
}
.why-ico-box.blue {
  background: #2563EB;
}
.why-ico-box.green {
  background: #16A34A;
}
.why-item-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.why-item-details strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.why-item-details p {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.4;
  margin: 0;
  font-family: var(--font-body);
}
.why-right-sticky {
  position: sticky;
  top: 130px;
  background: white;
  border-radius: 24px;
  padding: 36px 30px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06);
  text-align: center;
}
.why-sticky-logo {
  height: 40px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.why-sticky-tagline {
  font-size: 0.88rem;
  color: #2563EB;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.why-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-body);
}
.why-checklist-item.check-green {
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #DCFCE7;
}
.why-checklist-item.check-blue {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #DBEAFE;
}
.why-checklist-item.check-purple {
  background: #F5F3FF;
  color: #5B21B6;
  border: 1px solid #EDE9FE;
}
.why-checklist-item.check-orange {
  background: #FFF7ED;
  color: #9A3412;
  border: 1px solid #FFEDD5;
}
.why-check-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  border: 1.5px solid currentColor;
}
.why-checklist-item.check-green .why-check-circle {
  background: #16A34A;
  color: white;
  border-color: #16A34A;
}
.why-checklist-item.check-blue .why-check-circle {
  background: #2563EB;
  color: white;
  border-color: #2563EB;
}
.why-checklist-item.check-purple .why-check-circle {
  background: #7C3AED;
  color: white;
  border-color: #7C3AED;
}
.why-checklist-item.check-orange .why-check-circle {
  background: #EA580C;
  color: white;
  border-color: #EA580C;
}
.why-help-box {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  border: 1px solid #E2E8F0;
}
.why-help-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0A4FBF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.why-help-text {
  display: flex;
  flex-direction: column;
}
.why-help-text span {
  font-size: 0.72rem;
  color: #64748B;
  font-family: var(--font-body);
}
.why-help-text strong {
  font-size: 0.85rem;
  color: #1E293B;
  margin-top: 1px;
  font-family: var(--font-body);
}

/* ===== FAQ ===== */
.faq-section { background: white; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 2px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  background: none; border: none; text-align: left;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 600;
  color: var(--gray-900); cursor: pointer; gap: 14px; transition: var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 22px; font-size: 0.93rem; color: var(--gray-600); line-height: 1.8; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(67,176,42,0.2), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05), transparent 50%);
}
.cta-container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-green {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  background: var(--green); color: white;
  border-radius: 14px; font-size: 1.02rem; font-weight: 700;
  border: none; cursor: pointer; font-family: var(--font-body);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(67,176,42,0.4);
}
.btn-cta-green:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(67,176,42,0.5); }
.btn-cta-outline {
  padding: 16px 30px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white; border-radius: 14px;
  font-size: 1.02rem; font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* ===== FLOATING CARD FOOTER ===== */
.footer {
  background: #F8FAFC;
  padding: 0 24px 40px;
  border-top: none;
  box-sizing: border-box;
  display: flow-root; /* Prevent margin collapse so card overlaps blue section directly */
}
.footer-card-container {
  max-width: 1380px;
  width: 100%;
  margin: -90px auto 0; /* Increased negative margin to overlap blue section */
  background: white;
  border-radius: 40px;
  padding: 56px 64px 36px;
  box-shadow: 0 20px 60px rgba(10, 79, 191, 0.08);
  border: 1px solid rgba(10, 79, 191, 0.05);
  position: relative;
  z-index: 10;
}
.footer-grid {
  display: grid;
  grid-template-columns: 360px 1fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
  width: 100%;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.footer-logo-full {
  height: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-desc {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}
.footer-india-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-india-badge {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.di-footer {
  height: 28px;
}
.office-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.office-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.office-item strong {
  display: block;
  font-size: 0.86rem;
  color: #1E293B;
  font-weight: 600;
  margin-bottom: 3px;
  text-align: left;
}
.office-item p {
  font-size: 0.8rem;
  color: #64748B;
  margin: 0;
  text-align: left;
}
.footer-gst-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F5F3FF;
  color: #7C3AED;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid #EDE9FE;
  align-self: flex-start;
  letter-spacing: 0.02em;
}
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5F3FF;
  color: #7C3AED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #EDE9FE;
}
.footer-social-btn:hover {
  background: #7C3AED;
  color: white;
  transform: translateY(-2px);
  border-color: #7C3AED;
}

/* Links Columns */
.footer-links-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 20px;
  text-align: left;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.footer-links-col ul li a {
  font-size: 0.85rem;
  color: #64748B;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links-col ul li a:hover {
  color: #2563EB;
  transform: translateX(3px);
}

/* Bottom Copyright */
.footer-bottom-divider {
  height: 1px;
  background: #F1F5F9;
  margin-bottom: 24px;
}
.footer-bottom-text {
  font-size: 0.78rem;
  color: #94A3B8;
  text-align: center;
  margin: 0;
}

/* ===== FULL DASHBOARD MODAL ===== */
.full-dash-modal {
  max-width: 1000px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}
.full-dash-modal .modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 10;
  background: rgba(255,255,255,0.2);
  color: white;
}
.full-dash-modal .modal-close:hover { background: rgba(255,255,255,0.3); }

.full-dash {
  display: flex;
  height: 580px;
  overflow: hidden;
}

/* Sidebar */
.fd-sidebar {
  width: 200px;
  background: var(--blue);
  flex-shrink: 0;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fd-logo {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 16px;
}
.fd-nav { display: flex; flex-direction: column; gap: 3px; }
.fd-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  user-select: none;
}
.fd-link:hover { background: rgba(255,255,255,0.1); color: white; }
.fd-link.active { background: rgba(255,255,255,0.18); color: white; font-weight: 700; }
.fd-link-icon { font-size: 1rem; flex-shrink: 0; }

/* Main Panel */
.fd-main {
  flex: 1;
  overflow: auto;
  background: var(--gray-50);
}
.fd-panel { display: none; padding: 24px; height: 100%; overflow: auto; }
.fd-panel.active { display: block; }

.fd-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.fd-header-row h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.fd-header-row p { font-size: 0.8rem; color: var(--gray-500); }
.fd-date { font-size: 0.78rem; color: var(--gray-500); background: white; padding: 5px 12px; border-radius: 8px; border: 1px solid var(--gray-200); white-space: nowrap; }
.fd-action-btn {
  padding: 7px 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.fd-action-btn:hover { background: var(--blue-dark); }

.fd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.fd-stat {
  background: white;
  border-radius: 12px;
  padding: 13px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.fd-stat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.fd-stat-val { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.fd-stat-label { font-size: 0.68rem; color: var(--gray-500); margin: 2px 0; }
.fd-stat-up { font-size: 0.68rem; font-weight: 700; color: var(--green); }
.fd-stat-up.new { color: var(--blue); }

.fd-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fd-card { background: white; border-radius: 12px; padding: 14px; border: 1px solid var(--gray-200); }
.fd-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }

.fd-order-row { display: grid; grid-template-columns: 50px 1fr 1fr auto; gap: 6px; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.74rem; }
.fd-order-row:last-child { border-bottom: none; }
.ord-id { font-weight: 700; color: var(--blue); font-size: 0.74rem; }
.ord-name { font-weight: 600; color: var(--gray-700); }
.ord-prod { color: var(--gray-500); }
.ord-status { padding: 2px 8px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-align: center; white-space: nowrap; }
.ord-status.confirmed { background: #D1FAE5; color: #065F46; }
.ord-status.pending { background: #FEF3C7; color: #92400E; }
.ord-status.shipped { background: #DBEAFE; color: #1E40AF; }

.fd-wa-item { display: flex; gap: 8px; padding: 8px; background: var(--gray-50); border-radius: 8px; margin-bottom: 6px; }
.fd-wa-av { width: 32px; height: 32px; border-radius: 50%; color: white; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fd-wa-name { font-size: 0.78rem; font-weight: 700; color: var(--gray-800); }
.fd-wa-msg { font-size: 0.72rem; color: var(--gray-600); margin: 2px 0; }
.fd-wa-time { font-size: 0.65rem; color: var(--gray-400); }

/* Products table */
.fd-search-row { display: flex; gap: 8px; margin-bottom: 12px; }
.fd-search { flex: 1; padding: 8px 14px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-size: 0.85rem; font-family: var(--font-body); outline: none; }
.fd-search:focus { border-color: var(--blue); }
.fd-filter { padding: 8px 12px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-size: 0.82rem; font-family: var(--font-body); outline: none; }

.fd-product-table { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-200); }
.fd-table-head { display: grid; grid-template-columns: repeat(5,1fr); padding: 10px 14px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-size: 0.74rem; font-weight: 700; color: var(--gray-500); }
.fd-table-row { display: grid; grid-template-columns: repeat(5,1fr); padding: 10px 14px; border-bottom: 1px solid var(--gray-100); font-size: 0.8rem; align-items: center; transition: var(--transition); }
.fd-table-row:hover { background: var(--blue-pale); }
.fd-table-row:last-child { border-bottom: none; }

/* Categories */
.fd-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.fd-cat-card { background: white; border-radius: 12px; padding: 16px; border: 1px solid var(--gray-200); text-align: center; transition: var(--transition); }
.fd-cat-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.fd-cat-icon { font-size: 2rem; margin-bottom: 8px; }
.fd-cat-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.fd-cat-card p { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 8px; }

/* Inventory */
.fd-inv-summary { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 16px; }
.fd-inv-stat { background: white; border-radius: 12px; padding: 14px; text-align: center; border: 1px solid var(--gray-200); font-size: 0.78rem; color: var(--gray-600); }
.fd-inv-stat.ok { border-color: var(--green); background: #F0FDF4; }
.fd-inv-stat.warn { border-color: var(--orange); background: #FFF7ED; }
.fd-inv-stat.danger { border-color: var(--danger); background: #FEF2F2; }
.fd-inv-num { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }

/* Tab row for orders */
.fd-tab-row { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.fd-tab { padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; color: var(--gray-600); background: var(--gray-100); cursor: pointer; transition: var(--transition); }
.fd-tab.active, .fd-tab:hover { background: var(--blue); color: white; }

/* Enquiries */
.fd-enquiry-list { display: flex; flex-direction: column; gap: 8px; }
.fd-enquiry-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: white; border-radius: 12px; border: 1.5px solid var(--gray-200); transition: var(--transition); }
.fd-enquiry-item.unread { border-color: var(--blue); background: var(--blue-pale); }
.fd-enquiry-item:hover { box-shadow: var(--shadow); }
.enq-badge { flex-shrink: 0; padding: 3px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; background: #D1FAE5; color: #065F46; }
.enq-badge.web { background: #DBEAFE; color: #1E40AF; }

/* Analytics Chart */
.fd-chart-area { background: white; border-radius: 12px; padding: 16px; border: 1px solid var(--gray-200); margin-top: 14px; }
.fd-chart-area h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray-800); margin-bottom: 14px; }
.fd-bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.fd-bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.fd-bar-fill { width: 100%; background: linear-gradient(to top, var(--blue), var(--blue-light)); border-radius: 4px 4px 0 0; min-height: 6px; transition: var(--transition); }
.fd-bar-item:hover .fd-bar-fill { background: linear-gradient(to top, var(--green), var(--green-light)); }
.fd-bar-item span { font-size: 0.65rem; color: var(--gray-500); font-weight: 600; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  background: var(--green); color: white;
  border-radius: 50px;
  padding: 13px 18px;
  display: flex; align-items: center; gap: 7px;
  font-size: 0.92rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(67,176,42,0.5);
  transition: var(--transition);
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 12px 36px rgba(67,176,42,0.6); }
@keyframes wa-bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: linear-gradient(90deg, #FF6B00 0%, #FF8C00 50%, #FF6B00 100%);
  background-size: 200% auto;
  animation: gradientShimmer 4s linear infinite;
  color: white;
  z-index: 1002; /* Above navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.2);
  transition: all 0.3s ease;
  padding: 0 16px;
}
.top-announcement-bar:hover {
  filter: brightness(1.08);
}
.tab-flashing-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: whitePulse 1.6s infinite;
  flex-shrink: 0;
}
.tab-btn-mini {
  background: white;
  color: #FF6B00;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-left: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  white-space: nowrap; /* Prevents wrapping on mobile */
}
.desktop-text {
  display: inline;
}
.mobile-text {
  display: none;
}
.top-announcement-bar:hover .tab-btn-mini {
  transform: scale(1.05);
}
.announcement-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}
.announcement-content.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}
.announcement-content.fade-in {
  opacity: 0;
  transform: translateY(8px);
}

/* ===== HERO PRICE PILL ===== */
.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  margin: 12px 0 20px 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.12);
  font-family: var(--font-body);
  transition: all 0.3s ease;
  align-self: flex-start;
}
.hero-price-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.22);
  border-color: var(--saffron);
}
.price-pill-tag {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.price-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: whitePulse 1.6s infinite;
}
.price-pill-text {
  font-size: 0.92rem;
  color: var(--blue-dark);
  font-weight: 500;
}
.price-pill-text strong {
  color: var(--saffron);
  font-size: 1.15rem;
  font-family: var(--font-head);
  margin: 0 2px;
}
.price-pill-sub {
  color: #64748B;
  font-size: 0.78rem;
  margin-left: 6px;
  font-weight: 400;
}

@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes whitePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ===== AOS ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.92); opacity: 0; }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-grid { grid-template-columns: repeat(4, 1fr); }
  .business-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .problems-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-modal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 64px; }
  .hero-content { text-align: center; }
  .hero-price-pill {
    display: inline-flex;
    margin: 12px auto 20px auto;
    align-self: center;
  }
  .price-pill-text {
    font-size: 0.8rem;
  }
  .price-pill-text strong {
    font-size: 1.0rem;
  }
  .price-pill-sub {
    display: block;
    margin-left: 0;
    margin-top: 2px;
    font-size: 0.72rem;
  }
  .hero-sub-ticker {
    justify-content: center;
    text-align: center;
    margin: 0 auto 28px;
    min-height: 74px;
  }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .steps-wrapper::before { display: none; }
  /* POS Section */
  .pos-comparison-grid { grid-template-columns: 1fr; gap: 40px; }
  .pos-header h2 { font-size: 1.8rem; }
  .pos-card-vl { margin-top: 10px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .premium-card { transform: scale(1); }
  .premium-card:hover { transform: translateY(-8px); }
  .why-container { grid-template-columns: 1fr; gap: 30px; }
  .prelaunch-wrapper { grid-template-columns: 1fr; }
  .dash-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-container { gap: 0; }

  .navbar {
    height: 84px;
    top: 60px;
    padding: 0 8px 0 16px;
  }
  .navbar.scrolled {
    top: 48px;
  }
  .nav-logo-full {
    height: 68px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 150px; left: 16px; right: 16px;
    background: white;
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(10,79,191,0.18);
    z-index: 999;
    border: 1.5px solid rgba(10,79,191,0.1);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open .nav-link { display: block; padding: 12px 16px; font-size: 1rem; }

  .desktop-text { display: none !important; }
  .mobile-text { display: inline !important; }
  .top-announcement-bar {
    height: auto;
    min-height: 38px;
    font-size: 0.72rem;
    gap: 6px;
    padding: 6px 12px;
    flex-wrap: wrap;
    line-height: 1.35;
  }
  .tab-btn-mini {
    font-size: 0.65rem;
    padding: 2px 8px;
    margin-left: 2px;
  }

  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .footer {
    padding: 0 12px 32px;
  }
  .footer-card-container {
    margin-top: -80px; /* Increased negative margin for mobile overlap */
    padding: 44px 24px 32px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(10, 79, 191, 0.04);
    position: relative;
    z-index: 10;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-logo-full {
    height: 95px;
    margin: 0 auto;
  }
  .footer-desc {
    max-width: 100%;
    text-align: center;
    font-size: 0.84rem;
  }
  .footer-gst-badge {
    align-self: center;
  }
  .footer-badges-row {
    justify-content: center;
  }
  .footer-social-row {
    justify-content: center;
  }
  .footer-links-col {
    text-align: center;
  }
  .footer-links-col h4 {
    text-align: center;
    margin-bottom: 12px;
  }
  .footer-links-col ul {
    align-items: center;
  }
  .footer-links-col ul li a {
    justify-content: center;
  }
  .office-item {
    justify-content: center;
  }
  .footer-bottom-divider {
    margin-bottom: 16px;
  }
  .footer-bottom-text {
    text-align: center;
    font-size: 0.76rem;
  }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .dash-cards-grid { grid-template-columns: 1fr; }
  .dash-modal-grid { grid-template-columns: 1fr; }
  .dash-modal-box { padding: 24px; }
}

@media (max-width: 580px) {
  .business-grid { grid-template-columns: 1fr 1fr; }
  .hero-heading { font-size: 2rem; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 14px; }
  .stat-divider { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons > * { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-cta-green, .btn-cta-outline { width: 100%; justify-content: center; }
  .trust-badges-row { flex-direction: column; align-items: center; }
  .trust-badge-card { min-width: unset; width: 100%; max-width: 360px; }
  .problems-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
  .pl-price-card { padding: 24px 20px; }
}

/* ===== EMBEDDED DASHBOARD ===== */
.embed-dash {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  min-height: 560px;
  background: white;
  margin-top: 40px;
}
.ed-sidebar {
  width: 190px;
  background: var(--blue);
  flex-shrink: 0;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ed-logo-row { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.18); }
.ed-nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.ed-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px; border-radius: 10px;
  color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); text-decoration: none; user-select: none;
}
.ed-link:hover { background: rgba(255,255,255,0.12); color: white; }
.ed-link.active { background: rgba(255,255,255,0.2); color: white; font-weight: 700; }
.ed-sidebar-footer { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 12px; }
.ed-user { display: flex; align-items: center; gap: 8px; }
.ed-av { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); color: white; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ed-uname { font-size: 0.78rem; font-weight: 700; color: white; }
.ed-ushop { font-size: 0.65rem; color: rgba(255,255,255,0.5); }

.ed-main { flex: 1; overflow: auto; background: var(--gray-50); }
.ed-panel { display: none; padding: 20px; }
.ed-panel.active { display: block; }

.ed-top-bar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.ed-top-bar h3 { font-size: 0.98rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.ed-top-bar p { font-size: 0.75rem; color: var(--gray-500); }
.ed-topbar-right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.ed-date-badge { font-size: 0.72rem; color: var(--gray-500); background: white; padding: 4px 10px; border-radius: 8px; border: 1px solid var(--gray-200); white-space: nowrap; }
.ed-live-dot { font-size: 0.72rem; font-weight: 600; color: var(--green); }

.ed-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.ed-stat-card { background: white; border-radius: 12px; padding: 12px; border: 1px solid var(--gray-200); display: flex; gap: 8px; align-items: flex-start; justify-content: space-between; }
.ed-stat-ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ed-stat-val { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.ed-stat-lbl { font-size: 0.65rem; color: var(--gray-500); margin-top: 2px; }
.ed-stat-badge { font-size: 0.65rem; font-weight: 700; padding: 2px 7px; border-radius: 50px; flex-shrink: 0; }
.ed-stat-badge.up { background: #D1FAE5; color: #065F46; }
.ed-stat-badge.new { background: #DBEAFE; color: #1E40AF; }

.ed-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ed-card { background: white; border-radius: 12px; padding: 14px; border: 1px solid var(--gray-200); }
.ed-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }
.ed-order-row { display: grid; grid-template-columns: 44px 1fr 1fr auto; gap: 6px; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.7rem; }
.ed-order-row:last-child { border-bottom: none; }
.eo-id { font-weight: 700; color: var(--blue); }
.eo-name { font-weight: 600; color: var(--gray-700); }
.eo-prod { color: var(--gray-500); }
.eo-status { padding: 2px 7px; border-radius: 50px; font-size: 0.62rem; font-weight: 700; text-align: center; white-space: nowrap; }
.eo-status.confirmed { background: #D1FAE5; color: #065F46; }
.eo-status.pending { background: #FEF3C7; color: #92400E; }
.eo-status.shipped { background: #DBEAFE; color: #1E40AF; }
.eo-status.out { background: #FEE2E2; color: #991B1B; }

.ed-wa-item { display: flex; gap: 8px; padding: 7px; background: var(--gray-50); border-radius: 8px; margin-bottom: 6px; }
.ed-wa-av { width: 30px; height: 30px; border-radius: 50%; color: white; font-weight: 700; font-size: 0.78rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ed-wa-name { font-size: 0.75rem; font-weight: 700; color: var(--gray-800); }
.ed-wa-msg { font-size: 0.68rem; color: var(--gray-600); margin: 2px 0; }
.ed-wa-time { font-size: 0.62rem; color: var(--gray-400); }

.ed-action-btn { padding: 6px 14px; background: var(--blue); color: white; border: none; border-radius: 8px; font-size: 0.78rem; font-weight: 700; cursor: pointer; font-family: var(--font-body); }
.ed-search-bar { display: flex; gap: 8px; margin-bottom: 12px; }
.ed-search { flex: 1; padding: 7px 12px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-size: 0.8rem; font-family: var(--font-body); outline: none; }
.ed-search:focus { border-color: var(--blue); }
.ed-filter { padding: 7px 10px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-size: 0.78rem; font-family: var(--font-body); outline: none; }
.ed-table { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-200); }
.ed-thead { display: grid; grid-template-columns: repeat(5,1fr); padding: 8px 12px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-size: 0.68rem; font-weight: 700; color: var(--gray-500); }
.ed-trow { display: grid; grid-template-columns: repeat(5,1fr); padding: 9px 12px; border-bottom: 1px solid var(--gray-100); font-size: 0.76rem; align-items: center; transition: var(--transition); }
.ed-trow:hover { background: var(--blue-pale); }
.ed-trow:last-child { border-bottom: none; }
.ed-tab-row { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.ed-tab { padding: 5px 12px; border-radius: 8px; font-size: 0.76rem; font-weight: 600; color: var(--gray-600); background: var(--gray-100); cursor: pointer; transition: var(--transition); }
.ed-tab.active, .ed-tab:hover { background: var(--blue); color: white; }
.ed-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ed-cat-card { background: white; border-radius: 12px; padding: 14px; border: 1px solid var(--gray-200); text-align: center; transition: var(--transition); }
.ed-cat-card:hover { border-color: var(--blue); }
.ed-cat-ico { font-size: 1.8rem; margin-bottom: 6px; }
.ed-cat-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.ed-cat-card p { font-size: 0.7rem; color: var(--gray-500); margin-bottom: 6px; }
.ed-inv-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.ed-inv-card { background: white; border-radius: 12px; padding: 12px; text-align: center; border: 1px solid var(--gray-200); font-size: 0.72rem; color: var(--gray-600); }
.ed-inv-card.ok { border-color: var(--green); background: #F0FDF4; }
.ed-inv-card.warn { border-color: var(--orange); background: #FFF7ED; }
.ed-inv-card.danger { border-color: var(--danger); background: #FEF2F2; }
.ed-inv-num { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); margin-bottom: 3px; }
.ed-enq-list { display: flex; flex-direction: column; gap: 8px; }
.ed-enq-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: white; border-radius: 12px; border: 1.5px solid var(--gray-200); }
.ed-enq-item.unread { border-color: var(--blue); background: var(--blue-pale); }
.ed-enq-body { flex: 1; }
.ed-enq-head { display: flex; justify-content: space-between; margin-bottom: 3px; }
.ed-enq-badge { flex-shrink: 0; padding: 2px 8px; border-radius: 50px; font-size: 0.63rem; font-weight: 700; background: #D1FAE5; color: #065F46; }
.ed-enq-badge.web { background: #DBEAFE; color: #1E40AF; }
.ed-chart-box { background: white; border-radius: 12px; padding: 14px; border: 1px solid var(--gray-200); margin-top: 12px; }
.ed-chart-box h4 { font-size: 0.82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
.ed-bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 90px; }
.ed-bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.ed-bar-fill { width: 100%; background: linear-gradient(to top, var(--blue), var(--blue-light)); border-radius: 4px 4px 0 0; min-height: 5px; transition: var(--transition); }
.ed-bar-item:hover .ed-bar-fill { background: linear-gradient(to top, var(--green), var(--green-light)); }
.ed-bar-item span { font-size: 0.6rem; color: var(--gray-500); font-weight: 600; }

/* Footer Brand Inner Cleaned */

/* Top Announcement Bar Moved */

/* Headline Rotator Animation */
#headline-rotator {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}
#headline-rotator.fade-out-up {
  opacity: 0;
  transform: translateY(-12px);
}
#headline-rotator.fade-in-down {
  opacity: 0;
  transform: translateY(12px);
}

/* ===== SEO LOCAL HUBS ===== */
.seo-hubs-section {
  background: linear-gradient(185deg, var(--white) 0%, var(--gray-50) 100%);
  border-top: 1px solid var(--gray-200);
}
.hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.hub-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10,79,191,0.08);
  border-color: rgba(10,79,191,0.15);
}
.hub-city-tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hub-card h3 {
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.hub-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.hub-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hub-link:hover {
  color: var(--green);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hubs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hub-card {
    padding: 24px;
  }
}

/* ===== SOLUTIONS DROPDOWN MENU ===== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-trigger::after {
  content: "▼";
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.nav-dropdown:hover .dropdown-trigger::after {
  transform: rotate(180deg);
}
.dropdown-content {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 260px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 79, 191, 0.12);
  border: 1px solid var(--gray-200);
  padding: 10px;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--gray-800) !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--blue-pale);
  color: var(--blue) !important;
}
.dropdown-item-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    text-align: left;
  }
  .dropdown-trigger {
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
  }
  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    min-width: 100%;
    background: var(--gray-50);
    border-radius: 12px;
  }
  .nav-dropdown:hover .dropdown-content {
    max-height: 450px;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 6px 0;
  }
  .dropdown-item {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
