/* ==========================================================================
   Arihant AI - Modern Enterprise ERP Design System
   SaaS & Cloud Panel Glassmorphism Architecture
   Compatible with Odoo 19 & Bootstrap 5.3
   ========================================================================== */

:root {
  --erp-primary: #1a7efb;
  --erp-primary-dark: #0f5bcc;
  --erp-primary-light: #e8f2ff;
  --erp-navy: #0d2335;
  --erp-slate-900: #0f172a;
  --erp-slate-800: #1e293b;
  --erp-slate-700: #334155;
  --erp-slate-600: #475569;
  --erp-slate-100: #f1f5f9;
  --erp-slate-50: #f8fafc;
  --erp-border: #e2e8f0;
  --erp-card-bg: #ffffff;
  --erp-radius-lg: 16px;
  --erp-radius-md: 12px;
  --erp-radius-full: 9999px;
  
  /* Glassmorphism Design Tokens */
  --erp-glass-bg: rgba(255, 255, 255, 0.82);
  --erp-glass-border: rgba(226, 232, 240, 0.8);
  --erp-glass-blur: blur(16px);
  --erp-glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.06);
  --erp-dark-glass-bg: rgba(255, 255, 255, 0.07);
  --erp-dark-glass-border: rgba(255, 255, 255, 0.16);
  --erp-dark-glass-blur: blur(16px);
  
  --erp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --erp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --erp-shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --erp-shadow-xl: 0 20px 30px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

/* 1. Modern Hero with Radiant Ambient Mesh & Glass Accents */
.erp-hero-modern {
  position: relative;
  background: linear-gradient(135deg, #091724 0%, #0d2335 50%, #102d45 100%);
  color: #ffffff;
  padding: 5.5rem 0 6.5rem 0;
  overflow: hidden;
}

.erp-hero-modern::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(26, 126, 251, 0.25) 0%, rgba(26, 126, 251, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}

.erp-hero-modern::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.16) 0%, rgba(13, 35, 53, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(25px);
}

.erp-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--erp-radius-full);
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.erp-hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.erp-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.erp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #1a7efb, #0f5bcc);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--erp-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(26, 126, 251, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
}

.erp-btn-primary:hover {
  background: linear-gradient(135deg, #2486ff, #1a7efb);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 126, 251, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.erp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--erp-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.erp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* 2. Glassmorphic Hero Stat / Telemetry Box */
.erp-stat-box {
  text-align: center;
  padding: 2.25rem 1.75rem;
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-lg);
  box-shadow: var(--erp-shadow-sm);
  transition: all 0.3s ease;
}

.erp-hero-modern .erp-stat-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--erp-radius-lg);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.45), inset 0 1px 1px 0 rgba(255, 255, 255, 0.25);
}

.erp-hero-modern .erp-stat-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 25px 50px -12px rgba(26, 126, 251, 0.25), inset 0 1px 1px 0 rgba(255, 255, 255, 0.35);
}

.erp-stat-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--erp-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.erp-hero-modern .erp-stat-value {
  color: #60a5fa;
  text-shadow: 0 0 30px rgba(96, 165, 250, 0.4);
}

.erp-stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--erp-slate-800);
  margin-bottom: 0.25rem;
}

.erp-hero-modern .erp-stat-label {
  color: #ffffff;
}

.erp-stat-subtext {
  font-size: 0.875rem;
  color: var(--erp-slate-600);
  margin-bottom: 0;
}

.erp-hero-modern .erp-stat-subtext {
  color: #94a3b8;
}

/* 3. Translucent Sticky ERP Subnav Ribbon */
.erp-subnav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: background 0.3s ease;
}

.erp-subnav-container {
  display: flex;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.65rem 0;
  gap: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.erp-subnav-container::-webkit-scrollbar {
  display: none;
}

.erp-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.05rem;
  border-radius: var(--erp-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--erp-slate-700);
  text-decoration: none !important;
  transition: all 0.2s ease;
  background: rgba(241, 245, 249, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(8px);
}

.erp-subnav-link:hover {
  color: var(--erp-primary);
  background: rgba(26, 126, 251, 0.1);
  border-color: rgba(26, 126, 251, 0.25);
  transform: translateY(-1px);
}

.erp-subnav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1a7efb, #0f5bcc);
  border-color: #1a7efb;
  box-shadow: 0 3px 10px rgba(26, 126, 251, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 4. Section Structure & Header */
.erp-section {
  padding: 5rem 0;
  position: relative;
}

.erp-section-light {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.erp-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.erp-section-tag {
  color: var(--erp-primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.erp-section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  color: var(--erp-slate-900);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.erp-section-desc {
  font-size: 1.1rem;
  color: var(--erp-slate-600);
  line-height: 1.6;
}

/* 5. Soft-Glass Bento Feature Cards */
.erp-card-bento {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--erp-radius-lg);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04), inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.erp-card-bento:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 30px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.03), inset 0 1px 0 0 #ffffff;
  border-color: rgba(26, 126, 251, 0.35);
}

.erp-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--erp-radius-md);
  background: linear-gradient(135deg, rgba(232, 242, 255, 0.9), rgba(219, 234, 254, 0.6));
  color: var(--erp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  border: 1px solid rgba(191, 219, 254, 0.6);
  box-shadow: 0 2px 8px rgba(26, 126, 251, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.erp-card-bento:hover .erp-card-icon {
  transform: scale(1.08);
}

.erp-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--erp-slate-900);
  margin-bottom: 0.75rem;
}

.erp-card-text {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--erp-slate-600);
  margin-bottom: 0;
  flex-grow: 1;
}

/* 6. SaaS Browser Window Frame Mockups */
.erp-browser-frame {
  background: #ffffff;
  border-radius: var(--erp-radius-md);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(226, 232, 240, 0.8);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.erp-browser-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(26, 126, 251, 0.18), 0 0 0 1px rgba(26, 126, 251, 0.35);
}

.erp-browser-header {
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.erp-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.erp-browser-dot.red { background-color: #ef4444; }
.erp-browser-dot.yellow { background-color: #f59e0b; }
.erp-browser-dot.green { background-color: #10b981; }

.erp-browser-url {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.75rem;
  color: #64748b;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.erp-browser-body {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* 7. Alternating Workflow Stepper */
.erp-workflow-step {
  padding: 2.75rem 0;
  align-items: center;
}

.erp-workflow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a7efb, #0f5bcc);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(26, 126, 251, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.erp-workflow-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--erp-slate-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.erp-workflow-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--erp-slate-600);
  margin-bottom: 1.5rem;
}

/* 8. Scoping Cards (for Bespoke Pricing) */
.erp-scoping-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--erp-radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04), inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
}

.erp-scoping-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 20px 30px -5px rgba(15, 23, 42, 0.08), inset 0 1px 0 0 #ffffff;
  border-color: rgba(26, 126, 251, 0.35);
}

.erp-scoping-phase {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--erp-primary);
  margin-bottom: 0.5rem;
}

.erp-scoping-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--erp-slate-900);
  margin-bottom: 1rem;
}

.erp-scoping-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.erp-scoping-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--erp-slate-600);
  line-height: 1.5;
}

.erp-scoping-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 700;
}

/* 9. IMCA Pricing Cards */
.imca-pricing-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--erp-radius-lg);
  padding: 2.75rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04), inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-align: center;
}

.imca-pricing-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: var(--erp-shadow-xl);
  border-color: rgba(26, 126, 251, 0.4);
}

.imca-pricing-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.92) 100%);
  border: 2px solid var(--erp-primary);
  box-shadow: 0 16px 35px -5px rgba(26, 126, 251, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: scale(1.02);
}

.imca-pricing-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 24px 45px -8px rgba(26, 126, 251, 0.3), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.imca-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a7efb, #0f5bcc);
  color: #ffffff;
  padding: 0.35rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(26, 126, 251, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.imca-pricing-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--erp-slate-900);
  margin-bottom: 0.5rem;
}

.imca-pricing-target {
  font-size: 0.875rem;
  color: var(--erp-slate-600);
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.imca-pricing-figure {
  margin-bottom: 1.75rem;
  color: var(--erp-slate-900);
}

.imca-pricing-figure .currency {
  font-size: 1.75rem;
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
}

.imca-pricing-figure .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--erp-slate-900);
}

.imca-pricing-figure .period {
  font-size: 0.95rem;
  color: var(--erp-slate-600);
  display: block;
  margin-top: 0.25rem;
}

.imca-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.imca-feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--erp-slate-700);
  line-height: 1.45;
}

.imca-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 700;
}

/* 10. Modern Closing CTA */
.erp-cta-modern {
  background: linear-gradient(135deg, #0d2335 0%, #1a7efb 100%);
  border-radius: var(--erp-radius-lg);
  padding: 4rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(13, 35, 53, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.erp-cta-modern::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.erp-cta-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.erp-cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* 11. Sticky Main Navbar Glassmorphism */
header.o_header_affixed,
header.o_header_is_scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75) !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
}

@media (max-width: 768px) {
  .erp-hero-modern {
    padding: 3.5rem 0 4rem 0;
  }
  .erp-section {
    padding: 3.5rem 0;
  }
  .erp-cta-modern {
    padding: 2.5rem 1.5rem;
  }
}

/* 12. Modern Contact Us & Scoping Architecture */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, #091724 0%, #0d2335 50%, #102d45 100%);
  color: #ffffff;
  padding: 4.5rem 0 5rem 0;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(26, 126, 251, 0.22) 0%, rgba(26, 126, 251, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, rgba(13, 35, 53, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(25px);
}

.contact-channel-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--erp-radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.12);
  border-color: rgba(26, 126, 251, 0.4);
}

.contact-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.contact-icon-blue {
  background: #e8f2ff;
  color: #1a7efb;
}

.contact-icon-green {
  background: #e8faf0;
  color: #10b981;
}

.contact-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.contact-icon-amber {
  background: #fef3c7;
  color: #d97706;
}

.contact-form-glass {
  background: #ffffff;
  border-radius: var(--erp-radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.contact-form-glass .form-control,
.contact-form-glass .form-select {
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.975rem !important;
  color: #1e293b !important;
  background-color: #f8fafc !important;
  transition: all 0.2s ease !important;
  min-height: 48px;
}

.contact-form-glass .form-control:focus,
.contact-form-glass .form-select:focus {
  border-color: #1a7efb !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3.5px rgba(26, 126, 251, 0.15) !important;
  outline: none !important;
}

.contact-form-glass textarea.form-control {
  min-height: 120px;
}

.contact-form-glass .s_website_form_label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
}

.contact-form-glass .s_website_form_mark {
  color: #ef4444;
  font-weight: bold;
}

.contact-trust-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--erp-radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  margin-bottom: 1.5rem;
}

.contact-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--erp-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-map-frame {
  position: relative;
  border-radius: var(--erp-radius-lg);
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: var(--erp-shadow-md);
  height: 420px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--erp-radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.15);
  max-width: 340px;
  z-index: 10;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 3rem 0 3.5rem 0;
  }
  .contact-form-glass {
    padding: 1.75rem 1.25rem;
  }
  .contact-map-badge {
    position: static;
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  .contact-map-frame {
    height: 350px;
  }
}

/* ==========================================================================
   13. Global Whole-Website Design Extensions (Home, About, Footer, Navbar)
   ========================================================================== */

/* A. Global Buttons */
.btn-erp-primary {
  background-color: var(--erp-primary);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: var(--erp-radius-full);
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--erp-primary);
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(26, 126, 251, 0.25);
}
.btn-erp-primary:hover {
  background-color: var(--erp-primary-dark);
  border-color: var(--erp-primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 126, 251, 0.35);
}

.btn-erp-outline {
  background-color: transparent;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: var(--erp-radius-full);
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}
.btn-erp-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-erp-outline-dark {
  background-color: #ffffff;
  color: var(--erp-slate-800) !important;
  font-weight: 600;
  border-radius: var(--erp-radius-full);
  padding: 0.75rem 1.75rem;
  border: 1px solid #cbd5e1;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}
.btn-erp-outline-dark:hover {
  background-color: var(--erp-slate-50);
  border-color: var(--erp-primary);
  color: var(--erp-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--erp-shadow-sm);
}

/* B. Case Studies & Success Stories Bento */
.case-study-bento {
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--erp-shadow-sm);
  transition: all 0.25s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.case-study-bento:hover {
  transform: translateY(-4px);
  box-shadow: var(--erp-shadow-lg);
  border-color: #93c5fd;
}
.case-study-quote {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--erp-slate-700);
  margin-bottom: 1.5rem;
  position: relative;
}
.case-study-quote::before {
  content: "“";
  font-size: 3.5rem;
  line-height: 1;
  color: #93c5fd;
  opacity: 0.4;
  position: absolute;
  top: -1.25rem;
  left: -0.5rem;
  font-family: Georgia, serif;
}
.case-study-client {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--erp-slate-100);
}
@media (max-width: 575.98px) {
  .case-study-client .badge {
    margin-left: 0 !important;
    width: fit-content;
    font-size: 0.75rem;
  }
}
.case-study-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--erp-primary-light);
  color: var(--erp-primary-dark);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(26, 126, 251, 0.2);
}

/* C. Modern FAQ Accordion */
.modern-faq-item {
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.2s ease;
}
.modern-faq-item:hover {
  border-color: #93c5fd;
  box-shadow: var(--erp-shadow-sm);
}
.modern-faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--erp-slate-900);
  background: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
}
.modern-faq-header:hover {
  background: var(--erp-slate-50);
}
.modern-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--erp-slate-100);
  color: var(--erp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.modern-faq-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--erp-slate-600);
  line-height: 1.65;
}
.modern-faq-item.active .modern-faq-header {
  color: var(--erp-primary);
}
.modern-faq-item.active .modern-faq-icon {
  transform: rotate(45deg);
  background: var(--erp-primary-light);
}
.modern-faq-item.active .modern-faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  max-height: 300px;
}

/* D. Modern Dark SaaS Footer */
.arihant-footer-modern {
  background-color: #07131e !important;
  color: #94a3b8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 4.5rem 0 2rem 0;
  font-size: 0.9375rem;
}
.arihant-footer-modern h5, .arihant-footer-modern .footer-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.025em;
  margin-bottom: 1.25rem;
}
.arihant-footer-modern a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.arihant-footer-modern a:hover {
  color: var(--erp-primary) !important;
  transform: translateX(3px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #cbd5e1;
}
.footer-contact-item i {
  color: var(--erp-primary);
  margin-top: 0.25rem;
  font-size: 1rem;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* E. Metrics & Stats (About Us) */
.metric-stat-card {
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--erp-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}
.metric-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--erp-shadow-md);
  border-color: #93c5fd;
}
.metric-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--erp-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--erp-slate-700);
}

/* F. Tech Stack Bento (About Us) */
.tech-category-card {
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--erp-shadow-sm);
  transition: all 0.2s ease;
}
.tech-category-card:hover {
  border-color: #93c5fd;
  box-shadow: var(--erp-shadow-md);
  transform: translateY(-2px);
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem;
  background: var(--erp-slate-100);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--erp-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--erp-slate-700);
  margin: 0.3rem;
  transition: all 0.15s ease;
}
.tech-pill:hover {
  background: var(--erp-primary-light);
  border-color: #93c5fd;
  color: var(--erp-primary-dark);
}

/* G. Clientele Logo Grid */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.client-logo-item {
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: var(--erp-shadow-sm);
  transition: all 0.2s ease;
}
.client-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--erp-shadow-md);
  border-color: #93c5fd;
}
.client-logo-item img {
  max-height: 52px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.25s ease;
}
.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* 14. IMCA Feature Detail Screenshots */
.s_table_of_content_main img {
  border-radius: var(--erp-radius-md);
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.s_table_of_content_main img:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px -12px rgba(26, 126, 251, 0.18), 0 0 0 1px rgba(26, 126, 251, 0.35);
}

/* 15. Modern Mobile Offcanvas Navigation & Polish */
.o_navbar_mobile.offcanvas {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-left: 1px solid rgba(226, 232, 240, 0.85) !important;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08) !important;
}

.o_navbar_mobile .offcanvas-header {
  padding: 1.25rem 1.5rem 0.5rem 1.5rem !important;
}

.o_navbar_mobile .btn-close {
  padding: 0.5rem !important;
  border-radius: 50% !important;
  transition: all 0.2s ease !important;
  opacity: 0.7 !important;
}

.o_navbar_mobile .btn-close:hover {
  opacity: 1 !important;
  background-color: var(--erp-slate-100) !important;
  transform: rotate(90deg);
}

.o_navbar_mobile .o_searchbar_form .oe_search_box {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  font-size: 0.95rem !important;
  padding: 0.65rem 1rem !important;
  transition: all 0.2s ease;
}

.o_navbar_mobile .o_searchbar_form .oe_search_box:focus {
  background: #ffffff !important;
  border-color: var(--erp-primary) !important;
  box-shadow: 0 0 0 3px rgba(26, 126, 251, 0.15) !important;
}

.o_navbar_mobile .top_menu .nav-item {
  border-color: rgba(226, 232, 240, 0.7) !important;
}

.o_navbar_mobile .top_menu .nav-link,
.o_navbar_mobile .top_menu .accordion-button {
  color: var(--erp-slate-800) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  padding: 0.9rem 1rem !important;
  border-radius: 8px !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}

.o_navbar_mobile .top_menu .accordion-button:not(.collapsed) {
  color: var(--erp-primary) !important;
  background: var(--erp-primary-light) !important;
}

.o_navbar_mobile .top_menu .accordion-button::after {
  transition: transform 0.25s ease-in-out !important;
}

.o_navbar_mobile .top_menu .accordion-collapse {
  background: #f8fafc !important;
  border-radius: 8px;
  margin: 0.25rem 0.5rem 0.5rem 0.5rem;
  padding: 0.25rem 0;
}

.o_navbar_mobile .top_menu .accordion-collapse .nav-link,
.o_navbar_mobile .top_menu .accordion-collapse .list-group-item {
  color: var(--erp-slate-600) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  padding: 0.65rem 1.25rem !important;
  border: none !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.o_navbar_mobile .top_menu .accordion-collapse .nav-link:hover,
.o_navbar_mobile .top_menu .accordion-collapse .list-group-item:hover,
.o_navbar_mobile .top_menu .accordion-collapse .nav-link.active {
  color: var(--erp-primary) !important;
  background: rgba(26, 126, 251, 0.08) !important;
  padding-left: 1.5rem !important;
}

/* Phone badge in offcanvas */
.o_navbar_mobile .s_text_block a[href*="tel:"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--erp-radius-full) !important;
  padding: 0.55rem 1.15rem !important;
  color: var(--erp-slate-800) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  margin-top: 0.75rem !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.o_navbar_mobile .s_text_block a[href*="tel:"]:hover {
  background: var(--erp-primary-light) !important;
  border-color: #93c5fd !important;
  color: var(--erp-primary) !important;
}

/* Mobile CTA buttons */
.o_navbar_mobile .o_nav_link_btn {
  border: 1px solid #cbd5e1 !important;
  border-radius: var(--erp-radius-md) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  color: var(--erp-slate-700) !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.2s ease !important;
}

.o_navbar_mobile .o_nav_link_btn:hover {
  background: #f1f5f9 !important;
  color: var(--erp-slate-900) !important;
}

.o_navbar_mobile .btn_cta {
  background: linear-gradient(135deg, #1a7efb, #0f5bcc) !important;
  border: none !important;
  border-radius: var(--erp-radius-md) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 0.75rem 1rem !important;
  box-shadow: 0 4px 14px rgba(26, 126, 251, 0.35) !important;
  transition: all 0.25s ease !important;
}

.o_navbar_mobile .btn_cta:hover {
  background: linear-gradient(135deg, #2486ff, #1a7efb) !important;
  box-shadow: 0 6px 20px rgba(26, 126, 251, 0.5) !important;
  transform: translateY(-1px);
}

/* 16. Continuous Infinite Logo Marquee Carousel */
.erp-logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.erp-logo-marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: erpMarqueeScroll 28s linear infinite;
  will-change: transform;
}

.erp-logo-marquee:hover .erp-logo-marquee-track,
.erp-logo-marquee:active .erp-logo-marquee-track {
  animation-play-state: paused;
}

@keyframes erpMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.erp-logo-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-md);
  padding: 1rem 2rem;
  height: 80px;
  min-width: 180px;
  box-shadow: var(--erp-shadow-sm);
  transition: all 0.25s ease;
}

.erp-logo-marquee-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--erp-shadow-md);
  border-color: #93c5fd;
}

.erp-logo-marquee-item img {
  max-height: 48px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.25s ease;
}

.erp-logo-marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* 17. Interactive ERP Workflow Stepper Carousel */
.erp-workflow-carousel-wrapper {
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--erp-shadow-sm);
  position: relative;
}

@media (max-width: 768px) {
  .erp-workflow-carousel-wrapper {
    padding: 1.25rem;
  }
}

/* Horizontal Stepper Nav Pills */
.erp-stepper-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--erp-border);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.erp-stepper-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  background: var(--erp-slate-100);
  border: 1px solid transparent;
  border-radius: var(--erp-radius-full);
  color: var(--erp-slate-700);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.erp-stepper-tab:hover {
  background: var(--erp-primary-light);
  color: var(--erp-primary-dark);
}

.erp-stepper-tab.active {
  background: var(--erp-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(26, 126, 251, 0.35);
}

.erp-stepper-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.erp-stepper-tab:not(.active) .erp-stepper-num {
  background: rgba(15, 23, 42, 0.1);
  color: var(--erp-slate-800);
}

/* Stepper Carousel Controls & Indicators */
.erp-carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--erp-border);
}

.erp-carousel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--erp-radius-md);
  transition: all 0.2s ease;
}

.erp-carousel-indicators {
  position: static;
  margin: 0;
  gap: 6px;
}

.erp-carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  opacity: 1;
  transition: all 0.25s ease;
}

.erp-carousel-indicators .active {
  width: 26px;
  border-radius: 9999px;
  background-color: var(--erp-primary);
}

/* 18. Responsive Success Stories Multi-Card Carousel */
.erp-stories-carousel .carousel-item {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-story-card {
  background: #ffffff;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius-lg);
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--erp-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.erp-story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--erp-shadow-md);
  border-color: #93c5fd;
}

.erp-story-metric {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--erp-primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.erp-story-metric-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--erp-slate-600);
}

/* 18. Comprehensive Homepage & Global Mobile Responsiveness */
#wrap {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

.erp-section-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.erp-glass-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--erp-radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.erp-glass-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .erp-hero-modern {
    padding: 3.75rem 0 4.5rem 0;
  }
  .erp-hero-modern .erp-hero-title {
    font-size: clamp(1.85rem, 5vw, 2.75rem);
  }
}

@media (max-width: 575.98px) {
  .erp-hero-modern {
    padding: 3rem 0 3.5rem 0;
  }
  .erp-hero-modern .erp-hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .erp-hero-modern .erp-hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }
  .erp-hero-modern .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    gap: 0.75rem !important;
  }
  .erp-hero-modern .d-flex.flex-wrap.gap-3 > a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.25rem;
  }
  .erp-glass-stat {
    padding: 0.65rem 0.25rem !important;
  }
  .erp-stat-num {
    font-size: 1.25rem !important;
  }
  .erp-stat-label {
    font-size: 0.68rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .erp-card-bento {
    padding: 1.5rem 1.25rem;
  }
  .case-study-bento {
    padding: 1.5rem 1.25rem;
  }
  .case-study-quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .erp-logo-marquee-item {
    min-width: 135px;
    height: 60px;
    padding: 0.5rem 1rem;
  }
  .erp-logo-marquee-item img {
    max-height: 36px;
    max-width: 100px;
  }
  .erp-logo-marquee-track {
    gap: 1.25rem;
  }
  /* Mobile CTA Buttons in Closing Banner */
  .max-w-700 .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    gap: 0.75rem !important;
  }
  .max-w-700 .d-flex.flex-wrap.gap-3 > a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}



