/* ===== NAREVEK WEBSITE STYLES ===== */

:root {
  --primary: #1A2E6B;
  --primary-dark: #101D4A;
  --accent: #F97316;
  --accent-dark: #EA6C0A;
  --gradient: linear-gradient(135deg, #1A2E6B 0%, #0D9488 100%);
  --gradient-hover: linear-gradient(135deg, #101D4A 0%, #0B7A70 100%);
  --bg-light: #F0F2F8;
  --bg-white: #ffffff;
  --text-dark: #0D1B3E;
  --text-body: #444444;
  --text-muted: #777777;
  --border: #e2e6f0;
  --shadow-sm: 0 2px 8px rgba(26, 46, 107, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 46, 107, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 46, 107, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-body); }

.section-tag {
  display: inline-block;
  background: rgba(26, 46, 107, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 46, 107, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo i { font-size: 1.6rem; -webkit-text-fill-color: unset; color: var(--primary); }

.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img img {
  height: 100px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.footer-brand-mark { margin-bottom: 18px; }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 7px;
}
.footer-logo-img {
  height: 78px;
  width: auto;
  flex-shrink: 0;
}
.footer-brand-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.footer-brand-tag {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 9px 22px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--gradient);
  padding: 184px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 440px;
}
.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.hero-card:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-card i {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.hero-card span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.3;
}

/* ===== PRODUCTS SECTION ===== */
.products { background: var(--bg-light); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card:hover::before { transform: scaleX(1); }

.product-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; z-index: 1;
}

.product-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.product-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
}
.status-live { color: #0B7A70; }
.status-live::before { content: ''; display: inline-block; width: 7px; height: 7px; background: #0D9488; border-radius: 50%; }
.status-soon { color: var(--primary); }
.status-soon::before { content: ''; display: inline-block; width: 7px; height: 7px; background: var(--primary); border-radius: 50%; }

/* ===== WHY NAREVEK ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  margin: 0 auto 20px;
}
.why-card h3 { font-size: 1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  -webkit-text-fill-color: #fff;
  background: none;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.9rem; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s;
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; font-weight: 600; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
footer ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--gradient);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ===== PRICING PAGE ===== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pricing-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--bg-white);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-body);
}
.pricing-tab.active, .pricing-tab:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s;
}
.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card:hover:not(.featured) { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-tier { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; color: var(--primary); letter-spacing: 0.06em; margin-bottom: 8px; }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.pricing-price { margin: 20px 0; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--text-dark); }
.price-period { font-size: 0.9rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; padding: 6px 0;
  color: var(--text-body);
}
.pricing-features li i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-muted); text-decoration: line-through; }
.pricing-features li.disabled i { color: var(--border); }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
}
.contact-info-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.82rem; opacity: 0.7; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item span { font-size: 0.95rem; }

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success i { font-size: 3rem; color: #16a34a; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ===== PRIVACY PAGE ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.privacy-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--primary);
}
.privacy-content p, .privacy-content li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 12px;
}
.privacy-content ul { padding-left: 20px; list-style: disc; }
.privacy-content ul li { margin-bottom: 6px; }
.privacy-content strong { color: var(--text-dark); }
.privacy-last-updated {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 112px; left: 0; right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 132px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-people { display: none; }
  .hero h1 { white-space: normal; font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .nav-logo-img img { height: 72px; }
  .page-hero { padding: 100px 0 48px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.reveal-fade.visible { opacity: 1; }

/* stagger siblings inside grid containers */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(28px, -22px) scale(1.06); }
  66%  { transform: translate(-16px, 24px) scale(0.94); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(48px, 32px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(13, 148, 136, 0); }
}
@keyframes spinIn {
  from { transform: rotate(-45deg) scale(0.5); opacity: 0; }
  to   { transform: rotate(0deg) scale(1);   opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ===== HERO: ANIMATED GRADIENT BACKGROUND ===== */
.hero {
  background: linear-gradient(-45deg, #1A2E6B, #0D9488, #0F766E, #F97316, #1A2E6B);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  position: relative;
}
.hero .container { position: relative; z-index: 1; }

/* ===== HERO ORBS ===== */
.hero-orbs {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(72px); pointer-events: none;
}
.hero-orb.orb-1 {
  width: 480px; height: 480px;
  background: rgba(249, 115, 22, 0.2);
  top: -130px; right: 6%;
  animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb.orb-2 {
  width: 360px; height: 360px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -90px; left: -40px;
  animation: floatOrb 13s ease-in-out infinite reverse;
}
.hero-orb.orb-3 {
  width: 240px; height: 240px;
  background: rgba(13, 148, 136, 0.15);
  top: 42%; left: 28%;
  animation: floatOrb 7.5s ease-in-out infinite;
  animation-delay: -3s;
}
.hero-orb.orb-4 {
  width: 160px; height: 160px;
  background: rgba(255, 255, 255, 0.07);
  top: 10%; left: 16%;
  animation: floatOrb 11s ease-in-out infinite;
  animation-delay: -6s;
}

/* ===== HERO PEOPLE BACKGROUND ===== */
.hero-people {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0;
  animation: hpFadeIn 2s ease 1.2s forwards;
}
@keyframes hpFadeIn { to { opacity: 1; } }

.hp-f1 { animation: hpFloat1 4.8s ease-in-out infinite; }
.hp-f2 { animation: hpFloat2 5.6s ease-in-out infinite; animation-delay: -2.1s; }
.hp-f3 { animation: hpFloat3 6.4s ease-in-out infinite; animation-delay: -1.3s; }
.hp-f4 { animation: hpFloat4 7.2s ease-in-out infinite; animation-delay: -3.5s; }
.hp-f5 { animation: hpFloat5 5.1s ease-in-out infinite; animation-delay: -1.8s; }
.hp-f6 { animation: hpFloat6 4.6s ease-in-out infinite; animation-delay: -0.7s; }

@keyframes hpFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes hpFloat2 { 0%,100%{transform:translateY(0) rotate(.5deg)} 50%{transform:translateY(-8px) rotate(-.5deg)} }
@keyframes hpFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes hpFloat4 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-14px) rotate(1deg)} }
@keyframes hpFloat5 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-7px) translateX(5px)} }
@keyframes hpFloat6 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* ===== HERO CARD FLOAT ANIMATIONS ===== */
.hero-card:nth-child(1) { animation: floatCard 3.0s ease-in-out infinite; }
.hero-card:nth-child(2) { animation: floatCard 3.5s ease-in-out infinite; animation-delay: -0.6s; }
.hero-card:nth-child(3) { animation: floatCard 2.8s ease-in-out infinite; animation-delay: -1.2s; }
.hero-card:nth-child(4) { animation: floatCard 3.7s ease-in-out infinite; animation-delay: -0.4s; }
.hero-card:nth-child(5) { animation: floatCard 3.2s ease-in-out infinite; animation-delay: -2.0s; }
.hero-card:nth-child(6) { animation: floatCard 2.6s ease-in-out infinite; animation-delay: -0.8s; }
.hero-card:nth-child(7) { animation: floatCard 3.8s ease-in-out infinite; animation-delay: -1.5s; }
.hero-card:nth-child(8) { animation: floatCard 3.1s ease-in-out infinite; animation-delay: -2.4s; }
.hero-card:nth-child(9) { animation: floatCard 2.9s ease-in-out infinite; animation-delay: -0.3s; }
.hero-card:nth-child(10) { animation: floatCard 3.3s ease-in-out infinite; animation-delay: -1.8s; }

/* ===== PRODUCTS SECTION: BACKGROUND WITH DOTS + BLOBS ===== */
.products { position: relative; overflow: hidden; }
.products .container { position: relative; z-index: 2; }
.products-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(26, 46, 107, 0.12) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}
.products-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 1;
}
.products-blob.blob-1 {
  width: 600px; height: 600px;
  background: rgba(26, 46, 107, 0.07);
  top: -160px; right: -120px;
  animation: blobFloat 18s ease-in-out infinite;
}
.products-blob.blob-2 {
  width: 450px; height: 450px;
  background: rgba(13, 148, 136, 0.07);
  bottom: -120px; left: -100px;
  animation: blobFloat 24s ease-in-out infinite reverse;
}

/* ===== PRODUCT CARD: GRADIENT BANNER ===== */
.product-card::before { display: none; }
.product-card:hover::before { display: none; }

.product-card {
  padding-top: 0;
}
.product-banner {
  margin: 0 -28px 20px;
  padding: 18px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 50% 50% / var(--radius-lg) var(--radius-lg) 28px 28px;
  min-height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Per-card gradient banners */
.products-grid .product-card:nth-child(1) .product-banner { background: linear-gradient(135deg, #0D9488 0%, #F97316 100%); }
.products-grid .product-card:nth-child(2) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #3B82F6 100%); }
.products-grid .product-card:nth-child(3) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #F97316 100%); }
.products-grid .product-card:nth-child(4) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #7C3AED 100%); }
.products-grid .product-card:nth-child(5) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #F59E0B 100%); }
.products-grid .product-card:nth-child(6) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #0891B2 100%); }
.products-grid .product-card:nth-child(7) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #D97706 100%); }
.products-grid .product-card:nth-child(8) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #0D9488 100%); }
.products-grid .product-card:nth-child(9)  .product-banner { background: linear-gradient(135deg, #F97316 0%, #1A2E6B 100%); }
.products-grid .product-card:nth-child(10) .product-banner { background: linear-gradient(135deg, #1A2E6B 0%, #F59E0B 100%); }

.product-card:hover .product-icon {
  transform: scale(1.18) rotate(-8deg);
}

/* Per-card hover glow */
.products-grid .product-card:nth-child(1):hover { box-shadow: 0 18px 50px rgba(249,115,22,0.25); border-color: transparent; }
.products-grid .product-card:nth-child(2):hover { box-shadow: 0 18px 50px rgba(59,130,246,0.22); border-color: transparent; }
.products-grid .product-card:nth-child(3):hover { box-shadow: 0 18px 50px rgba(249,115,22,0.22); border-color: transparent; }
.products-grid .product-card:nth-child(4):hover { box-shadow: 0 18px 50px rgba(124,58,237,0.22); border-color: transparent; }
.products-grid .product-card:nth-child(5):hover { box-shadow: 0 18px 50px rgba(245,158,11,0.25); border-color: transparent; }
.products-grid .product-card:nth-child(6):hover { box-shadow: 0 18px 50px rgba(8,145,178,0.22); border-color: transparent; }
.products-grid .product-card:nth-child(7):hover { box-shadow: 0 18px 50px rgba(217,119,6,0.22); border-color: transparent; }
.products-grid .product-card:nth-child(8):hover { box-shadow: 0 18px 50px rgba(13,148,136,0.25); border-color: transparent; }
.products-grid .product-card:nth-child(9):hover  { box-shadow: 0 18px 50px rgba(249,115,22,0.25);  border-color: transparent; }
.products-grid .product-card:nth-child(10):hover { box-shadow: 0 18px 50px rgba(245,158,11,0.28);  border-color: transparent; }

/* ===== STATUS LIVE PULSE ===== */
.status-live::before { animation: livePulse 2s ease-in-out infinite; }

/* ===== WHY NAREVEK: ICON SPIN-IN ON SCROLL ===== */
.why-card.visible .why-icon {
  animation: spinIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.25s;
}

/* ===== IMPROVED SCROLL REVEAL (scale + translateY) ===== */
.reveal {
  transform: translateY(28px) scale(0.96);
}
.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ===== CTA BANNER: ANIMATED GRADIENT ===== */
.cta-banner {
  background: linear-gradient(-45deg, #1A2E6B, #0D9488, #F97316, #1A2E6B);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
}

/* ===== PAGE HERO: ANIMATED GRADIENT ===== */
.page-hero {
  background: linear-gradient(-45deg, #1A2E6B, #0D9488, #F97316, #1A2E6B);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

/* ===== PRICING PRODUCT ICON (update inline style override) ===== */
.product-pricing-icon {
  background: linear-gradient(135deg, rgba(26,46,107,0.1), rgba(13,148,136,0.1));
  color: var(--primary);
}

/* ============================================================
   PREMIUM VISUAL UPGRADE
   ============================================================ */

/* --- Navbar: glass with enough opacity for mix-blend-mode to work on logo --- */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(26, 46, 107, 0.07);
  transition: background 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 32px rgba(26, 46, 107, 0.1);
  border-bottom-color: transparent;
}

/* --- Hero: mesh grid overlay via hero-orbs --- */
.hero-orbs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* --- Hero: orbs tuned for teal/orange gradient bg --- */
.hero-orb.orb-1 {
  width: 580px; height: 580px;
  background: rgba(249, 115, 22, 0.22);
  filter: blur(72px);
  top: -130px; right: 6%;
}
.hero-orb.orb-2 {
  width: 380px; height: 380px;
  background: rgba(255, 255, 255, 0.07);
  filter: blur(90px);
  bottom: -90px; left: -40px;
}
.hero-orb.orb-3 {
  width: 280px; height: 280px;
  background: rgba(13, 148, 136, 0.18);
  filter: blur(60px);
  top: 42%; left: 28%;
}
.hero-orb.orb-4 {
  width: 180px; height: 180px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(50px);
  top: 10%; left: 16%;
}

/* --- Hero letter animation --- */
.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) rotate(-2deg);
  animation: heroLetterIn 0.4s cubic-bezier(0.2, 0.85, 0.4, 1) forwards;
  vertical-align: bottom;
  line-height: 1.25;
}
@keyframes heroLetterIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
/* Gradient letters inside the gradient span */
.gradient-text-hero .hero-letter {
  background: linear-gradient(135deg, #ffffff 10%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero paragraph animation --- */
.hero-p-animate {
  opacity: 0;
  transform: translateY(16px);
  animation: heroPFadeIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}
@keyframes heroPFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero heading gradient word --- */
.gradient-text-hero {
  background: linear-gradient(135deg, #ffffff 10%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero badge: pulsing teal dot --- */
.hero-badge {
  background: rgba(13,148,136,0.18);
  border: 1px solid rgba(13,148,136,0.38);
}
.badge-pulse {
  width: 8px; height: 8px;
  background: #0D9488;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 1.6s ease-in-out infinite;
}

/* --- Hero stat glass pills --- */
.hero-stats {
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 14px 22px;
  transition: background 0.25s, transform 0.25s;
}
.hero-stat:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* --- Hero card icons: gradient glow --- */
.hero-card i {
  background: linear-gradient(135deg, #fff 10%, #fdba74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.55rem;
}
.hero-card:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.38);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(249,115,22,0.2);
}

/* --- Hero h1: sized to fit single line --- */
.hero h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* --- Products section: white bg, centered radial glow --- */
.products {
  background: #ffffff;
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26,46,107,0.04) 0%, transparent 70%);
}
.products-dots {
  background-image: radial-gradient(circle, rgba(26,46,107,0.07) 1.5px, transparent 1.5px);
}
.products-blob.blob-1 {
  background: rgba(26,46,107,0.05);
}
.products-blob.blob-2 {
  background: rgba(13,148,136,0.05);
}

/* --- Product card: refined border + hover --- */
.product-card {
  border: 1px solid rgba(26,46,107,0.07);
  box-shadow: 0 2px 16px rgba(26,46,107,0.05);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
}

/* --- Featured product card (School ERP) --- */
.product-card--featured {
  border: 2px solid rgba(26,46,107,0.25) !important;
  box-shadow: 0 4px 28px rgba(26,46,107,0.15) !important;
  position: relative;
}
.product-card--featured::after {
  content: '⭐ Featured';
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #1A2E6B, #0D9488);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 10;
}
.product-card--featured:hover {
  border-color: rgba(13,148,136,0.4) !important;
  box-shadow: 0 18px 50px rgba(26,46,107,0.22), 0 0 0 3px rgba(13,148,136,0.12) !important;
}

/* --- Section heading underline accent --- */
.section-title {
  position: relative;
}
.text-center .section-title::after {
  content: '';
  display: block;
  width: 56px; height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* --- WHY section: deep dark + glass cards + gradient flip --- */
.why {
  background: linear-gradient(160deg, #060e20 0%, #0D1B3E 55%, #091a0e 100%);
  position: relative;
  overflow: hidden;
}
.why .container { position: relative; z-index: 2; }
.why-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.why-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,148,136,0.09) 0%, transparent 65%);
  filter: blur(90px);
  top: -200px; right: -150px;
  animation: floatOrb 18s ease-in-out infinite;
}
.why-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,46,107,0.5) 0%, transparent 65%);
  filter: blur(80px);
  bottom: -200px; left: -120px;
  animation: floatOrb 24s ease-in-out infinite reverse;
}
.why .section-tag {
  background: rgba(13,148,136,0.18);
  color: #2dd4bf;
  border: 1px solid rgba(13,148,136,0.28);
}
.why h2.section-title { color: #ffffff; }
.why p.section-sub { color: rgba(255,255,255,0.52); }
.why h2.section-title::after { margin: 14px auto 0; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.why-card h3 { color: rgba(255,255,255,0.88); }
.why-card p  { color: rgba(255,255,255,0.52); }
.why-card:hover {
  background: linear-gradient(135deg, #1A2E6B 0%, #0D9488 100%);
  border-color: transparent;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(13,148,136,0.28);
}
.why-card:hover h3 { color: #fff; }
.why-card:hover p  { color: rgba(255,255,255,0.82); }
.why-card:hover .why-icon {
  background: rgba(255,255,255,0.2);
}

/* --- CTA: animated rings --- */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: ctaBannerRing 5s ease-in-out infinite;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 750px; height: 750px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: ctaBannerRing 5s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes ctaBannerRing {
  0%, 100% { transform: translate(-50%,-50%) scale(0.92); opacity: 0.5; }
  50%       { transform: translate(-50%,-50%) scale(1.06); opacity: 1;   }
}

/* --- Button shimmer on hover --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.26) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: none;
}
.btn-primary:hover::before {
  animation: btnShimmer 0.55s ease forwards;
}
@keyframes btnShimmer {
  from { left: -130%; }
  to   { left: 130%;  }
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(26,46,107,0.4), 0 0 0 3px rgba(13,148,136,0.18);
}

/* --- Footer: subtle dot pattern --- */
footer {
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: var(--text-dark);
}

/* ===== CRM PIPELINE ANIMATION ===== */
.crm-anim-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  pointer-events: none;
}
.crm-pipeline {
  display: flex;
  align-items: center;
  width: 100%;
}
.crm-node {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  animation: crmNodePulse 2.4s ease-in-out infinite;
}
.crm-node.n2 { animation-delay: 0.8s; }
.crm-node.n3 { animation-delay: 1.6s; }
.crm-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.22);
  position: relative;
  overflow: hidden;
  margin: 0 6px;
}
.crm-dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  top: 50%; transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: crmDotFlow 2.4s ease-in-out infinite;
}
.crm-dot.d2 { animation-delay: 1.2s; }
@keyframes crmNodePulse {
  0%, 100% { transform: scale(1); background: rgba(255,255,255,0.18); }
  50%       { transform: scale(1.18); background: rgba(255,255,255,0.35); }
}
@keyframes crmDotFlow {
  0%   { left: -9px; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ===== POS SCAN ANIMATION ===== */
.pos-anim-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 24px;
  pointer-events: none;
}
.pos-item-icon {
  font-size: 22px;
  color: rgba(255,255,255,0.75);
  animation: posItemSlide 3s ease-in-out infinite;
}
.pos-scan-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px; width: 38px;
  overflow: hidden;
}
.pos-scan-wrap i {
  font-size: 24px;
  color: rgba(255,255,255,0.75);
}
.pos-scan-line {
  position: absolute;
  left: -4px; right: -4px;
  height: 2px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.4);
  top: 0;
  animation: posScanLine 0.9s ease-in-out infinite;
}
.pos-receipt-icon {
  font-size: 22px;
  color: rgba(255,255,255,0.65);
  animation: posReceiptGrow 3s ease-in-out infinite;
}
@keyframes posItemSlide {
  0%, 100% { transform: translateX(-10px); opacity: 0.3; }
  35%, 75%  { transform: translateX(0);    opacity: 0.85; }
}
@keyframes posScanLine {
  0%   { top: 0; }
  50%  { top: 100%; }
  100% { top: 0; }
}
@keyframes posReceiptGrow {
  0%, 35%   { transform: translateY(8px); opacity: 0.15; }
  65%, 100% { transform: translateY(0);   opacity: 0.75; }
}

/* ===== VISITOR MANAGEMENT WALK ANIMATION ===== */
.vm-anim-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.vm-walker {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 26px;
  color: rgba(255,255,255,0.92);
  animation: vmWalkAcross 3.6s ease-in-out infinite;
}
.vm-desk-icon {
  position: absolute;
  right: 38%; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255,255,255,0.4);
}
.vm-building {
  position: absolute;
  right: 10%; top: 50%;
  transform: translateY(-65%);
  font-size: 34px;
  color: rgba(255,255,255,0.3);
}
.vm-badge {
  position: absolute;
  right: 35%; top: 12%;
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  animation: vmBadgePop 3.6s ease-in-out infinite;
}
.vm-ground {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
@keyframes vmWalkAcross {
  0%         { left: 4%;  opacity: 0; }
  8%         { opacity: 1; }
  62%        { left: 48%; opacity: 1; }
  72%, 100%  { left: 50%; opacity: 0; }
}
@keyframes vmBadgePop {
  0%, 58%    { opacity: 0; transform: scale(0.4); }
  72%        { opacity: 1; transform: scale(1.25); }
  82%, 100%  { opacity: 1; transform: scale(1); }
}

/* ===== INVENTORY ANIMATION ===== */
.inv-anim-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: space-around;
  padding: 0 20px; pointer-events: none;
}
.inv-bars {
  display: flex; align-items: flex-end;
  gap: 5px; height: 52px;
}
.inv-bar {
  width: 8px; border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.72);
}
.inv-bar.b1 { animation: invBarGrow 3.2s ease-in-out infinite 0s; }
.inv-bar.b2 { animation: invBarGrow 3.2s ease-in-out infinite 0.4s; }
.inv-bar.b3 { animation: invBarGrow 3.2s ease-in-out infinite 0.8s; }
.inv-bar.b4 { animation: invBarGrow 3.2s ease-in-out infinite 1.2s; }
@keyframes invBarGrow {
  0%, 100% { height: 20%; opacity: 0.45; }
  25%      { height: 85%; opacity: 0.9; }
  55%      { height: 50%; opacity: 0.75; }
  80%      { height: 95%; opacity: 1; }
}
.inv-stack {
  font-size: 22px; color: rgba(255,255,255,0.72);
  animation: invStackPulse 3.2s ease-in-out infinite;
}
.inv-trend {
  font-size: 20px; color: rgba(255,255,255,0.85);
  animation: invTrendFloat 3.2s ease-in-out infinite 0.5s;
}
@keyframes invStackPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.14); opacity: 0.9; }
}
@keyframes invTrendFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.65; }
  50%      { transform: translateY(-5px) rotate(8deg); opacity: 1; }
}

/* ===== LIBRARY ANIMATION ===== */
.lib-anim-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: space-around;
  padding: 0 24px; pointer-events: none;
}
.lib-book {
  font-size: 28px; color: rgba(255,255,255,0.85);
  animation: libBookPulse 3s ease-in-out infinite;
}
.lib-bookmark {
  font-size: 20px; color: rgba(255,255,255,0.8);
  animation: libBookmarkSlide 3s ease-in-out infinite 0.4s;
}
.lib-card {
  font-size: 20px; color: rgba(255,255,255,0.7);
  animation: libCardAppear 3s ease-in-out infinite 0.9s;
}
@keyframes libBookPulse {
  0%, 100% { transform: scale(1) rotate(-4deg); opacity: 0.7; }
  50%      { transform: scale(1.18) rotate(0deg); opacity: 1; }
}
@keyframes libBookmarkSlide {
  0%, 20%  { transform: translateY(-14px); opacity: 0; }
  40%, 80% { transform: translateY(0); opacity: 0.9; }
  95%, 100% { transform: translateY(8px); opacity: 0; }
}
@keyframes libCardAppear {
  0%, 25%  { transform: translateX(14px); opacity: 0; }
  45%, 80% { transform: translateX(0); opacity: 0.85; }
  95%, 100% { transform: translateX(-6px); opacity: 0; }
}

/* ===== HRMS ANIMATION ===== */
.hrms-anim-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: space-around;
  padding: 0 20px; pointer-events: none;
}
.hrms-mgr {
  font-size: 24px; color: rgba(255,255,255,0.9);
  animation: hrmsMgrPulse 2.8s ease-in-out infinite;
}
.hrms-team {
  display: flex; flex-direction: column; gap: 8px;
}
.hrms-emp {
  font-size: 18px; color: rgba(255,255,255,0.75);
  opacity: 0;
}
.hrms-emp.e1 { animation: hrmsEmpAppear 2.8s ease-in-out infinite 0.55s; }
.hrms-emp.e2 { animation: hrmsEmpAppear 2.8s ease-in-out infinite 1.05s; }
.hrms-rupee {
  font-size: 22px; color: rgba(255,255,255,0.88);
  opacity: 0;
  animation: hrmsRupeePop 2.8s ease-in-out infinite 1.55s;
}
@keyframes hrmsMgrPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.1); opacity: 1; }
}
@keyframes hrmsEmpAppear {
  0%, 15%  { opacity: 0; transform: translateX(-8px); }
  35%, 80% { opacity: 0.85; transform: translateX(0); }
  95%, 100% { opacity: 0; }
}
@keyframes hrmsRupeePop {
  0%, 45%  { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  65%      { opacity: 1; transform: scale(1.2) rotate(5deg); }
  80%, 100% { opacity: 0.9; transform: scale(1) rotate(0deg); }
}

/* ===== MANUFACTURING ANIMATION ===== */
.mfg-anim-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: space-around;
  padding: 0 16px; pointer-events: none;
}
.mfg-gear-big {
  font-size: 34px; color: rgba(255,255,255,0.72);
  animation: mfgGearSpin 5s linear infinite;
}
.mfg-gear-small {
  font-size: 20px; color: rgba(255,255,255,0.6);
  margin-top: 14px;
  animation: mfgGearSpin 3.3s linear infinite reverse;
}
.mfg-belt {
  display: flex; flex-direction: column; gap: 10px;
}
.mfg-item {
  font-size: 16px; color: rgba(255,255,255,0.82);
  opacity: 0;
}
.mfg-item.i1 { animation: mfgItemMove 3s ease-in-out infinite 0s; }
.mfg-item.i2 { animation: mfgItemMove 3s ease-in-out infinite 1.5s; }
@keyframes mfgGearSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes mfgItemMove {
  0%        { transform: translateX(-18px); opacity: 0; }
  18%       { opacity: 0.9; transform: translateX(0); }
  72%       { opacity: 0.9; transform: translateX(10px); }
  88%, 100% { opacity: 0; transform: translateX(18px); }
}

/* ===== ATTENDANCE ANIMATION ===== */
.att-anim-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: space-around;
  padding: 0 20px; pointer-events: none;
}
.att-clock-wrap {
  position: relative;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.att-clock-icon {
  font-size: 34px; color: rgba(255,255,255,0.78);
}
.att-hand {
  position: absolute;
  width: 2px; height: 10px;
  background: rgba(255,255,255,0.95);
  bottom: 50%; left: 50%;
  margin-left: -1px;
  transform-origin: bottom center;
  border-radius: 1px;
  animation: attHandSpin 2s linear infinite;
}
.att-fp {
  font-size: 28px; color: rgba(255,255,255,0.75);
  animation: attFpGlow 2.5s ease-in-out infinite;
}
.att-check {
  font-size: 24px; color: rgba(255,255,255,0.92);
  animation: attCheckPop 2.5s ease-in-out infinite 1.1s;
}
@keyframes attHandSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes attFpGlow {
  0%, 100% { opacity: 0.45; filter: drop-shadow(0 0 0 transparent); }
  50%      { opacity: 1; filter: drop-shadow(0 0 7px rgba(255,255,255,0.65)); }
}
@keyframes attCheckPop {
  0%, 40%  { opacity: 0; transform: scale(0.3); }
  58%      { opacity: 1; transform: scale(1.28); }
  72%, 100% { opacity: 1; transform: scale(1); }
}

/* ===== ESTORE ANIMATION ===== */
.estore-anim-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: space-around;
  padding: 0 20px; pointer-events: none;
}
.estore-tag {
  font-size: 22px; color: rgba(255,255,255,0.75);
  animation: estoreTagIn 3s ease-in-out infinite;
}
.estore-cart {
  font-size: 26px; color: rgba(255,255,255,0.88);
  animation: estoreCartBounce 3s ease-in-out infinite 0.9s;
}
.estore-truck {
  font-size: 22px; color: rgba(255,255,255,0.72);
  animation: estoreTruckRoll 3s ease-in-out infinite 1.7s;
}
@keyframes estoreTagIn {
  0%, 100% { transform: translateX(-8px); opacity: 0.35; }
  35%, 70% { transform: translateX(0); opacity: 0.88; }
}
@keyframes estoreCartBounce {
  0%, 25%  { transform: scale(1) translateY(0); }
  42%      { transform: scale(1.22) translateY(-5px); }
  58%, 100% { transform: scale(1) translateY(0); }
}
@keyframes estoreTruckRoll {
  0%, 45%  { transform: translateX(-12px); opacity: 0; }
  65%, 88% { transform: translateX(0); opacity: 0.88; }
  100%     { transform: translateX(8px); opacity: 0; }
}

/* ===== SCHOOL MANAGEMENT ANIMATION ===== */
.school-anim-scene {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.school-student {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 24px; color: rgba(255,255,255,0.92);
  animation: schoolWalk 3.8s ease-in-out infinite;
}
.school-building {
  position: absolute;
  right: 12%; top: 50%;
  transform: translateY(-65%);
  font-size: 32px; color: rgba(255,255,255,0.35);
}
.school-cap {
  position: absolute;
  right: 34%; top: 10%;
  font-size: 22px; color: rgba(255,255,255,0.95);
  animation: schoolCapDrop 3.8s ease-in-out infinite;
}
.school-star {
  position: absolute;
  right: 26%; top: 8%;
  font-size: 16px; color: rgba(255,255,255,0.9);
  animation: schoolStarPop 3.8s ease-in-out infinite;
}
.school-ground {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.18);
}
@keyframes schoolWalk {
  0%        { left: 4%;  opacity: 0; }
  8%        { opacity: 1; }
  65%       { left: 50%; opacity: 1; }
  76%, 100% { left: 52%; opacity: 0; }
}
@keyframes schoolCapDrop {
  0%, 55%   { top: -20%; opacity: 0; transform: rotate(-15deg) scale(0.8); }
  72%       { top: 10%;  opacity: 1; transform: rotate(5deg) scale(1.15); }
  82%, 100% { top: 10%;  opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes schoolStarPop {
  0%, 70%   { opacity: 0; transform: scale(0.3) rotate(-20deg); }
  85%       { opacity: 1; transform: scale(1.3) rotate(10deg); }
  92%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ===== FONT AWESOME SUBSET (self-hosted) =====
   Generated 2026-07-05 from FA Free 6.5.0 - contains ONLY the icons used on this site.
   To add a NEW icon: add its name+codepoint below AND rebuild the subset fonts,
   or temporarily re-add the CDN <link> in the HTML. */
@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:swap;src:url(../assets/webfonts/fa-solid-900-subset.woff2) format("woff2")}
@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:swap;src:url(../assets/webfonts/fa-regular-400-subset.woff2) format("woff2")}
@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:swap;src:url(../assets/webfonts/fa-brands-400-subset.woff2) format("woff2")}
.fa-solid,.fa-regular,.fa-brands{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}
.fa-solid{font-family:"Font Awesome 6 Free";font-weight:900}
.fa-regular{font-family:"Font Awesome 6 Free";font-weight:400}
.fa-brands{font-family:"Font Awesome 6 Brands";font-weight:400}
.fa-arrow-left:before{content:"\f060"}
.fa-arrow-right:before{content:"\f061"}
.fa-arrow-trend-up:before{content:"\e098"}
.fa-bag-shopping:before{content:"\f290"}
.fa-barcode:before{content:"\f02a"}
.fa-bell:before{content:"\f0f3"}
.fa-book:before{content:"\f02d"}
.fa-book-open:before{content:"\f518"}
.fa-bookmark:before{content:"\f02e"}
.fa-border-all:before{content:"\f84c"}
.fa-box:before{content:"\f466"}
.fa-boxes-stacked:before{content:"\f468"}
.fa-briefcase:before{content:"\f0b1"}
.fa-building:before{content:"\f1ad"}
.fa-building-user:before{content:"\e4da"}
.fa-calculator:before{content:"\f1ec"}
.fa-calendar-check:before{content:"\f274"}
.fa-calendar-day:before{content:"\f783"}
.fa-cart-shopping:before{content:"\f07a"}
.fa-cash-register:before{content:"\f788"}
.fa-chalkboard-user:before{content:"\f51c"}
.fa-chart-bar:before{content:"\f080"}
.fa-check:before{content:"\f00c"}
.fa-chevron-down:before{content:"\f078"}
.fa-circle-check:before{content:"\f058"}
.fa-clock:before{content:"\f017"}
.fa-credit-card:before{content:"\f09d"}
.fa-crown:before{content:"\f521"}
.fa-cube:before{content:"\f1b2"}
.fa-desktop:before{content:"\f390"}
.fa-envelope:before{content:"\f0e0"}
.fa-eye:before{content:"\f06e"}
.fa-file-invoice:before{content:"\f570"}
.fa-fingerprint:before{content:"\f577"}
.fa-gear:before{content:"\f013"}
.fa-gears:before{content:"\f085"}
.fa-globe:before{content:"\f0ac"}
.fa-google-play:before{content:"\f3ab"}
.fa-graduation-cap:before{content:"\f19d"}
.fa-handshake:before{content:"\f2b5"}
.fa-headset:before{content:"\f590"}
.fa-id-badge:before{content:"\f2c1"}
.fa-id-card:before{content:"\f2c2"}
.fa-indian-rupee-sign:before{content:"\e1bc"}
.fa-industry:before{content:"\f275"}
.fa-instagram:before{content:"\f16d"}
.fa-linkedin-in:before{content:"\f0e1"}
.fa-location-dot:before{content:"\f3c5"}
.fa-mobile-screen:before{content:"\f3cf"}
.fa-paper-plane:before{content:"\f1d8"}
.fa-pen-to-square:before{content:"\f044"}
.fa-people-roof:before{content:"\e537"}
.fa-person:before{content:"\f183"}
.fa-person-walking:before{content:"\f554"}
.fa-phone:before{content:"\f095"}
.fa-plane-departure:before{content:"\f5b0"}
.fa-receipt:before{content:"\f543"}
.fa-rocket:before{content:"\f135"}
.fa-scale-balanced:before{content:"\f24e"}
.fa-school:before{content:"\f549"}
.fa-shield-halved:before{content:"\f3ed"}
.fa-star:before{content:"\f005"}
.fa-star-half-stroke:before{content:"\f5c0"}
.fa-store:before{content:"\f54e"}
.fa-tag:before{content:"\f02b"}
.fa-tags:before{content:"\f02c"}
.fa-trophy:before{content:"\f091"}
.fa-truck-fast:before{content:"\f48b"}
.fa-user:before{content:"\f007"}
.fa-user-shield:before{content:"\f505"}
.fa-user-tie:before{content:"\f508"}
.fa-users:before{content:"\f0c0"}
.fa-users-gear:before{content:"\f509"}
.fa-whatsapp:before{content:"\f232"}
.fa-x-twitter:before{content:"\e61b"}
