/* ==========================================================================
   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);
}

.erp-stat-num {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.erp-stat-label {
  font-size: 0.75rem;
  line-height: 1.35;
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

@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;
  }
}


/* ===================================================================
   19. JOBS & CAREERS: Listing, Detail, Apply, Thank You
   =================================================================== */

/* --- Jobs Hero: modifier on erp-hero-modern (inherits ambient mesh, glass, etc.) --- */
.erp-hero-jobs {
  padding: 4rem 0 3rem;
}

/* --- Jobs listing section headings: match site pattern --- */
.oe_website_jobs .o_wevent_index_topbar_filters {
  flex-direction: column !important;
  align-items: center !important;
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
}


/* --- Job Cards on listing page --- */
.oe_website_jobs .card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #1a7efb;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.oe_website_jobs .card:hover {
  border-left-color: #00d4ff;
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(0, 212, 255, 0.12);
  transform: translateY(-4px);
}
.oe_website_jobs .card .card-body {
  padding: 1.75rem !important;
}
.oe_website_jobs .card .card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.oe_website_jobs .card:hover .card-body h3 {
  color: #1a7efb;
}
.oe_website_jobs .card .card-body h5.text-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 255, 0.1);
  color: #0284c7 !important;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.oe_website_jobs .card .card-body .oe_empty {
  font-size: 0.95rem;
  color: #334155 !important;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.oe_website_jobs .card .o_job_infos {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.82rem;
  color: #475569;
}
.oe_website_jobs .card .o_job_infos > span,
.oe_website_jobs .card .o_job_infos > div {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.oe_website_jobs .card .o_job_infos i {
  color: #1a7efb;
}

/* --- Sidebar "Why Arihant AI" panel --- */
#jobs_grid_right .container {
  padding: 0;
}
#jobs_grid_right .erp-why-panel {
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  border: 1px solid #e0f2fe;
  border-radius: 16px;
  padding: 2rem 1.5rem;
}
#jobs_grid_right .erp-why-panel h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}
#jobs_grid_right .erp-why-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
#jobs_grid_right .erp-why-perk i {
  color: #00d4ff;
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
#jobs_grid_right .erp-why-perk span {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
}
#jobs_grid_right .erp-sidebar-contact {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}
#jobs_grid_right .erp-sidebar-contact a {
  color: var(--erp-primary, #0a6ef5);
  text-decoration: none;
  font-weight: 600;
}
#jobs_grid_right .erp-sidebar-contact li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
}
#jobs_grid_right .erp-sidebar-contact li i {
  color: #00d4ff;
  width: 20px;
}

/* --- Job Detail page --- */
.js_hr_recruitment section.pb32 {
  padding-bottom: 0 !important;
}
.js_hr_recruitment section.pb32 .container .mt32 {
  margin-top: 0 !important;
  background: linear-gradient(135deg, #091724 0%, #0d2335 50%, #102d45 100%);
  padding: 2.5rem 2rem 2rem;
  border-radius: 0 0 20px 20px;
  margin-left: -12px;
  margin-right: -12px;
}
.js_hr_recruitment section.pb32 .container .mt32 h1 {
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.js_hr_recruitment section.pb32 .container .mt32 h5.fw-light {
  color: #94a3b8 !important;
}
.js_hr_recruitment section.pb32 .container .mt32 h5.fw-light i {
  color: #00d4ff;
}
.js_hr_recruitment section.pb32 .container .mt32 .btn-primary.btn-lg {
  background: linear-gradient(135deg, #00d4ff 0%, #0a6ef5 100%);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}
.js_hr_recruitment section.pb32 .container .mt32 .btn-primary.btn-lg:hover {
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.45);
  transform: translateY(-1px);
}

/* Detail page body content */
.js_hr_recruitment > div[itemscope] > div:not(.oe_structure) {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.js_hr_recruitment > div[itemscope] > div:not(.oe_structure) h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0f2fe;
}
.js_hr_recruitment > div[itemscope] > div:not(.oe_structure) h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.js_hr_recruitment > div[itemscope] > div:not(.oe_structure) ul {
  padding-left: 1.25rem;
}
.js_hr_recruitment > div[itemscope] > div:not(.oe_structure) li {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.js_hr_recruitment > div[itemscope] > div:not(.oe_structure) p {
  color: #475569;
  line-height: 1.7;
}
.js_hr_recruitment > div[itemscope] > div:not(.oe_structure) strong {
  color: #1e293b;
}

/* Detail page bottom Apply bar */
.o_job_bottom_bar {
  padding: 2rem 0 1rem;
}
.o_job_bottom_bar .btn-primary.btn-lg {
  background: linear-gradient(135deg, #00d4ff 0%, #0a6ef5 100%);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}
.o_job_bottom_bar .btn-primary.btn-lg:hover {
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.45);
  transform: translateY(-1px);
}

/* Back-to-jobs nav bar */
.js_hr_recruitment ~ nav.navbar.border-top,
nav.navbar.border-top:has(+ div.js_hr_recruitment),
main > nav.navbar.border-top.shadow-sm {
  background: #f8fafc;
  border-top: 2px solid #e0f2fe !important;
  box-shadow: none !important;
}
main > nav.navbar.border-top.shadow-sm .navbar-brand a {
  color: var(--erp-primary, #0a6ef5);
  font-weight: 600;
  text-decoration: none;
}

/* --- Apply Form page --- */
#wrap.container nav[aria-label="breadcrumb"] {
  margin-top: 1.5rem !important;
}
#wrap.container nav[aria-label="breadcrumb"] .breadcrumb {
  background: transparent;
  font-size: 0.88rem;
}
#wrap.container nav[aria-label="breadcrumb"] a {
  color: var(--erp-primary, #0a6ef5);
  text-decoration: none;
  font-weight: 600;
}
#wrap.container > h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
}
/* Restyle the submit button from "I'm feeling lucky" */
#apply-btn.s_website_form_send,
a.s_website_form_send#apply-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #0a6ef5 100%) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.85rem 2.5rem !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3) !important;
  transition: all 0.3s ease !important;
  color: #ffffff !important;
}
#apply-btn.s_website_form_send:hover {
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.45) !important;
  transform: translateY(-1px);
}
/* Apply sidebar styling */
#jobs_section .col-md-3 h5,
#jobs_section aside h5 {
  font-weight: 700;
  color: #0f172a;
}

/* --- Thank You page --- */
#jobs_thankyou h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
}
#jobs_thankyou .btn-primary.btn-lg {
  background: linear-gradient(135deg, #00d4ff 0%, #0a6ef5 100%);
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

/* --- Jobs Mobile Responsive --- */
@media (max-width: 991.98px) {
  #jobs_grid_right {
    margin-top: 2rem;
  }
  .js_hr_recruitment section.pb32 .container .mt32 {
    padding: 2rem 1.25rem 1.5rem;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .erp-hero-jobs {
    padding: 2.5rem 0 2rem;
  }
  .oe_website_jobs .card {
    border-radius: 10px;
  }
  .oe_website_jobs .card .card-body {
    padding: 1rem !important;
  }
  .oe_website_jobs .card .card-body h3 {
    font-size: 1.05rem;
  }
  .js_hr_recruitment section.pb32 .container .mt32 {
    padding: 1.5rem 1rem 1.25rem;
  }
  .js_hr_recruitment section.pb32 .container .mt32 .col-md-3 {
    text-align: center !important;
    margin-top: 1rem;
  }
  .js_hr_recruitment > div[itemscope] > div:not(.oe_structure) {
    padding: 1.5rem 0.5rem;
  }
  #jobs_thankyou .btn-primary.btn-lg {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  #jobs_thankyou .btn-primary.btn-lg + a {
    margin-left: 0 !important;
  }
  #o_recruitment_thank_cta .btn-primary.btn-lg.ms-3 {
    margin-left: 0 !important;
  }
}


/* ===================================================================
   20. HIGH-CONTRAST TYPOGRAPHY & WCAG ACCESSIBILITY (GRAYISH TEXT FIX)
   =================================================================== */

/* Fix washed out grayish text on light backgrounds */
body {
  color: #1e293b; /* Deep slate instead of washed out default */
}

.text-muted,
.text-secondary {
  color: #334155 !important; /* Rich readable slate instead of #6c757d / #94a3b8 */
}

/* Light cards & sections: ensure all body text and small labels have crisp contrast */
.card p,
.card-body p,
.card-body .oe_empty,
.s_text_block p,
.s_features p,
.s_three_columns p,
section:not(.erp-hero-modern):not(#bottom) p {
  color: #334155;
  line-height: 1.68;
}

/* Strong & Headings contrast */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #0f172a;
}

/* Dark surfaces: ensure secondary / muted text is bright enough to read easily */
.erp-hero-modern p,
.erp-hero-modern .erp-hero-subtitle,
.erp-hero-jobs p {
  color: #cbd5e1 !important; /* Crisp slate 300 instead of dim grey */
}

.erp-hero-modern .text-white-50,
.erp-hero-jobs .text-white-50,
.text-white-50 {
  color: rgba(255, 255, 255, 0.82) !important; /* 82% white instead of 50% washed out */
}

.erp-hero-modern .erp-stat-label {
  color: #94a3b8 !important;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Small labels and badges */
small.text-muted,
span.text-muted.small {
  color: #475569 !important; /* Slate 600 - passes AA contrast */
  font-weight: 500;
}


/* ===================================================================
   21. SIGNATURE MOTION & SCROLL ENGINE (Inspired by Prosperally Global)
   =================================================================== */

/* ── 21.1 Top Scroll Progress Hairline ── */
#erp-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a7efb 0%, #00d4ff 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1050;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  transition: transform 0.05s linear;
}

/* ── 21.2 Unified Compound Scroll Reveal Engine ([data-reveal]) ── */
html.erp-has-js [data-reveal],
[data-reveal="true"],
[data-reveal="compound"] {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

html.erp-has-js [data-reveal='zoom'] {
  transform: translateY(16px) scale(0.94);
}

html.erp-has-js [data-reveal='blur'] {
  filter: blur(8px);
  transform: translateY(24px) scale(0.98);
}

html.erp-has-js [data-reveal='left'] {
  transform: translateX(-28px) translateY(12px) scale(0.98);
}

html.erp-has-js [data-reveal='right'] {
  transform: translateX(28px) translateY(12px) scale(0.98);
}

html.erp-has-js [data-reveal='compound'] {
  transform: translateY(24px) scale(0.98);
}

html.erp-has-js [data-reveal='none'] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

html.erp-has-js [data-reveal].is-inview,
[data-reveal="true"].is-inview,
[data-reveal="compound"].is-inview,
[data-reveal].is-inview {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
  filter: blur(0) !important;
}

/* ── 21.3 Card Spotlight Follower ── */
[data-spotlight] {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  [data-spotlight]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: radial-gradient(
      320px circle at var(--mx, 50%) var(--my, 50%),
      rgba(0, 212, 255, 0.08),
      transparent 65%
    );
    pointer-events: none;
  }
  [data-spotlight]:hover::after {
    opacity: 1;
  }
}

/* ── 21.4 Card Glow Hover Hairline ── */
.card-glow {
  position: relative;
}
.card-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(26, 126, 251, 0.5), rgba(0, 212, 255, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card-glow:hover::before {
  opacity: 1;
}

/* ── 21.5 Floating Back-to-Top Button ── */
#erp-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0f172a;
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
#erp-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#erp-back-to-top:hover {
  background: #1a7efb;
  color: #ffffff;
  border-color: #1a7efb;
  box-shadow: 0 6px 24px rgba(26, 126, 251, 0.45);
  transform: translateY(-2px);
}


/* ===================================================================
   22. MODERN FOOTER ARCHITECTURE (Inspired by Prosperally Global)
   =================================================================== */

.arihant-footer-modern {
  background: #090d16 !important;
  color: #cbd5e1 !important;
  border-top: 1px solid #1e293b !important;
  position: relative;
  font-family: inherit;
}

.footer-brand-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-brand-title .brand-ai {
  color: #3b82f6;
}

.arihant-footer-modern p,
.arihant-footer-modern .footer-brand-desc {
  color: #cbd5e1 !important;
  font-size: 0.925rem;
  line-height: 1.68;
  max-width: 360px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}

.footer-contact-icon {
  color: #3b82f6;
  width: 20px;
  font-size: 0.95rem;
  margin-right: 0.65rem;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-row:hover .footer-contact-icon {
  color: #60a5fa;
  transform: scale(1.1);
}

.arihant-footer-modern .footer-address {
  color: #cbd5e1 !important;
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer-column-heading {
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Taste Skill Link Hover: Fluid fade to pure white and tactile 4px micro-shift */
.erp-footer-link {
  display: inline-flex;
  align-items: center;
  color: #94a3b8 !important;
  font-size: 0.925rem;
  text-decoration: none !important;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-footer-link:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .erp-footer-link {
    font-size: 0.815rem !important;
    line-height: 1.45;
  }
  .footer-column-heading {
    font-size: 0.775rem !important;
    margin-bottom: 0.75rem !important;
  }
  .footer-link-list {
    gap: 0.6rem !important;
  }
}

.footer-hiring-pill {
  font-size: 0.675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  margin-left: 0.55rem;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s ease;
}

.erp-footer-link:hover .footer-hiring-pill {
  background: rgba(59, 130, 246, 0.25);
  border-color: #60a5fa;
  color: #93c5fd;
}

/* Tasteful Dark-Mode WhatsApp Pill */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80 !important;
  padding: 0.6rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-whatsapp-btn i {
  font-size: 1.15rem;
  color: #22c55e;
  transition: transform 0.3s ease;
}

.footer-whatsapp-btn:hover {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff !important;
  box-shadow: 0 6px 20px -2px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

.footer-whatsapp-btn:hover i {
  color: #ffffff;
  transform: scale(1.15);
}

/* Copyright Bar */
.footer-copyright-bar {
  background: #060910 !important;
  border-top: 1px solid #172033 !important;
  padding: 1.25rem 0 !important;
  position: relative;
  z-index: 2;
}

.footer-copyright-text,
.footer-copyright-subtext {
  color: #64748b !important;
  font-size: 0.825rem !important;
}

.footer-copyright-text strong,
.footer-copyright-subtext strong {
  color: #94a3b8 !important;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-legal-link {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.footer-legal-sep {
  color: #334155;
  user-select: none;
}

@media (max-width: 767.98px) {
  .footer-legal-links {
    margin: 0.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  #erp-scroll-progress {
    display: none !important;
  }
  html.erp-has-js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .erp-footer-link:hover {
    transform: none !important;
  }
}

/* ==========================================================================
   23. OPERATIONAL TRANSFORMATION STUDIO
   ========================================================================== */
.op-studio-nav-wrapper {
  display: flex;
  justify-content: center;
}

.op-studio-nav {
  display: inline-flex;
  background: #f1f5f9;
  padding: 0.35rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  gap: 0.25rem;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}

.op-studio-nav::-webkit-scrollbar {
  display: none;
}

.op-studio-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.op-studio-tab i {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.op-studio-tab:hover {
  color: #0f172a;
}

.op-studio-tab.active {
  background: #ffffff;
  color: #1a7efb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.op-studio-tab.active i {
  transform: scale(1.1);
}

.op-studio-panel {
  display: none;
  animation: opPanelFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.op-studio-panel.active {
  display: block;
}

@keyframes opPanelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.op-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a7efb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.op-panel-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.op-contrast-box {
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
}

.op-contrast-legacy {
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-left: 3px solid #ef4444;
}

.op-contrast-modern {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-left: 3px solid #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.04);
}

.op-contrast-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.op-contrast-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

.op-panel-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.op-metric-pill {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.65rem 1.15rem;
}

.op-metric-pill strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.op-metric-pill span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

/* Simulated UI Console Card */
.op-console-card {
  background: #090e1a;
  border: 1px solid #1e293b;
  border-radius: 18px;
  padding: 1.5rem;
  color: #cbd5e1;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.op-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #1e293b;
  font-size: 0.75rem;
}

.op-console-dots {
  display: flex;
  gap: 6px;
}

.op-console-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

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

.op-console-title {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.op-console-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.05em;
}

.op-live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulseLight 1.5s infinite;
}

@keyframes pulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.op-console-stat-row {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.op-stat-lbl {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.op-stat-val {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.op-console-stream {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.op-stream-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.stream-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.stream-text {
  flex-grow: 1;
  color: #e2e8f0;
}

.stream-time {
  font-size: 0.7rem;
  color: #64748b;
}

/* Sprint Timeline in Console */
.op-sprint-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.op-sprint-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.op-sprint-step.completed .sprint-marker {
  background: #059669;
  color: #fff;
}

.op-sprint-step.active {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

.op-sprint-step.active .sprint-marker {
  background: #2563eb;
  color: #fff;
}

.sprint-marker {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #334155;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sprint-info {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.sprint-info strong {
  color: #f1f5f9;
}

.sprint-info span {
  color: #94a3b8;
  font-size: 0.725rem;
}

/* Warehouse Nodes in Console */
.op-warehouse-nodes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.op-node-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.node-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.node-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
}

.node-details strong {
  color: #f1f5f9;
}

.node-details span {
  color: #94a3b8;
  font-size: 0.7rem;
}

/* Architect in Console */
.op-architect-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.op-architect-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.op-architect-avatar {
  font-size: 1.75rem;
  color: #60a5fa;
}

.op-architect-header strong {
  display: block;
  font-size: 0.85rem;
  color: #f8fafc;
}

.op-architect-header span {
  font-size: 0.725rem;
  color: #94a3b8;
}

.op-architect-channels {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.op-sla-stat-row {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.sla-item {
  display: flex;
  flex-direction: column;
}

.sla-label {
  font-size: 0.68rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sla-value {
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* ==========================================================================
   24. WORLD-CLASS TESTIMONIAL CAROUSEL (SCROLL-TRIGGERED)
   ========================================================================== */
.testimonial-carousel-container {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.testimonial-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
}

.testimonial-badge-count {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
}

.testimonial-carousel-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-nav-btn:hover {
  background: #1a7efb;
  color: #ffffff;
  border-color: #1a7efb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -2px rgba(26, 126, 251, 0.35);
}

.testimonial-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-current-idx {
  color: #0f172a;
  font-size: 0.95rem;
}

.testimonial-track-window {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 25px -4px rgba(15, 23, 42, 0.06);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-carousel-container.carousel-inview .testimonial-track-window {
  transform: scale(1);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
}

.testimonial-track {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
  padding: 2.75rem 2.5rem;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-card-elite {
  height: 100%;
}

.testimonial-slide-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-client-logo {
  height: 38px;
  max-width: 140px;
  object-fit: contain;
}

.testimonial-domain-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.testimonial-slide-headline {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.testimonial-slide-quote {
  font-size: clamp(0.975rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.75rem;
}

.testimonial-slide-quote strong {
  color: #0f172a;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.testimonial-author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.testimonial-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid #d1fae5;
}

.testimonial-metric-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.metric-card-icon {
  font-size: 1.5rem;
  color: #1a7efb;
  margin-bottom: 0.65rem;
}

.metric-card-stat {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.metric-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a7efb;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.metric-card-sub {
  font-size: 0.775rem;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-dot:hover {
  background: #94a3b8;
}

.testimonial-dot.active {
  width: 32px;
  background: #1a7efb;
}

/* Fallbacks & Responsiveness */
.reality-check-card {
  border-radius: var(--erp-radius-lg, 18px);
  padding: 2.25rem 2rem;
  height: 100%;
}

.editorial-case-brand-mark {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 767.98px) {
  .op-studio-tab {
    padding: 0.5rem 0.95rem;
    font-size: 0.8rem;
  }
  .op-panel-title {
    font-size: 1.25rem;
  }
  .op-contrast-desc {
    font-size: 0.85rem;
  }
  .op-console-card {
    padding: 1.15rem 1rem;
  }
  .testimonial-slide {
    padding: 1.5rem 1.25rem;
  }
  .testimonial-slide-headline {
    font-size: 1.1rem;
  }
  .testimonial-slide-quote {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .testimonial-metric-card {
    padding: 1.25rem 1rem;
    margin-top: 0.5rem;
  }
}


/* ==========================================================================
   25. ENTERPRISE BLOG & INSIGHTS PUBLICATION SYSTEM
   ========================================================================== */

/* --- 25.1 Blog Hero Banner --- */
.erp-hero-blog {
  background: radial-gradient(120% 80% at 50% 0%, #172554 0%, #090e1a 70%);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.erp-hero-blog::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 126, 251, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.blog-telemetry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- 25.2 Topic Navigation & Filter Pills --- */
.blog-topic-nav-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 10;
}

.blog-topic-pills {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0;
}

.blog-topic-pills::-webkit-scrollbar {
  display: none;
}

.blog-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-topic-pill:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-topic-pill.active {
  background: #eff6ff;
  border-color: #38bdf8;
  color: #0284c7;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15);
}

.blog-search-container {
  min-width: 260px;
}

.blog-search-form .o_search_box,
.blog-search-form input[name="search"] {
  border-radius: 9999px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 0.55rem 1.25rem !important;
  font-size: 0.875rem !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  transition: all 0.2s ease !important;
}

.blog-search-form input[name="search"]:focus {
  background: #ffffff !important;
  border-color: #1a7efb !important;
  box-shadow: 0 0 0 3px rgba(26, 126, 251, 0.15) !important;
  outline: none !important;
}

.blog-search-form .btn {
  border-radius: 9999px !important;
  padding: 0.55rem 1rem !important;
}

/* --- 25.3 Blog Listing Section & Cards Grid --- */
#o_wblog_index_content {
  background-color: #f8fafc;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

/* Filter Strip & Badges */
.blog-active-filter-strip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* 1. Featured Spotlight Card */
.erp-blog-card-featured {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.erp-blog-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -14px rgba(26, 126, 251, 0.14), 0 12px 28px -8px rgba(15, 23, 42, 0.08);
  border-color: #93c5fd;
}

.blog-card-cover-featured {
  height: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-blog-card-featured:hover .blog-card-cover-featured {
  transform: scale(1.03);
}

.blog-badge-featured {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #00d4ff 0%, #0a6ef5 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.35);
  z-index: 2;
}

.blog-reading-time-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(9, 14, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  z-index: 2;
}

.blog-card-tag-pill {
  background: #eff6ff;
  color: #1a7efb;
  border: 1px solid #dbeafe;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.blog-featured-title {
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  font-weight: 850;
  color: #0f172a;
  line-height: 1.28;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.blog-featured-title a:hover {
  color: #1a7efb !important;
}

.blog-featured-teaser {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.68;
}

.blog-avatar-mini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.blog-author-name-mini {
  font-size: 0.88rem;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.2;
}

.blog-author-role-mini {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.2;
}

.blog-read-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 750;
  font-size: 0.92rem;
  color: #1a7efb !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-read-arrow-btn i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-read-arrow-btn:hover {
  color: #0284c7 !important;
}

.blog-read-arrow-btn:hover i,
.erp-blog-card-featured:hover .blog-read-arrow-btn i {
  transform: translateX(5px);
}

/* 2. Grid Cards */
.erp-blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.erp-blog-card:hover {
  transform: translateY(-8px) scale(1.008);
  box-shadow: 0 24px 48px -12px rgba(26, 126, 251, 0.12), 0 10px 24px -8px rgba(15, 23, 42, 0.06);
  border-color: #93c5fd;
}

.blog-card-cover {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-blog-card:hover .blog-card-cover {
  transform: scale(1.04);
}

.blog-card-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 14, 26, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #38bdf8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  text-transform: uppercase;
  z-index: 2;
}

.blog-card-time-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 14, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  z-index: 2;
}

.blog-mini-tag {
  font-size: 0.72rem;
  font-weight: 650;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
}

.blog-card-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.38;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.blog-card-title a:hover,
.erp-blog-card:hover .blog-card-title a {
  color: #1a7efb !important;
}

.blog-card-teaser {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link-action {
  display: inline-flex;
  align-items: center;
  font-weight: 750;
  font-size: 0.88rem;
  color: #1a7efb !important;
  transition: all 0.2s ease;
}

.blog-card-link-action i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-blog-card:hover .blog-card-link-action i {
  transform: translateX(4px);
}

/* 25.3 Blog Scroll Reveal mapped to Unified Section 21.2 Engine */
.blog-featured-wrapper,
.blog-grid-cards > div {
  will-change: opacity, transform;
}

/* --- 25.4 Daily Digest / Newsletter Overhaul --- */
/* Transform the outdated purple form into dark executive architecture */
section.s_text_block[style*="rgba(79, 70, 229"] {
  background: #090e1a !important;
  border: 1px solid #1e293b !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 3rem 1.5rem !important;
  position: relative !important;
  overflow: hidden !important;
}

section.s_text_block[style*="rgba(79, 70, 229"]::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 250px;
  background: radial-gradient(circle, rgba(26, 126, 251, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

section.s_text_block[style*="rgba(79, 70, 229"] h3 {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1.85rem !important;
  letter-spacing: -0.02em !important;
}

section.s_text_block[style*="rgba(79, 70, 229"] p {
  color: #94a3b8 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

#js_newsletter_subscribe_form input.form-control,
#js_newsletter_subscribe_form select.form-select {
  background: #0f172a !important;
  border: 1px solid #334155 !important;
  color: #f8fafc !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
}

#js_newsletter_subscribe_form input.form-control:focus,
#js_newsletter_subscribe_form select.form-select:focus {
  border-color: #1a7efb !important;
  box-shadow: 0 0 0 3px rgba(26, 126, 251, 0.25) !important;
  outline: none !important;
}

#js_newsletter_subscribe_form select.form-select option {
  background: #0f172a !important;
  color: #f8fafc !important;
}

#js_newsletter_subscribe_form button[type="submit"] {
  background: linear-gradient(135deg, #00d4ff 0%, #0a6ef5 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  padding: 0.85rem 1.25rem !important;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3) !important;
  transition: all 0.25s ease !important;
}

#js_newsletter_subscribe_form button[type="submit"]:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.45) !important;
}

/* --- 25.4 Single Blog Article Experience --- */
/* Reading Progress Bar */
.erp-reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a7efb 0%, #00d4ff 100%);
  z-index: 99999;
  width: 0%;
  transition: width 0.05s linear;
}

/* Article Editorial Header */
.blog-article-header-modern {
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.blog-breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-back-link {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-back-link:hover {
  color: #1a7efb;
}

.blog-category-badge {
  background: #eff6ff;
  color: #1a7efb;
  border: 1px solid #dbeafe;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-article-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 850;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.blog-article-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.75rem;
}

.blog-article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.blog-meta-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-author-avatar-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eff6ff;
  color: #1a7efb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.blog-author-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.blog-author-title {
  display: block;
  font-size: 0.785rem;
  color: #64748b;
}

.blog-meta-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
}

.blog-meta-divider {
  color: #cbd5e1;
}

/* Article Body Typography */
#o_wblog_post_main {
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* Clean duplicate header, breadcrumbs, and info bars inside article content */
#o_wblog_post_main nav.breadcrumb,
#o_wblog_post_main #o_wblog_post_info,
#o_wblog_post_content > nav.breadcrumb,
#o_wblog_post_content > #o_wblog_post_info {
  display: none !important;
}

/* Hide the giant default cover in read-next footer */
#o_wblog_next_container {
  display: none !important;
}

#o_wblog_post_content {
  max-width: 780px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #1e293b !important;
  font-size: 1.085rem !important;
  line-height: 1.8 !important;
}

#o_wblog_post_content h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem) !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-top: 2.75rem !important;
  margin-bottom: 1.15rem !important;
  letter-spacing: -0.015em !important;
  line-height: 1.35 !important;
}

#o_wblog_post_content h3 {
  font-size: 1.25rem !important;
  font-weight: 750 !important;
  color: #0f172a !important;
  margin-top: 2rem !important;
  margin-bottom: 0.85rem !important;
}

#o_wblog_post_content p {
  margin-bottom: 1.5rem !important;
}

#o_wblog_post_content blockquote {
  border-left: 3px solid #1a7efb !important;
  background: #f8fafc !important;
  padding: 1.25rem 1.75rem !important;
  border-radius: 0 14px 14px 0 !important;
  color: #334155 !important;
  font-style: italic !important;
  font-size: 1.05rem !important;
  margin: 2rem 0 !important;
}

/* Author Bio Box */
.blog-author-bio-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
}

/* Consultation Callout Banner */
.blog-consultation-card {
  background: #090e1a;
  border: 1px solid #1e293b;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: #ffffff;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.blog-consultation-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 250px;
  background: radial-gradient(circle, rgba(26, 126, 251, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.blog-consultation-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.blog-consultation-title {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: -0.015em;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.blog-consultation-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
  .erp-hero-blog {
    padding: 3rem 0 2rem;
  }
  .blog-topic-nav-bar .container > div {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .blog-topic-pills {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 0.5rem !important;
  }
  .blog-search-container {
    width: 100% !important;
    min-width: 100% !important;
  }
  .blog-card-cover-featured {
    min-height: 210px !important;
    height: 210px !important;
  }
  .blog-featured-title {
    font-size: 1.35rem !important;
  }
  .blog-card-cover {
    height: 190px !important;
  }
  .blog-article-header-modern {
    padding: 2rem 0 1.5rem;
  }
  .blog-article-title {
    font-size: 1.65rem;
  }
  .blog-article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-meta-details {
    width: 100%;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
  }
  .blog-consultation-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ==========================================================================
   26. MODERN HIGH-FIDELITY VECTOR ICON SYSTEM
   ========================================================================== */
.erp-icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.15em;
  display: inline-block;
  stroke-width: 1.85;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.erp-icon-sm {
  width: 0.95em;
  height: 0.95em;
}

.erp-icon-lg {
  width: 1.5em;
  height: 1.5em;
}

.erp-icon-xl {
  width: 2em;
  height: 2em;
}

.erp-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(26, 126, 251, 0.08);
  border: 1px solid rgba(26, 126, 251, 0.18);
  color: #1a7efb;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-icon-box:hover {
  transform: translateY(-2px);
  background: rgba(26, 126, 251, 0.14);
  border-color: rgba(26, 126, 251, 0.3);
}

.erp-icon-box-primary {
  background: rgba(26, 126, 251, 0.1);
  border-color: rgba(26, 126, 251, 0.2);
  color: #1a7efb;
}

.erp-icon-box-cyan {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.25);
  color: #00d4ff;
}

.erp-icon-box-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.erp-icon-box-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.erp-icon-box-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.erp-icon-box-purple {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.btn-erp-primary .erp-icon,
.btn-erp-outline .erp-icon {
  margin-left: 0.35rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-erp-primary:hover .erp-icon,
.btn-erp-outline:hover .erp-icon {
  transform: translateX(3px);
}

@keyframes erp-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.erp-spin {
  animation: erp-spin 2s linear infinite;
}

