
body {  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body * { box-sizing: border-box; }

.commonIndustryBody {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5568; 
}
.commonIndustryBody img { max-width: 100%; display: block; }
.commonIndustryBody a { text-decoration: none; color: inherit; }
.commonIndustryBody button { font-family: inherit; cursor: pointer; border: none; outline: none; }

.commonIndustryBody .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  color: #1e2a78;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.commonIndustryBody .section-eyebrow i { font-size: 12px; }

.commonIndustryBody .section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1e2a78;
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.commonIndustryBody .section-title .accent-underline {
  position: relative;
  display: inline-block;
}

.commonIndustryBody .section-title .accent-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: #fcc419;
  opacity: 0.55;
  z-index: -1;
  border-radius: 2px;
}

.commonIndustryBody .section-subtitle {
  font-size: 17px;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.commonIndustryBody .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.commonIndustryBody .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.commonIndustryBody .btn-primary {
  background: #fcc419;
  color: #1e2a78;
  box-shadow: 0 6px 18px rgba(252, 196, 25, 0.35);
}

.commonIndustryBody .btn-primary:hover {
  background: #f5b400;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(252, 196, 25, 0.5);
}

.commonIndustryBody .btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.commonIndustryBody .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.commonIndustryBody .btn-navy {
  background: #1e2a78;
  color: #ffffff;
}

.commonIndustryBody .btn-navy:hover {
  background: #131c54;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.commonIndustryBody .hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 80%, rgba(252, 196, 25, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(120, 140, 255, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #1e2a78 0%, #2d3a8f 50%, #1e2a78 100%);
  color: #ffffff;
  padding: 90px 0 90px;
  overflow: hidden;
}

.commonIndustryBody .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}

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

.commonIndustryBody .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(252, 196, 25, 0.14);
  border: 1px solid rgba(252, 196, 25, 0.35);
  color: #fcc419;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.commonIndustryBody .hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: #fcc419;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.commonIndustryBody .hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -1px;
}

.commonIndustryBody .hero h1 .highlight {
  color: #fcc419;
  position: relative;
}

.commonIndustryBody .hero p.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 36px;
  max-width: 560px;
  line-height: 1.6;
}

.commonIndustryBody .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.commonIndustryBody .hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.commonIndustryBody .hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.commonIndustryBody .hero-trust-item i {
  color: #fcc419;
  font-size: 16px;
}

/* Hero phone mockup */
.commonIndustryBody .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}

.commonIndustryBody .phone-mockup {
  position: relative;
  width: 290px;
  height: 580px;
  background: #0a0e2e;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.05);
}

.commonIndustryBody .phone-mockup::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0a0e2e;
  border-radius: 20px;
  z-index: 2;
}

.commonIndustryBody .phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.commonIndustryBody .hero-phone-content {
  height: 100%;
  background: linear-gradient(180deg, #1e2a78 0%, #2d3a8f 100%);
  padding: 56px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.commonIndustryBody .hero-call-header {
  text-align: center;
  color: #ffffff;
  margin-bottom: 8px;
}

.commonIndustryBody .hero-call-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.commonIndustryBody .hero-call-name {
  font-size: 18px;
  font-weight: 600;
}

.commonIndustryBody .hero-call-time {
  font-size: 13px;
  color: #fcc419;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.commonIndustryBody .hero-ai-avatar {
  width: 90px;
  height: 90px;
  margin: 16px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcc419, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  box-shadow: 0 0 0 8px rgba(252, 196, 25, 0.15), 0 0 0 16px rgba(252, 196, 25, 0.08);
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(252, 196, 25, 0.15), 0 0 0 16px rgba(252, 196, 25, 0.08); }
  50% { box-shadow: 0 0 0 12px rgba(252, 196, 25, 0.25), 0 0 0 24px rgba(252, 196, 25, 0.12); }
}

.commonIndustryBody .hero-transcript {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.commonIndustryBody .transcript-bubble {
  font-size: 11px;
  padding: 8px 11px;
  border-radius: 10px;
  max-width: 85%;
  line-height: 1.4;
}

.commonIndustryBody .transcript-bubble.ai {
  background: #ffffff;
  color: #1e2a78;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.commonIndustryBody .transcript-bubble.user {
  background: #fcc419;
  color: #1e2a78;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  font-weight: 500;
}

.commonIndustryBody .transcript-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: -4px;
}

.commonIndustryBody .hero-call-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 8px 0 4px;
}

.commonIndustryBody .call-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
}

.commonIndustryBody .call-btn.mute { background: rgba(255, 255, 255, 0.15); }
.commonIndustryBody .call-btn.end { background: #ef4444; }
.commonIndustryBody .call-btn.speaker { background: rgba(255, 255, 255, 0.15); }

/* Floating cards around phone */
.commonIndustryBody .floating-card {
  position: absolute;
  background: #ffffff;
  color: #1e2a78;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatUp 4s ease-in-out infinite;
}

.commonIndustryBody .floating-card.f1 { top: 60px; left: 10px; animation-delay: 0s; }
.commonIndustryBody .floating-card.f2 { bottom: 80px; right: 0px; animation-delay: 1.5s; }
.commonIndustryBody .floating-card.f3 { top: 200px; right: -15px; animation-delay: 0.8s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.commonIndustryBody .floating-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffffff;
  flex-shrink: 0;
}

.commonIndustryBody .floating-card .fc-icon.green { background: #10b981; }
.commonIndustryBody .floating-card .fc-icon.blue { background: #1e2a78; }
.commonIndustryBody .floating-card .fc-icon.amber { background: #fcc419; color: #1e2a78; }

.commonIndustryBody .floating-card .fc-label { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.5px; }
.commonIndustryBody .floating-card .fc-value { font-size: 14px; font-weight: 600; }

/* ==========================================================================
   PLATFORMS STRIP
   ========================================================================== */

.commonIndustryBody .platforms-strip {
  background: #f5f7ff;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

.commonIndustryBody .platforms-strip-inner {
  text-align: center;
}

.commonIndustryBody .platforms-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.commonIndustryBody .platforms-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.commonIndustryBody .platform-item {
  font-size: 18px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: -0.5px;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.commonIndustryBody .platform-item:hover { color: #1e2a78; }
.commonIndustryBody .platform-item i { font-size: 22px; }

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */

.commonIndustryBody .problem-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.commonIndustryBody .problem-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.commonIndustryBody .problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #ef4444;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.commonIndustryBody .problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 42, 120, 0.12);
  border-color: transparent;
}

.commonIndustryBody .problem-card:hover::before { transform: scaleX(1); }

.commonIndustryBody .problem-card .problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.commonIndustryBody .problem-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1e2a78;
  margin: 0 0 12px;
  line-height: 1.35;
}

.commonIndustryBody .problem-card p {
  font-size: 14.5px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.commonIndustryBody .problem-card .problem-stat {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #e5e7eb;
  font-size: 13px;
  color: #1e2a78;
  font-weight: 600;
}

.commonIndustryBody .problem-card .problem-stat .stat-num {
  color: #ef4444;
  font-size: 20px;
  font-weight: 700;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.commonIndustryBody .stats-section {
  background:
    radial-gradient(circle at 80% 50%, rgba(252, 196, 25, 0.1), transparent 60%),
    linear-gradient(135deg, #1e2a78 0%, #131c54 100%);
  padding: 80px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.commonIndustryBody .stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.commonIndustryBody .stats-inner {
  position: relative;
  text-align: center;
}

.commonIndustryBody .stats-section .section-title { color: #ffffff; }

.commonIndustryBody .stats-section .section-subtitle { color: rgba(255, 255, 255, 0.75); }

.commonIndustryBody .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.commonIndustryBody .stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 36px 24px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.commonIndustryBody .stat-card:hover {
  background: rgba(252, 196, 25, 0.12);
  border-color: rgba(252, 196, 25, 0.4);
  transform: translateY(-4px);
}

.commonIndustryBody .stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #fcc419;
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}

.commonIndustryBody .stat-suffix {
  font-size: 36px;
  font-weight: 700;
}

.commonIndustryBody .stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-weight: 500;
}

/* ==========================================================================
   FEATURE TABS
   ========================================================================== */

.commonIndustryBody .features-section {
  padding: 100px 0;
  background: #ffffff;
}

.commonIndustryBody .features-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  background: #f5f7ff;
  padding: 8px;
  border-radius: 16px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.commonIndustryBody .feature-tab {
  padding: 10px 12px;
  background: transparent;
  color: #6b7280;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.commonIndustryBody .feature-tab i { font-size: 15px; }

.commonIndustryBody .feature-tab:hover { color: #1e2a78; }

.commonIndustryBody .feature-tab.active {
  background: #1e2a78;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(30, 42, 120, 0.25);
}

.commonIndustryBody .feature-panel { display: none; }
.commonIndustryBody .feature-panel.active { display: grid; animation: fadeUp 0.5s ease; }

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

.commonIndustryBody .feature-panel {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.commonIndustryBody .feature-content .feature-tag {
  display: inline-block;
  background: #eef2ff;
  color: #1e2a78;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.commonIndustryBody .feature-content h3 {
  font-size: 34px;
  font-weight: 700;
  color: #1e2a78;
  margin: 0 0 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.commonIndustryBody .feature-content > p {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 28px;
  line-height: 1.65;
}

.commonIndustryBody .feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.commonIndustryBody .feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  color: #374151;
}

.commonIndustryBody .feature-bullets li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.commonIndustryBody .feature-bullets li strong { color: #1e2a78; }

.commonIndustryBody .feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e2a78;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s;
}

.commonIndustryBody .feature-cta:hover { gap: 14px; }

/* Phone mockup container for features */
.commonIndustryBody .feature-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.commonIndustryBody .feature-phone {
  position: relative;
  width: 290px;
  height: 580px;
  background: #0a0e2e;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(30, 42, 120, 0.25);
}

.commonIndustryBody .feature-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0a0e2e;
  border-radius: 20px;
  z-index: 2;
}

.commonIndustryBody .feature-phone-screen {
  width: 100%;
  height: 100%;
  background: #f9fafb;
  border-radius: 32px;
  overflow: hidden;
  padding-top: 48px;
}

/* AI Calling mockup */
.commonIndustryBody .mockup-call {
  background: linear-gradient(180deg, #1e2a78 0%, #2d3a8f 100%);
  height: 100%;
  padding: 20px 18px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.commonIndustryBody .mockup-call .call-top { text-align: center; margin-bottom: 14px; }
.commonIndustryBody .mockup-call .call-top .ct-status { font-size: 10px; opacity: 0.7; letter-spacing: 1.2px; text-transform: uppercase; }
.commonIndustryBody .mockup-call .call-top .ct-name { font-size: 17px; font-weight: 600; margin-top: 4px; }
.commonIndustryBody .mockup-call .call-top .ct-time { font-size: 12px; color: #fcc419; margin-top: 2px; font-variant-numeric: tabular-nums; }

.commonIndustryBody .mockup-call .call-avatar-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 14px;
}

.commonIndustryBody .mockup-call .call-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcc419, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}

.commonIndustryBody .mockup-call .call-avatar::before,
.commonIndustryBody .mockup-call .call-avatar::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(252, 196, 25, 0.4);
  animation: ripple 2s ease-out infinite;
}

.commonIndustryBody .mockup-call .call-avatar::after { animation-delay: 1s; }

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.commonIndustryBody .mockup-call .call-transcript {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.commonIndustryBody .mockup-call .tx { font-size: 11px; padding: 7px 10px; border-radius: 10px; max-width: 88%; line-height: 1.4; }
.commonIndustryBody .mockup-call .tx.ai { background: #ffffff; color: #1e2a78; align-self: flex-start; border-bottom-left-radius: 3px; }
.commonIndustryBody .mockup-call .tx.user { background: #fcc419; color: #1e2a78; align-self: flex-end; border-bottom-right-radius: 3px; font-weight: 500; }

.commonIndustryBody .mockup-call .call-actions { display: flex; justify-content: center; gap: 14px; padding: 12px 0 4px; }
.commonIndustryBody .mockup-call .call-actions div {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #ffffff;
}
.commonIndustryBody .mockup-call .call-actions div.mute, .commonIndustryBody .mockup-call .call-actions div.spk { background: rgba(255, 255, 255, 0.15); }
.commonIndustryBody .mockup-call .call-actions div.end { background: #ef4444; }

/* WhatsApp mockup */
.commonIndustryBody .mockup-wa {
  height: 100%;
  background: #efeae2;
  background-image:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.018) 0 2px, transparent 2px 8px);
  display: flex;
  flex-direction: column;
}

.commonIndustryBody .mockup-wa .wa-header {
  background: #075e54;
  color: #ffffff;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.commonIndustryBody .mockup-wa .wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fcc419;
  display: flex; align-items: center; justify-content: center;
  color: #075e54; font-weight: 700; font-size: 14px;
}

.commonIndustryBody .mockup-wa .wa-name { font-size: 14px; font-weight: 600; line-height: 1.2; }
.commonIndustryBody .mockup-wa .wa-status { font-size: 11px; opacity: 0.85; }

.commonIndustryBody .mockup-wa .wa-body {
  flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}

.commonIndustryBody .mockup-wa .wa-msg { font-size: 12px; padding: 8px 11px 6px; border-radius: 10px; max-width: 80%; position: relative; line-height: 1.4; }
.commonIndustryBody .mockup-wa .wa-msg.incoming { background: #ffffff; color: #111827; align-self: flex-start; border-top-left-radius: 0; box-shadow: 0 1px 1px rgba(0,0,0,0.08); }
.commonIndustryBody .mockup-wa .wa-msg.outgoing { background: #d9fdd3; color: #111827; align-self: flex-end; border-top-right-radius: 0; box-shadow: 0 1px 1px rgba(0,0,0,0.08); }
.commonIndustryBody .mockup-wa .wa-time { font-size: 9px; color: #667781; text-align: right; margin-top: 2px; }
.commonIndustryBody .mockup-wa .wa-ai-badge {
  display: inline-block; background: #1e2a78; color: #fcc419;
  font-size: 8px; padding: 1px 5px; border-radius: 3px; margin-right: 4px;
  font-weight: 700; letter-spacing: 0.5px;
}

.commonIndustryBody .mockup-wa .wa-doc {
  background: #f0f2f5;
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 10px;
  color: #1e2a78;
  font-weight: 500;
}

.commonIndustryBody .mockup-wa .wa-doc i { font-size: 14px; color: #ef4444; }

.commonIndustryBody .mockup-wa .wa-img {
  background: linear-gradient(135deg, #1e2a78, #2d3a8f);
  border-radius: 8px;
  height: 78px;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 6px 8px;
}

.commonIndustryBody .mockup-wa .wa-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(252,196,25,0.4) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(120,140,255,0.4) 0%, transparent 40%),
    linear-gradient(180deg, #2d3a8f 0%, #1e2a78 100%);
}

.commonIndustryBody .mockup-wa .wa-img-label {
  position: relative;
  font-size: 9px;
  color: #ffffff;
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}

.commonIndustryBody .mockup-wa .wa-input {
  background: #ffffff;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #9ca3af;
}

.commonIndustryBody .mockup-wa .wa-input .wa-send {
  margin-left: auto;
  width: 32px; height: 32px; border-radius: 50%;
  background: #25d366; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
}

/* Lead Mgmt mockup */
.commonIndustryBody .mockup-leads {
  background: #ffffff;
  height: 100%;
  padding: 0;
}

.commonIndustryBody .mockup-leads .ml-header {
  padding: 14px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  display: flex; justify-content: space-between; align-items: center;
}

.commonIndustryBody .mockup-leads .ml-title { font-size: 16px; font-weight: 700; color: #1e2a78; }
.commonIndustryBody .mockup-leads .ml-badge {
  background: #fcc419; color: #1e2a78;
  font-size: 10px; padding: 3px 8px; border-radius: 6px; font-weight: 700;
}

.commonIndustryBody .mockup-leads .ml-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 12px;
}

.commonIndustryBody .mockup-leads .ml-stat {
  background: #f5f7ff;
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}

.commonIndustryBody .mockup-leads .ml-stat .num { font-size: 16px; font-weight: 700; color: #1e2a78; }
.commonIndustryBody .mockup-leads .ml-stat .lbl { font-size: 8px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.4px; margin-top: 1px; }

.commonIndustryBody .mockup-leads .ml-list { padding: 4px 12px 12px; display: flex; flex-direction: column; gap: 8px; }

.commonIndustryBody .mockup-leads .ml-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  display: flex; align-items: center; gap: 10px;
  transition: transform 0.2s;
}

.commonIndustryBody .mockup-leads .ml-card:hover { transform: scale(1.02); }

.commonIndustryBody .mockup-leads .ml-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #1e2a78, #2d3a8f);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

.commonIndustryBody .mockup-leads .ml-info { flex: 1; min-width: 0; }
.commonIndustryBody .mockup-leads .ml-name { font-size: 12px; font-weight: 600; color: #1e2a78; }
.commonIndustryBody .mockup-leads .ml-detail { font-size: 10px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.commonIndustryBody .mockup-leads .ml-tag { font-size: 8px; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.commonIndustryBody .mockup-leads .ml-tag.hot { background: #fef2f2; color: #ef4444; }
.commonIndustryBody .mockup-leads .ml-tag.warm { background: #fffbeb; color: #d97706; }
.commonIndustryBody .mockup-leads .ml-tag.new { background: #ecfdf5; color: #10b981; }

/* AI Chat mockup */
.commonIndustryBody .mockup-chat {
  background: #ffffff;
  height: 100%;
  display: flex; flex-direction: column;
}

.commonIndustryBody .mockup-chat .mc-header {
  background: linear-gradient(135deg, #1e2a78, #2d3a8f);
  color: #ffffff;
  padding: 14px;
  display: flex; align-items: center; gap: 10px;
}

.commonIndustryBody .mockup-chat .mc-bot-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fcc419; color: #1e2a78;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; position: relative;
}

.commonIndustryBody .mockup-chat .mc-bot-avatar::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: #10b981; border: 2px solid #1e2a78;
}

.commonIndustryBody .mockup-chat .mc-name { font-size: 14px; font-weight: 600; }
.commonIndustryBody .mockup-chat .mc-status { font-size: 11px; color: #10b981; }

.commonIndustryBody .mockup-chat .mc-body {
  flex: 1; padding: 14px; background: #f9fafb;
  display: flex; flex-direction: column; gap: 8px; overflow: hidden;
}

.commonIndustryBody .mockup-chat .mc-msg { font-size: 11.5px; padding: 8px 11px; border-radius: 14px; max-width: 85%; line-height: 1.4; }
.commonIndustryBody .mockup-chat .mc-msg.bot { background: #ffffff; color: #1e2a78; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.commonIndustryBody .mockup-chat .mc-msg.user { background: #1e2a78; color: #ffffff; align-self: flex-end; border-bottom-right-radius: 4px; }

.commonIndustryBody .mockup-chat .mc-quick {
  display: flex; flex-wrap: wrap; gap: 5px; padding: 4px 0;
}

.commonIndustryBody .mockup-chat .mc-chip {
  background: #ffffff; border: 1px solid #1e2a78;
  color: #1e2a78; font-size: 10px;
  padding: 4px 10px; border-radius: 14px; font-weight: 500;
}

.commonIndustryBody .mockup-chat .mc-typing {
  align-self: flex-start;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex; gap: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.commonIndustryBody .mockup-chat .mc-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #9ca3af;
  animation: typing 1.4s infinite;
}

.commonIndustryBody .mockup-chat .mc-typing span:nth-child(2) { animation-delay: 0.2s; }
.commonIndustryBody .mockup-chat .mc-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.commonIndustryBody .mockup-chat .mc-input {
  padding: 10px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  display: flex; align-items: center; gap: 8px;
}

.commonIndustryBody .mockup-chat .mc-input-box {
  flex: 1;
  background: #f5f7ff;
  border-radius: 16px;
  padding: 7px 12px;
  font-size: 11px; color: #9ca3af;
}

.commonIndustryBody .mockup-chat .mc-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fcc419; color: #1e2a78;
  display: flex; align-items: center; justify-content: center;
}

/* Sales Automation mockup */
.commonIndustryBody .mockup-auto {
  background: #ffffff;
  height: 100%;
  padding: 14px;
  overflow: hidden;
}

.commonIndustryBody .mockup-auto .ma-title {
  font-size: 14px; font-weight: 700; color: #1e2a78;
  margin-bottom: 4px;
}

.commonIndustryBody .mockup-auto .ma-sub {
  font-size: 10px; color: #6b7280;
  margin-bottom: 14px;
}

.commonIndustryBody .mockup-auto .ma-flow {
  display: flex; flex-direction: column; gap: 4px;
}

.commonIndustryBody .mockup-auto .ma-step {
  background: #f5f7ff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  position: relative;
}

.commonIndustryBody .mockup-auto .ma-step.active {
  background: linear-gradient(135deg, #1e2a78, #2d3a8f);
  color: #ffffff;
  border-color: transparent;
}

.commonIndustryBody .mockup-auto .ma-step.active .ma-step-num { background: #fcc419; color: #1e2a78; }
.commonIndustryBody .mockup-auto .ma-step.active .ma-step-sub { color: rgba(255,255,255,0.7); }

.commonIndustryBody .mockup-auto .ma-step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: #1e2a78; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

.commonIndustryBody .mockup-auto .ma-step-title { font-size: 11px; font-weight: 600; line-height: 1.3; }
.commonIndustryBody .mockup-auto .ma-step-sub { font-size: 9px; color: #6b7280; margin-top: 1px; }

.commonIndustryBody .mockup-auto .ma-connector {
  width: 2px; height: 8px;
  background: #d1d5db;
  margin-left: 23px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.commonIndustryBody .how-section {
  padding: 100px 0;
  background: #f5f7ff;
  position: relative;
  overflow: hidden;
}

.commonIndustryBody .how-section::before {
  content: '';
  position: absolute;
  top: 40px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 196, 25, 0.08), transparent 70%);
  border-radius: 50%;
}

.commonIndustryBody .workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 40px;
}

.commonIndustryBody .workflow::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    to right, #1e2a78 0 8px, transparent 8px 16px
  );
  z-index: 0;
}

.commonIndustryBody .workflow-step {
  position: relative;
  text-align: center;
  background: #f5f7ff;
  padding: 0 12px;
  z-index: 1;
}

.commonIndustryBody .workflow-number {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1e2a78;
  color: #1e2a78;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s;
}

.commonIndustryBody .workflow-step:hover .workflow-number {
  background: #1e2a78;
  color: #fcc419;
  transform: scale(1.08);
}

.commonIndustryBody .workflow-icon {
  position: absolute;
  bottom: -6px; right: -6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fcc419;
  color: #1e2a78;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.commonIndustryBody .workflow-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e2a78;
  margin: 0 0 8px;
  line-height: 1.3;
}

.commonIndustryBody .workflow-step p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   BEFORE / AFTER COMPARISON
   ========================================================================== */

.commonIndustryBody .compare-section {
  padding: 100px 0;
  background: #ffffff;
}

.commonIndustryBody .compare-toggle {
  display: inline-flex;
  background: #f5f7ff;
  padding: 6px;
  border-radius: 12px;
  margin: 0 auto 48px;
  justify-content: center;
  display: flex;
  width: max-content;
}

.commonIndustryBody .compare-toggle-wrap { display: flex; justify-content: center; }

.commonIndustryBody .compare-toggle-btn {
  padding: 10px 24px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  border-radius: 8px;
  transition: all 0.25s;
}

.commonIndustryBody .compare-toggle-btn.active {
  background: #ffffff;
  color: #1e2a78;
  box-shadow: 0 4px 12px rgba(30, 42, 120, 0.1);
}

.commonIndustryBody .compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.commonIndustryBody .compare-card {
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.commonIndustryBody .compare-card.bad {
  background: #fef2f2;
  border: 2px solid #fecaca;
}

.commonIndustryBody .compare-card.good {
  background: linear-gradient(135deg, #1e2a78 0%, #2d3a8f 100%);
  color: #ffffff;
  border: 2px solid #1e2a78;
}

.commonIndustryBody .compare-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.commonIndustryBody .compare-card.good .compare-card-head { border-bottom-color: rgba(255, 255, 255, 0.15); }

.commonIndustryBody .compare-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.commonIndustryBody .compare-card.bad .compare-icon { background: #ef4444; color: #ffffff; }
.commonIndustryBody .compare-card.good .compare-icon { background: #fcc419; color: #1e2a78; }

.commonIndustryBody .compare-card h3 {
  font-size: 22px; font-weight: 700; margin: 0;
  color: inherit;
}

.commonIndustryBody .compare-card.bad h3 { color: #991b1b; }

.commonIndustryBody .compare-list { list-style: none; padding: 0; margin: 0; }

.commonIndustryBody .compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.5;
}

.commonIndustryBody .compare-card.bad .compare-list li { color: #7f1d1d; }
.commonIndustryBody .compare-card.good .compare-list li { color: rgba(255, 255, 255, 0.92); }

.commonIndustryBody .compare-list li i {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.commonIndustryBody .compare-card.bad .compare-list li i { background: #fecaca; color: #dc2626; }
.commonIndustryBody .compare-card.good .compare-list li i { background: #fcc419; color: #1e2a78; }

.commonIndustryBody .compare-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.commonIndustryBody .compare-card.good .compare-footer { border-top-color: rgba(255, 255, 255, 0.15); }

.commonIndustryBody .compare-metric { font-size: 13px; }
.commonIndustryBody .compare-card.bad .compare-metric { color: #7f1d1d; }
.commonIndustryBody .compare-card.good .compare-metric { color: rgba(255, 255, 255, 0.7); }

.commonIndustryBody .compare-metric-val { font-size: 28px; font-weight: 800; }
.commonIndustryBody .compare-card.bad .compare-metric-val { color: #ef4444; }
.commonIndustryBody .compare-card.good .compare-metric-val { color: #fcc419; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.commonIndustryBody .testimonials-section {
  padding: 100px 0;
  background: #f5f7ff;
}

.commonIndustryBody .testimonial-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.commonIndustryBody .testimonial-track {
  position: relative;
  min-height: 360px;
}

.commonIndustryBody .testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateX(40px);
}

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

.commonIndustryBody .testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 30px 80px rgba(30, 42, 120, 0.08);
  position: relative;
}

.commonIndustryBody .testimonial-quote-mark {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 100px;
  color: #fcc419;
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}

.commonIndustryBody .testimonial-stars {
  color: #fcc419;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.commonIndustryBody .testimonial-text {
  font-size: 20px;
  color: #1e2a78;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
}

.commonIndustryBody .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.commonIndustryBody .testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2a78, #2d3a8f);
  color: #fcc419;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.commonIndustryBody .testimonial-meta .name {
  font-size: 16px;
  font-weight: 600;
  color: #1e2a78;
}

.commonIndustryBody .testimonial-meta .role {
  font-size: 13px;
  color: #6b7280;
}

.commonIndustryBody .testimonial-result {
  margin-left: auto;
  background: #ecfdf5;
  color: #047857;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.commonIndustryBody .testimonial-result i { margin-right: 6px; }

.commonIndustryBody .testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.commonIndustryBody .testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1e2a78;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s;
}

.commonIndustryBody .testimonial-arrow:hover {
  background: #1e2a78;
  color: #fcc419;
  border-color: #1e2a78;
}

.commonIndustryBody .testimonial-dots {
  display: flex;
  gap: 8px;
}

.commonIndustryBody .testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.25s;
}

.commonIndustryBody .testimonial-dot.active {
  background: #1e2a78;
  width: 28px;
  border-radius: 5px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.commonIndustryBody .faq-section { padding: 100px 0 80px; background: #ffffff; }

.commonIndustryBody .faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.commonIndustryBody .faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.25s;
  overflow: hidden;
}

.commonIndustryBody .faq-item:hover { border-color: #1e2a78; }
.commonIndustryBody .faq-item.open { border-color: #1e2a78; box-shadow: 0 10px 30px rgba(30, 42, 120, 0.08); }

.commonIndustryBody .faq-question {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1e2a78;
}

.commonIndustryBody .faq-question .faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f5f7ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: #1e2a78;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.commonIndustryBody .faq-item.open .faq-icon { background: #1e2a78; color: #fcc419; transform: rotate(180deg); }

.commonIndustryBody .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.commonIndustryBody .faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 22px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.commonIndustryBody .final-cta {
  padding:0px 0 100px;
  background: #ffffff;
}

.commonIndustryBody .final-cta-inner {
  background:
    radial-gradient(circle at 80% 20%, rgba(252, 196, 25, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(120, 140, 255, 0.15), transparent 50%),
    linear-gradient(135deg, #1e2a78 0%, #131c54 100%);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.commonIndustryBody .final-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.commonIndustryBody .final-cta-content { position: relative; }

.commonIndustryBody .final-cta h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.commonIndustryBody .final-cta h2 .highlight { color: #fcc419; }

.commonIndustryBody .final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 36px;
  max-width: 600px;
}

.commonIndustryBody .final-cta-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

.commonIndustryBody .final-cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.commonIndustryBody .final-cta-trust span i { color: #fcc419; margin-right: 6px; }

/* ==========================================================================
   MODAL
   ========================================================================== */

.commonIndustryBody .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 50, 0.7);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.commonIndustryBody .modal-overlay.show { opacity: 1; visibility: visible; }

.commonIndustryBody .modal-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.commonIndustryBody .modal-overlay.show .modal-card { transform: scale(1); }

.commonIndustryBody .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f7ff;
  color: #1e2a78;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.commonIndustryBody .modal-close:hover { background: #1e2a78; color: #ffffff; }

.commonIndustryBody .modal-eyebrow {
  display: inline-block;
  background: #eef2ff;
  color: #1e2a78;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.commonIndustryBody .modal-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e2a78;
  margin: 0 0 8px;
  line-height: 1.3;
}

.commonIndustryBody .modal-card > p {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 24px;
}

.commonIndustryBody .modal-form { display: flex; flex-direction: column; gap: 14px; }

.commonIndustryBody .modal-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #1e2a78;
  background: #f9fafb;
  transition: all 0.2s;
}

.commonIndustryBody .modal-input:focus {
  outline: none;
  border-color: #1e2a78;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 42, 120, 0.08);
}

.commonIndustryBody .modal-form .btn-primary { justify-content: center; padding: 14px; }

.commonIndustryBody .modal-disclaimer {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-top: 12px;
}

/* ==========================================================================
   ANIMATIONS / UTILITIES
   ========================================================================== */

.commonIndustryBody .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.commonIndustryBody .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .commonIndustryBody .hero h1 { font-size: 42px; }
  .commonIndustryBody .section-title { font-size: 32px; }
  .commonIndustryBody .hero-inner, .commonIndustryBody .feature-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .commonIndustryBody .hero-visual { min-height: auto; margin-top: 30px; }
  .commonIndustryBody .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .commonIndustryBody .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .commonIndustryBody .workflow { grid-template-columns: repeat(3, 1fr); }
  .commonIndustryBody .workflow::before { display: none; }
  .commonIndustryBody .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .commonIndustryBody .container { padding: 0 20px; }
  .commonIndustryBody .hero { padding: 60px 0 80px; }
  .commonIndustryBody .hero h1 { font-size: 34px; }
  .commonIndustryBody .hero p.hero-sub { font-size: 16px; }
  .commonIndustryBody .section-title { font-size: 26px; }
  .commonIndustryBody .problem-section, .commonIndustryBody .features-section, .commonIndustryBody .how-section,
  .commonIndustryBody .compare-section, .commonIndustryBody .testimonials-section, .commonIndustryBody .faq-section,
  .commonIndustryBody .final-cta { padding: 60px 0; }
  .commonIndustryBody .problem-grid { grid-template-columns: 1fr; }
  .commonIndustryBody .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .commonIndustryBody .stat-number { font-size: 44px; }
  .commonIndustryBody .workflow { grid-template-columns: 1fr; }
  .commonIndustryBody .features-tabs { gap: 4px; padding: 6px; }
  .commonIndustryBody .feature-tab { padding: 10px 14px; font-size: 13px; }
  .commonIndustryBody .feature-tab span { display: none; }
  .commonIndustryBody .testimonial-card { padding: 32px 24px; }
  .commonIndustryBody .testimonial-text { font-size: 16px; }
  .commonIndustryBody .testimonial-result { margin-left: 0; margin-top: 12px; }
  .commonIndustryBody .testimonial-author { flex-wrap: wrap; }
  .commonIndustryBody .final-cta-inner { padding: 50px 24px; }
  .commonIndustryBody .final-cta h2 { font-size: 30px; }
  .commonIndustryBody .platforms-list { gap: 24px; }
  .commonIndustryBody .platform-item { font-size: 15px; }
  .commonIndustryBody .hero-trust { gap: 16px; }
  .commonIndustryBody .floating-card { display: none; }
}
