/* =========================================================
   SMSINDIAHUB — Universal Global Stylesheet (styles.css)
   ========================================================= */

:root {
  --brand-blue: #2591e1;
  --brand-darkblue: #1e40af;
  --brand-cyan: #0284c7;
  --brand-navy: #0f172a;
  --brand-slate: #0b1120;
  --grad: linear-gradient(135deg, #2591e1, #1e40af 55%, #0284c7);
  --grad-hover: linear-gradient(135deg, #1e40af, #2591e1 55%, #38bdf8);
  --off-white: #f8fafc;
  --paper: #ffffff;
  --paper-2: #f1f5f9;
  --muted-light: #64748b;
  --muted-dark: #94a3b8;
  --display:
    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --body:
    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "Poppins", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-family: var(--body);
  background-color: var(--paper);
  color: var(--brand-navy);
  line-height: 1.6;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 1) {
  body {
    -webkit-font-smoothing: subpixel-antialiased !important;
  }
}

body {
  position: relative;
  width: 100%;
}

/* Container Wrapper */
.wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Scroll Reveal Animations (Professional Spring & Fade Motion) */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  will-change: auto !important;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Stat Cards & Counters */
.stat-card {
  background: #ffffff;
  padding: 24px 18px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  width: 100%;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 36px -10px rgba(37, 145, 225, 0.2),
    0 6px 14px -6px rgba(0, 0, 0, 0.05);
  border-color: rgba(37, 145, 225, 0.45);
}
.stat-card:hover .stat-num {
  transform: scale(1.04);
}

.stat-card .stat-num {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.3s ease;
}

.stat-num {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.stat-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-top: 8px;
}

/* Universal Card Architecture: Text Sizing & Overflow Prevention */
.hero-stats {
  display: grid;
  width: 100%;
  min-width: 0;
}

.hero-stats > div {
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-stats .stat-num {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card,
.stat-card,
.stat-card-light,
.stat-mini-box,
.service-card,
.pro-card,
.pro-card-dark,
.price-card,
[class*="rounded-2xl"],
[class*="rounded-3xl"] {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

/* Fluid responsive typography safeguards for all cards */
.stat-card-light .stat-num {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.2;
}

.stat-card .stat-label,
.stat-card-light .text-slate-800,
.stat-mini-box .lbl {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .stat-card .stat-num {
    font-size: clamp(20px, 4.5vw, 28px);
  }
}

@media (max-width: 640px) {
  .hero-stats .stat-num {
    font-size: 0.875rem !important;
  }
}

/* Channel Cards & Service Grids */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, #2591e1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(37, 145, 225, 0.15);
  border-color: rgba(37, 145, 225, 0.35);
}

/* Channel Accent Variants */
.wa-card {
  --card-accent: #16a34a;
}
.sms-card {
  --card-accent: #dc2626;
}
.rcs-card {
  --card-accent: #0891b2;
}
.voice-card {
  --card-accent: #2563eb;
}
.promo-card {
  --card-accent: #7c3aed;
}
.trans-card {
  --card-accent: #f97316;
}
.dlt-card {
  --card-accent: #059669;
}

/* Testimonials / Review Cards */
.test-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  outline: none;
}
.test-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2591e1, #1e40af 60%, #0284c7);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 36px -8px rgba(37, 145, 225, 0.16),
    0 4px 12px rgba(0, 0, 0, 0.03);
  border-color: rgba(37, 145, 225, 0.35);
}
.test-card:hover::before {
  opacity: 1;
}

/* Mobile Navbar Drawer Animation */
.mobile-nav-menu {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}
.mobile-nav-menu.hidden {
  display: none;
  opacity: 0;
  transform: scaleY(0.95);
}
.mobile-nav-menu.active {
  display: flex;
  opacity: 1;
  transform: scaleY(1);
}

/* Google Review Badge Button Hover Effect */
.google-review-badge:hover {
  transform: translateY(-2.5px);
  box-shadow:
    0 12px 28px -6px rgba(37, 145, 225, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(37, 145, 225, 0.5);
}

/* Fixed Navbar on Scroll (Guaranteed 100% Lock on Top) */
header.site-nav {
  position: relative;
  z-index: 500;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

header.site-nav.fixed-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  box-shadow:
    0 10px 30px -5px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.05) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(14px) !important;
  animation: navSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Top Utility Header Bar Base Styles */
.top-utility-bar {
  background-color: #0b1120 !important;
  color: #94a3b8;
  font-family: var(--display);
  border-bottom: 1px solid rgba(30, 41, 59, 0.8);
  display: block !important;
  width: 100%;
}
.top-utility-bar a {
  color: #cbd5e1;
  text-decoration: none;
}
.top-utility-bar a:hover {
  color: #ffffff;
}

/* Floating Animations for Orbit Badges & Interactive Elements */
@keyframes floatBadgeSlow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.6deg);
  }
}

.hero-orbit {
  animation: floatBadgeSlow 6s ease-in-out infinite;
}

/* Buttons & CTA Micro-Interactivity */
.btn,
.nav-cta {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2.5px) scale(1.02) !important;
  box-shadow: 0 10px 25px -5px rgba(37, 145, 225, 0.25) !important;
}

.btn:active,
.nav-cta:active {
  transform: translateY(0) scale(0.98) !important;
}


/* Shared Motion & Keyframe Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.6deg); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(8px) rotate(-0.6deg); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.06); }
}

.animate-float-slow {
  animation: floatSlow 5s ease-in-out infinite;
}
.animate-float-reverse {
  animation: floatReverse 6s ease-in-out infinite;
}
.animate-pulse-glow {
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.animate-pulse-ring {
  animation: pulseRing 3s ease-in-out infinite;
}

/* Audio Waveform Animations for Voice & Calling Pages */
@keyframes waveAudio {
  0%, 100% { height: 6px; }
  50% { height: 26px; }
}
.bar-wave-1 { animation: waveAudio 1s ease-in-out infinite 0.1s; }
.bar-wave-2 { animation: waveAudio 1.2s ease-in-out infinite 0.3s; }
.bar-wave-3 { animation: waveAudio 0.8s ease-in-out infinite 0.2s; }
.bar-wave-4 { animation: waveAudio 1.4s ease-in-out infinite 0.4s; }
.bar-wave-5 { animation: waveAudio 0.9s ease-in-out infinite 0.15s; }

/* Guarantee for active/visible scroll reveal items: reset transform & will-change to eliminate GPU subpixel blur */
.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active,
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible,
.zoom-in.visible, .zoom-in.active {
  opacity: 1 !important;
  transform: none !important;
  will-change: auto !important;
  visibility: visible !important;
}

/* Decorative Background Glow Isolation: Never overlap, bleed into, or blur text */
div[class*="blur-3xl"],
div[class*="blur-2xl"],
div[class*="blur-xl"],
div[class*="blur-["] {
  z-index: 0 !important;
  pointer-events: none !important;
  transform: translateZ(0);
  will-change: auto;
}

section > .wrap,
section > .container,
section > div[class*="max-w-"],
section > div.relative,
main > section > div {
  position: relative;
  z-index: 1;
}

/* RCS Animations & Chips */
@keyframes rcsPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}
.animate-rcs-pulse {
  animation: rcsPulse 3s ease-in-out infinite;
}
@keyframes chipBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.animate-chip-bounce {
  animation: chipBounce 2.5s ease-in-out infinite;
}
.rcs-action-chip {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.rcs-action-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 145, 225, 0.25);
}

/* FAQ Accordion Transitions */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer,
.faq-item.open .faq-answer,
.faq-answer.active,
.faq-answer.open {
  max-height: 1200px;
  opacity: 1;
  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
  border-top-color: #f1f5f9;
}
.faq-item.active .faq-chevron,
.faq-item.open .faq-chevron,
.faq-item.active .faq-icon,
.faq-item.open .faq-icon,
.faq-chevron.rotate-180,
.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

/* ==========================================================================
   Contact Page Styles & Smooth Animations
   ========================================================================== */
@keyframes contactFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-fade-in {
  animation: contactFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.75rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2591e1, #1e40af, #0284c7, #06b6d4);
}
.contact-form-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 25px 50px -12px rgba(37, 145, 225, 0.2);
  transform: translateY(-3px);
}

.contact-quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.contact-quick-chip:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -2px rgba(37, 145, 225, 0.15);
}
.contact-quick-chip:active {
  transform: scale(0.96);
}


.contact-dept-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.contact-dept-card:hover {
  border-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -6px rgba(37, 145, 225, 0.18);
}

.office-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.office-card:hover {
  border-color: #2591e1;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -8px rgba(37, 145, 225, 0.22);
}

.escalation-tier-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.escalation-tier-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 45px -8px rgba(37, 145, 225, 0.2);
  transform: translateY(-4px);
}

/* ==========================================================================
   Registration Page Styles & Interactive Micro-Animations
   ========================================================================== */
.reg-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.75rem;
  box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.reg-form-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 45px -10px rgba(37, 145, 225, 0.15);
}

.reg-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.reg-feature-card:hover {
  border-color: #2591e1;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -8px rgba(37, 145, 225, 0.2);
}

.reg-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.reg-service-card:hover {
  border-color: #3b82f6;
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -10px rgba(37, 145, 225, 0.22);
}

.reg-benefit-pill {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reg-benefit-pill:hover {
  border-color: #2591e1;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -6px rgba(37, 145, 225, 0.16);
}

/* ==========================================================================
   Icon-Prefixed Input Groups (Enhanced UI for Sign Up & Forms)
   ========================================================================== */
.input-icon-group {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1.5px solid #cbd5e1;
  border-radius: 0.875rem;
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.input-icon-group:hover {
  border-color: #94a3b8;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.input-icon-group:focus-within {
  border-color: #1877F2;
  box-shadow: 0 0 0 4px rgba(24, 119, 242, 0.14);
}
.input-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  background-color: #f8fafc;
  border-right: 1.5px solid #e2e8f0;
  color: #64748b;
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.input-icon-group:hover .input-icon-box {
  color: #334155;
}
.input-icon-group:focus-within .input-icon-box {
  color: #1877F2;
  background-color: #eff6ff;
  border-right-color: #bfdbfe;
}
.input-icon-control {
  flex: 1 1 0%;
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #0f172a;
  background: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.input-icon-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.input-icon-select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

/* ==========================================================================
   Enterprise Brand Interactive Cards (Magic QR, SEO/AEO/GEO, DLT)
   ========================================================================== */
.brand-hover-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.brand-hover-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #2591e1, #1e40af 55%, #0284c7);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.brand-hover-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 145, 225, 0.45);
  box-shadow: 0 20px 40px -10px rgba(37, 145, 225, 0.18), 0 4px 14px -3px rgba(15, 23, 42, 0.04);
}
.brand-hover-card:hover::before {
  opacity: 1;
}

.brand-hover-card .card-icon-badge {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-hover-card:hover .card-icon-badge {
  transform: scale(1.12);
  background-color: #2591e1 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 18px -4px rgba(37, 145, 225, 0.4);
}

.brand-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.brand-chip-btn:hover {
  background: #eff6ff;
  border-color: #38bdf8;
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(37, 145, 225, 0.18);
}
.brand-chip-btn:active {
  transform: scale(0.97);
}

.brand-hero-feature {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-hero-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -6px rgba(37, 145, 225, 0.15);
  border-color: #93c5fd;
}


