/* ============================================================
   AI LAB TECHNOLOGIES - AGENTIC AI ERP STYLESHEET
   100% STANDALONE & ZERO-DEPENDENCY DESIGN SYSTEM
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --primary: rgb(223 42 25 / 1);
  --primary-dark: rgb(180 30 18);
  --primary-light: rgba(223, 42, 25, 0.1);
  --accent-900: #0f172a;
  --accent-800: #1e293b;
  --accent-700: #334155;
  --accent-600: #475569;
  --accent-200: #e2e8f0;
  --accent-100: #f1f5f9;
  --accent-50: #f8fafc;
  --white: #ffffff;
  --green: #10b981;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--white);
  color: var(--accent-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Site Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--accent-200);
  transition: background 0.3s, border-color 0.3s;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-700);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(960px, 95vw);
  max-width: 95vw;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 24px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .dropdown-menu {
    display: none !important;
  }
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dropdown-menu li:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.08);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.dropdown-menu li a .icon-box {
  background: #ffeded;
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 18px;
  flex-shrink: 0;
}

.mega-menu-cards {
  display: flex !important;
  padding: 0;
  overflow: hidden;
}

.mega-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  flex: 1;
}

.mega-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.dropdown-menu.mega-menu-cards a.mega-card {
  padding: 20px;
}

.dropdown-menu.mega-menu-cards a.mega-card:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #e2e8f0;
}

.mega-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mega-card-header .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-card-header .icon-box i {
  font-size: 20px;
  color: var(--primary);
}

.mega-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-900);
  margin: 0;
}

.mega-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--accent-700);
  margin-bottom: 16px;
  flex: 1;
}

.explore-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
}

.mega-menu-sidebar {
  width: 300px;
  background: #f8fafc;
  padding: 32px 24px;
  border-left: 1px solid #e2e8f0;
}

.mega-menu-sidebar h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-700);
  margin-bottom: 16px;
}

.mega-menu-sidebar p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--accent-700);
}

/* Header Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  border-color: rgb(223, 42, 25);
  color: rgb(223, 42, 25);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #0f172a;
  cursor: pointer;
}

/* Site Footer */
.site-footer {
  background: #0b1120;
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 1px solid #1e293b;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-col h5,
.footer-brand h5 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-footprints {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
}

.footer-footprints span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-footprints i {
  color: rgb(223, 42, 25);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid #334155;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.social-link:hover {
  background: rgb(223, 42, 25);
  color: #ffffff;
  border-color: rgb(223, 42, 25);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #1e293b;
  font-size: 13px;
  color: #64748b;
}

.footer-policy {
  display: flex;
  gap: 20px;
}

.footer-policy a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-policy a:hover {
  color: #ffffff;
}

html,
body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

* {
  box-sizing: border-box;
}

.site-header,
.erp-hero,
.offer-section,
.site-footer {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Hero Banner & High-Tech Image Special Effects */
.erp-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 540px;
  max-height: 680px;
  overflow: hidden;
  background: #091224;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.erp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: heroImageKenBurns 18s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
  filter: brightness(0.92) contrast(1.08);
}

@keyframes heroImageKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.09) translate(-8px, -4px);
  }
}

/* Ambient Radial Tech Glow Overlay */
.erp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(223, 42, 25, 0.28) 0%, transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(56, 189, 248, 0.18) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Animated Light Beam Sweep across Hero Image */
.erp-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-25deg);
  z-index: 3;
  animation: heroBeamSweep 7s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes heroBeamSweep {
  0% {
    left: -120%;
  }

  40%,
  100% {
    left: 180%;
  }
}

/* Animated Moving Tech Dot-Matrix Pattern Overlay */
.hero-dots-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
  animation: heroDotsMotion 25s linear infinite;
  mask-image: radial-gradient(circle at 60% 50%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.3) 80%);
  -webkit-mask-image: radial-gradient(circle at 60% 50%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.3) 80%);
}

@keyframes heroDotsMotion {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 56px 56px;
  }
}

.erp-hero-overlay {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(9, 18, 36, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: 40px 6% 40px 6%;
  box-sizing: border-box;
}

.erp-hero-container {
  max-width: 820px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 0;
  width: 100%;
}

.erp-hero-badge,
html[data-theme="light"] .erp-hero-badge,
html[data-theme="dark"] .erp-hero-badge,
body.light-theme .erp-hero-badge,
body.dark-theme .erp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(223, 42, 25, 0.3) !important;
  border: 1px solid rgba(223, 42, 25, 0.6) !important;
  border-radius: 30px;
  color: #ff9d91 !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(223, 42, 25, 0.2);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
}

.erp-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #df2a19;
  border-radius: 50%;
  box-shadow: 0 0 10px #df2a19;
  animation: erpPulse 1.8s infinite;
}

@keyframes erpPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 42, 25, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(223, 42, 25, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 42, 25, 0); }
}

.erp-hero-title,
html[data-theme="light"] .erp-hero-title,
html[data-theme="dark"] .erp-hero-title,
body.light-theme .erp-hero-title,
body.dark-theme .erp-hero-title {
  color: #ffffff !important;
  font-size: clamp(32px, 4.2vw, 50px) !important;
  font-weight: 800 !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7) !important;
  margin: 0 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  text-align: left !important;
}

.erp-hero-desc,
html[data-theme="light"] .erp-hero-desc,
html[data-theme="dark"] .erp-hero-desc,
body.light-theme .erp-hero-desc,
body.dark-theme .erp-hero-desc {
  color: #ffffff !important;
  font-size: clamp(14px, 1.6vw, 16.5px) !important;
  line-height: 1.55 !important;
  max-width: 780px !important;
  margin: 0 !important;
  text-align: left !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.8) !important;
  font-weight: 500 !important;
}

/* Feature Chips Row (Left-Aligned, NO Big Numbers) */
.erp-metrics-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 6px;
}

.erp-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.erp-chip:hover {
  border-color: rgba(223, 42, 25, 0.8) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.35);
}

.erp-chip span,
html[data-theme="light"] .erp-chip span,
html[data-theme="dark"] .erp-chip span,
body.light-theme .erp-chip span,
body.dark-theme .erp-chip span {
  color: #ffffff !important;
}

.erp-chip i.text-red { color: #ff5252 !important; }
.erp-chip i.text-cyan { color: #38bdf8 !important; }
.erp-chip i.text-green { color: #34d399 !important; }
.erp-chip i.text-orange { color: #fbbf24 !important; }

/* Hero Actions (Left-Aligned) */
.erp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 6px;
}

.erp-btn-primary,
html[data-theme="light"] .erp-btn-primary,
html[data-theme="dark"] .erp-btn-primary,
body.light-theme .erp-btn-primary,
body.dark-theme .erp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #df2a19 0%, #b91c1c 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.35);
  transition: all 0.3s ease;
}

.erp-btn-primary:hover {
  background: linear-gradient(135deg, #f83b27 0%, #dc2626 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(223, 42, 25, 0.45);
}

.erp-btn-glass,
html[data-theme="light"] .erp-btn-glass,
html[data-theme="dark"] .erp-btn-glass,
body.light-theme .erp-btn-glass,
body.dark-theme .erp-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.erp-btn-glass:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}

/* Percentage Stats Overlay Grid Inside Hero Banner */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  width: 100%;
}

.hero-stat-card {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.title-red {
  color: #ef4444 !important;
}

.title-blue {
  color: #0284c7 !important;
}

.title-purple {
  color: #7c3aed !important;
}

.title-green {
  color: #059669 !important;
}

html.dark .title-red {
  color: #ff5252 !important;
}

html.dark .title-blue {
  color: #38bdf8 !important;
}

html.dark .title-purple {
  color: #c084fc !important;
}

html.dark .title-green {
  color: #34d399 !important;
}

@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Main Section Layout: Left Key Features Card + Right Main Content */
.erp-main-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Left Key Features Sidebar Card */
.key-features-card {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.key-features-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.key-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.key-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s;
}

.key-features-list li i {
  color: rgb(223, 42, 25);
  font-size: 14px;
  flex-shrink: 0;
}

.erp-sidebar-cta-image {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.erp-sidebar-cta-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(223, 42, 25, 0.2);
  border-color: rgba(223, 42, 25, 0.3);
}

.erp-sidebar-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.erp-sidebar-cta-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

/* Right Content Area */
.erp-content-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.erp-lead-text {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  transition: color 0.3s;
}

/* Split Image & Features Box */
.erp-split-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 8px 0;
}

.erp-split-img {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  background: #0f172a;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.erp-split-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(223, 42, 25, 0.2);
  border-color: rgba(223, 42, 25, 0.3);
}

.erp-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.erp-split-img:hover img {
  transform: scale(1.04);
}

.erp-split-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.erp-feature-item h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.erp-feature-item h4 i {
  color: rgb(223, 42, 25);
  font-size: 18px;
}

.erp-feature-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: color 0.3s;
}

.erp-sub-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.erp-sub-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.erp-sub-feature p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  transition: color 0.3s;
}

/* Technology Services Section */
.offer-section {
  padding: 36px 0 60px;
  background: linear-gradient(115deg, #e0e7ff 0%, #f0f5ff 45%, #f8fafc 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background 0.3s, border-color 0.3s;
}

.offer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.offer-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.offer-header p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  transition: color 0.3s;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

/* Top Accent Line on Hover */
.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(223, 42, 25), #ff6b5b);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 42, 25, 0.3);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(223, 42, 25, 0.15);
}

.offer-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.offer-icon {
  font-size: 36px;
  color: rgb(223, 42, 25);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.offer-card:hover .offer-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(223, 42, 25, 0.25));
}

.offer-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  transition: color 0.35s ease;
}

.offer-card:hover h3 {
  color: rgb(223, 42, 25);
}

.offer-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: color 0.3s;
}

/* ============================================================
   ENTERPRISE EXTENSIONS (ROI Stats, Process Roadmap, FAQ & CTA)
   ============================================================ */

/* 1. ROI & Impact Metrics Bar */
.erp-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin-top: 8px;
}

html.dark .erp-stats-bar {
  background: #111827;
  border-color: #1f2937;
}

.erp-stat-item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid #e2e8f0;
}

html.dark .erp-stat-item {
  border-right-color: #1f2937;
}

.erp-stat-item:last-child {
  border-right: none;
}

.erp-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: rgb(223, 42, 25);
  line-height: 1.1;
  font-family: var(--font-heading, sans-serif);
}

.erp-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-top: 6px;
}

html.dark .erp-stat-label {
  color: #94a3b8;
}

/* 2. Implementation Roadmap Section */
.erp-process-section {
  padding: 60px 0;
  background: #ffffff;
  transition: background 0.3s;
}

html.dark .erp-process-section {
  background: #0b0f19;
}

.erp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.erp-process-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html.dark .erp-process-step {
  background: #111827;
  border-color: #1f2937;
}

.erp-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 12px 24px rgba(223, 42, 25, 0.08);
}

.erp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(223, 42, 25, 0.1);
  color: rgb(223, 42, 25);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}

.erp-process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

html.dark .erp-process-step h4 {
  color: #ffffff;
}

.erp-process-step p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
}

html.dark .erp-process-step p {
  color: #94a3b8;
}

/* 3. Enterprise FAQ Accordion */
.erp-faq-section {
  padding: 60px 0 80px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  transition: background 0.3s, border-color 0.3s;
}

html.dark .erp-faq-section {
  background: #0f172a;
  border-top-color: #1e293b;
}

.erp-faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.erp-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

html.dark .erp-faq-item {
  background: #111827;
  border-color: #1f2937;
}

.erp-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

html.dark .erp-faq-question {
  color: #f8fafc;
}

.erp-faq-question:hover {
  color: rgb(223, 42, 25);
}

.erp-faq-question i {
  color: rgb(223, 42, 25);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.erp-faq-item.active .erp-faq-question i {
  transform: rotate(180deg);
}

.erp-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.erp-faq-item.active .erp-faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.erp-faq-answer p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
}

html.dark .erp-faq-answer p {
  color: #94a3b8;
}

/* 4. Enterprise CTA Banner */
.erp-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: 24px;
  padding: 56px 40px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.erp-cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.erp-cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.erp-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: rgb(223, 42, 25);
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(223, 42, 25, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.btn-cta-primary:hover {
  background: rgb(180, 30, 18);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* ============================================================
   THEME SWITCHER & FLOATING BUTTONS
   ============================================================ */

.theme-switcher-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.theme-toggle-btn {
  background: rgb(223, 42, 25);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.theme-toggle-btn:hover {
  background: rgb(180, 30, 18);
}

.theme-menu {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 120px;
}

.theme-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.theme-option {
  background: transparent;
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}

.theme-option:hover {
  background: #f1f5f9;
  color: rgb(223, 42, 25);
}

.theme-option.active {
  background: rgb(223, 42, 25);
  color: #ffffff;
}

/* Floating WhatsApp & Back-To-Top */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 9999;
  background: #25d366;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: rgb(223, 42, 25);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: rgb(180, 30, 18);
}

/* ============================================================
   DARK MODE OVERRIDES (html.dark)
   ============================================================ */
html.dark body {
  background-color: #0b0f19;
  color: #cbd5e1;
}

html.dark .site-header {
  background: rgba(11, 15, 25, 0.95);
  border-bottom-color: #1e293b;
}

html.dark .nav-list a {
  color: #e2e8f0;
}

html.dark .nav-list a:hover {
  color: rgb(223, 42, 25);
  background: rgba(223, 42, 25, 0.15);
}

html.dark .dropdown-menu {
  background: #111827;
  border-color: #1f2937;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

html.dark .dropdown-menu a {
  color: #e2e8f0;
}

html.dark .dropdown-menu a:hover {
  background: #1e293b;
}

html.dark .search-icon-btn {
  color: #e2e8f0;
}

html.dark .key-features-card {
  background: #111827;
  border-color: #1f2937;
}

html.dark .key-features-card h3 {
  color: #ffffff;
}

html.dark .key-features-list li {
  color: #e2e8f0;
}

html.dark .erp-lead-text {
  color: #cbd5e1;
}

html.dark .erp-feature-item h4 {
  color: #ffffff;
}

html.dark .erp-feature-item p {
  color: #94a3b8;
}

html.dark .erp-sub-feature h4 {
  color: #ffffff;
}

html.dark .erp-sub-feature p {
  color: #94a3b8;
}

html.dark .offer-section {
  background: #0f172a;
  border-top-color: #1e293b;
  border-bottom-color: #1e293b;
}

html.dark .offer-header h2 {
  color: #ffffff;
}

html.dark .offer-header p {
  color: #94a3b8;
}

html.dark .offer-card {
  background: #111827;
  border-color: #1f2937;
  box-shadow: none;
}

html.dark .offer-card:hover {
  background: #172033;
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(223, 42, 25, 0.25);
}

/* Dark Mode Special Effects for Images & Icons */
html.dark .erp-sidebar-cta-image,
html.dark .erp-split-img {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(223, 42, 25, 0.15);
}

html.dark .erp-sidebar-cta-image:hover,
html.dark .erp-split-img:hover {
  border-color: rgba(223, 42, 25, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(223, 42, 25, 0.35);
}

html.dark .key-features-list li i,
html.dark .erp-feature-item h4 i {
  color: #ff5252;
  filter: drop-shadow(0 0 8px rgba(255, 82, 82, 0.7));
}

html.dark .key-features-card {
  background: linear-gradient(145deg, #0f172a 0%, #172033 100%);
  border-color: rgba(223, 42, 25, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(223, 42, 25, 0.1);
}

html.dark .offer-section {
  background: linear-gradient(115deg, #1e1b4b 0%, #0f172a 50%, #0b1120 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

html.dark .offer-card h3 {
  color: #ffffff;
}

html.dark .offer-card p {
  color: #94a3b8;
}

html.dark .site-footer {
  background: #060911;
  border-top-color: #1e293b;
  color: #94a3b8;
}

html.dark .footer-col h5,
html.dark .footer-brand h5 {
  color: #ffffff;
}

html.dark .footer-col ul li a,
html.dark .footer-brand p,
html.dark .footer-footprints span {
  color: #94a3b8;
}

html.dark .footer-bottom {
  border-top-color: #1e293b;
}

html.dark .theme-menu {
  background: #111827;
  border-color: #1f2937;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

html.dark .theme-option {
  color: #e2e8f0;
}

html.dark .theme-option:hover {
  background: #1e293b;
  color: rgb(223, 42, 25);
}

html.dark .theme-option.active {
  background: rgb(223, 42, 25);
  color: #ffffff;
}

/* Mobile Header & Mobile Menu Drawer */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--accent-900);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

html.dark .mobile-menu-btn {
  color: #ffffff;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

html.dark .mobile-nav-drawer {
  background: #0f172a;
  border-left: 1px solid #1e293b;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

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

html.dark .mobile-drawer-header {
  border-bottom-color: #1e293b;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #475569;
  cursor: pointer;
}

html.dark .mobile-drawer-close {
  color: #e2e8f0;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-links a {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}

html.dark .mobile-drawer-links a {
  color: #e2e8f0;
}

.mobile-drawer-links a:hover {
  background: rgba(223, 42, 25, 0.1);
  color: rgb(223, 42, 25);
}

/* Responsive & Device Optimizations */
html,
body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Large Screens & Desktop (1200px and down) */
@media (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Responsive Mega Menu & Dropdown Constraints */
.dropdown-menu,
.mega-menu-cards {
  max-width: min(1040px, 95vw);
}

/* Laptops & Tablets Landscape (1024px and down) */
@media (max-width: 1024px) {
  nav {
    display: none !important;
  }

  .dropdown-menu,
  .mega-menu-cards,
  .has-dropdown .dropdown-menu {
    display: none !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 64px;
  }

  .nav-wrap {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .erp-hero {
    aspect-ratio: auto !important;
    min-height: 520px !important;
    height: auto !important;
    padding: 20px 0 !important;
  }

  .erp-hero-overlay {
    height: auto !important;
    min-height: 100% !important;
    padding: 40px 24px 30px 24px !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .erp-hero-container {
    padding: 0 !important;
    max-width: 100% !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .erp-hero-title {
    font-size: clamp(24px, 4vw, 36px);
  }

  .erp-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0 20px;
  }

  .key-features-card {
    padding: 24px 20px;
  }

  .erp-sidebar-cta-image {
    height: 200px;
    margin-top: 24px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* Tablets Portrait & Large Mobiles (768px and down) */
@media (max-width: 768px) {
  .nav-wrap {
    height: 64px;
  }

  .erp-hero {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
  }

  .erp-hero-overlay {
    height: auto !important;
    padding: 95px 18px 36px 18px !important;
  }

  .erp-hero-container {
    padding: 0 12px;
    border-left-width: 3px;
  }

  .erp-hero-title {
    font-size: 22px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 16px;
  }

  .hero-stat-card {
    padding: 12px 10px;
  }

  .hero-stat-card .stat-number {
    font-size: 22px;
  }

  .hero-stat-card .stat-label {
    font-size: 11.5px;
  }

  .erp-main-grid {
    padding: 24px 0 16px;
    gap: 28px;
  }

  .erp-split-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .erp-split-img {
    height: 220px;
  }

  .erp-sub-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-section {
    padding: 20px 0 48px;
  }

  .offer-header {
    margin-bottom: 24px;
  }

  .offer-header h2 {
    font-size: 26px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-card {
    padding: 24px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-switcher-widget {
    top: auto;
    bottom: 140px;
    transform: none;
  }

  .theme-menu {
    right: 48px;
    top: auto;
    bottom: 0;
    transform: scale(0.95);
  }

  .theme-menu.active {
    transform: scale(1);
  }

  .floating-whatsapp {
    width: 44px;
    height: 44px;
    font-size: 22px;
    right: 16px;
    bottom: 76px;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    font-size: 14px;
    right: 16px;
    bottom: 20px;
  }
}

/* Small Screen Mobiles & iPhones (480px and down) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .erp-hero {
    aspect-ratio: auto !important;
    min-height: auto !important;
  }

  .erp-hero-overlay {
    padding: 16px 0 12px;
  }

  .erp-hero-title {
    font-size: 19px;
    line-height: 1.25;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
  }

  .hero-stat-card {
    padding: 10px 6px;
  }

  .hero-stat-card .stat-number {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .hero-stat-card .stat-label {
    font-size: 11px;
    line-height: 1.25;
  }

  .key-features-card h3 {
    font-size: 19px;
  }

  .key-features-list li {
    font-size: 14px;
  }

  .erp-lead-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .erp-feature-item h4,
  .erp-sub-feature h4 {
    font-size: 15px;
  }

  .offer-header h2 {
    font-size: 22px;
  }

  .offer-header p {
    font-size: 14px;
  }

  .offer-card h3 {
    font-size: 16px;
  }

  .offer-card p {
    font-size: 13.5px;
  }
}

/* ============================================================
   ERP PERFORMANCE STATS SECTION
   ============================================================ */
.erp-stats-section {
  padding: 56px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.erp-stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 42, 25, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(223, 42, 25, 0.25);
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 30%, #ff5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   ERP IMPLEMENTATION ROADMAP SECTION
   ============================================================ */
.erp-roadmap-section {
  padding: 32px 0 50px;
  background: linear-gradient(145deg, #f0f9ff 0%, #f8fafc 55%, #fffbe6 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background 0.3s;
}

.roadmap-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 28px;
}

.roadmap-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.roadmap-header p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  transition: color 0.3s;
}

/* Connected Process Timeline Layout (Non-Card Design) */
.process-timeline-container {
  position: relative;
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 20px 0;
}

/* Horizontal Connecting Timeline Track */
.process-timeline-line {
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #0284c7 35%, #7c3aed 70%, #059669 100%);
  border-radius: 4px;
  z-index: 1;
}

/* Animated Traveling Pulse Dot across Timeline */
.process-timeline-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: lineDotRun 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes lineDotRun {
  0% {
    left: 0%;
    border: 3px solid #ef4444;
    box-shadow: 0 0 10px #ef4444, 0 0 20px rgba(239, 68, 68, 0.7);
  }

  33% {
    border: 3px solid #0284c7;
    box-shadow: 0 0 10px #0284c7, 0 0 20px rgba(2, 132, 199, 0.7);
  }

  66% {
    border: 3px solid #7c3aed;
    box-shadow: 0 0 10px #7c3aed, 0 0 20px rgba(124, 58, 237, 0.7);
  }

  100% {
    left: 100%;
    border: 3px solid #059669;
    box-shadow: 0 0 10px #059669, 0 0 20px rgba(5, 150, 105, 0.7);
  }
}

.process-timeline-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-node-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Glowing Circular Icon Nodes */
.process-icon-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 4px solid #ffffff;
}

html.dark .process-icon-node {
  border-color: #0b1120;
}

.node-red {
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2), 0 8px 20px rgba(239, 68, 68, 0.35);
}

.node-blue {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2), 0 8px 20px rgba(2, 132, 199, 0.35);
}

.node-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2), 0 8px 20px rgba(124, 58, 237, 0.35);
}

.node-green {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2), 0 8px 20px rgba(5, 150, 105, 0.35);
}

.process-step-item:hover .process-icon-node {
  transform: scale(1.18);
}

.process-step-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 12px;
}

.badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.badge-blue {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.badge-purple {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.badge-green {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
}

html.dark .badge-red {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

html.dark .badge-blue {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
}

html.dark .badge-purple {
  background: rgba(192, 132, 252, 0.2);
  color: #c084fc;
}

html.dark .badge-green {
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
}

.process-step-content {
  padding: 0 6px;
}

.process-step-content h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.process-step-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: color 0.3s;
}

html.dark .process-step-content p {
  color: #94a3b8;
}

html.dark .erp-roadmap-section {
  background: linear-gradient(145deg, #0b1120 0%, #0f172a 60%, #131c31 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Responsive Connected Timeline Flow */
@media (max-width: 900px) {
  .process-timeline-line {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444 0%, #0284c7 35%, #7c3aed 70%, #059669 100%);
  }

  .process-timeline-line::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: lineDotRunVertical 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  @keyframes lineDotRunVertical {
    0% {
      top: 0%;
      border: 3px solid #ef4444;
      box-shadow: 0 0 10px #ef4444, 0 0 20px rgba(239, 68, 68, 0.7);
    }

    33% {
      border: 3px solid #0284c7;
      box-shadow: 0 0 10px #0284c7, 0 0 20px rgba(2, 132, 199, 0.7);
    }

    66% {
      border: 3px solid #7c3aed;
      box-shadow: 0 0 10px #7c3aed, 0 0 20px rgba(124, 58, 237, 0.7);
    }

    100% {
      top: 100%;
      border: 3px solid #059669;
      box-shadow: 0 0 10px #059669, 0 0 20px rgba(5, 150, 105, 0.7);
    }
  }

  .process-timeline-flow {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-step-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .process-node-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* Dark Mode Overrides for New Sections */
html.dark .erp-roadmap-section {
  background: #0b1120;
}

html.dark .roadmap-header h2 {
  color: #ffffff;
}

html.dark .roadmap-header p {
  color: #94a3b8;
}

html.dark .roadmap-card {
  background: #111827;
  border-color: #1f2937;
}

html.dark .roadmap-card:hover {
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

html.dark .roadmap-card h3 {
  color: #ffffff;
}

html.dark .roadmap-card p {
  color: #94a3b8;
}

@media (max-width: 1024px) {

  .stats-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .stats-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MULTI-COLOR ACCENT THEMES & SPECIAL EFFECTS FOR CARDS
   ============================================================ */

/* 1. Technology Services Cards Multi-Color Accent Themes */
.offer-card-1::before {
  background: linear-gradient(90deg, #ef4444, #f43f5e);
}

.offer-card-1 .offer-icon {
  color: #ef4444;
}

.offer-card-1:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 20px 40px -12px rgba(239, 68, 68, 0.18), 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.offer-card-1:hover h3 {
  color: #ef4444;
}

.offer-card-2::before {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.offer-card-2 .offer-icon {
  color: #0284c7;
}

.offer-card-2:hover {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 20px 40px -12px rgba(2, 132, 199, 0.18), 0 0 0 1px rgba(2, 132, 199, 0.25);
}

.offer-card-2:hover h3 {
  color: #0284c7;
}

.offer-card-3::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.offer-card-3 .offer-icon {
  color: #7c3aed;
}

.offer-card-3:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.25);
}

.offer-card-3:hover h3 {
  color: #7c3aed;
}

.offer-card-4::before {
  background: linear-gradient(90deg, #059669, #10b981);
}

.offer-card-4 .offer-icon {
  color: #059669;
}

.offer-card-4:hover {
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 20px 40px -12px rgba(5, 150, 105, 0.18), 0 0 0 1px rgba(5, 150, 105, 0.25);
}

.offer-card-4:hover h3 {
  color: #059669;
}

/* Dark Mode Multi-Color Accent Themes */
html.dark .offer-card-1 .offer-icon {
  color: #f87171;
}

html.dark .offer-card-2 .offer-icon {
  color: #38bdf8;
}

html.dark .offer-card-3 .offer-icon {
  color: #c084fc;
}

html.dark .offer-card-4 .offer-icon {
  color: #34d399;
}

html.dark .offer-card-1:hover {
  border-color: rgba(248, 113, 113, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(248, 113, 113, 0.25);
}

html.dark .offer-card-2:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(56, 189, 248, 0.25);
}

html.dark .offer-card-3:hover {
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(192, 132, 252, 0.25);
}

html.dark .offer-card-4:hover {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(52, 211, 153, 0.25);
}

/* 2. Stat Cards Multi-Color Themes */
.stat-card-1 .stat-number {
  background: linear-gradient(135deg, #38bdf8 30%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-1:hover {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(56, 189, 248, 0.3);
}

.stat-card-2 .stat-number {
  background: linear-gradient(135deg, #ff5252 30%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-2:hover {
  border-color: rgba(255, 82, 82, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 82, 82, 0.3);
}

.stat-card-3 .stat-number {
  background: linear-gradient(135deg, #c084fc 30%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-3:hover {
  border-color: rgba(192, 132, 252, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(192, 132, 252, 0.3);
}

.stat-card-4 .stat-number {
  background: linear-gradient(135deg, #34d399 30%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-4:hover {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(52, 211, 153, 0.3);
}

/* 3. Implementation Roadmap Step Badges Multi-Color Themes */
.roadmap-card-1 .step-badge {
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.roadmap-card-2 .step-badge {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.roadmap-card-3 .step-badge {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.roadmap-card-4 .step-badge {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.roadmap-card-1:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 15px 30px rgba(239, 68, 68, 0.12);
}

.roadmap-card-2:hover {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.12);
}

.roadmap-card-3:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.12);
}

.roadmap-card-4:hover {
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 15px 30px rgba(5, 150, 105, 0.12);
}

/* ============================================================
   UNIFIED LIGHT / DARK / SYSTEM THEME ENGINE
   ============================================================ */

/* 1. Global Page Background & Base Text */
html.light body,
html[data-theme="light"] body,
body.light-theme {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

html.dark body,
html[data-theme="dark"] body,
body.dark-theme {
  background-color: #091224 !important;
  color: #f8fafc !important;
}

/* 2. Headings & Paragraph Text Colors */
html.light h1:not(.erp-hero-title), html.light h2, html.light h3, html.light h4, html.light h5, html.light h6,
html[data-theme="light"] h1:not(.erp-hero-title), html[data-theme="light"] h2, html[data-theme="light"] h3, html[data-theme="light"] h4, html[data-theme="light"] h5, html[data-theme="light"] h6,
body.light-theme h1:not(.erp-hero-title), body.light-theme h2, body.light-theme h3, body.light-theme h4, body.light-theme h5, body.light-theme h6 {
  color: #0f172a !important;
}

html.dark h1:not(.erp-hero-title), html.dark h2, html.dark h3, html.dark h4, html.dark h5, html.dark h6,
html[data-theme="dark"] h1:not(.erp-hero-title), html[data-theme="dark"] h2, html[data-theme="dark"] h3, html[data-theme="dark"] h4, html[data-theme="dark"] h5, html[data-theme="dark"] h6,
body.dark-theme h1:not(.erp-hero-title), body.dark-theme h2, body.dark-theme h3, body.dark-theme h4, body.dark-theme h5, body.dark-theme h6 {
  color: #ffffff !important;
}

html.light p:not(.erp-hero-subtitle):not(.erp-hero-desc), html.light li,
html[data-theme="light"] p:not(.erp-hero-subtitle):not(.erp-hero-desc), html[data-theme="light"] li,
body.light-theme p:not(.erp-hero-subtitle):not(.erp-hero-desc), body.light-theme li {
  color: #475569 !important;
}

html.dark p:not(.erp-hero-subtitle):not(.erp-hero-desc), html.dark li,
html[data-theme="dark"] p:not(.erp-hero-subtitle):not(.erp-hero-desc), html[data-theme="dark"] li,
body.dark-theme p:not(.erp-hero-subtitle):not(.erp-hero-desc), body.dark-theme li {
  color: #cbd5e1 !important;
}

/* 3. Cards & Container Backgrounds */
html.light .key-features-card,
html.light .offer-card,
html.light .roadmap-card,
html.light .sub-section-card,
html[data-theme="light"] .key-features-card,
html[data-theme="light"] .offer-card,
html[data-theme="light"] .roadmap-card,
html[data-theme="light"] .sub-section-card {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04) !important;
}

html.dark .key-features-card,
html.dark .offer-card,
html.dark .roadmap-card,
html.dark .sub-section-card,
html[data-theme="dark"] .key-features-card,
html[data-theme="dark"] .offer-card,
html[data-theme="dark"] .roadmap-card,
html[data-theme="dark"] .sub-section-card {
  background: #0f172a !important;
  border-color: #1e293b !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

/* ============================================================
   HERO BANNER LIGHT/DARK MODE PROTECTION SHIELD
   ============================================================ */
.erp-hero-title,
html.light .erp-hero-title,
html[data-theme="light"] .erp-hero-title,
body.light-theme .erp-hero-title {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
}

.erp-hero-subtitle,
.erp-hero-desc,
html.light .erp-hero-subtitle,
html.light .erp-hero-desc,
html[data-theme="light"] .erp-hero-subtitle,
html[data-theme="light"] .erp-hero-desc,
body.light-theme .erp-hero-subtitle,
body.light-theme .erp-hero-desc {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.8) !important;
}

.erp-chip span,
html.light .erp-chip span,
html[data-theme="light"] .erp-chip span,
body.light-theme .erp-chip span {
  color: #ffffff !important;
}

/* ============================================================
   FLOATING WHATSAPP & SCROLL-TO-TOP BUTTONS (UNIFIED)
   ============================================================ */
.floating-whatsapp {
  position: fixed !important;
  bottom: 85px !important;
  right: 24px !important;
  width: 50px !important;
  height: 50px !important;
  background: #25d366 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
  z-index: 9998 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  text-decoration: none !important;
}

.floating-whatsapp:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65) !important;
  color: #ffffff !important;
}

.scroll-to-top {
  position: fixed !important;
  bottom: 148px !important;
  right: 25px !important;
  width: 46px !important;
  height: 46px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  cursor: pointer !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease !important;
  z-index: 9997 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.scroll-to-top.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.scroll-to-top:hover {
  background: #df2a19 !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.5) !important;
}