/* ==============================================================================
   Soft Futura - Business Management ERP Software Landing Page Stylesheet
   Design Language: Clean White + Deep Enterprise Navy + Soft Futura Blue (#2563eb)
   ============================================================================== */

/* Base Page Overrides */
.biz-erp-page {
  background-color: #ffffff;
  color: #334155;
  font-family: var(--font-body, 'Inter', sans-serif);
  -webkit-font-smoothing: antialiased;
}

.biz-erp-page h1,
.biz-erp-page h2,
.biz-erp-page h3,
.biz-erp-page h4 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
}

.biz-container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section,
.biz-hero,
.biz-section,
.biz-stats-strip,
.biz-modules-section,
.biz-final-cta-section {
  width: 100%;
  box-sizing: border-box;
}

.biz-section {
  padding: 84px 0;
  position: relative;
}

.biz-section-light {
  background-color: #ffffff;
}

.biz-section-muted {
  background-color: #f8fafc;
}

.biz-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.biz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}

.biz-eyebrow.eyebrow-pill {
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 9999px;
}

.biz-eyebrow-dark {
  color: #60a5fa;
}

.biz-eyebrow-dark.eyebrow-pill {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.3);
  color: #93c5fd;
}

.biz-section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.biz-section-desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 auto;
}

.biz-text-blue {
  color: #2563eb !important;
}

.biz-text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Styles */
.biz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
}

.biz-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.biz-btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.2s ease;
}

.biz-btn-primary:hover svg {
  transform: translateX(3px);
}

.biz-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9 !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.biz-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.biz-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  cursor: pointer;
}

.biz-btn-outline:hover {
  border-color: #2563eb;
  color: #2563eb !important;
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

/* ==============================================================================
   1. HERO SECTION (Dark Enterprise Navy Atmosphere)
   ============================================================================== */
.biz-hero {
  position: relative;
  background-color: #011d52;
  background-image:
    linear-gradient(90deg, #011d52 0%, #011d52 28%, rgba(1, 29, 82, 0.75) 42%, rgba(1, 29, 82, 0.2) 54%, transparent 66%),
    url('../images/hero/business-erp-hero-bg.webp');
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 100% 100%, cover;
  color: #f1f5f9;
  padding-top: 110px;
  padding-bottom: 45px;
  overflow: hidden;
  min-height: 490px;
  display: flex;
  align-items: center;
}

/* Atmospheric left-side gradient integrated directly in background-image */
.biz-hero::before {
  display: none;
}

.biz-hero-bg,
.biz-hero-grid-lines,
.biz-hero-glow {
  display: none !important;
}

.biz-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.biz-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}

.biz-hero-content {
  max-width: 580px;
}

.biz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #38bdf8;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.biz-hero-eyebrow span {
  opacity: 0.45;
}

.biz-hero-title {
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.biz-hero-title .biz-text-blue {
  color: #38bdf8 !important;
}

.biz-hero-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 22px;
  max-width: 530px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.biz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* 4 Badges in a Horizontal Row matching reference design */
.biz-hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 600px;
}

.biz-hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.775rem;
  font-weight: 600;
  line-height: 1.35;
  color: #e2e8f0;
}

.biz-hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(37, 99, 235, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.biz-hero-badge-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

/* Hero Dashboard Visual Mockup - Desktop uses background image seamlessly */
.biz-dashboard-wrapper {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {

  .biz-laptop-visual-container,
  .biz-float-card {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .biz-hero {
    background-color: #011d52;
    background-image:
      radial-gradient(circle at 50% 18%, rgba(56, 189, 248, 0.25) 0%, transparent 65%),
      linear-gradient(180deg, #01153d 0%, #011d52 50%, #01153d 100%);
    background-position: center;
    background-size: 100% 100%;
    padding-top: 100px;
    padding-bottom: 45px;
    min-height: auto;
  }

  .biz-hero::before {
    display: none !important;
  }

  .biz-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .biz-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .biz-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    justify-content: center;
    margin-bottom: 10px;
  }

  .biz-hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .biz-hero-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 20px;
    color: #cbd5e1;
  }

  .biz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .biz-hero-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    max-width: 360px;
    margin: 0 auto 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .biz-hero-badge {
    gap: 6px;
    font-size: 0.725rem;
    line-height: 1.3;
  }

  .biz-hero-badge-icon {
    width: 30px;
    height: 30px;
  }

  .biz-hero-badge-icon svg {
    width: 16px;
    height: 16px;
  }

  .biz-dashboard-wrapper,
  .biz-laptop-visual-container,
  .biz-float-card {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .biz-hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .biz-btn-primary,
  .biz-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


.biz-laptop-frame {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(37, 99, 235, 0.25);
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.biz-laptop-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(37, 99, 235, 0.35);
}

.biz-laptop-topbar {
  height: 38px;
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.biz-window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.biz-window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.biz-dot-red {
  background: #ef4444;
}

.biz-dot-yellow {
  background: #f59e0b;
}

.biz-dot-green {
  background: #10b981;
}

.biz-window-title {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.biz-window-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

.biz-dash-layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 390px;
  background: #f8fafc;
  color: #0f172a;
}

/* Sidebar Inside Mockup */
.biz-dash-sidebar {
  background: #09101d;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.biz-dash-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
}

.biz-dash-logo-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.biz-dash-logo-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.biz-dash-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 0.725rem;
  color: #94a3b8;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}

.biz-dash-nav-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.biz-dash-nav-link.active,
.biz-dash-nav-link:hover {
  background: rgba(37, 99, 235, 0.2);
  color: #38bdf8;
}

/* Main Content Inside Mockup */
.biz-dash-main {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.biz-dash-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.biz-dash-search {
  flex: 1;
  max-width: 260px;
  height: 30px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.725rem;
  color: #94a3b8;
}

.biz-dash-search svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.biz-dash-user-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.biz-dash-status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 9999px;
  border: 1px solid #a7f3d0;
}

.biz-dash-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.biz-dash-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Metric Cards in Mockup */
.biz-dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.biz-metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.biz-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.biz-metric-blue::before {
  background: #2563eb;
}

.biz-metric-green::before {
  background: #10b981;
}

.biz-metric-purple::before {
  background: #8b5cf6;
}

.biz-metric-orange::before {
  background: #f97316;
}

.biz-metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.biz-metric-label {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.biz-metric-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.biz-metric-sub {
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 600;
  margin-top: 2px;
}

/* Mockup Content Grid: Chart + Table */
.biz-dash-grid-content {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 10px;
}

.biz-dash-chart-card,
.biz-dash-table-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.biz-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.biz-card-head h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
}

.biz-card-tag {
  font-size: 0.65rem;
  color: #2563eb;
  font-weight: 600;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Mini Bar Chart Mockup */
.biz-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 90px;
  padding-top: 10px;
  border-bottom: 1px solid #e2e8f0;
  gap: 8px;
}

.biz-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.biz-bar-fill {
  width: 100%;
  max-width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #38bdf8 0%, #2563eb 100%);
  transition: height 0.5s ease;
}

.biz-bar-fill.secondary {
  background: linear-gradient(180deg, #93c5fd 0%, #60a5fa 100%);
}

.biz-bar-label {
  font-size: 0.6rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Mini Activity Table Mockup */
.biz-dash-table {
  width: 100%;
  border-collapse: collapse;
}

.biz-dash-table th {
  text-align: left;
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
  padding: 4px 6px;
  border-bottom: 1px solid #f1f5f9;
}

.biz-dash-table td {
  font-size: 0.65rem;
  color: #1e293b;
  padding: 5px 6px;
  border-bottom: 1px solid #f8fafc;
}

.biz-badge-status {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.biz-status-active {
  background: #ecfdf5;
  color: #059669;
}

.biz-status-pending {
  background: #fffbeb;
  color: #d97706;
}

/* Floating Elements around hero dashboard */
.biz-float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.biz-float-card-1 {
  bottom: -15px;
  left: -20px;
}

.biz-float-card-2 {
  top: -15px;
  right: -15px;
  animation-delay: -2s;
}

.biz-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.biz-float-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.biz-float-text strong {
  display: block;
  font-size: 0.75rem;
  color: #0f172a;
  font-weight: 700;
}

.biz-float-text span {
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 600;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* ==============================================================================
   2. TRUST / STATS STRIP
   ============================================================================== */
.biz-stats-strip {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 36px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.biz-stats-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.biz-stats-lead {
  max-width: 220px;
}

.biz-stats-lead h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.biz-stats-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  flex: 1;
}

.biz-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.biz-stat-item:hover {
  background: #ffffff;
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
}

.biz-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.biz-stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.biz-stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.biz-stat-desc {
  font-size: 0.775rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.3;
}

/* ==============================================================================
   3. ERP SOLUTION SECTION (8 Modules Grid)
   ============================================================================== */
.biz-solution-section {
  background: #ffffff;
}

.biz-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.biz-solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.biz-solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #2563eb;
  transition: width 0.3s ease;
}

.biz-solution-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
}

.biz-solution-card:hover::after {
  width: 100%;
}

.biz-solution-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  transition: all 0.3s ease;
}

.biz-solution-card:hover .biz-solution-icon {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: scale(1.08);
}

.biz-solution-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.biz-solution-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.biz-solution-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ==============================================================================
   4. KEY FEATURES SECTION (Two-Column Layout)
   ============================================================================== */
.biz-features-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Tabs Navigation at Top of Key Features Section */
.biz-features-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0 8px;
}

.biz-feat-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  font-family: inherit;
}

.biz-feat-pill:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
  transform: translateY(-1px);
}

.biz-feat-pill.active {
  background: #ffffff;
  border-color: #3b82f6;
  color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.16);
}

.biz-features-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
}

/* 3D Perspective Card Wrap */
.biz-feature-mockup-wrap {
  position: relative;
  perspective: 1200px;
}

.biz-pharma-mockup-card {
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 16px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(241, 245, 249, 0.9);
  display: grid;
  grid-template-columns: 140px 1fr;
  overflow: hidden;
  position: relative;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.biz-pharma-mockup-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 30px 70px -12px rgba(15, 23, 42, 0.24);
}

/* Mockup Sidebar */
.biz-pharma-card-sidebar {
  background: #0f172a;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.biz-pharma-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.biz-pharma-logo-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-pharma-logo-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.biz-pharma-brand-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.biz-pharma-side-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.biz-pharma-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.biz-pharma-nav-item svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.biz-pharma-nav-item:hover {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.05);
}

.biz-pharma-nav-item.active {
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

/* Mockup Main Panel */
.biz-pharma-card-main {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.biz-pharma-main-header {
  height: 38px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #fafafa;
}

.biz-pharma-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: #94a3b8;
  width: 170px;
}

.biz-pharma-search svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.biz-pharma-header-user svg {
  width: 14px;
  height: 14px;
  stroke: #64748b;
  stroke-width: 2;
  fill: none;
}

.biz-pharma-content-split {
  display: grid;
  grid-template-columns: 1fr 140px;
  height: 100%;
  position: relative;
}

.biz-pharma-form-side {
  padding: 16px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.biz-pharma-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 4px;
}

.biz-pharma-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.biz-pharma-create-btn {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
  font-family: inherit;
  transition: background 0.2s ease;
}

.biz-pharma-create-btn:hover {
  background: #1d4ed8;
}

.biz-pharma-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-pharma-field {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 0.725rem;
}

.biz-field-label {
  color: #64748b;
  font-weight: 500;
}

.biz-field-value {
  color: #0f172a;
  font-weight: 600;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 4px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.biz-field-value.with-arrow svg {
  width: 10px;
  height: 10px;
  stroke: #94a3b8;
  stroke-width: 2.2;
  fill: none;
}

.biz-status-pill.in-production {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid #bbf7d0;
  width: fit-content;
}

/* Image Side inside Mockup */
.biz-pharma-img-side {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.biz-pharma-blister-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.85) 30%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.85) 30%, black 100%);
}

/* Floating Badge Bottom Left */
.biz-pharma-floating-badge {
  position: absolute;
  bottom: 12px;
  left: 110px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.biz-pharma-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.biz-pharma-badge-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.biz-pharma-badge-text strong {
  display: block;
  font-size: 0.775rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.biz-pharma-badge-text span {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
}

/* Key Features Right Column */
.biz-features-content {
  display: flex;
  flex-direction: column;
}

.biz-features-content .biz-eyebrow {
  color: #2563eb;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.biz-features-content .biz-section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-align: left;
}

.biz-features-content .biz-section-desc {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 24px;
  text-align: left;
}

.biz-features-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.biz-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.45;
}

.biz-feature-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.biz-feature-check-icon svg {
  width: 11px;
  height: 11px;
  stroke: #ffffff;
  stroke-width: 3.2;
  fill: none;
}

@media (max-width: 991px) {
  .biz-features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .biz-pharma-mockup-card {
    max-width: 540px;
    margin: 0 auto;
    transform: none;
  }

  .biz-pharma-floating-badge {
    left: 20px;
  }
}

/* ==============================================================================
   5. BENEFITS SECTION (8-Card Benefit Grid)
   ============================================================================== */
.biz-benefits-section {
  background: #ffffff;
}

.biz-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.biz-benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.biz-benefit-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.biz-benefit-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  transition: all 0.25s ease;
}

.biz-benefit-card:nth-child(odd) .biz-benefit-icon-wrap {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
}

.biz-benefit-card:hover .biz-benefit-icon-wrap {
  transform: scale(1.1);
}

.biz-benefit-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.biz-benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.biz-benefit-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ==============================================================================
   6. MODULES OVERVIEW SECTION (Deep Royal Navy with Interactive Vertical Tabs)
   ============================================================================== */
.biz-modules-section {
  background: linear-gradient(135deg, #001338 0%, #001f5c 45%, #02388e 100%);
  color: #f1f5f9;
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.biz-modules-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header (Left-aligned matching reference image) */
.biz-modules-header {
  margin-bottom: 40px;
  text-align: left;
}

.biz-modules-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 10px;
}

.biz-modules-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.biz-modules-desc {
  font-size: 1.025rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0;
  max-width: 650px;
}

/* Interactive Grid: Left Tabs + Right Panel */
.biz-modules-interactive-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* Left Vertical Navigation */
.biz-modules-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.biz-module-tab {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  color: #94a3b8;
  font-size: 0.93rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.biz-module-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.biz-module-tab.active {
  background: #1a6cf0;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(26, 108, 240, 0.4);
}

/* Right Feature Panel Card */
.biz-module-panel {
  background: rgba(3, 18, 54, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.biz-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}

/* Left Content of Active Module */
.biz-panel-content {
  display: flex;
  flex-direction: column;
}

.biz-panel-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.biz-panel-desc {
  font-size: 0.925rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0 0 22px 0;
  max-width: 360px;
}

/* Bullet points with blue checkmark circles */
.biz-panel-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.biz-panel-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #e2e8f0;
  font-weight: 500;
}

.biz-bullet-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a6cf0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(26, 108, 240, 0.4);
}

.biz-bullet-check svg {
  width: 11px;
  height: 11px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
}

/* Learn More Pill Button */
.biz-panel-actions {
  margin-top: 2px;
}

.biz-panel-btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a6cf0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(26, 108, 240, 0.35);
  border: none;
}

.biz-panel-btn-learn:hover {
  background: #1557c0;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 108, 240, 0.5);
  color: #ffffff;
}

/* Right Visual Wrap & Image */
.biz-panel-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 14px;
}

.biz-panel-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Floating White Efficiency Badge */
.biz-panel-floating-badge {
  position: absolute;
  bottom: -16px;
  right: -14px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  min-width: 190px;
  z-index: 5;
}

.biz-panel-floating-badge .biz-badge-label {
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.biz-panel-floating-badge .biz-badge-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.biz-panel-floating-badge .biz-badge-stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  letter-spacing: -0.5px;
}

.biz-panel-floating-badge .biz-badge-chart-icon {
  display: flex;
  align-items: flex-end;
  color: #1a6cf0;
  width: 24px;
  height: 24px;
}

.biz-panel-floating-badge .biz-badge-chart-icon svg {
  width: 100%;
  height: 100%;
  fill: #1a6cf0;
}

/* ==============================================================================
   7. FINAL CTA SECTION (Slim Banner Strip)
   ============================================================================== */
.biz-final-cta-section {
  background: #f8fafc;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.biz-cta-card {
  background: #091122;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.biz-cta-bg-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.biz-cta-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.biz-cta-title {
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.biz-cta-desc {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

.biz-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.biz-cta-actions .biz-btn-primary,
.biz-cta-actions .biz-btn-secondary {
  padding: 10px 22px;
  font-size: 0.92rem;
  min-width: 175px;
  justify-content: center;
}

/* ==============================================================================
   8. DEMO REQUEST MODAL
   ============================================================================== */
.biz-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.biz-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.biz-modal-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.biz-modal-backdrop.is-open .biz-modal-card {
  transform: translateY(0) scale(1);
}

.biz-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.biz-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.biz-modal-header {
  margin-bottom: 24px;
}

.biz-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.biz-modal-header p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.biz-form-group {
  margin-bottom: 16px;
}

.biz-form-input,
.biz-form-select,
.biz-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.925rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: left;
}

.biz-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f8fafc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  text-align: left;
  text-align-last: left;
  cursor: pointer;
  color: #64748b;
  line-height: 1.4;
}

.biz-form-select:valid,
.biz-form-select.has-value {
  color: #0f172a;
}

.biz-form-select option {
  color: #0f172a;
  background: #ffffff;
  padding: 8px 12px;
  text-align: left;
}

.biz-form-select option[disabled] {
  color: #94a3b8;
}

.biz-form-input:focus,
.biz-form-select:focus,
.biz-form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.biz-form-textarea {
  min-height: 80px;
  resize: vertical;
}

.biz-form-btn {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  font-family: var(--font-body);
}

.biz-form-btn:hover {
  background: #1d4ed8;
}

.biz-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.biz-form-status {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  display: none;
}

.biz-form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.biz-form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==============================================================================
   9. RESPONSIVE BREAKPOINTS
   ============================================================================== */
@media (max-width: 1199px) {
  .biz-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .biz-hero-content {
    max-width: 680px;
  }

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

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

  .biz-features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .biz-modules-interactive-grid {
    grid-template-columns: 240px 1fr;
  }

  .biz-module-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .biz-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .biz-stats-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .biz-stats-items {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .biz-modules-interactive-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .biz-modules-nav {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    padding-bottom: 12px;
    scrollbar-width: thin;
    gap: 8px;
  }

  .biz-module-tab {
    white-space: nowrap;
    width: auto;
  }

  .biz-panel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .biz-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

  .biz-cta-actions {
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .biz-section {
    padding: 60px 0;
  }

  .biz-hero-title {
    font-size: 2.15rem;
  }

  .biz-hero-desc {
    font-size: 1rem;
  }

  .biz-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .biz-hero-actions .biz-btn-primary,
  .biz-hero-actions .biz-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .biz-hero-badges {
    grid-template-columns: 1fr;
  }

  .biz-dash-layout {
    grid-template-columns: 1fr;
  }

  .biz-dash-sidebar {
    display: none;
  }

  .biz-dash-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-dash-grid-content {
    grid-template-columns: 1fr;
  }

  .biz-stats-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }

  .biz-stat-item {
    padding: 12px 10px;
    gap: 10px;
    border-radius: 12px;
  }

  .biz-stat-item > div:last-child {
    min-width: 0;
  }

  .biz-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .biz-stat-icon svg {
    width: 18px;
    height: 18px;
  }

  .biz-stat-num {
    font-size: 1rem;
    line-height: 1.2;
  }

  .biz-stat-desc {
    font-size: 0.725rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .biz-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .biz-solution-card {
    padding: 20px 12px;
    gap: 10px;
    border-radius: 14px;
  }

  .biz-solution-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 2px;
  }

  .biz-solution-icon svg {
    width: 22px;
    height: 22px;
  }

  .biz-solution-title {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 0;
  }

  .biz-solution-desc {
    font-size: 0.75rem;
    line-height: 1.35;
    margin-bottom: 0;
  }

  .biz-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .biz-benefit-card {
    padding: 16px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .biz-benefit-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .biz-benefit-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .biz-benefit-title {
    font-size: 0.875rem;
  }

  .biz-benefit-desc {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .biz-mockup-form-preview {
    grid-template-columns: 1fr;
  }

  .biz-float-card {
    display: none;
  }

  .biz-feature-floating-badge {
    position: static;
    margin-top: 14px;
  }

  .biz-modal-card {
    padding: 24px 20px;
  }
}