/*==============================================
  AURA MARKET RESEARCH - Homepage Styles
==============================================*/

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  margin-top: 0;
  display: block;
  padding-top: var(--header-height);
}

/* --- Hero Banner Split (Desktop/Mobile) --- */
.hero-banner {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: var(--header-height);
  padding: 0;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.hero-banner__desktop {
  display: none;
}

.hero-banner__mobile {
  display: none;
}

.hero-banner picture,
.hero-banner div,
.hero-banner img {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Desktop/Mobile Banner Img Tags (hidden by default) --- */
.hero-desktop-banner {
  display: none;
}

.hero-mobile-banner {
  display: none;
}

/* ===== Consumer Panel Stats (Advanced 4-col) ===== */
.cp-stats {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.cp-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.15), transparent);
}

.cp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cp-stat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-md);
  padding: 28px 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cp-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 4px 4px;
  transition: width 0.4s ease;
}

.cp-stat-card:hover::before {
  width: 80%;
}

.cp-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(7,26,61,0.1);
  border-color: rgba(39,167,207,0.15);
}

.cp-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39,167,207,0.1), rgba(0,185,232,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.4s ease;
}

.cp-stat-card:hover .cp-stat-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 6px 20px rgba(39,167,207,0.25);
}

.cp-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}

.cp-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .cp-stats-grid { gap: 6px; }
  .cp-stat-card { padding: 18px 6px; }
  .cp-stat-icon { width: 36px; height: 36px; font-size: 0.95rem; margin-bottom: 8px; }
  .cp-stat-value { font-size: 1.1rem; }
  .cp-stat-label { font-size: 0.62rem; letter-spacing: 0.3px; }
}

/* ===== Consumer Panel Process (Advanced) ===== */
.cp-process {
  position: relative;
  overflow: hidden;
}

.cp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cp-process-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cp-process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cp-process-card:hover::after {
  opacity: 1;
}

.cp-process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(7,26,61,0.1);
  border-color: rgba(39,167,207,0.15);
}

.cp-process-step {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(39,167,207,0.2);
  letter-spacing: 1px;
}

.cp-process-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39,167,207,0.1), rgba(0,185,232,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  transition: all 0.4s ease;
}

.cp-process-card:hover .cp-process-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 8px 24px rgba(39,167,207,0.3);
}

.cp-process-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.cp-process-card:hover h4 {
  color: var(--primary);
}

.cp-process-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cp-process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cp-process-card { padding: 28px 18px 22px; }
  .cp-process-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .cp-process-card h4 { font-size: 0.95rem; }
  .cp-process-card p { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .cp-process-grid { gap: 12px; }
  .cp-process-card { padding: 24px 14px 18px; }
  .cp-process-icon { width: 38px; height: 38px; font-size: 0.95rem; margin-bottom: 10px; }
}

/* Consumer Banner Overlay (image + text) */
.consumer-banner {
  position: relative;
}

.consumer-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,26,61,0.7) 0%, rgba(7,26,61,0.35) 50%, rgba(7,26,61,0.1) 100%);
  display: flex;
  align-items: center;
  z-index: 2;
}

.consumer-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
  padding: 80px 0;
}

.consumer-banner-content h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.consumer-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .consumer-banner-content { padding: 60px 0; }
  .consumer-banner-content h1 { font-size: 2rem; }
  .consumer-banner-content p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .consumer-banner-content { padding: 40px 0; }
  .consumer-banner-content h1 { font-size: 1.5rem; }
  .consumer-banner-content p { font-size: 0.85rem; }
}

/* Desktop: show desktop banner, hide mobile */
@media (min-width: 768px) {
  .hero-banner {
    display: block;
  }
  .hero-banner .hero-banner__desktop {
    display: block;
  }
  .hero-banner .hero-banner__mobile {
    display: none;
  }
  .homepage-banner {
    display: none;
  }
}

/* Mobile: show mobile banner only */
@media (max-width: 767px) {
  .hero-banner {
    display: block !important;
    margin-top: var(--header-height) !important;
    padding: 0 !important;
    line-height: 0;
  }
  .hero-banner__desktop {
    display: none !important;
  }
  .hero-banner__mobile {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
  }
  .hero-banner__mobile img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* --- Background Layers --- */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}

.hero-banner-mobile {
  display: none;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 61, 0.97) 0%,
      rgba(7, 26, 61, 0.88) 35%,
      rgba(7, 26, 61, 0.35) 60%,
      transparent 100%
    );
  z-index: 2;
  pointer-events: none;
}

/* --- Particles --- */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* --- Grid Overlay --- */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39,167,207,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,167,207,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* --- World Map --- */
.hero-map {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 80%;
  opacity: 0.1;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Cpath d='M200 100 L220 80 L250 90 L270 70 L300 85' stroke='%2327A7CF' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3Cpath d='M400 200 L430 180 L460 195 L480 170 L510 185' stroke='%2327A7CF' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3Cpath d='M100 300 L130 280 L160 295 L180 270' stroke='%2327A7CF' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3Cpath d='M500 350 L530 330 L560 345 L590 320' stroke='%2327A7CF' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3Ccircle cx='220' cy='80' r='3' fill='%2327A7CF' opacity='0.5'/%3E%3Ccircle cx='430' cy='180' r='3' fill='%2327A7CF' opacity='0.5'/%3E%3Ccircle cx='130' cy='280' r='3' fill='%2327A7CF' opacity='0.5'/%3E%3Ccircle cx='530' cy='330' r='3' fill='%2327A7CF' opacity='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* --- Connection Lines --- */
.hero-connection-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.connection-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
  opacity: 0.15;
  animation: connectionPulse 3s ease-in-out infinite;
}

@keyframes connectionPulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

/* --- Glow --- */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,167,207,0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

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

/* --- Two-Column Grid --- */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 650px;
  padding: 20px 20px 60px 0;
  min-width: 0;
}

/* --- Right Visual --- */
.hero-visual {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* --- Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(39,167,207,0.15);
  border: 1px solid rgba(39,167,207,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse 2s infinite;
}

/* --- Title --- */
.hero-title {
  font-size: clamp(32px, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  white-space: normal;
}

/* Word-by-word reveal */
.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-15deg);
  animation: titleReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.08s * var(--i));
  white-space: nowrap;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) rotateX(-15deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Highlight words with gradient shimmer */
.highlight-word {
  color: transparent;
  background: linear-gradient(90deg, var(--primary-light), #80E5FF, #4AD8F0, var(--primary-light));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation:
    titleReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    shimmer 4s ease-in-out infinite;
  animation-delay: calc(0.08s * var(--i)), calc(0.08s * 7 + 0.6s);
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Subtitle --- */
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 100%;
}

/* --- Actions --- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

/* --- Stats --- */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-number .counter-suffix {
  color: var(--primary-light);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* --- Dashboard Cards --- */
.hero-dashboard {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 360px;
}

.dash-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

.dash-card-1 {
  align-self: flex-end;
  animation-delay: 0s;
}

.dash-card-2 {
  align-self: flex-start;
  animation-delay: 1.5s;
}

.dash-card-3 {
  align-self: flex-end;
  animation-delay: 3s;
}

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dash-card-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.dash-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.dash-card-change {
  font-size: 0.75rem;
  color: #4CAF50;
  font-weight: 600;
}

.dash-bar {
  height: 4px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  margin-top: 10px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  width: 70%;
}

.dash-bar-fill.green {
  background: linear-gradient(90deg, #4CAF50, #81C784);
}

.dash-bar-fill.orange {
  background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.dash-dots {
  display: flex;
  gap: 5px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s;
}

.dash-dot.active {
  background: var(--primary-light);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 2s 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== WHAT WE DO (Advanced Redesign) ===== */
.what-we-do {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* --- Background Decorations --- */
.wwd-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wwd-decor-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.wwd-decor-1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  animation: wwdDecorFloat 8s ease-in-out infinite;
}

.wwd-decor-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: wwdDecorFloat 10s ease-in-out infinite 1s;
}

.wwd-decor-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(39,167,207,0.03) 0%, transparent 70%);
  animation: wwdDecorFloat 12s ease-in-out infinite 2s;
}

.wwd-decor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39,167,207,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,167,207,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

@keyframes wwdDecorFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

/* --- Section Header --- */
.what-we-do .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

/* Advanced What We Do Heading */
.wwd-title-advanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.15;
}

.wwd-title-line {
  display: block;
}

.wwd-title-advanced .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 50%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: wwdGradientShift 4s ease-in-out infinite;
}

@keyframes wwdGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.wwd-desc-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.wwd-desc-advanced {
  font-size: 1.1rem;
  line-height: 1.9;
}

.wwd-desc-advanced .wwd-highlight {
  color: var(--primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.wwd-desc-advanced .wwd-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.4;
}

/* Stats Row */
.wwd-stats-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.wwd-stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 20px;
  background: var(--bg-light);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-md);
  min-width: 100px;
  transition: var(--transition);
}

.wwd-stat-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(39,167,207,0.2);
}

.wwd-stat-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.wwd-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Tags */
.wwd-service-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.wwd-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.wwd-service-tag:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(39,167,207,0.25);
}

.wwd-service-tag i {
  font-size: 0.75rem;
}

.wwd-service-tag:hover i {
  color: var(--white);
}

@media (max-width: 768px) {
  .wwd-stats-row { gap: 8px; }
  .wwd-stat-chip { min-width: 80px; padding: 10px 14px; }
  .wwd-stat-num { font-size: 1.1rem; }
  .wwd-service-tags { gap: 6px; }
  .wwd-service-tag { font-size: 0.72rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
  .wwd-stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-width: 280px; margin-left: auto; margin-right: auto; }
  .wwd-service-tags { gap: 5px; }
  .wwd-service-tag { font-size: 0.68rem; padding: 4px 8px; }
}

/* --- Core Capabilities Grid --- */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.wwd-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}

.wwd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.wwd-card::after {
  content: '';
  position: absolute;
  top: -100%;
  right: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(39,167,207,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(7, 26, 61, 0.1);
  border-color: transparent;
}

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

.wwd-card:hover::after {
  opacity: 1;
}

.wwd-card > * {
  position: relative;
  z-index: 1;
}

.wwd-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.wwd-card:hover .wwd-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(39, 167, 207, 0.3);
}

.wwd-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.wwd-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.wwd-card-stats {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-soft);
}

.wwd-card-stats span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.wwd-card-stats strong {
  color: var(--primary);
  font-weight: 700;
}

/* --- Process Workflow --- */
.wwd-process {
  position: relative;
  z-index: 1;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: 60px;
  border: 1px solid var(--gray-soft);
}

.wwd-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.wwd-process-header {
  text-align: center;
  margin-bottom: 40px;
}

.wwd-process-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.wwd-process-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.wwd-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.wwd-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.wwd-step-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
  opacity: 0.6;
}

.wwd-step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: all 0.4s ease;
  position: relative;
}

.wwd-step:hover .wwd-step-icon {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(39, 167, 207, 0.3);
}

.wwd-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.wwd-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

.wwd-step-connector {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.wwd-step-connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  position: relative;
  opacity: 0.3;
}

.wwd-step-connector span::before,
.wwd-step-connector span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.wwd-step-connector span::before { left: 0; opacity: 0.5; }
.wwd-step-connector span::after { right: 0; opacity: 0.5; }

/* --- Industries Section --- */
.wwd-industries {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  overflow: hidden;
}

.wwd-industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.wwd-industries-content {
  position: relative;
  z-index: 1;
}

.wwd-industries-content .section-tag {
  background: rgba(39,167,207,0.2);
  color: var(--primary-light);
  border: 1px solid rgba(39,167,207,0.3);
}

.wwd-industries-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.wwd-industries-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.wwd-industries-content .btn-primary {
  background: var(--white);
  color: var(--navy);
  border: none;
}

.wwd-industries-content .btn-primary:hover {
  background: var(--primary-light);
  color: var(--white);
}

.wwd-industries-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.wwd-industries-tags .industry-tag {
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  cursor: default;
}

.wwd-industries-tags .industry-tag:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39, 167, 207, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-step p {
    max-width: 100%;
  }

  .wwd-industries {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px;
  }
}

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

  .wwd-process {
    padding: 30px 20px;
  }

  .wwd-process-header h3 {
    font-size: 1.2rem;
  }

  .wwd-process-steps {
    gap: 8px;
  }

  .wwd-step {
    padding: 0 8px;
  }

  .wwd-step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .wwd-step h4 {
    font-size: 0.82rem;
  }

  .wwd-step p {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .wwd-step-connector {
    flex: 0 0 16px;
    padding-top: 38px;
  }

  .wwd-step-connector span::before,
  .wwd-step-connector span::after {
    width: 4px;
    height: 4px;
  }

  .wwd-industries {
    padding: 28px 20px;
  }

  .wwd-industries-content h3 {
    font-size: 1.3rem;
  }
}

/* ===== OLD CHECKLIST (kept for other sections) ===== */
.wwd-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.wwd-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.wwd-check-item .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== PANEL CARDS INSIDE WHAT WE DO ===== */
.wwd-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

/* --- Card (outer wrapper) --- */
.wwd-panel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(7, 26, 61, 0.04);
}

.wwd-panel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(7, 26, 61, 0.12);
  border-color: transparent;
}

/* --- Image Wrap --- */
.wwd-panel-img-wrap {
  position: relative;
  height: auto;
  overflow: hidden;
}

.wwd-panel-bg {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--navy);
}

.wwd-panel-img-full {
  width: 100%;
  height: auto;
  display: block;
}

.wwd-panel-bg-b2b {
  background: linear-gradient(135deg, #071A3D, #0F2B5E, #1A3A7A);
}

.wwd-panel-bg-b2b::after {
  content: '\f1ad';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 5rem;
  position: absolute;
  bottom: -10px;
  right: -10px;
  color: rgba(255,255,255,0.06);
}

.wwd-panel-bg-healthcare {
  background: linear-gradient(135deg, #00B9E8, #27A7CF, #1E8DB0);
}

.wwd-panel-bg-healthcare::after {
  content: '\f0f8';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 5rem;
  position: absolute;
  bottom: -10px;
  right: -10px;
  color: rgba(255,255,255,0.08);
}

.wwd-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 26, 61, 0.15) 100%);
  z-index: 1;
}

.wwd-panel-img-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

.wwd-panel-card:hover .wwd-panel-img-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(39, 167, 207, 0.4);
}

.wwd-panel-img-stat {
  position: absolute;
  bottom: 12px;
  left: 16px;
  z-index: 3;
}

.wwd-panel-img-stat span {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.wwd-panel-img-stat strong {
  color: var(--primary-light);
}

/* --- Body --- */
.wwd-panel-body {
  padding: 24px 24px 28px;
}

.wwd-panel-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(39,167,207,0.08);
  border: 1px solid rgba(39,167,207,0.15);
  margin-bottom: 12px;
}

.wwd-panel-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.wwd-panel-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.wwd-panel-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-soft);
}

.wwd-panel-features span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wwd-panel-features i {
  color: var(--primary);
  font-size: 0.75rem;
  width: 16px;
}

.wwd-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(39, 167, 207, 0.25);
}

.wwd-panel-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wwd-panel-btn:hover {
  gap: 14px;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(39, 167, 207, 0.4);
}

.wwd-panel-btn:hover::before {
  opacity: 1;
}

.wwd-panel-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.wwd-panel-btn .btn-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.wwd-panel-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Global Coverage Strip --- */
.wwd-global {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 44px;
}

.wwd-global-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wwd-global-glow {
  position: absolute;
  border-radius: 50%;
}

.wwd-global-glow-1 {
  width: 500px;
  height: 500px;
  top: -40%;
  right: -10%;
  background: radial-gradient(circle, rgba(39,167,207,0.12) 0%, transparent 70%);
  animation: wwdGlobalPulse 6s ease-in-out infinite;
}

.wwd-global-glow-2 {
  width: 300px;
  height: 300px;
  bottom: -30%;
  left: -5%;
  background: radial-gradient(circle, rgba(0,185,232,0.08) 0%, transparent 70%);
  animation: wwdGlobalPulse 8s ease-in-out infinite 1.5s;
}

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

.wwd-global-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.wwd-global-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
}

.wwd-global-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.wwd-global-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-light);
}

.wwd-map-img-wrap {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  box-shadow: 0 4px 24px rgba(7, 26, 61, 0.06);
}

.wwd-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.wwd-map-btn-wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.wwd-map-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  align-self: flex-start;
  margin: 0;
  padding: 8px 0 0 0;
  position: relative;
}

.wwd-map-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.wwd-map-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  background: linear-gradient(135deg, #0a1e45, #132b60, #1a3a7a);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 60px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 25px rgba(7, 26, 61, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 1;
}

.wwd-map-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(135deg, #132b60, #1e3d80, #275fa0);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.wwd-map-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.05) 50%,
    transparent 70%
  );
  animation: wwd-shine 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes wwd-shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  20% { transform: translateX(100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

.wwd-map-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(7, 26, 61, 0.35), 0 0 30px rgba(39, 167, 207, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  color: #fff;
}

.wwd-map-btn:hover::before {
  opacity: 1;
}

.wwd-map-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.wwd-map-btn i {
  font-size: 1.15rem;
  transition: transform 0.4s ease;
}

.wwd-map-btn:hover i {
  animation: wwd-bounce-down 1s ease infinite;
}

@keyframes wwd-bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.wwd-map-btn .btn-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 64px;
  border: 2px solid rgba(39, 167, 207, 0.3);
  opacity: 0;
  z-index: -2;
}

.wwd-map-btn:hover .btn-pulse {
  animation: wwd-pulse 1.5s ease-out infinite;
}

@keyframes wwd-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ===== WHY CHOOSE US SECTION ===== */
.wcu-section {
  padding: 110px 0;
  background: #F8FBFD;
  position: relative;
  overflow: hidden;
}

.wcu-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.wcu-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,185,232,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.wcu-container {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.wcu-header {
  text-align: center;
  margin-bottom: 60px;
}

.wcu-top-btn {
  margin-bottom: 24px;
}

.wcu-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary, #27A7CF);
  margin-bottom: 16px;
}

.wcu-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--navy, #071A3D);
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.wcu-desc {
  font-size: 1.05rem;
  color: var(--text-muted, #4D5868);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

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

.wcu-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  text-align: center;
  border: 1px solid rgba(39, 167, 207, 0.1);
  box-shadow: 0 15px 40px rgba(7, 26, 61, 0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.wcu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary, #27A7CF), var(--bright-blue, #00B9E8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wcu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(39,167,207,0.02) 0%, transparent 100%);
  pointer-events: none;
}

.wcu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(7, 26, 61, 0.1), 0 0 30px rgba(39, 167, 207, 0.05);
  border-color: rgba(39, 167, 207, 0.2);
}

.wcu-card:hover::before {
  opacity: 1;
}

.wcu-icon-wrap {
  margin-bottom: 18px;
}

.wcu-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27A7CF, #00B9E8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(39, 167, 207, 0.25);
  transition: all 0.4s ease;
}

.wcu-icon-circle svg {
  width: 36px;
  height: 36px;
  display: block;
}

.wcu-img-wrap {
  width: 100%;
  max-width: 160px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(39, 167, 207, 0.15);
  transition: all 0.4s ease;
  border: 2px solid rgba(39, 167, 207, 0.1);
}

.wcu-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.wcu-card:hover .wcu-img-wrap {
  transform: scale(1.04);
  box-shadow: 0 12px 35px rgba(39, 167, 207, 0.3);
  border-color: rgba(39, 167, 207, 0.25);
}

.wcu-card:hover .wcu-img-wrap img {
  transform: scale(1.06);
}

.wcu-card:hover .wcu-icon-circle {
  transform: scale(1.06);
  box-shadow: 0 12px 35px rgba(39, 167, 207, 0.35);
}

.wcu-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy, #071A3D);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.wcu-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted, #4D5868);
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex: 1;
}

.wcu-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(39,167,207,0.1), rgba(0,185,232,0.05));
  border: 1px solid rgba(39, 167, 207, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary, #27A7CF);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}

.wcu-card:hover .wcu-badge {
  background: linear-gradient(135deg, var(--primary, #27A7CF), var(--bright-blue, #00B9E8));
  color: #fff;
  border-color: transparent;
}
  color: var(--primary, #27A7CF);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.wcu-trust-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 60px;
  padding: 24px 36px;
  background: linear-gradient(135deg, rgba(39,167,207,0.04), rgba(0,185,232,0.02));
  border: 1px solid rgba(39, 167, 207, 0.12);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(7, 26, 61, 0.04);
}

.wcu-trust-icon {
  font-size: 2.2rem;
  color: var(--primary, #27A7CF);
  flex-shrink: 0;
}

.wcu-trust-text {
  font-size: 0.95rem;
  color: var(--text-muted, #4D5868);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
  .wcu-title { font-size: 2.8rem; }
}

@media (max-width: 992px) {
  .wcu-grid { grid-template-columns: repeat(2, 1fr); }
  .wcu-title { font-size: 2.2rem; }
  .wcu-header { margin-bottom: 44px; }
}

@media (max-width: 768px) {
  .wcu-section { padding: 60px 0; }
  .wcu-title { font-size: 1.8rem; margin-bottom: 14px; }
  .wcu-desc { font-size: 0.92rem; }
  .wcu-header { margin-bottom: 36px; }
  .wcu-grid { gap: 18px; }
  .wcu-card { padding: 28px 22px 22px; border-radius: 18px; }
  .wcu-img-wrap { max-width: 140px; }
  .wcu-tag { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 12px; }
  .wcu-card-title { font-size: 1rem; margin-bottom: 8px; }
  .wcu-card-desc { font-size: 0.82rem; margin-bottom: 14px; }
  .wcu-badge { font-size: 0.65rem; padding: 4px 14px; }
  .wcu-trust-bar { padding: 20px 24px; gap: 14px; margin-top: 40px; }
  .wcu-trust-icon { width: 28px; height: 28px; }
  .wcu-trust-text { font-size: 0.85rem; }
  .wcu-top-btn { margin-bottom: 18px; padding: 12px 28px !important; font-size: 0.9rem !important; }
}

@media (max-width: 480px) {
  .wcu-section { padding: 40px 0; }
  .wcu-title { font-size: 1.4rem; margin-bottom: 10px; }
  .wcu-desc { font-size: 0.85rem; line-height: 1.6; }
  .wcu-header { margin-bottom: 28px; }
  .wcu-tag { font-size: 0.6rem; letter-spacing: 1.5px; margin-bottom: 10px; }
  .wcu-grid { gap: 12px; }
  .wcu-card { padding: 20px 14px 16px; border-radius: 14px; }
  .wcu-img-wrap { max-width: 100px; border-radius: 10px; margin-bottom: 14px; }
  .wcu-icon-wrap { margin-bottom: 14px; }
  .wcu-card-title { font-size: 0.88rem; margin-bottom: 6px; }
  .wcu-card-desc { font-size: 0.75rem; line-height: 1.5; margin-bottom: 12px; }
  .wcu-badge { font-size: 0.6rem; padding: 3px 12px; letter-spacing: 0.4px; }
  .wcu-trust-bar { padding: 16px; gap: 10px; margin-top: 28px; border-radius: 12px; flex-direction: column; text-align: center; }
  .wcu-trust-icon { width: 24px; height: 24px; }
  .wcu-trust-text { font-size: 0.78rem; }
  .wcu-top-btn { margin-bottom: 14px; padding: 10px 22px !important; font-size: 0.82rem !important; border-radius: 40px !important; }
}

/* ===== IMPACT STATS SECTION ===== */
.impact-stats-section {
  padding: 90px 0;
  background: var(--white, #fff);
  position: relative;
}

.impact-stats-section .section-container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.impact-header {
  margin-bottom: 50px;
}

.impact-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-light, #50C4E8);
  margin-bottom: 10px;
}

.impact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy, #071A3D);
  margin: 0 0 14px 0;
  line-height: 1.2;
}

.impact-subtitle {
  font-size: 1rem;
  color: var(--text-muted, #4D5868);
  line-height: 1.7;
  max-width: 700px;
  margin: 0;
}

.impact-underline {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary, linear-gradient(90deg, #27A7CF, #00B9E8));
  border-radius: 2px;
  margin-top: 18px;
  animation: impact-underline-pulse 2s ease-in-out infinite;
}

@keyframes impact-underline-pulse {
  0%, 100% { opacity: 0.6; width: 60px; }
  50% { opacity: 1; width: 80px; }
}

.impact-stats-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.impact-row {
  display: grid;
  grid-template-columns: 230px 1fr 260px;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
}

.impact-divider {
  height: 1px;
  background: rgba(7, 26, 61, 0.08);
}

.impact-number-card {
  width: 230px;
  min-height: 112px;
  background: var(--bg-light, #F3F6F8);
  border-radius: 16px;
  border: 1px solid rgba(39, 167, 207, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 24px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(7, 26, 61, 0.04);
  overflow: hidden;
}

.impact-number-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary, linear-gradient(180deg, #27A7CF, #00B9E8));
  border-radius: 0 2px 2px 0;
}

.impact-number-card i {
  font-size: 1.5rem;
  color: var(--primary, #27A7CF);
  transition: transform 0.4s ease;
}

.impact-number-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary, #27A7CF);
  box-shadow: 0 8px 30px rgba(39, 167, 207, 0.15);
}

.impact-number-card:hover i {
  transform: scale(1.05);
}

.impact-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy, #071A3D);
  line-height: 1;
  letter-spacing: -1px;
}

.impact-suffix {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary, #27A7CF);
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 3px;
}

.impact-description h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy, #071A3D);
  margin: 0 0 8px 0;
}

.impact-description p {
  font-size: 0.92rem;
  color: var(--text-muted, #4D5868);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.impact-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--primary, #27A7CF);
  border-radius: 999px;
  color: var(--navy, #071A3D);
  background: #fff;
  min-height: 58px;
  width: 100%;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.impact-label::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy, #071A3D), var(--navy-light, #0F2B5E));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 999px;
}

.impact-label::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  animation: impact-label-shine 4s ease-in-out infinite;
  z-index: -1;
  border-radius: 999px;
}

@keyframes impact-label-shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  20% { transform: translateX(100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

.impact-label:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(39, 167, 207, 0.25), 0 0 20px rgba(39, 167, 207, 0.1);
  border-color: var(--navy, #071A3D);
  color: #fff;
}

.impact-label:hover::before {
  opacity: 1;
}

.impact-label:active {
  transform: translateY(-1px) scale(0.98);
}

.impact-label i {
  font-size: 1.1rem;
  color: var(--primary, #27A7CF);
  transition: transform 0.4s ease;
}

.impact-label:hover i {
  color: #fff;
}

.impact-label-arrow {
  font-size: 0.85rem !important;
  transition: transform 0.4s ease !important;
}

.impact-label:hover .impact-label-arrow {
  transform: translateX(4px) !important;
}

.impact-label i {
  font-size: 1.1rem;
  color: var(--primary, #27A7CF);
}

/* Scroll reveal animations */
.reveal-impact {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-impact.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .impact-row {
    grid-template-columns: 180px 1fr 190px;
    gap: 20px;
  }
  .impact-number-card {
    width: 180px;
    min-height: 100px;
  }
  .impact-number {
    font-size: 2.4rem;
  }
  .impact-suffix {
    font-size: 1.4rem;
  }
  .impact-label {
    font-size: 0.85rem;
    min-height: 50px;
  }
}

@media (max-width: 850px) {
  .impact-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .impact-number-card {
    width: 100%;
    min-height: 90px;
    justify-content: center;
  }
  .impact-number-card::before {
    width: 100%;
    height: 3px;
    top: 0;
    left: 0;
    border-radius: 0 0 2px 2px;
  }
  .impact-description {
    text-align: left;
  }
  .impact-label {
    width: 100%;
  }
  .impact-header {
    text-align: center;
  }
  .impact-subtitle {
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .impact-stats-section {
    padding: 52px 0;
  }
  .impact-title {
    font-size: 1.6rem;
  }
  .impact-number {
    font-size: 2.2rem;
  }
  .impact-suffix {
    font-size: 1.2rem;
  }
  .impact-number-card {
    min-height: 80px;
  }
}
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(39,167,207,0.15);
  border: 1px solid rgba(39,167,207,0.3);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.wwd-global-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.wwd-global-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 520px;
}

.wwd-global-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.wwd-global-metric {
  text-align: left;
}

.wwd-gm-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  font-family: var(--font-heading);
  line-height: 1;
}

.wwd-gm-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

.wwd-gm-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 992px) {
  .wwd-global { padding: 30px 28px; }
  .wwd-global-content { grid-template-columns: 1fr; gap: 24px; }
  .wwd-global-left { flex-direction: column; text-align: center; align-items: center; }
  .wwd-global-icon { margin: 0 auto; }
  .wwd-global-text p { max-width: 100%; }
  .wwd-global-metrics { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .wwd-global-metric { text-align: center; }
  .wwd-gm-dot { display: none; }
}
@media (max-width: 640px) {
  .wwd-global { padding: 24px 20px; margin-top: 30px; }
  .wwd-global-text h3 { font-size: 1.15rem; }
}

@media (max-width: 992px) {
  .wwd-panels { grid-template-columns: 1fr; max-width: 500px; margin: 20px auto 0; }
}
@media (max-width: 768px) {
  .wwd-panel-body { padding: 20px 20px 24px; }
  .wwd-panel-img-icon { width: 40px; height: 40px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .wwd-panel-body { padding: 18px 18px 22px; }
}

/* ===== RESEARCH PANELS (Advanced) ===== */
.research-panels {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.rp-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rp-glow {
  position: absolute;
  border-radius: 50%;
}

.rp-glow-1 {
  width: 500px;
  height: 500px;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  animation: rpGlow 7s ease-in-out infinite;
}

.rp-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(0,185,232,0.05) 0%, transparent 70%);
  animation: rpGlow 9s ease-in-out infinite 1.5s;
}

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

/* Grid - 3 columns on desktop */
.panels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Card */
.panel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(7, 26, 61, 0.04);
}

.panel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(7, 26, 61, 0.12);
  border-color: transparent;
}

/* --- Image Section --- */
.panel-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.panel-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.panel-card:hover .panel-card-img {
  transform: scale(1.08);
}

.panel-img-consumer {
  background: linear-gradient(135deg, #27A7CF, #1E8DB0, #0F5E7A);
  position: relative;
}

.panel-img-consumer::after {
  content: '\f0c0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 5rem;
  position: absolute;
  bottom: -10px;
  right: -10px;
  color: rgba(255,255,255,0.08);
}

.panel-img-b2b {
  background: linear-gradient(135deg, #071A3D, #0F2B5E, #1A3A7A);
  position: relative;
}

.panel-img-b2b::after {
  content: '\f1ad';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 5rem;
  position: absolute;
  bottom: -10px;
  right: -10px;
  color: rgba(255,255,255,0.06);
}

.panel-img-healthcare {
  background: linear-gradient(135deg, #00B9E8, #27A7CF, #1E8DB0);
  position: relative;
}

.panel-img-healthcare::after {
  content: '\f0f8';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 5rem;
  position: absolute;
  bottom: -10px;
  right: -10px;
  color: rgba(255,255,255,0.08);
}

.panel-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 26, 61, 0.6) 100%);
  z-index: 1;
}

.panel-card-img-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

.panel-card:hover .panel-card-img-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(39, 167, 207, 0.4);
}

.panel-card-img-stats {
  position: absolute;
  bottom: 12px;
  left: 16px;
  z-index: 2;
}

.panel-card-img-stats span {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}

.panel-card-img-stats strong {
  color: var(--primary-light);
}

/* --- Body Section --- */
.panel-card-body {
  padding: 24px 24px 28px;
  position: relative;
}

.panel-card-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(39,167,207,0.08);
  border: 1px solid rgba(39,167,207,0.15);
  margin-bottom: 12px;
}

.panel-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.panel-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.panel-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-soft);
}

.panel-card-features span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-card-features i {
  color: var(--primary);
  font-size: 0.75rem;
  width: 16px;
}

.panel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
}

.panel-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.panel-card-link:hover {
  gap: 14px;
}

.panel-card-link:hover::after {
  width: 100%;
}

/* ===== CONSUMER INSIGHTS ===== */
.consumer-insights {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.consumer-insights::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.insights-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.insights-visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, #071A3D, #0F2B5E, #1A3A7A);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39,167,207,0.15);
  box-shadow: 0 20px 50px rgba(7,26,61,0.12);
}

.insights-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(39,167,207,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.insights-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #27A7CF, #00B9E8, transparent);
}

.insights-visual-content {
  text-align: center;
  color: var(--white);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.insights-visual-content .big-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(39,167,207,0.2), rgba(0,185,232,0.1));
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
}

.insights-visual-content h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.insights-visual-content .insights-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.insights-count-item {
  text-align: center;
}

.insights-count-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00B9E8;
}

.insights-count-item span {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-category {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(39,167,207,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.insight-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #27A7CF, #00B9E8);
  transition: height 0.4s ease;
  border-radius: 0 2px 2px 0;
}

.insight-category:hover {
  box-shadow: 0 12px 40px rgba(7,26,61,0.08), 0 0 20px rgba(39,167,207,0.04);
  transform: translateY(-4px);
  border-color: rgba(39,167,207,0.15);
}

.insight-category:hover::before {
  height: 100%;
}

.insight-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(7,26,61,0.06);
}

.insight-category-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(39,167,207,0.1), rgba(0,185,232,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27A7CF;
  font-size: 1rem;
  transition: all 0.4s ease;
}

.insight-category:hover .insight-category-icon {
  background: linear-gradient(135deg, #27A7CF, #00B9E8);
  color: #fff;
  transform: scale(1.05);
}

.insight-category h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #071A3D;
}

.insight-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.insight-item {
  padding: 5px 14px;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.insight-item:hover {
  background: linear-gradient(135deg, #27A7CF, #00B9E8);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}

.targeting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.target-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(39,167,207,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.target-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #00B9E8, #27A7CF);
  transition: height 0.4s ease;
  border-radius: 2px 0 0 2px;
}

.target-card:hover {
  box-shadow: 0 10px 35px rgba(7,26,61,0.08);
  transform: translateY(-3px);
  border-color: rgba(39,167,207,0.2);
}

.target-card:hover::after {
  height: 100%;
}

.target-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(39,167,207,0.1), rgba(0,185,232,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27A7CF;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.target-card:hover .target-card-icon {
  background: linear-gradient(135deg, #27A7CF, #00B9E8);
  color: #fff;
  transform: scale(1.08);
}

.target-card span {
  font-weight: 600;
  font-size: 0.92rem;
  color: #071A3D;
}

/* ===== GLOBAL REACH ===== */
.global-reach {
  position: relative;
  overflow: hidden;
}

.global-map-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-soft);
}

.map-svg {
  width: 100%;
  height: 100%;
  min-height: 500px;
  opacity: 0.6;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 2;
}

.map-pin-dot {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(39,167,207,0.4);
  animation: ping 2s infinite;
  position: relative;
}

.map-pin-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.map-pin:hover .map-pin-label {
  opacity: 1;
  top: -36px;
}

.map-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== WHY CHOOSE ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-light);
  transform: translate(30%, -30%);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::after {
  background: var(--primary);
  opacity: 0.05;
  transform: translate(30%, -30%) scale(2);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 6px 20px rgba(39,167,207,0.25);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.why-card:hover h3 { color: var(--primary); }

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.why-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.why-detail-tag {
  padding: 4px 12px;
  background: var(--bg-light);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== STATISTICS ===== */
.stats-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(39,167,207,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(0,185,232,0.05) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px 12px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter-suffix {
  color: var(--primary-light);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.solution-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.solution-card-image .sol-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  transition: var(--transition);
}

.sol-bg-1 { background: linear-gradient(135deg, #27A7CF, #1E8DB0); }
.sol-bg-2 { background: linear-gradient(135deg, #071A3D, #0F2B5E); }
.sol-bg-3 { background: linear-gradient(135deg, #00B9E8, #27A7CF); }

.solution-card:hover .sol-placeholder {
  transform: scale(1.05);
}

.solution-card-body {
  padding: 28px;
}

.solution-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.solution-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(7,26,61,0.1);
  border-color: rgba(39,167,207,0.15);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 6px 20px rgba(39,167,207,0.25);
}

.service-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.service-card:hover h4 { color: var(--primary); }

.service-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link:hover {
  gap: 10px;
}

/* ===== DIGITAL SOLUTIONS ===== */
.digital-solutions {
  background: var(--bg-light);
}

.digital-dashboard {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-soft);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: var(--shadow-md);
}

.dash-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--navy);
}

.dash-header-dots {
  display: flex;
  gap: 6px;
}

.dash-header-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-header-dot.red { background: #FF6B6B; }
.dash-header-dot.yellow { background: #FFD93D; }
.dash-header-dot.green { background: #6BCB77; }

.dash-header-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.dash-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.dash-chart-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-chart {
  height: 200px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  gap: 8px;
}

.dash-bar-chart {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.dash-bar-item {
  width: 100%;
  max-width: 40px;
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s ease-out forwards;
  transform-origin: bottom;
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.dash-bar-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.dash-data-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-data-card {
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.dash-data-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.dash-data-card-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.dash-data-card-trend {
  font-size: 0.7rem;
  font-weight: 600;
}

.dash-data-card-trend.up { color: #4CAF50; }
.dash-data-card-trend.down { color: #FF6B6B; }

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

.digital-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-soft);
  transition: var(--transition);
}

.digital-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.digital-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 auto 12px;
  transition: var(--transition);
}

.digital-item:hover .digital-item-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.digital-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== CASE STUDIES ===== */
.case-studies-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.cases-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: cases-scroll 40s linear infinite;
}

.cases-track:hover {
  animation-play-state: paused;
}

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

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  transition: var(--transition);
  flex: 0 0 300px;
  max-width: 300px;
  position: relative;
}

.case-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.case-card:hover::after { opacity: 1; }

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(7,26,61,0.12);
  border-color: rgba(39,167,207,0.2);
}

.case-card-image {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.case-card:hover .case-img {
  transform: scale(1.08);
}

.case-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-card-body {
  padding: 18px;
}

.case-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.case-card-body h4 {
  font-size: 0.92rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.case-card:hover .case-card-body h4 { color: var(--primary); }

.case-card-body p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ===== DATA QUALITY ===== */
.data-quality {
  background: linear-gradient(180deg, var(--bg-light) 0%, #f0f4f8 100%);
}

/* DQ Header */
.dq-header {
  text-align: center;
  margin-bottom: 48px;
}

.dq-shield {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dq-shield i {
  font-size: 2.2rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.dq-shield-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0,102,204,0.15);
  border-radius: 50%;
  animation: dqRingPulse 3s ease-in-out infinite;
}

.dq-shield-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0,102,204,0.08);
  border-radius: 50%;
  animation: dqRingPulse 3s ease-in-out infinite 0.5s;
}

@keyframes dqRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.6; }
}

/* DQ Stats */
.dq-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
  border: 1px solid var(--gray-soft);
}

.dq-stat {
  text-align: center;
  flex: 1;
  padding: 0 24px;
}

.dq-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.dq-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.dq-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-soft);
  flex-shrink: 0;
}

/* DQ Process Flow */
.dq-process {
  margin-bottom: 60px;
}

.dq-process-header {
  text-align: center;
  margin-bottom: 40px;
}

.dq-process-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.dq-process-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.dq-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.dq-flow-step {
  text-align: center;
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-soft);
  min-width: 150px;
  flex: 1;
  max-width: 180px;
  position: relative;
  transition: all 0.3s ease;
}

.dq-flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.dq-flow-num {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.4;
}

.dq-flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,102,204,0.08), rgba(0,185,232,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.dq-flow-step:hover .dq-flow-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.dq-flow-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.dq-flow-step p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.dq-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  padding: 0 8px;
  opacity: 0.4;
  margin-top: 36px;
}

/* DQ Cards */
.dq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.dq-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--gray-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,102,204,0.12);
  border-color: transparent;
}

.dq-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dq-card:hover .dq-card-accent {
  transform: scaleX(1);
}

.dq-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,102,204,0.06), rgba(0,185,232,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.dq-card:hover .dq-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.08);
}

.dq-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.dq-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.dq-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16,185,129,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.dq-card-tag i {
  font-size: 0.6rem;
}

/* DQ Trust Badges */
.dq-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.dq-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s ease;
}

.dq-trust-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,102,204,0.1);
}

.dq-trust-badge i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* DQ Responsive */
@media (max-width: 992px) {
  .dq-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
  }
  .dq-stat {
    min-width: 120px;
    flex: 1 1 calc(50% - 20px);
  }
  .dq-stat-divider {
    display: none;
  }
  .dq-flow {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .dq-flow-arrow {
    display: none;
  }
  .dq-flow-step {
    flex: 1 1 calc(33% - 12px);
    min-width: 130px;
  }
  .dq-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dq-header { margin-bottom: 32px; }
  .dq-shield i { font-size: 1.8rem; }
  .dq-shield { width: 56px; height: 56px; }
  .dq-stats { margin-bottom: 40px; }
  .dq-stat-num { font-size: 1.6rem; }
  .dq-flow-step {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }
  .dq-cards { gap: 16px; }
  .dq-trust { gap: 12px; }
  .dq-trust-badge { padding: 8px 14px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .dq-stats { padding: 20px 16px; gap: 16px; }
  .dq-stat { flex: 1 1 100%; }
  .dq-flow {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .dq-flow-step {
    flex: 0 0 140px;
    min-width: 140px;
    max-width: 140px;
    scroll-snap-align: start;
    padding: 16px 12px;
  }
  .dq-flow-arrow {
    display: flex;
    flex: 0 0 auto;
    font-size: 0.7rem;
    padding: 0 4px;
    margin-top: 28px;
  }
  .dq-flow-step h4 { font-size: 0.78rem; }
  .dq-flow-step p { font-size: 0.68rem; }
  .dq-flow-icon { width: 36px; height: 36px; font-size: 0.85rem; margin-bottom: 8px; }
  .dq-flow-num { font-size: 0.55rem; top: 4px; right: 8px; }
  }
  .dq-cards { grid-template-columns: 1fr; }
  .dq-card { padding: 24px 20px; }
  .dq-trust-badge { padding: 6px 12px; font-size: 0.7rem; }
}

/* ===== CLIENT TRUST ===== */
.trust-stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-stat-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px 36px;
  text-align: center;
  min-width: 150px;
  border: 1px solid rgba(39,167,207,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #27A7CF, #00B9E8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7,26,61,0.08), 0 0 30px rgba(39,167,207,0.04);
  border-color: rgba(39,167,207,0.18);
}

.trust-stat-item:hover::before {
  opacity: 1;
}

.trust-stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(39,167,207,0.1), rgba(0,185,232,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27A7CF;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}

.trust-stat-item:hover .trust-stat-icon {
  background: linear-gradient(135deg, #27A7CF, #00B9E8);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}

.trust-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #071A3D;
  margin-bottom: 4px;
  line-height: 1.2;
}

.trust-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.client-logo {
  height: 40px;
  opacity: 0.4;
  transition: var(--transition);
  filter: grayscale(1);
}

.client-logo:hover {
  opacity: 0.8;
  filter: grayscale(0);
}

.client-logo-placeholder {
  padding: 14px 32px;
  background: #fff;
  border-radius: 12px;
  font-weight: 700;
  color: #071A3D;
  font-size: 0.95rem;
  border: 1px solid rgba(39,167,207,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.client-logo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,167,207,0.03), rgba(0,185,232,0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-logo-placeholder:hover {
  border-color: rgba(39,167,207,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7,26,61,0.08), 0 0 30px rgba(39,167,207,0.04);
  color: #27A7CF;
}

.client-logo-placeholder:hover::before {
  opacity: 1;
}

.client-logo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #27A7CF, #00B9E8);
  transition: width 0.4s ease;
  border-radius: 1px;
}

.client-logo-placeholder:hover::after {
  width: 60%;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.testi-carousel-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 50px;
}

.testi-carousel {
  overflow: hidden;
  border-radius: 20px;
}

.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testi-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 4px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(39,167,207,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(7,26,61,0.04);
  height: 100%;
  box-sizing: border-box;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  color: rgba(39,167,207,0.06);
  line-height: 1;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #27A7CF, #00B9E8, #27A7CF);
  background-size: 200% 100%;
  animation: shimmerGradient 3s ease infinite;
}

@keyframes shimmerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 6px;
  filter: drop-shadow(0 0 6px rgba(255,184,0,0.2));
}

.testimonial-text {
  font-size: 1.05rem;
  color: #4A5568;
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(39,167,207,0.2);
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #071A3D;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Nav Buttons */
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(39,167,207,0.15);
  background: #fff;
  color: #27A7CF;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(7,26,61,0.06);
  z-index: 2;
}

.testi-nav:hover {
  background: linear-gradient(135deg, #27A7CF, #00B9E8);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(39,167,207,0.25);
  transform: translateY(-50%) scale(1.06);
}

.testi-nav:active {
  transform: translateY(-50%) scale(0.94);
}

.testi-prev { left: 0; }
.testi-next { right: 0; }

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D0D5DD;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.testi-dot:hover {
  background: #9CA3AF;
}

.testi-dot.active {
  width: 30px;
  border-radius: 5px;
  background: linear-gradient(90deg, #27A7CF, #00B9E8);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(39,167,207,0.1) 0%, transparent 50%);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
}

.newsletter-consent {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.newsletter-consent a {
  color: var(--primary-light);
  text-decoration: underline;
}

.newsletter-success {
  display: none;
  color: #4CAF50;
  font-weight: 600;
  margin-top: 16px;
}

.newsletter-success.show {
  display: block;
}

.newsletter-form.loading .btn {
  pointer-events: none;
  opacity: 0.7;
}

/* ===== Hover Lift (for trust badges) ===== */
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

/* === 1200px - Small Desktop / Tablet Landscape === */
@media (max-width: 1200px) {
  .hero-title { font-size: 3rem; }
  .hero-stat-number { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .digital-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: 2.2rem; }
  .grid-2 { gap: 40px; }
}

/* === 992px - Tablet Portrait === */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: var(--header-height) 0 60px;
  }
  .hero-title { font-size: 2.5rem; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { }

  .insights-intro { grid-template-columns: 1fr; gap: 30px; }
  .insights-intro > .reveal-left { text-align: center; }

  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .panels-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .targeting-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-body { grid-template-columns: 1fr; }
  .quality-timeline { flex-direction: column; gap: 20px; }
  .quality-timeline::before { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .global-map-container { min-height: 350px; }
  .map-svg { min-height: 350px; }
  .digital-dashboard { margin-top: 30px; }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
}

/* === 768px - Mobile Landscape / Small Tablet === */
@media (max-width: 768px) {
  .hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(7,26,61,0.95) 0%, rgba(7,26,61,0.85) 50%, rgba(7,26,61,0.7) 100%);
  }
  .hero-grid-overlay { opacity: 0.4; }
  .hero-map { opacity: 0.08; }
  .hero-grid {
    min-height: auto;
  }
  .hero-content {
    max-width: 100%;
    padding: 40px 16px 0;
  }
  .hero-dashboard {
    max-width: 320px;
    margin: 0 auto;
    gap: 14px;
  }
  .dash-card {
    padding: 16px 20px;
  }
  .dash-card-value {
    font-size: 1.3rem;
  }
  .hero-title { font-size: clamp(26px, 7.2vw, 38px); line-height: 1.1; }
  .hero-subtitle { font-size: clamp(13px, 3.7vw, 16px); line-height: 1.65; max-width: 100%; }
  .hero-badge { font-size: 11px; }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 22px;
  }
  .hero-stat { min-width: 0; padding: 12px 8px; }
  .hero-stat-number { font-size: 20px; }
  .hero-stat-label { font-size: 12px; line-height: 1.35; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }
  .hero-particle { display: none; }
  .hero-connection-lines { display: none; }
  .hero-map { opacity: 0.05; }
  .hero-banner-img {
    display: none;
  }
  .hero-banner-mobile {
    display: none;
  }
  .hero-desktop-banner {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    line-height: 0;
  }
  .hero-desktop-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .panels-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .digital-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .targeting-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 12px; }
  .stat-number { font-size: 1.8rem; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }

  .global-map-container { min-height: 280px; }
  .map-svg { min-height: 280px; }
  .map-pin-dot { width: 12px; height: 12px; border-width: 2px; }

  .section { padding: 60px 0; }
  .section-title { font-size: 1.75rem; margin-bottom: 12px; }
  .section-desc { font-size: 1rem; }
  .section-header { margin-bottom: 32px; }

  .panel-card-image { height: 160px; }
  .panel-card-body { padding: 20px 22px 24px; }
  .panel-card-img-icon { width: 40px; height: 40px; font-size: 1rem; }

  .wwd-process { padding: 32px 24px; }
  .wwd-industries { padding: 32px 24px; }
  .why-card { padding: 28px 24px; }
  .solution-card-body { padding: 20px; }
  .solution-card-image { height: 160px; }

  .service-card { padding: 20px 16px; }
  .service-card-icon { width: 40px; height: 40px; font-size: 1rem; }

  .case-card-image { height: 160px; }
  .case-card-body { padding: 18px; }

  .insight-category { padding: 18px; }
  .target-card { padding: 14px 18px; }

  .quality-card { padding: 22px; }

  .testimonial-card { padding: 24px; }
  .testimonial-text { font-size: 0.95rem; }
  .testi-carousel-wrapper { padding: 0 40px; }
  .testi-nav { width: 36px; height: 36px; font-size: 0.85rem; }

  .digital-item { padding: 16px 12px; }
  .digital-item-icon { width: 40px; height: 40px; font-size: 1rem; }

  .dash-body { padding: 16px; }
  .dash-data-card { padding: 12px; }

  .client-logos { gap: 20px; }
  .client-logo-placeholder { padding: 6px 16px; font-size: 0.8rem; }

  .insights-visual { min-height: 240px; }

  .what-we-do-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scroll-indicator { display: none; }
}

/* === 480px - Small Mobile Portrait === */
@media (max-width: 480px) {
  .hero {
    padding: var(--header-height) 14px 22px;
  }

  .hero-title { font-size: clamp(24px, 7vw, 34px); letter-spacing: -0.3px; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-badge { font-size: 0.7rem; padding: 4px 12px; }
  .hero-stat-number { font-size: 18px; }
  .hero-stat-label { font-size: 11px; }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
  }
  .hero-stat { text-align: left; }
  .hero-actions .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .digital-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .panel-card-image { height: 140px; }
  .panel-card-body { padding: 18px 18px 22px; }

  .section { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }
  .section-desc { font-size: 0.9rem; }
  .section-tag { font-size: 0.75rem; letter-spacing: 1.5px; }

  .case-card { flex: 0 0 240px; max-width: 240px; }
  .case-card-image { height: 130px; }

  .service-card p { font-size: 0.8rem; }
  .why-card p { font-size: 0.88rem; }
  .panel-card p { font-size: 0.88rem; }

  .global-map-container { min-height: 220px; }
  .map-svg { min-height: 220px; }

  .industry-tag { font-size: 0.7rem; padding: 4px 12px; }
  .insight-item { font-size: 0.72rem; }
  .wwd-check-item { font-size: 0.85rem; }

  .why-detail-tag { font-size: 0.72rem; }
  .timeline-step span { font-size: 0.72rem; }

  .target-card span { font-size: 0.85rem; }
  .target-card-icon { width: 40px; height: 40px; font-size: 1rem; }

  .quality-card p { font-size: 0.8rem; }
  .case-card-body p { font-size: 0.8rem; }
  .case-date { font-size: 0.72rem; }
  .case-category { font-size: 0.6rem; }

  .testimonial-text { font-size: 0.88rem; }
  .testimonial-info h5 { font-size: 0.85rem; }
  .testimonial-info span { font-size: 0.72rem; }
  .testimonial-avatar { width: 40px; height: 40px; font-size: 0.95rem; }
  .testi-carousel-wrapper { padding: 0 36px; }
  .testi-nav { width: 32px; height: 32px; font-size: 0.8rem; }
  .testimonial-card { padding: 28px 20px; }
  .testimonial-text { font-size: 0.85rem; line-height: 1.7; }
  .testi-dot { width: 8px; height: 8px; }
  .testi-dot.active { width: 24px; }

  .newsletter-inner h2 { font-size: 1.3rem; }
  .newsletter-inner p { font-size: 0.85rem; }
  .newsletter-form input {
    padding: 14px 16px;
    font-size: 0.85rem;
    min-height: 44px;
  }
  .newsletter-form .btn { min-height: 44px; }
  .newsletter-consent { font-size: 0.7rem; }

  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.72rem; }
}

/* === 375px - Small Device === */
@media (max-width: 375px) {
  .hero-title { font-size: clamp(22px, 7vw, 30px); }
  .hero-subtitle { font-size: 0.85rem; }
  .hero-stat-number { font-size: 17px; }
  .hero-stats { gap: 8px; }

  .services-grid { grid-template-columns: 1fr; }
  .digital-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { gap: 8px; }

  .section { padding: 32px 0; }
  .section-title { font-size: 1.35rem; }
  .section-desc { font-size: 0.85rem; }

  .container { padding: 0 12px; }
}

/* === 320px - Very Small Device === */
@media (max-width: 320px) {
  .hero-title { font-size: clamp(20px, 6.5vw, 26px); }
  .hero-subtitle { font-size: 0.8rem; }
  .hero-badge { font-size: 0.65rem; }
  .hero-actions .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .digital-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 6px; }

  .section { padding: 28px 0; }
  .section-title { font-size: 1.2rem; }

  .container { padding: 0 10px; }
}

/* === 767px - Mobile Hero Fix (banner above text, normal flow) === */
@media (max-width: 767px) {

  /* ── Hide desktop visual effects on mobile ── */
  .hero-bg {
    display: none !important;
  }

  .scroll-indicator {
    display: none !important;
  }

  /* ── Mobile banner INLINE (img tag, normal flow) ── */
  .hero-desktop-banner {
    display: none !important;
  }

  .hero-mobile-banner {
    display: block !important;
    width: 100%;
    line-height: 0;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-mobile-banner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
  }

  /* ── Body offset for fixed header ── */
  body {
    padding-top: var(--header-height);
  }

  #main-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* ── Hero section: normal height, no fixed min-height ── */
  .hero {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    background: #071A3D;
    margin-top: 0 !important;
  }

  /* ── Hero grid: single column, normal flow ── */
  .hero-grid {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* ── Hero content: below banner, normal flow ── */
  .hero-content {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 26px 20px 32px !important;
    background: #071A3D;
    z-index: 2;
  }

  /* ── Remove background image from hero on mobile ── */
  .hero,
  .hero-content,
  .hero-bg {
    background-image: none !important;
  }

  /* ── All text elements: visible, normal flow ── */
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-stats,
  .hero-stat,
  .hero-badge {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(26px, 7.2vw, 38px);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .title-word {
    opacity: 1 !important;
    transform: none !important;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.65;
    margin-bottom: 20px;
  }

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

  .hero-stat {
    padding: 12px 8px;
    text-align: center;
  }

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

  .hero-stat-label {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  /* ── Ensure inner page banners still work ── */
  .hero-banner {
    display: block !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 0 !important;
  }
  .hero-banner__desktop {
    display: none !important;
  }
  .hero-banner__mobile {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  .hero-banner__mobile img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-banner picture,
  .hero-banner div,
  .hero-banner img {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  /* ── Remove extra decoration ── */
  .hero-map,
  .hero-glow,
  .hero-connection-lines,
  .hero-particles,
  .hero-grid-overlay,
  .hero-gradient-overlay {
    display: none !important;
  }
}

/* ===== B2B OVERVIEW (Advanced) ===== */
.b2b-overview {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.b2b-overview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.15), transparent);
}

.b2b-overview .bo-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.b2b-overview .bo-glow {
  position: absolute;
  border-radius: 50%;
}

.b2b-overview .bo-glow-1 {
  width: 550px; height: 550px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  animation: boGlow 8s ease-in-out infinite;
}

.b2b-overview .bo-glow-2 {
  width: 350px; height: 350px;
  bottom: -12%; left: 30%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: boGlow 10s ease-in-out infinite 1.5s;
}

@keyframes boGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.b2b-overview .bo-grid-decor {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39,167,207,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,167,207,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.b2b-overview .container {
  position: relative;
  z-index: 1;
}

/* Left content area */
.b2b-overview .bo-content {
  position: relative;
  padding: 12px 0;
}

.b2b-overview .bo-content .section-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.b2b-overview .bo-content .section-tag::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.b2b-overview .bo-content p {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(39,167,207,0.12);
  transition: border-color 0.3s ease;
}

.b2b-overview .bo-content p:first-of-type {
  border-left-color: rgba(39,167,207,0.25);
}

.b2b-overview .bo-content p strong {
  color: var(--navy);
  font-weight: 700;
}

.b2b-overview .bo-points-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(39,167,207,0.04), rgba(0,185,232,0.02));
  border: 1px solid rgba(39,167,207,0.08);
  border-radius: var(--radius-lg);
}

.b2b-overview .bo-points-highlight .wwd-point {
  font-size: 0.88rem;
  padding: 8px 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-soft);
  transition: all 0.3s ease;
}

.b2b-overview .bo-points-highlight .wwd-point:hover {
  transform: translateX(4px);
  border-color: rgba(39,167,207,0.2);
  box-shadow: 0 4px 12px rgba(7,26,61,0.06);
}

/* Right side — stat cards */
.b2b-overview .about-hero-visual {
  position: relative;
  min-height: 320px;
}

.b2b-overview .about-hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: boVisGlow 6s ease-in-out infinite;
}

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

.b2b-overview .about-hero-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(39,167,207,0.12);
  box-shadow: 0 8px 32px rgba(7,26,61,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.b2b-overview .about-hero-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(7,26,61,0.12);
  border-color: rgba(39,167,207,0.25);
}

.b2b-overview .about-hero-card-1 {
  top: 5%;
  right: 5%;
}

.b2b-overview .about-hero-card-2 {
  top: 40%;
  left: 5%;
}

.b2b-overview .about-hero-card-3 {
  bottom: 5%;
  right: 15%;
}

@media (max-width: 992px) {
  .b2b-overview .grid-2 { gap: 32px; }
  .b2b-overview .about-hero-visual { min-height: 260px; }
  .b2b-overview .about-hero-card-1 { top: 2%; right: 2%; }
  .b2b-overview .about-hero-card-2 { top: 40%; left: 2%; }
  .b2b-overview .about-hero-card-3 { bottom: 2%; right: 10%; }
}

@media (max-width: 768px) {
  .b2b-overview .about-hero-visual { display: block; }
}

@media (max-width: 640px) {
  .b2b-overview .about-hero-visual { min-height: 220px; }
  .b2b-overview .bo-points-highlight { grid-template-columns: 1fr; padding: 14px; }
  .b2b-overview .bo-content p { padding-left: 12px; }
}

/* ===== B2B PROFILING (Advanced) ===== */
.b2b-profiling {
  position: relative;
  overflow: hidden;
}

.b2b-profiling::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.15), transparent);
}

.b2b-profiling .bp-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.b2b-profiling .bp-glow {
  position: absolute;
  border-radius: 50%;
}

.b2b-profiling .bp-glow-1 {
  width: 520px; height: 520px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  animation: bpGlow 8s ease-in-out infinite;
}

.b2b-profiling .bp-glow-2 {
  width: 380px; height: 380px;
  bottom: -10%; left: -8%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: bpGlow 10s ease-in-out infinite 1.5s;
}

.b2b-profiling .bp-glow-3 {
  width: 280px; height: 280px;
  top: 45%; left: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.03) 0%, transparent 70%);
  animation: bpGlow 12s ease-in-out infinite 3s;
}

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

.b2b-profiling .bp-grid-decor {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39,167,207,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,167,207,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.b2b-profiling .container {
  position: relative;
  z-index: 1;
}

/* B2B Profiling — cap-card overrides inside this section */
.b2b-profiling .cap-card {
  position: relative;
  overflow: hidden;
}

.b2b-profiling .cap-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.b2b-profiling .cap-card:hover::after {
  opacity: 1;
}

.b2b-profiling .cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(7,26,61,0.1);
  border-color: rgba(39,167,207,0.2);
}

.b2b-profiling .cap-card:hover .cap-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 6px 20px rgba(39,167,207,0.25);
}

.b2b-profiling .cap-card:hover h4 {
  color: var(--primary);
}

/* Depth of B2B Profiling — value-card refinements */
.b2b-profiling .value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-profiling .value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.b2b-profiling .value-card:hover::after {
  opacity: 1;
}

.b2b-profiling .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7,26,61,0.1);
  border-color: rgba(39,167,207,0.15);
}

.b2b-profiling .value-card h4 {
  transition: color 0.3s ease;
}

.b2b-profiling .value-card:hover h4 {
  color: var(--primary);
}

.b2b-profiling .value-card ul li {
  transition: all 0.25s ease;
}

.b2b-profiling .value-card ul li:hover {
  color: var(--navy) !important;
  padding-left: 4px;
}

.b2b-profiling .value-card ul li:hover svg circle {
  opacity: 1 !important;
}

/* SVG icon container in value-card */
.b2b-profiling .value-card > div:first-child {
  transition: all 0.4s ease;
}

.b2b-profiling .value-card:hover > div:first-child {
  transform: scale(1.08) rotate(-3deg);
}

/* ===== B2B INDUSTRIES (Advanced) ===== */
.b2b-industries {
  position: relative;
  overflow: hidden;
}

.b2b-industries::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.b2b-industries .bi-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.b2b-industries .bi-glow {
  position: absolute;
  border-radius: 50%;
}

.b2b-industries .bi-glow-1 {
  width: 450px; height: 450px;
  top: -25%; left: -8%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: biGlow 7s ease-in-out infinite;
}

.b2b-industries .bi-glow-2 {
  width: 350px; height: 350px;
  bottom: -15%; right: -5%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: biGlow 9s ease-in-out infinite 2s;
}

@keyframes biGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.b2b-industries .container {
  position: relative;
  z-index: 1;
}

/* Industry grid — 4 cols on desktop for wider cards */
.b2b-industries .industry-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Enhanced ind-card */
.b2b-industries .ind-card {
  position: relative;
  overflow: hidden;
  padding: 28px 20px;
}

.b2b-industries .ind-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.b2b-industries .ind-card:hover::after {
  opacity: 1;
}

.b2b-industries .ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(7,26,61,0.1);
  border-color: rgba(39,167,207,0.2);
}

.b2b-industries .ind-card .ind-icon {
  transition: all 0.4s ease;
}

.b2b-industries .ind-card:hover .ind-icon {
  transform: scale(1.12) rotateY(180deg);
  box-shadow: 0 6px 18px rgba(39,167,207,0.2);
}

.b2b-industries .ind-card span {
  transition: color 0.3s ease;
}

.b2b-industries .ind-card:hover span {
  color: var(--primary);
}

@media (max-width: 992px) {
  .b2b-industries .industry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .b2b-industries .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ===== B2B GLOBAL NETWORK (Advanced) ===== */
.b2b-global {
  position: relative;
  overflow: hidden;
}

.b2b-global::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.15), transparent);
}

.b2b-global .bg-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.b2b-global .bg-glow {
  position: absolute;
  border-radius: 50%;
}

.b2b-global .bg-glow-1 {
  width: 500px; height: 500px;
  top: -20%; left: 10%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  animation: bgGlow 8s ease-in-out infinite;
}

.b2b-global .bg-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; right: 20%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: bgGlow 10s ease-in-out infinite 2s;
}

@keyframes bgGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.b2b-global .container {
  position: relative;
  z-index: 1;
}

/* Enhanced globe visual */
.b2b-global .about-globe-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1a3a 100%);
  min-height: 320px;
  padding: 50px 40px;
}

.b2b-global .about-globe-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 60%, rgba(39,167,207,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0,185,232,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.b2b-global .about-globe-icon {
  font-size: 7rem;
  opacity: 0.2;
  position: relative;
  z-index: 1;
}

.b2b-global .about-globe-lines span {
  background: rgba(39,167,207,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(39,167,207,0.2);
  font-size: 0.8rem;
  padding: 5px 14px;
  transition: all 0.3s ease;
}

.b2b-global .about-globe-lines span:hover {
  background: rgba(39,167,207,0.35);
  transform: scale(1.08);
  border-color: rgba(39,167,207,0.5);
}

/* Connection lines between globe label points */
.b2b-global .globe-connections {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.b2b-global .globe-connections .conn-line {
  position: absolute;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(39,167,207,0.3), transparent);
  transform-origin: top center;
  animation: connPulse 3s ease-in-out infinite;
}

.b2b-global .globe-connections .conn-line:nth-child(1) { left: 22%; top: 18%; height: 50px; animation-delay: 0s; }
.b2b-global .globe-connections .conn-line:nth-child(2) { left: 42%; top: 38%; height: 35px; animation-delay: 0.5s; }
.b2b-global .globe-connections .conn-line:nth-child(3) { left: 62%; top: 28%; height: 45px; animation-delay: 1s; }
.b2b-global .globe-connections .conn-line:nth-child(4) { left: 32%; top: 58%; height: 30px; animation-delay: 1.5s; }
.b2b-global .globe-connections .conn-line:nth-child(5) { left: 72%; top: 68%; height: 35px; animation-delay: 2s; }
.b2b-global .globe-connections .conn-line:nth-child(6) { left: 52%; top: 78%; height: 40px; animation-delay: 2.5s; }

@keyframes connPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

/* Floating stat cards inside globe */
.b2b-global .globe-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: globeStatFloat 5s ease-in-out infinite;
}

.b2b-global .globe-stat-card .gsc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(39,167,207,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.85rem;
}

.b2b-global .globe-stat-card .gsc-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.b2b-global .globe-stat-card .gsc-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.b2b-global .globe-stat-card-1 { top: 8%; left: 5%; animation-delay: 0s; }
.b2b-global .globe-stat-card-2 { bottom: 12%; right: 5%; animation-delay: 2.5s; }
.b2b-global .globe-stat-card-3 { top: 45%; right: -3%; animation-delay: 1.2s; }

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

/* Right column enhancements */
.b2b-global .network-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.b2b-global .network-section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--primary);
}

.b2b-global .network-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 20px;
}

.b2b-global .network-metric {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.b2b-global .network-metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(7,26,61,0.08);
  border-color: rgba(39,167,207,0.15);
}

.b2b-global .network-metric .nm-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.b2b-global .network-metric .nm-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 2px;
}

.b2b-global .wwd-points {
  margin-top: 8px;
}

@media (max-width: 992px) {
  .b2b-global .grid-2 { gap: 32px; }
  .b2b-global .about-globe-visual { min-height: 260px; }
  .b2b-global .globe-stat-card-3 { right: 5%; }
  .b2b-global .network-metrics { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .b2b-global .about-globe-visual { min-height: 220px; padding: 40px 24px; }
  .b2b-global .about-globe-icon { font-size: 5rem; }
  .b2b-global .globe-stat-card { padding: 8px 12px; }
  .b2b-global .globe-stat-card .gsc-value { font-size: 0.85rem; }
  .b2b-global .globe-stat-card .gsc-label { font-size: 0.5rem; }
  .b2b-global .network-metrics { gap: 8px; }
  .b2b-global .network-metric { padding: 12px 8px; }
  .b2b-global .network-metric .nm-value { font-size: 1.1rem; }
}


/* ===== HEALTHCARE PANEL (Advanced) ===== */

/* --- Overview --- */
.hc-overview {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hc-overview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.15), transparent);
}

.hc-overview .hc-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-overview .hc-glow {
  position: absolute;
  border-radius: 50%;
}

.hc-overview .hc-glow-1 {
  width: 500px; height: 500px;
  top: -15%; right: -8%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  animation: hcGlow 8s ease-in-out infinite;
}

.hc-overview .hc-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; left: 20%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: hcGlow 10s ease-in-out infinite 1.5s;
}

@keyframes hcGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.hc-overview .hc-grid-decor {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39,167,207,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,167,207,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.hc-overview .container {
  position: relative;
  z-index: 1;
}

.hc-overview .hc-content .section-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hc-overview .hc-content .section-tag::after {
  content: '';
  width: 40px; height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.hc-overview .hc-content p {
  padding-left: 20px;
  border-left: 2px solid rgba(39,167,207,0.12);
}

.hc-overview .hc-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(39,167,207,0.04), rgba(0,185,232,0.02));
  border: 1px solid rgba(39,167,207,0.08);
  border-radius: var(--radius-lg);
}

.hc-overview .hc-points-grid .wwd-point {
  padding: 8px 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-soft);
  transition: all 0.3s ease;
}

.hc-overview .hc-points-grid .wwd-point:hover {
  transform: translateX(4px);
  border-color: rgba(39,167,207,0.2);
  box-shadow: 0 4px 12px rgba(7,26,61,0.06);
}

.hc-overview .about-hero-visual {
  position: relative;
  min-height: 300px;
}

.hc-overview .about-hero-visual::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  top: 15%; left: 15%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: hcVisGlow 6s ease-in-out infinite;
}

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

.hc-overview .about-hero-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(39,167,207,0.12);
  box-shadow: 0 8px 32px rgba(7,26,61,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-overview .about-hero-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(7,26,61,0.12);
  border-color: rgba(39,167,207,0.25);
}

@media (max-width: 768px) {
  .hc-overview .about-hero-visual { display: block; }
}

@media (max-width: 640px) {
  .hc-overview .about-hero-visual { min-height: 220px; }
  .hc-overview .hc-points-grid { grid-template-columns: 1fr; padding: 14px; }
  .hc-overview .hc-content p { padding-left: 12px; }
}

/* --- Targeting Groups --- */
.hc-targeting {
  position: relative;
  overflow: hidden;
}

.hc-targeting::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.hc-targeting .ht-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-targeting .ht-glow {
  position: absolute;
  border-radius: 50%;
}

.hc-targeting .ht-glow-1 {
  width: 450px; height: 450px;
  top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: htGlow 8s ease-in-out infinite;
}

.hc-targeting .ht-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; left: 10%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: htGlow 10s ease-in-out infinite 2s;
}

@keyframes htGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.hc-targeting .container { position: relative; z-index: 1; }

.hc-targeting .value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hc-targeting .value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hc-targeting .value-card:hover::after { opacity: 1; }
.hc-targeting .value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(7,26,61,0.1); border-color: rgba(39,167,207,0.15); }
.hc-targeting .value-card:hover h4 { color: var(--primary); }
.hc-targeting .value-card ul li { transition: all 0.25s ease; }
.hc-targeting .value-card ul li:hover { color: var(--navy) !important; padding-left: 4px; }
.hc-targeting .value-card ul li:hover svg circle { opacity: 1 !important; }

/* --- Specialists Section --- */
.hc-specialists {
  position: relative;
  overflow: hidden;
}

.hc-specialists::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.hc-specialists .hs-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-specialists .hs-glow {
  position: absolute;
  border-radius: 50%;
}

.hc-specialists .hs-glow-1 {
  width: 400px; height: 400px;
  top: -20%; left: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: hsGlow 7s ease-in-out infinite;
}

.hc-specialists .hs-glow-2 {
  width: 300px; height: 300px;
  bottom: -15%; right: 30%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: hsGlow 9s ease-in-out infinite 2s;
}

@keyframes hsGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.hc-specialists .container {
  position: relative;
  z-index: 1;
}

.hc-specialists .hs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.hc-specialists .hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 24px;
  color: var(--text-dark);
  font-weight: 500;
  border: 1px solid var(--gray-soft);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  box-shadow: 0 2px 8px rgba(7,26,61,0.04);
}

.hc-specialists .hs-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.hc-specialists .hs-badge:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(39,167,207,0.15);
}

.hc-specialists .hs-badge:hover::before {
  opacity: 1;
}

/* --- Institutions Section --- */
.hc-institutions {
  position: relative;
  overflow: hidden;
}

.hc-institutions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.hc-institutions .hi-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-institutions .hi-glow {
  position: absolute;
  border-radius: 50%;
}

.hc-institutions .hi-glow-1 {
  width: 450px; height: 450px;
  top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: hiGlow 8s ease-in-out infinite;
}

@keyframes hiGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.hc-institutions .container {
  position: relative;
  z-index: 1;
}

.hc-institutions .value-card {
  position: relative;
  overflow: hidden;
}

.hc-institutions .value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hc-institutions .value-card:hover::after { opacity: 1; }
.hc-institutions .value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(7,26,61,0.1); }
.hc-institutions .value-card:hover .value-card-icon { transform: scale(1.1) rotateY(180deg); box-shadow: 0 6px 20px rgba(39,167,207,0.25); }

/* --- Segmentation Section --- */
.hc-segments {
  position: relative;
  overflow: hidden;
}

.hc-segments::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.hc-segments .hs-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-segments .hs-glow {
  position: absolute;
  border-radius: 50%;
}

.hc-segments .hs-glow-1 {
  width: 400px; height: 400px;
  bottom: -10%; left: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: hsegGlow 7s ease-in-out infinite;
}

@keyframes hsegGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.hc-segments .container { position: relative; z-index: 1; }

.hc-segments .cap-card {
  position: relative;
  overflow: hidden;
}

.hc-segments .cap-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hc-segments .cap-card:hover::after { opacity: 1; }
.hc-segments .cap-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(7,26,61,0.1); }
.hc-segments .cap-card:hover .cap-icon { transform: scale(1.1) rotateY(180deg); box-shadow: 0 6px 20px rgba(39,167,207,0.25); }
.hc-segments .cap-card:hover h4 { color: var(--primary); }

/* --- Pharma Section --- */
.hc-pharma {
  position: relative;
  overflow: hidden;
}

.hc-pharma::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.hc-pharma .hp-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-pharma .hp-glow {
  position: absolute;
  border-radius: 50%;
}

.hc-pharma .hp-glow-1 {
  width: 500px; height: 500px;
  top: -20%; right: -8%;
  background: radial-gradient(circle, rgba(39,167,207,0.06) 0%, transparent 70%);
  animation: hpGlow 8s ease-in-out infinite;
}

.hc-pharma .hp-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; left: 20%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: hpGlow 10s ease-in-out infinite 1.5s;
}

@keyframes hpGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.hc-pharma .container { position: relative; z-index: 1; }

.hc-pharma .cap-card {
  position: relative;
  overflow: hidden;
}

.hc-pharma .cap-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hc-pharma .cap-card:hover::after { opacity: 1; }
.hc-pharma .cap-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(7,26,61,0.1); }
.hc-pharma .cap-card:hover .cap-icon { transform: scale(1.1) rotateY(180deg); box-shadow: 0 6px 20px rgba(39,167,207,0.25); }
.hc-pharma .cap-card:hover h4 { color: var(--primary); }

/* --- Compliance Section --- */
.hc-compliance {
  position: relative;
  overflow: hidden;
}

.hc-compliance::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.hc-compliance .hc-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hc-compliance .hc-glow {
  position: absolute;
  border-radius: 50%;
}

.hc-compliance .hc-glow-1 {
  width: 400px; height: 400px;
  top: -15%; left: -5%;
  background: radial-gradient(circle, rgba(108,92,231,0.05) 0%, transparent 70%);
  animation: hcCompGlow 7s ease-in-out infinite;
}

.hc-compliance .hc-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; right: 10%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: hcCompGlow 9s ease-in-out infinite 2s;
}

@keyframes hcCompGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.hc-compliance .container { position: relative; z-index: 1; }

.hc-compliance .value-card {
  position: relative;
  overflow: hidden;
}

.hc-compliance .value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hc-compliance .value-card:hover::after { opacity: 1; }
.hc-compliance .value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(7,26,61,0.1); }
.hc-compliance .value-card:hover .value-card-icon { transform: scale(1.1) rotateY(180deg); box-shadow: 0 6px 20px rgba(39,167,207,0.25); }
.hc-compliance .value-card:hover h4 { color: var(--primary); }


/* ===== RESEARCH SERVICES HERO BANNER ===== */
.rs-hero-banner {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
  min-height: 320px;
  display: flex;
  align-items: center;
}

.rs-hero-banner .rs-hero-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  line-height: 0;
}

.rs-hero-banner .rs-hero-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.rs-hero-banner .container {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.rs-hero-banner .rs-hero-content {
  max-width: 700px;
}

.rs-hero-banner .rs-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.rs-hero-banner .rs-hero-content .breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rs-hero-banner .rs-hero-content .breadcrumb a:hover { color: var(--primary-light); }

.rs-hero-banner .rs-hero-content .breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.rs-hero-banner .rs-hero-content h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.rs-hero-banner .rs-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .rs-hero-banner { min-height: 240px; }
  .rs-hero-banner .rs-hero-content h1 { font-size: 1.8rem; }
  .rs-hero-banner .rs-hero-content p { font-size: 0.9rem; }
  .rs-hero-banner .container { padding: 50px 0; }
}

@media (max-width: 480px) {
  .rs-hero-banner { min-height: 200px; }
  .rs-hero-banner .rs-hero-content h1 { font-size: 1.5rem; }
  .rs-hero-banner .container { padding: 40px 0; }
}

/* ===== RESEARCH SERVICES (Advanced) ===== */

/* --- Stats Section --- */
.rs-stats {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.rs-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.15), transparent);
}

.rs-stats .rs-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rs-stats .rs-glow {
  position: absolute;
  border-radius: 50%;
}

.rs-stats .rs-glow-1 {
  width: 400px; height: 400px;
  top: -15%; left: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: rsGlow 7s ease-in-out infinite;
}

.rs-stats .rs-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; right: 10%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: rsGlow 9s ease-in-out infinite 2s;
}

@keyframes rsGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.rs-stats .container { position: relative; z-index: 1; }

/* --- Services Overview --- */
.rs-overview {
  position: relative;
  overflow: hidden;
}

.rs-overview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.rs-overview .rs-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rs-overview .rs-glow {
  position: absolute;
  border-radius: 50%;
}

.rs-overview .rs-glow-1 {
  width: 500px; height: 500px;
  top: -15%; right: -8%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: rsOGlow 8s ease-in-out infinite;
}

.rs-overview .rs-glow-2 {
  width: 350px; height: 350px;
  bottom: -10%; left: 20%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: rsOGlow 10s ease-in-out infinite 1.5s;
}

@keyframes rsOGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.rs-overview .container { position: relative; z-index: 1; }



/* --- Service Detail Sections --- */
.rs-detail {
  position: relative;
  overflow: hidden;
}

.rs-detail::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.1), transparent);
}

.rs-detail .rd-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rs-detail .rd-glow {
  position: absolute;
  border-radius: 50%;
}

.rs-detail .rd-glow-1 {
  width: 400px; height: 400px;
  top: -15%; left: 10%;
  background: radial-gradient(circle, rgba(39,167,207,0.04) 0%, transparent 70%);
  animation: rdGlow 7s ease-in-out infinite;
}

.rs-detail .rd-glow-2 {
  width: 280px; height: 280px;
  bottom: -10%; right: 15%;
  background: radial-gradient(circle, rgba(0,185,232,0.03) 0%, transparent 70%);
  animation: rdGlow 9s ease-in-out infinite 2s;
}

@keyframes rdGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.rs-detail .container { position: relative; z-index: 1; }

.rs-detail .rs-feat-card {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.rs-detail .rs-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(39,167,207,0.2);
}

.rs-detail .rs-feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.rs-detail .rs-feat-card:hover .rs-feat-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 4px 14px rgba(39,167,207,0.2);
}

.rs-detail .rs-feat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* --- Process Section --- */
.rs-process {
  position: relative;
  overflow: hidden;
}

.rs-process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.rs-process .rp-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rs-process .rp-glow {
  position: absolute;
  border-radius: 50%;
}

.rs-process .rp-glow-1 {
  width: 450px; height: 450px;
  top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: rpGlow2 8s ease-in-out infinite;
}

.rs-process .rp-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; left: 10%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: rpGlow2 10s ease-in-out infinite 2s;
}

@keyframes rpGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.rs-process .container { position: relative; z-index: 1; }

/* --- Industries Section --- */
.rs-industries {
  position: relative;
  overflow: hidden;
}

.rs-industries::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.rs-industries .ri-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rs-industries .ri-glow {
  position: absolute;
  border-radius: 50%;
}

.rs-industries .ri-glow-1 {
  width: 400px; height: 400px;
  top: -15%; left: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: riGlow 7s ease-in-out infinite;
}

@keyframes riGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.rs-industries .container { position: relative; z-index: 1; }

.rs-industries .industry-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

.rs-industries .ind-card {
  position: relative;
  overflow: hidden;
  padding: 28px 20px;
}

.rs-industries .ind-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rs-industries .ind-card:hover::after { opacity: 1; }
.rs-industries .ind-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(7,26,61,0.1); border-color: rgba(39,167,207,0.2); }
.rs-industries .ind-card:hover .ind-icon { transform: scale(1.12) rotateY(180deg); box-shadow: 0 6px 18px rgba(39,167,207,0.2); }
.rs-industries .ind-card:hover span { color: var(--primary); }

@media (max-width: 992px) {
  .rs-industries .industry-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  .rs-industries .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* --- Why Choose Us --- */
.rs-why {
  position: relative;
  overflow: hidden;
}

.rs-why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.rs-why .rw-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rs-why .rw-glow {
  position: absolute;
  border-radius: 50%;
}

.rs-why .rw-glow-1 {
  width: 450px; height: 450px;
  top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%);
  animation: rwGlow 7s ease-in-out infinite;
}

.rs-why .rw-glow-2 {
  width: 300px; height: 300px;
  bottom: -10%; left: 20%;
  background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%);
  animation: rwGlow 9s ease-in-out infinite 2s;
}

@keyframes rwGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.rs-why .container { position: relative; z-index: 1; }

.rs-faq {
  position: relative;
  overflow: hidden;
}

.rs-faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}

.rs-faq .rq-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rs-faq .rq-glow {
  position: absolute;
  border-radius: 50%;
}

.rs-faq .rq-glow-1 {
  width: 400px; height: 400px;
  top: -10%; left: 30%;
  background: radial-gradient(circle, rgba(39,167,207,0.04) 0%, transparent 70%);
  animation: rqGlow 8s ease-in-out infinite;
}

@keyframes rqGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.9; }
}

.rs-faq .container { position: relative; z-index: 1; }

.rs-faq .faq-card {
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.rs-faq .faq-card:hover { border-color: rgba(39,167,207,0.2); }

.rs-faq .faq-card.active { border-color: rgba(39,167,207,0.3); }

.rs-faq .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.rs-faq .faq-header:hover { background: rgba(39,167,207,0.02); }

.rs-faq .faq-header h4 {
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.rs-faq .faq-card.active .faq-header h4 { color: var(--primary); }

.rs-faq .faq-arrow {
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.rs-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.rs-faq .faq-answer p { padding-bottom: 20px; }


/* ===== CASE STUDIES (Advanced) ===== */
.cs-hero-banner {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
  min-height: 320px;
  display: flex;
  align-items: center;
}
.cs-hero-banner .cs-hero-svg { position: absolute; inset: 0; z-index: 0; line-height: 0; }
.cs-hero-banner .cs-hero-svg svg { display: block; width: 100%; height: 100%; }
.cs-hero-banner .container { position: relative; z-index: 1; padding: 60px 0; }
.cs-hero-banner .cs-hero-content { max-width: 700px; }
.cs-hero-banner .cs-hero-content .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.cs-hero-banner .cs-hero-content .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s ease; }
.cs-hero-banner .cs-hero-content .breadcrumb a:hover { color: var(--primary-light); }
.cs-hero-banner .cs-hero-content h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 16px; }
.cs-hero-banner .cs-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.8; }

@media (max-width: 768px) {
  .cs-hero-banner { min-height: 240px; }
  .cs-hero-banner .cs-hero-content h1 { font-size: 1.8rem; }
  .cs-hero-banner .cs-hero-content p { font-size: 0.9rem; }
  .cs-hero-banner .container { padding: 50px 0; }
}
@media (max-width: 480px) {
  .cs-hero-banner { min-height: 200px; }
  .cs-hero-banner .cs-hero-content h1 { font-size: 1.5rem; }
  .cs-hero-banner .container { padding: 40px 0; }
}

.cs-section {
  position: relative;
  overflow: hidden;
}
.cs-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}
.cs-section .cs-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cs-section .cs-glow { position: absolute; border-radius: 50%; }
.cs-section .cs-glow-1 { width: 450px; height: 450px; top: -15%; right: -5%; background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%); animation: csGlow 7s ease-in-out infinite; }
.cs-section .cs-glow-2 { width: 300px; height: 300px; bottom: -10%; left: 10%; background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%); animation: csGlow 9s ease-in-out infinite 2s; }
@keyframes csGlow { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.3); opacity: 0.9; } }
.cs-section .container { position: relative; z-index: 1; }

.cs-section .case-card { flex: none; width: 100%; max-width: 100%; }
.cs-section .case-card:hover .case-placeholder i { transform: scale(1.15); }

/* ===== DATA QUALITY (Advanced) ===== */
.dq-hero-banner {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
  min-height: 320px;
  display: flex;
  align-items: center;
}
.dq-hero-banner .dq-hero-svg { position: absolute; inset: 0; z-index: 0; line-height: 0; }
.dq-hero-banner .dq-hero-svg svg { display: block; width: 100%; height: 100%; }
.dq-hero-banner .container { position: relative; z-index: 1; padding: 60px 0; }
.dq-hero-banner .dq-hero-content { max-width: 700px; }
.dq-hero-banner .dq-hero-content .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.dq-hero-banner .dq-hero-content .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s ease; }
.dq-hero-banner .dq-hero-content .breadcrumb a:hover { color: var(--primary-light); }
.dq-hero-banner .dq-hero-content h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 16px; }
.dq-hero-banner .dq-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.8; }

@media (max-width: 768px) {
  .dq-hero-banner { min-height: 240px; }
  .dq-hero-banner .dq-hero-content h1 { font-size: 1.8rem; }
  .dq-hero-banner .dq-hero-content p { font-size: 0.9rem; }
  .dq-hero-banner .container { padding: 50px 0; }
}
@media (max-width: 480px) {
  .dq-hero-banner { min-height: 200px; }
  .dq-hero-banner .dq-hero-content h1 { font-size: 1.5rem; }
  .dq-hero-banner .container { padding: 40px 0; }
}

.dq-section {
  position: relative;
  overflow: hidden;
}
.dq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}
.dq-section .dq-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dq-section .dq-glow { position: absolute; border-radius: 50%; }
.dq-section .dq-glow-1 { width: 500px; height: 500px; top: -20%; right: -8%; background: radial-gradient(circle, rgba(39,167,207,0.05) 0%, transparent 70%); animation: dqGlow 8s ease-in-out infinite; }
.dq-section .dq-glow-2 { width: 350px; height: 350px; bottom: -12%; left: 20%; background: radial-gradient(circle, rgba(0,185,232,0.04) 0%, transparent 70%); animation: dqGlow 10s ease-in-out infinite 1.5s; }
@keyframes dqGlow { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.25); opacity: 0.9; } }
.dq-section .container { position: relative; z-index: 1; }

/* Quality grid — 3 cols desktop */
.dq-section .quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dq-section .quality-card {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dq-section .quality-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dq-section .quality-card:hover::after { opacity: 1; }
.dq-section .quality-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(7,26,61,0.1); border-color: rgba(39,167,207,0.15); }

.dq-section .quality-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
  font-size: 1.3rem;
  transition: all 0.4s ease;
}

.dq-section .quality-card:hover .quality-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 6px 20px rgba(39,167,207,0.25);
}

.dq-section .quality-card h4 { font-size: 1.05rem; margin-bottom: 10px; transition: color 0.3s ease; }
.dq-section .quality-card:hover h4 { color: var(--primary); }
.dq-section .quality-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 992px) {
  .dq-section .quality-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  .dq-section .quality-grid { grid-template-columns: 1fr; gap: 14px; }
  .dq-section .quality-card { padding: 24px 18px; }
}

/* Privacy/Compliance section */
.dq-privacy {
  position: relative;
  overflow: hidden;
}
.dq-privacy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,167,207,0.12), transparent);
}
.dq-privacy .dp-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dq-privacy .dp-glow { position: absolute; border-radius: 50%; }
.dq-privacy .dp-glow-1 { width: 400px; height: 400px; top: -15%; left: -5%; background: radial-gradient(circle, rgba(39,167,207,0.04) 0%, transparent 70%); animation: dpGlow 7s ease-in-out infinite; }
@keyframes dpGlow { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.3); opacity: 0.9; } }
.dq-privacy .container { position: relative; z-index: 1; }

.dq-privacy .service-card { position: relative; overflow: hidden; }
.dq-privacy .service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); opacity: 0; transition: opacity 0.4s ease; }
.dq-privacy .service-card:hover::after { opacity: 1; }

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }
  .map-pin-dot { animation: none; }
  .scroll-mouse::before { display: none; }
}
