/**
 * Home Page Hero Slider Stylesheet - Web Techiq Official v1.4.0
 * Developed by MH Badhon Ahmed (Web Techiq)
 *
 * PREMIUM UPGRADE — Web Development Agency Edition
 *  - Advanced floating glassmorphism cards with glow animation
 *  - Particle/orb background decorations
 *  - Gradient shimmer on headline highlight
 *  - Animated stat counter reveal
 *  - Premium image box with depth shadow & tilt glow ring
 *  - Mobile: 2 CTA buttons always inline (compact pill style)
 */

/* ==========================================================================
   1. Main Hero Slider Section Container
   ========================================================================== */
.web-techiq-hero-slider-section {
  position: relative;
  width: 100%;
  padding: var(--wt-hero-pad-top, 48px) 0 var(--wt-hero-pad-bottom, 72px);
  overflow: hidden;
  background: var(--wt-bg-gradient, radial-gradient(ellipse at 35% 15%, #fef1e1 0%, rgba(254, 241, 225, 0.45) 45%, #ffffff 75%));
}

/* Decorative ambient background orbs */
.web-techiq-hero-slider-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.16) 0%, rgba(255, 184, 0, 0.08) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: hero-orb-drift 8s ease-in-out infinite alternate;
}

.web-techiq-hero-slider-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, rgba(0, 180, 216, 0.08) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: hero-orb-drift 10s ease-in-out infinite alternate-reverse;
}

@keyframes hero-orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.08); }
}

.web-techiq-hero-slider-viewport {
  position: relative;
  width: 100%;
  z-index: 1;
}

.web-techiq-hero-slider-track {
  position: relative;
  width: 100%;
}

/* ==========================================================================
   2. Slide Transitions — Smooth Fade + Slight Parallax Slide
   ========================================================================== */
.web-techiq-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s 0.75s;
  transform: translateX(40px);
  will-change: opacity, transform;
}

.web-techiq-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s 0s;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

/* Stagger-animate children when slide becomes active */
.web-techiq-hero-slide.is-active .hero-badge-pill,
.web-techiq-hero-slide.is-active .hero-title,
.web-techiq-hero-slide.is-active .hero-description,
.web-techiq-hero-slide.is-active .hero-btn-group,
.web-techiq-hero-slide.is-active .hero-stats-grid {
  animation: hero-content-rise 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.web-techiq-hero-slide.is-active .hero-badge-pill  { animation-delay: 0.05s; }
.web-techiq-hero-slide.is-active .hero-title        { animation-delay: 0.12s; }
.web-techiq-hero-slide.is-active .hero-description  { animation-delay: 0.20s; }
.web-techiq-hero-slide.is-active .hero-btn-group    { animation-delay: 0.28s; }
.web-techiq-hero-slide.is-active .hero-stats-grid   { animation-delay: 0.36s; }

@keyframes hero-content-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Media column reveal */
.web-techiq-hero-slide.is-active .hero-media-col {
  animation: hero-media-pop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes hero-media-pop {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 56px;
}

/* ==========================================================================
   3. Left Column Content
   ========================================================================== */
.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}

/* ── Tagline Pill Badge ── */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(0,180,216,0.10) 100%);
  border: 1px solid rgba(16, 185, 129, 0.30);
  border-radius: 50px;
  padding: 7px 18px 7px 10px;
  margin-bottom: 26px;
  box-shadow: 0 2px 12px rgba(16,185,129,0.12);
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2), 0 0 8px rgba(16,185,129,0.5);
  animation: hero-dot-pulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes hero-dot-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 3px rgba(16,185,129,0.2), 0 0 8px rgba(16,185,129,0.5); }
  50%       { transform: scale(1.4); box-shadow: 0 0 0 5px rgba(16,185,129,0.15), 0 0 16px rgba(16,185,129,0.7); }
}

.hero-badge-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #047857;
}

/* ── Main Heading Title ── */
.hero-title {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--wt-heading-color, #0d1b2a);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(
    115deg,
    var(--slide-grad-start, var(--wt-primary-color, #ff6b00)) 0%,
    #e60067 40%,
    var(--slide-grad-end, var(--wt-accent-color, #7c3aed)) 80%,
    var(--slide-grad-start, #ff6b00) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-gradient-shimmer 4s linear infinite;
}

@keyframes hero-gradient-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Description Subtitle ── */
.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--wt-body-color, #4a5568);
  margin-bottom: 36px;
  max-width: 540px;
}

/* ── Button Group ── */
.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--wt-primary-color, #ff6b00) 0%, #e60067 50%, var(--wt-accent-color, #7c3aed) 100%);
  background-size: 200% auto;
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.38), 0 2px 8px rgba(124,58,237,0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-btn-primary:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(255, 107, 0, 0.48), 0 4px 16px rgba(124,58,237,0.3);
}

.hero-btn-primary:hover::after {
  opacity: 1;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  background: rgba(11, 17, 32, 0.92);
  color: #ffffff;
  border: 1.5px solid rgba(255, 107, 0, 0.35);
  box-shadow: 0 4px 16px rgba(11, 17, 32, 0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.hero-btn-secondary:hover {
  background: linear-gradient(135deg, #1a2540 0%, #0f172a 100%);
  border-color: var(--wt-primary-color, #ff6b00);
  transform: translateY(-3px) scale(1.02);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.28), 0 0 0 1px rgba(255,107,0,0.15);
}

/* ── Stats Grid ── */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0,0,0,0.07);
}

.stat-value {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--wt-heading-color, #0d1b2a);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--wt-heading-color, #0d1b2a) 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
}

.stat-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--wt-primary-color, #ff6b00);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ==========================================================================
   4. Right Column — Premium Hero Image Box & Floating Glass Cards
   ========================================================================== */
.hero-media-col {
  position: relative;
  width: 100%;
}

.hero-media-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 24px 52px 12px;
  overflow: visible;
}

/* ── Premium Image Box Frame ── */
.hero-image-box {
  position: relative !important;
  width: 100% !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  isolation: isolate !important;
  transform: translateZ(0) !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
  mask-image: radial-gradient(white, black) !important;
  border: 1.5px solid rgba(255, 107, 0, 0.35) !important;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.16),
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.9) !important;
  transition: box-shadow 0.4s ease, transform 0.4s ease !important;
}

.hero-image-box img,
.hero-default-team-illustration {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  clip-path: inset(0 round 24px) !important;
  -webkit-clip-path: inset(0 round 24px) !important;
}

/* ── Premium SVG Placeholder ── */
.hero-svg-placeholder-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1120 0%, #1e293b 60%, #0f172a 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg-placeholder-inner {
  width: 100%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Code window mockup */
.hero-svg-code-window {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.hero-svg-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-svg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-svg-dot.red    { background: #ff5f57; }
.hero-svg-dot.yellow { background: #febc2e; }
.hero-svg-dot.green  { background: #28c840; }

.hero-svg-code-lines {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-svg-code-line {
  height: 8px;
  border-radius: 4px;
  animation: hero-code-pulse 3s ease-in-out infinite;
}

.hero-svg-code-line:nth-child(1) { width: 75%; background: linear-gradient(90deg, #ff6b00 0%, #e60067 100%); opacity: 0.8; animation-delay: 0s; }
.hero-svg-code-line:nth-child(2) { width: 55%; background: rgba(124,58,237,0.6); animation-delay: 0.2s; }
.hero-svg-code-line:nth-child(3) { width: 85%; background: rgba(0,180,216,0.5); animation-delay: 0.4s; }
.hero-svg-code-line:nth-child(4) { width: 45%; background: rgba(255,107,0,0.4); animation-delay: 0.6s; }
.hero-svg-code-line:nth-child(5) { width: 70%; background: rgba(230,0,103,0.4); animation-delay: 0.8s; }

@keyframes hero-code-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Metrics row inside SVG */
.hero-svg-metrics {
  display: flex;
  gap: 12px;
  width: 100%;
}

.hero-svg-metric-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.hero-svg-metric-val {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b00, #e60067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-svg-metric-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Premium Floating Glassmorphism Cards ── */
.hero-glass-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  /* Deep glassmorphism */
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255,255,255,1);
  min-width: 180px;
}

/* Animated float */
.glass-top-right {
  top: 8px;
  right: 8px;
  animation: hero-glass-float-a 4s ease-in-out infinite;
}

.glass-bottom-left {
  bottom: 8px;
  left: 16px;
  animation: hero-glass-float-b 4.5s ease-in-out infinite;
}

@keyframes hero-glass-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes hero-glass-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero-glass-card:hover {
  transform: translateY(-6px) scale(1.03) !important;
  animation-play-state: paused;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.16),
    0 4px 12px rgba(255, 107, 0, 0.1),
    inset 0 1px 0 rgba(255,255,255,1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* Gradient left border accent */
.hero-glass-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--wt-primary-color, #ff6b00) 0%, var(--wt-accent-color, #7c3aed) 100%);
}

/* ── Glass Icon Box ── */
.glass-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(124,58,237,0.10) 100%);
  border: 1px solid rgba(255,107,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,107,0,0.12);
  transition: transform 0.3s ease;
}

.hero-glass-card:hover .glass-icon-box {
  transform: scale(1.12) rotate(-5deg);
}

.glass-icon-box.check-icon {
  background: linear-gradient(135deg, rgba(16,185,129,0.14) 0%, rgba(0,180,216,0.10) 100%);
  border: 1px solid rgba(16,185,129,0.20);
  box-shadow: 0 4px 12px rgba(16,185,129,0.12);
}

/* ── Glass Text Info ── */
.glass-info {
  display: flex;
  flex-direction: column;
}

.glass-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--wt-heading-color, #0d1b2a);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.glass-sub {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-top: 3px;
}

/* Status dot for badge 1 */
.glass-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16,185,129,0.7);
  margin-right: 5px;
  animation: hero-dot-pulse 2s infinite ease-in-out;
  vertical-align: middle;
}

/* ==========================================================================
   5. Slider Pagination Dots Indicator
   ========================================================================== */
/* Right-Aligned Pagination Dots Container */
.hero-pagination-wrap {
  position: relative !important;
  display: flex !important;
  justify-content: flex-end !important;
  width: 100% !important;
  margin-top: 24px !important;
  padding-bottom: 8px !important;
  z-index: 25 !important;
  pointer-events: auto !important;
}

.hero-dots-container {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10) !important;
}

.hero-dot-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
}

.hero-dot-bar {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot-btn.is-active .hero-dot-bar {
  width: 32px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--wt-primary-color, #ff6b00) 0%, #e60067 100%);
  box-shadow: 0 2px 12px rgba(255, 107, 0, 0.45);
}

.hero-dot-btn:hover:not(.is-active) .hero-dot-bar {
  background: #94a3b8;
  transform: scale(1.25);
}

/* ==========================================================================
   5.1 Hero Slider Design & Layout Styles
   ========================================================================== */

/* ── Style 2: Centered Hero Showcase ── */
.hero-style-centered .hero-slide-inner {
  grid-template-columns: 1fr !important;
  text-align: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.hero-style-centered .hero-badge-pill {
  margin: 0 auto 20px !important;
}

.hero-style-centered .hero-title {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-style-centered .hero-description {
  max-width: 720px !important;
  margin: 0 auto 32px !important;
}

.hero-style-centered .hero-btn-group {
  justify-content: center !important;
}

.hero-style-centered .hero-stats-grid {
  max-width: 760px !important;
  margin: 40px auto 0 !important;
}

.hero-style-centered .hero-media-col {
  display: none !important;
}

/* ── Style 3: Sleek Tech Minimalist ── */
.hero-style-minimal .hero-badge-pill {
  background: rgba(15, 23, 42, 0.05) !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
}

.hero-style-minimal .hero-title::before {
  content: '';
  display: block;
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, var(--wt-primary-color, #ff6b00) 0%, #7c3aed 100%);
  border-radius: 2px;
  margin-bottom: 16px;
}

.hero-style-minimal .hero-stats-grid {
  background: rgba(255, 255, 255, 0.95) !important;
  border-left: 3px solid var(--wt-primary-color, #ff6b00) !important;
}

/* ==========================================================================
   6. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title { font-size: 46px; }
}

@media (max-width: 1024px) {
  .hero-slide-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title { font-size: 40px; }

  .hero-description { max-width: 100%; }

  .glass-top-right {
    top: 8px;
    right: 8px;
  }

  .glass-bottom-left {
    bottom: 8px;
    left: 12px;
  }

  .hero-media-wrap {
    padding: 52px 16px 52px 10px;
  }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
  .hero-title { font-size: 34px; }
  .hero-description { font-size: 16px; }

  /* 2 buttons inline on tablet — compact pill */
  .hero-btn-group {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 13px;
    padding: 11px 20px;
    white-space: nowrap;
  }
}

/* ── Mobile (640px) ── */
@media (max-width: 640px) {
  .web-techiq-hero-slider-section {
    padding: 28px 0 44px;
  }

  .hero-title { font-size: 26px; letter-spacing: -0.015em; }
  .hero-description { font-size: 14.5px; margin-bottom: 24px; }
  .hero-badge-pill { margin-bottom: 18px; }

  /* 2 CTA BUTTONS ALWAYS INLINE — key mobile fix */
  .hero-btn-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 50px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* Stats: 3-col on mobile (compact) */
  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-value    { font-size: 20px; }
  .stat-label    { font-size: 10px; }
  .stat-tag      { font-size: 9px; }

  /* Glass cards: stay positioned but smaller on mobile */
  .hero-media-wrap {
    padding: 44px 12px 44px 8px;
  }

  .hero-glass-card {
    padding: 10px 14px;
    gap: 10px;
    min-width: 140px;
    border-radius: 14px;
  }

  .glass-top-right  { top: 4px;  right: 4px; }
  .glass-bottom-left { bottom: 4px; left: 8px; }

  .glass-icon-box {
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 10px;
  }

  .glass-title { font-size: 11px; }
  .glass-sub   { font-size: 9px; }

  /* SVG placeholder metrics */
  .hero-svg-metric-val  { font-size: 16px; }
  .hero-svg-metric-lbl  { font-size: 9px; }

  /* Mobile Pagination Dots Alignment */
  .hero-pagination-wrap {
    margin-top: 16px !important;
    justify-content: flex-end !important;
  }
}

/* ── Ultra-small (400px) ── */
@media (max-width: 400px) {
  .hero-title { font-size: 22px; }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 11px;
    padding: 9px 12px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-value { font-size: 18px; }
}
