/* ----------------------------------------------------------------
   THAKARES DIGIWEAPONS PVT LTD - SMARTPING.AI INSPIRED MASTER STYLESHEET
   Typography: Poppins + Inter + Montserrat
   Color Palette: #782891 (Magenta/Purple), #683AC9 (Royal Violet/Indigo)
   Features: Swiper Sliders, Video Hero, Interactive Marquee, Animations, Glassmorphism
----------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-accent: 'Montserrat', 'Plus Jakarta Sans', sans-serif;

  /* Exact Smartping.ai Color Codes */
  --color-primary: #782891;
  --color-primary-dark: #581c6b;
  --color-primary-light: #943bb0;
  --color-secondary: #683ac9;
  --color-secondary-light: #835cf0;
  --color-accent-teal: #00d084;
  --color-accent-coral: #ff477e;
  --color-accent-cyan: #06b6d4;
  --color-accent-amber: #ffb703;
  --color-accent-blue: #2563eb;

  /* Gradients */
  --gradient-primary: linear-gradient(98.4deg, #782891 -1.34%, #683ac9 115.43%);
  --gradient-vibrant: linear-gradient(135deg, #782891 0%, #683ac9 50%, #3b82f6 100%);
  --gradient-coral: linear-gradient(135deg, #ff477e 0%, #ff70a6 100%);
  --gradient-teal: linear-gradient(135deg, #00b4d8 0%, #00d084 100%);
  --gradient-dark: linear-gradient(135deg, #0b0f19 0%, #151a2e 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);

  /* Neutrals */
  --color-dark: #0b0f19;
  --color-dark-surface: #121829;
  --color-dark-card: #1a2238;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-bg-page: #f8faff;
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;
  --color-border-glow: rgba(120, 40, 145, 0.25);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(104, 58, 201, 0.05);
  --shadow-md: 0 10px 30px rgba(104, 58, 201, 0.08);
  --shadow-lg: 0 20px 50px rgba(104, 58, 201, 0.14);
  --shadow-glow: 0 10px 35px rgba(120, 40, 145, 0.38);
  --shadow-btn: 0 8px 25px rgba(104, 58, 201, 0.28);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-page);
  line-height: 1.68;
  font-size: 1rem;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

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

/* ----------------------------------------------------------------
   TYPOGRAPHY
----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.028em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
}

.section-title.text-center {
  text-align: center;
}

.section-title h6 {
  font-family: var(--font-accent);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(120, 40, 145, 0.08);
  border-radius: var(--radius-pill);
}

.section-title h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  max-width: 860px;
  line-height: 1.2;
}

.section-title.text-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 b {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.section-title p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 680px;
  line-height: 1.7;
}

.section-title.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------------
   KEYFRAME ANIMATIONS
----------------------------------------------------------------- */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(120, 40, 145, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(120, 40, 145, 0); }
  100% { box-shadow: 0 0 0 0 rgba(120, 40, 145, 0); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

.floating-elem {
  animation: float-slow 4s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   BUTTONS
----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #ffffff;
}

.btn-accent {
  background: var(--gradient-coral);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 71, 126, 0.35);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 71, 126, 0.5);
  color: #ffffff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-dark {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.85rem;
}

/* ----------------------------------------------------------------
   HEADER & NAVBAR
----------------------------------------------------------------- */
.top-notice-bar {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-notice-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-notice-bar .contact-pills {
  display: flex;
  gap: 20px;
}

.top-notice-bar .contact-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.top-notice-bar .contact-pills a:hover {
  color: #38bdf8;
}

.top-notice-bar .dlt-badge {
  background: rgba(0, 208, 132, 0.18);
  color: #34d399;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 25px rgba(104, 58, 201, 0.06);
  transition: var(--transition-normal);
  padding: 16px 0;
  border-bottom: 1px solid rgba(120, 40, 145, 0.08);
}

.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(120, 40, 145, 0.35);
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-text .company-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  line-height: 1.1;
}

.navbar-brand .brand-text .company-name span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-brand .brand-text .company-sub {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-menu .nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.site-menu .nav-link:hover,
.site-menu .nav-link.active {
  color: var(--color-primary);
}

.site-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.site-menu .nav-link:hover::after,
.site-menu .nav-link.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(120, 40, 145, 0.08) 0%, rgba(104, 58, 201, 0.08) 100%);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(120, 40, 145, 0.15);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.navbar-phone-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.navbar-phone-btn .phone-icon-circle {
  width: 26px;
  height: 26px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.navbar-phone-btn:hover .phone-icon-circle {
  background: #ffffff;
  color: var(--color-primary);
}

.search-trigger-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-trigger-btn:hover {
  background: rgba(120, 40, 145, 0.08);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger-btn:hover span {
  background: var(--color-primary);
}

/* ----------------------------------------------------------------
   SIDE DRAWER WIDGET
----------------------------------------------------------------- */
.side-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.side-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-dark);
  color: #ffffff;
  z-index: 2001;
  padding: 45px 35px;
  overflow-y: auto;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.side-drawer.active {
  right: 0;
}

.side-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.side-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.side-drawer-close:hover {
  background: var(--gradient-primary);
  transform: rotate(90deg);
}

.side-drawer-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.side-drawer-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.side-drawer-gallery .gallery-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.side-drawer-gallery .gallery-card span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}

.side-drawer-gallery .gallery-card small {
  font-weight: 700;
  font-size: 0.8rem;
  color: #ffffff;
  display: block;
}

.side-drawer h6.widget-title {
  color: #38bdf8;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 800;
  font-family: var(--font-accent);
}

.side-drawer .address-box {
  margin-bottom: 30px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.side-drawer .address-box p {
  margin-bottom: 8px;
}

.side-drawer .address-box a {
  color: #38bdf8;
  font-weight: 600;
}

.side-drawer small.copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}

/* ----------------------------------------------------------------
   SEARCH MODAL
----------------------------------------------------------------- */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.94);
  backdrop-filter: blur(10px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-box {
  width: 100%;
  max-width: 650px;
  padding: 30px;
  position: relative;
}

.search-modal-close {
  position: absolute;
  top: -30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

.search-modal-form {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.search-modal-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

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

.search-modal-form button {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
}

/* ----------------------------------------------------------------
   SMARTPING INTERACTIVE HERO SWIPER & VIDEO SLIDER
----------------------------------------------------------------- */
.main-hero-swiper {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  overflow: hidden;
}

/* Ambient Radial Glow */
.main-hero-swiper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(120, 40, 145, 0.12) 0%, rgba(104, 58, 201, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.main-hero-swiper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-slide {
  padding: 85px 0 110px;
  position: relative;
  z-index: 2;
}

/* Video Slide Specifics (Smartping Style) */
.hero-slide.video-slide-item {
  position: relative;
  color: #ffffff;
  padding: 95px 0 120px;
  background: #0a0d17;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.42;
  filter: brightness(0.85);
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.88) 0%, rgba(104, 58, 201, 0.5) 100%);
  z-index: 2;
}

.hero-video-content {
  position: relative;
  z-index: 3;
}

.hero-video-content h1 {
  color: #ffffff;
}

.hero-video-content p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

/* Floating Status Pill with Pulse Dot */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(120, 40, 145, 0.2);
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(120, 40, 145, 0.08);
  margin-bottom: 24px;
}

.hero-badge-pill.on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #38bdf8;
}

.hero-badge-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-green 1.8s infinite;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-content h1 b {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.18rem;
  color: var(--color-text-muted);
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.7;
}

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

.hero-trust-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.hero-trust-box .stars {
  color: #00b67a;
  font-size: 1.1rem;
  display: flex;
  gap: 2px;
}

.hero-trust-box .rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.hero-trust-box .rating-text strong {
  color: var(--color-primary);
}

/* Swiper Controls Custom Styling (Smartping Style) */
.hero-swiper-pagination {
  position: absolute;
  bottom: 25px !important;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(120, 40, 145, 0.25);
  opacity: 1;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 32px;
  background: var(--gradient-primary);
  box-shadow: 0 2px 8px rgba(120, 40, 145, 0.4);
}

.hero-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.hero-nav-btn:after {
  display: none;
}

.hero-nav-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: scale(1.08);
}

/* Hero Right Visual Glass Card */
.hero-visual-container {
  position: relative;
}

.hero-main-card {
  background: #ffffff;
  border: 1px solid rgba(120, 40, 145, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 25px 50px rgba(104, 58, 201, 0.12);
  position: relative;
}

.hero-channel-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.channel-chip {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  padding: 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.channel-chip:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(120, 40, 145, 0.12);
  transform: translateY(-3px);
}

.channel-chip-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  flex-shrink: 0;
}

.channel-chip.sms .channel-chip-icon { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.channel-chip.rcs .channel-chip-icon { background: linear-gradient(135deg, #782891, #683ac9); }
.channel-chip.voice .channel-chip-icon { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.channel-chip.whatsapp .channel-chip-icon { background: linear-gradient(135deg, #059669, #10b981); }

.channel-chip-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-dark);
  font-weight: 700;
}

.channel-chip-info span {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

.hero-console-preview {
  background: var(--color-dark);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 0.82rem;
  color: #cbd5e1;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-console-preview .console-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 0.74rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 6px;
  font-weight: 600;
}

.hero-console-preview .console-line {
  margin: 5px 0;
  display: flex;
  gap: 8px;
}

.hero-console-preview .status-tag {
  color: #34d399;
  font-weight: bold;
}

/* ----------------------------------------------------------------
   BRAND & OPERATOR MARQUEE SLIDER (SMARTPING STYLE)
----------------------------------------------------------------- */
.brand-marquee-section {
  padding: 45px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.marquee-track-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee-scroll 24s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.marquee-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  background: #ffffff;
}

/* ----------------------------------------------------------------
   SOLUTIONS GRID (SMARTPING STYLE)
----------------------------------------------------------------- */
.content-section {
  padding: 95px 0;
  position: relative;
}

.bg-light {
  background-color: #f1f5fb;
}

.bg-dark {
  background-color: var(--color-dark);
  color: #ffffff;
}

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

.icon-box {
  background: #ffffff;
  padding: 38px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 40, 145, 0.12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(104, 58, 201, 0.14);
  border-color: rgba(120, 40, 145, 0.3);
}

.icon-box:hover::before {
  opacity: 1;
}

.icon-box figure {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(120, 40, 145, 0.1) 0%, rgba(104, 58, 201, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.icon-box:hover figure {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: scale(1.08);
}

.icon-box h6 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.icon-box p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.icon-box .solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.icon-box .solution-tags span {
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(120, 40, 145, 0.08);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.icon-box .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
  letter-spacing: 0.2px;
}

.icon-box .link-arrow:hover {
  color: var(--color-secondary);
  gap: 12px;
}

/* ----------------------------------------------------------------
   ENTERPRISE METRIC SUCCESS CARDS (SMARTPING 6x, 20M+ STYLE)
----------------------------------------------------------------- */
.case-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.metric-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.metric-card .metric-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-card h6 {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   PREMIUM VIDEO SHOWCASE / CONSOLE MOCKUP
----------------------------------------------------------------- */
.video-showcase-section {
  padding: 90px 0 100px;
  position: relative;
  background: linear-gradient(180deg, #f8faff 0%, #edf2f9 100%);
  overflow: hidden;
}

.video-mockup-frame {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 20px;
  background: #0d1117;
  border: 1px solid rgba(120, 40, 145, 0.25);
  box-shadow: 0 25px 70px rgba(104, 58, 201, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.video-mockup-frame::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(circle, rgba(120, 40, 145, 0.35) 0%, rgba(104, 58, 201, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.mockup-mac-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #161b22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.mac-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.mac-dot.red { background: #ff5f56; }
.mac-dot.yellow { background: #ffbd2e; }
.mac-dot.green { background: #27c93f; }

.mac-url-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 20px;
  border-radius: 20px;
  color: #94a3b8;
  font-size: 0.82rem;
  font-family: 'SF Mono', Consolas, monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-status-tag {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00d084;
  background: rgba(0, 208, 132, 0.12);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 208, 132, 0.25);
}

.mockup-video-body {
  position: relative;
  z-index: 1;
  background: #000000;
}

.mockup-video-body video {
  width: 100%;
  height: auto;
  max-height: 540px;
  display: block;
  object-fit: contain;
}

.mockup-footer-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 24px;
  background: #111620;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-weight: 600;
}

.video-showcase-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-showcase-wrapper video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.video-showcase-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
}

/* ----------------------------------------------------------------
   INTERACTIVE WHATSAPP BUSINESS HERO CARD MOCKUP
----------------------------------------------------------------- */
.wa-mockup-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 50px rgba(104, 58, 201, 0.12);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.wa-mockup-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #075e54;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.wa-meta-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-meta-title span.wa-verified {
  background: #25d366;
  color: #ffffff;
  font-size: 0.65rem;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-meta-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
}

.wa-chat-body {
  background: #efeae2;
  background-image: radial-gradient(#d1c7bd 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.wa-bubble.in {
  background: #ffffff;
  color: #1e293b;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.wa-bubble.out {
  background: #d9fdd3;
  color: #1e293b;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.wa-time {
  font-size: 0.68rem;
  color: #64748b;
  text-align: right;
  margin-top: 4px;
}

.wa-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.wa-chip-btn {
  background: #ffffff;
  border: 1px solid #128c7e;
  color: #128c7e;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.wa-chip-btn:hover {
  background: #128c7e;
  color: #ffffff;
}

/* ----------------------------------------------------------------
   CTA BAR
----------------------------------------------------------------- */
.cta-bar {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-bar-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-bar-text h6 {
  color: #38bdf8;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-accent);
}

.cta-bar-text h2 {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.18;
}

.cta-bar-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   PRICING TABS & CARDS
----------------------------------------------------------------- */
.pricing-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-tabs-nav {
  display: inline-flex;
  background: #ffffff;
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  gap: 6px;
}

.pricing-tab-btn {
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.pricing-tab-btn:hover {
  color: var(--color-primary);
}

.pricing-tab-btn.active {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.rate-card-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  margin-bottom: 30px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.96rem;
}

.rate-table th {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rate-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-main);
}

.rate-table tr:hover td {
  background-color: #f8faff;
}

.rate-table tr.highlight-tier td {
  background-color: rgba(120, 40, 145, 0.05);
  font-weight: 600;
}

.rate-table td.rate-highlight {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.05rem;
}

.rate-table td.total-highlight {
  color: var(--color-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

.rate-table-notes {
  background-color: #f8faff;
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* WhatsApp Business API Grid */
.whatsapp-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--color-border);
  transition: 0.3s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
  background: var(--gradient-primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.annual-save-badge {
  background: var(--gradient-coral);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.price-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
}

.price-card.popular {
  border: 2px solid var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card .popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card h6 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.price-card .price-display {
  margin: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-card .price-amount {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-dark);
}

.price-card .price-cycle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.price-card .price-annual-sub {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: -12px;
  margin-bottom: 18px;
}

.price-card ul.features-list {
  margin: 20px 0;
  flex-grow: 1;
}

.price-card ul.features-list li {
  font-size: 0.9rem;
  color: var(--color-text-main);
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card ul.features-list li .check-icon {
  color: #10b981;
  font-weight: bold;
}

/* ----------------------------------------------------------------
   INTERACTIVE RATE ESTIMATOR CALCULATOR
----------------------------------------------------------------- */
.calculator-box {
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  margin-top: 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(120, 40, 145, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.calculator-controls h4 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.calculator-controls p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  margin-bottom: 25px;
}

.calc-field {
  margin-bottom: 22px;
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38bdf8;
  margin-bottom: 8px;
}

.calc-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 18px;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.98rem;
  outline: none;
}

.calc-field select option {
  background: #151a2e;
  color: #ffffff;
}

.calc-field input[type="range"] {
  width: 100%;
  accent-color: var(--color-primary-light);
}

.calc-slider-val {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.calc-slider-val strong {
  color: #38bdf8;
  font-size: 1.15rem;
}

.calculator-result-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.calculator-result-card .res-rate {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.calculator-result-card .res-rate strong {
  color: #38bdf8;
  font-size: 1.15rem;
}

.calculator-result-card .res-total-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
}

.calculator-result-card .res-total-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 6px 0;
}

.calculator-result-card .res-gst {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
}

/* ----------------------------------------------------------------
   TESTIMONIALS
----------------------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(180deg, #f1f5fb 0%, #ffffff 100%);
  padding: 90px 0;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(120, 40, 145, 0.1);
  position: relative;
  transition: var(--transition-normal);
}

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

.testimonial-card .quote-icon {
  font-size: 2.8rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.98rem;
  color: var(--color-text-main);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author h6 {
  font-size: 1.05rem;
  margin-bottom: 3px;
  color: var(--color-dark);
}

.testimonial-author small {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.82rem;
}

/* ----------------------------------------------------------------
   CONTACT SECTION
----------------------------------------------------------------- */
.contact-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 48px 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.contact-info-card p.subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  margin-bottom: 32px;
  line-height: 1.65;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.info-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #38bdf8;
  flex-shrink: 0;
}

.info-item-text h6 {
  color: #38bdf8;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-item-text p, .info-item-text a {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.5;
}

.info-item-text a:hover {
  color: #38bdf8;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #f8fafc;
  font-size: 0.96rem;
  color: var(--color-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(120, 40, 145, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ----------------------------------------------------------------
   FOOTER
----------------------------------------------------------------- */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 90px 0 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-widget-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-about p {
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 14px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
}

.newsletter-form button {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  padding: 0 24px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--gradient-vibrant);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-links a:hover {
  color: #38bdf8;
}

/* ----------------------------------------------------------------
   LEGAL PAGES
----------------------------------------------------------------- */
.legal-header {
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 75px 0;
  text-align: center;
}

.legal-header h1 {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.legal-header p {
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.95rem;
}

.legal-content-container {
  max-width: 920px;
  margin: 60px auto 100px;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.legal-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.legal-nav-tabs a {
  padding: 8px 20px;
  background: #f1f5fb;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.legal-nav-tabs a:hover,
.legal-nav-tabs a.active {
  background: var(--gradient-primary);
  color: #ffffff;
}

.legal-clause {
  margin-bottom: 35px;
}

.legal-clause h2 {
  font-size: 1.45rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  border-bottom: 2px solid #f1f5fb;
  padding-bottom: 8px;
}

.legal-clause p {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ----------------------------------------------------------------
   PULSING FLOATING WHATSAPP BUTTON
----------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-ring 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* ================================================================
   SMARTPING.AI EXACT REPLICA STYLES (SCREENSHOTS 1 - 5)
   ================================================================ */

/* Section Headings Style (Deep Purple, Centered) */
.section-heading-purple {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading-purple h2 {
  font-family: var(--font-heading);
  color: #5513a0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 15px;
  line-height: 1.25;
}

.section-heading-purple p {
  font-family: var(--font-body);
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   SCREENSHOT 1: SMARTPING HERO BANNER
----------------------------------------------------------------- */
.smartping-hero-banner {
  position: relative;
  background-color: #0b071a;
  background-image: url('../assets/images/banner-hero.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 85px 0 90px;
  color: #ffffff;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.hero-gradient-text {
  background: linear-gradient(90deg, #d946ef 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-gradient-bar {
  width: 75px;
  height: 4px;
  background: linear-gradient(90deg, #d946ef, #a855f7);
  border-radius: 2px;
  margin: 15px 0 24px;
}

.hero-sub-text {
  font-family: var(--font-body);
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-sub-highlight {
  color: #f0abfc;
  font-weight: 700;
}

.hero-pill-btn {
  background: linear-gradient(90deg, #782891 0%, #a855f7 100%);
  color: #ffffff;
  padding: 13px 34px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
  text-decoration: none;
  transition: var(--transition-normal);
}

.hero-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
  color: #ffffff;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dot.active {
  background: #c084fc;
  width: 28px;
  border-radius: 4px;
}

/* ----------------------------------------------------------------
   SCREENSHOT 2: "EXPLORE EVERY DIMENSION OF COMMUNICATION WITH US"
----------------------------------------------------------------- */
.dimension-section {
  padding: 95px 0 100px;
  background: #ffffff;
}

.dimension-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 45px;
  align-items: stretch;
}

.dimension-tabs {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dimension-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  transition: var(--transition-fast);
  width: 100%;
}

.dimension-tab-btn .tab-icon-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dimension-tab-btn .tab-icon-wrap img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tab-badge-dot {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 16px;
  height: 16px;
  background: #ef4444;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dimension-tab-btn:hover {
  background: #faf5ff;
  color: #5513a0;
}

.dimension-tab-btn.active {
  background: #fae8ff;
  color: #5513a0;
  font-weight: 700;
}

.dimension-display-card {
  background: #faf7fe;
  border-radius: 28px;
  padding: 36px 40px;
  border: 1px solid #f0e6f7;
  box-shadow: 0 10px 40px rgba(104, 58, 201, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.dimension-pane {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.dimension-pane .pane-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-bottom: 25px;
}

.dimension-pane .pane-img-wrap img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 12px;
}

.dimension-pane .pane-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #eee5f5;
}

.dimension-pane .pane-footer-bar p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  margin: 0;
}

.btn-explore-purple {
  background: #6f2596;
  color: #ffffff;
  padding: 11px 32px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
  display: inline-block;
}

.btn-explore-purple:hover {
  background: #5513a0;
  color: #ffffff;
}

/* ----------------------------------------------------------------
   SCREENSHOT 3: "DRIVING SUCCESS FOR LEADING ENTERPRISES"
----------------------------------------------------------------- */
.success-stories-section {
  padding: 95px 0 100px;
  background: #faf8fd;
}

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

.story-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(104, 58, 201, 0.12);
}

.story-thumbnail {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.story-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-card:hover .story-thumbnail img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(243, 232, 255, 0.95);
  backdrop-filter: blur(6px);
  padding: 4px 14px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  color: #6f2596;
}

.story-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-info h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 44px;
}

.story-info h2.story-metric {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #6f2596;
  line-height: 1.1;
  margin-bottom: 4px;
}

.story-info p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.45;
}

.story-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #6f2596;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.story-link:hover {
  color: #5513a0;
}

/* ----------------------------------------------------------------
   SCREENSHOT 4: "SERVING ENTERPRISES ACROSS INDUSTRIES"
----------------------------------------------------------------- */
.industries-section {
  padding: 95px 0 100px;
  background: #ffffff;
}

.industry-pills-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 45px;
}

.industry-pill-btn {
  background: transparent;
  border: none;
  color: #4b5563;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.industry-pill-btn:hover {
  color: #5513a0;
  background: #faf5ff;
}

.industry-pill-btn.active {
  background: #3b0764;
  color: #ffffff;
  font-weight: 700;
}

.industry-content-box {
  max-width: 1100px;
  margin: 0 auto;
}

.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.industry-left h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.industry-left p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-ind-purple {
  background: #6f2596;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-ind-purple:hover {
  background: #5513a0;
  color: #ffffff;
}

.industry-right figure {
  margin: 0;
  text-align: right;
}

.industry-right img {
  max-width: 100%;
  max-height: 390px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* ----------------------------------------------------------------
   SCREENSHOT 5: "AHEAD OF THE CURVE: THE DIGIWEAPONS DIFFERENCE"
----------------------------------------------------------------- */
.curve-difference-section {
  padding: 100px 0;
  background-color: #070810;
  background-image: url('../assets/images/curve-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.curve-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 15px;
}

.curve-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

.curve-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 70px;
  max-width: 820px;
  margin: 55px auto 0;
}

.curve-stat-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.curve-stat-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.curve-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.curve-stat-text h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.curve-stat-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ----------------------------------------------------------------
   FLOATING SIA AI ASSISTANT WIDGET (Screenshots 1-5)
----------------------------------------------------------------- */
.floating-sia-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.sia-speech-bubble {
  background: #6f2596;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(111, 37, 150, 0.35);
  white-space: nowrap;
  position: relative;
  animation: bubbleFloat 3s ease-in-out infinite;
}

.sia-speech-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #6f2596;
}

.sia-avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #782891;
  box-shadow: 0 6px 20px rgba(120, 40, 145, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
  background: #ffffff;
  flex-shrink: 0;
}

.sia-avatar-circle:hover {
  transform: scale(1.08);
}

.sia-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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