/* ==========================================================================
   UKBD MESSAGING - ENTERPRISE A2P & CONVERSATIONAL CLOUD THEME
   Brand Palette: Green (#2FA84F), Orange (#F0602F), Ink (#0E1B2C), Slate (#48586B)
   ========================================================================== */

:root {
  --green: #2FA84F;
  --green-1: #40B050;
  --green-2: #26893E;
  --green-50: #EAF7ED;
  --green-100: #D7EFDC;
  
  --orange: #F0602F;
  --orange-1: #FF7A47;
  --orange-50: #FEECE4;
  
  --ink: #0E1B2C;
  --ink-2: #1E293B;
  --text: #48586B;
  --muted: #7A8AA0;
  
  --line: #E5EAF1;
  --line-2: #EEF2F7;
  --bg: #FFFFFF;
  --bg-2: #F6F9FC;
  --bg-3: #EEF3F8;
  
  --shadow-sm: 0 4px 14px rgba(15,27,44,.06);
  --shadow: 0 16px 45px rgba(15,27,44,.10);
  --shadow-lg: 0 30px 75px rgba(15,27,44,.16);
  --shadow-green: 0 16px 36px rgba(47,168,79,.32);
  --shadow-orange: 0 16px 36px rgba(240,96,47,.28);
  
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 22px;
}

.grad-g {
  background: linear-gradient(100deg, #40B050, #2FA84F 55%, #7BD98C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-o {
  background: linear-gradient(100deg, #F0602F, #FF8A5B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding-block: clamp(4.5rem, 3.5rem + 5vw, 7rem); }

.section-header {
  max-width: 820px;
  margin: 0 auto clamp(2.8rem, 2rem + 2.4vw, 4rem);
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-2);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); }
.section-subtitle { font-size: clamp(1.08rem, 1rem + .35vw, 1.3rem); color: var(--text); margin-top: 18px; line-height: 1.6; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .96rem;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s;
  text-decoration: none;
  cursor: pointer;
}

.btn svg { width: 17px; height: 17px; }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-green:hover {
  background: var(--green-2);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(47,168,79,.40);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-2);
  transform: translateY(-3px);
}

.btn-lg { padding: 17px 32px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   TOP TICKER & HEADER
   ========================================================================== */
.ticker { background: var(--ink); color: #cbd7e6; font-size: .84rem; }
.ticker .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 9px; flex-wrap: wrap; }
.ticker-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ticker-badge { background: var(--green); color: #04120a; font-weight: 800; font-size: .68rem; letter-spacing: .06em; padding: 4px 10px; border-radius: 6px; flex-shrink: 0; text-transform: uppercase; }
.ticker-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-text b { color: #fff; }
.ticker-links { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.ticker-links a { display: inline-flex; align-items: center; gap: 6px; color: #cbd7e6; font-weight: 600; }
.ticker-links a:hover { color: #fff; }
.ticker-links svg { width: 14px; height: 14px; }
@media(max-width: 760px) { .ticker-links { display: none; } }

/* ==========================================================================
   AIR SPIDERS STYLE FLOATING GLASS PILL HEADER MENU BAR
   ========================================================================== */
.header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  background: transparent;
  padding: 0 16px;
  transition: all 0.35s ease;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(15, 27, 44, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.35s ease;
}

.header.stuck .header-inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(15, 27, 44, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.logo img {
  height: 38px;
  width: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.03);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(241, 245, 249, 0.6);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.nav > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--green-2);
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(47, 168, 79, 0.12);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.has-drop:hover .nav-link svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   MEGA SERVICES DROPDOWN - ULTRA MODERN SAAS BOX
   ========================================================================== */
.has-drop {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(14, 27, 44, 0.14), 0 4px 16px rgba(47, 168, 79, 0.08);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.dropdown.mega-dropdown {
  width: 580px;
  padding: 16px;
  border-radius: 20px;
}

.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drop-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  background: transparent;
}

.drop-item:hover {
  background: #F8FAFC;
  border-color: #E2E8F0;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 27, 44, 0.04);
}

.drop-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ico-green { background: #EAF7ED; border: 1px solid #C4EBD0; }
.ico-orange { background: #FEECE4; border: 1px solid #FFD3C2; }
.ico-blue { background: #EFF6FF; border: 1px solid #BFDBFE; }
.ico-wa { background: #DCF8C6; border: 1px solid #B8EBB0; }

.drop-text { min-width: 0; }
.drop-text strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.drop-text small {
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.4;
  display: block;
}

.drop-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-2);
  border: 1px solid var(--green-100);
}

.drop-badge.badge-o {
  background: var(--orange-50);
  color: var(--orange);
  border-color: #FFD3C2;
}

.drop-badge.badge-g {
  background: #EAF7ED;
  color: #137735;
  border-color: #C4EBD0;
}

.drop-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.drop-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F8FAFC, #EFF7F3);
  border: 1px solid #D7EFDC;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-2);
  transition: all 0.25s ease;
}

.drop-footer-link:hover {
  background: var(--green-50);
  color: var(--green);
  border-color: var(--green);
  transform: translateX(3px);
}

.drop-footer-link svg {
  width: 14px;
  height: 14px;
}

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-signin { font-weight: 700; color: var(--ink-2); padding: 9px 8px; }
.nav-signin:hover { color: var(--green-2); }
.burger { display: none; width: 44px; height: 44px; border-radius: 10px; color: var(--ink); }
.burger svg { width: 26px; height: 26px; margin-inline: auto; }

@media(max-width: 940px) {
  .nav, .nav-signin { display: none; }
  .burger { display: grid; place-items: center; }
}

.mnav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14,27,44,.5);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.mnav.open { opacity: 1; visibility: visible; }

.mnav-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: #fff;
  padding: 22px;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.mnav.open .mnav-panel { transform: none; }
.mnav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mnav-head img { height: 36px; }
.mnav a.m-link { padding: 13px 12px; border-radius: 11px; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.mnav a.m-link:hover { background: var(--bg-2); color: var(--green-2); }
.mnav-cta { margin-top: auto; display: grid; gap: 10px; padding-top: 14px; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(15, 27, 44, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  padding-block: clamp(4rem, 3.5rem + 6vw, 7.5rem);
}

.hero-glow-green {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 168, 79, 0.22) 0%, rgba(47, 168, 79, 0) 68%);
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
  animation: pulseMesh 9s ease-in-out infinite alternate;
}

.hero-glow-orange {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 96, 47, 0.20) 0%, rgba(240, 96, 47, 0) 68%);
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
  animation: pulseMesh 11s ease-in-out infinite alternate-reverse;
}

@keyframes pulseMesh {
  0% { transform: scale(0.88) translateY(0); opacity: 0.75; }
  100% { transform: scale(1.16) translateY(-24px); opacity: 1; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 4vw, 70px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-2);
  background: linear-gradient(135deg, var(--green-50), #fff);
  border: 1.5px solid var(--green-100);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(47, 168, 79, 0.12);
}

.hero-badge span { font-size: 1.1rem; }
.hero h1 { font-size: clamp(2.6rem, 1.8rem + 3.8vw, 4.4rem); line-height: 1.06; font-weight: 900; }
.hero-desc { font-size: clamp(1.05rem, .98rem + .40vw, 1.20rem); color: var(--text); margin-top: 24px; max-width: 580px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-metrics { display: flex; gap: 40px; margin-top: 42px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line); }
.metric h4 { font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.4rem); color: var(--ink); letter-spacing: -.02em; }
.metric p { font-size: .86rem; color: var(--muted); font-weight: 700; margin-top: 4px; }

.hero-visual-wrap { position: relative; width: 100%; }

.hero-quadrilateral-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: quadContinuousSpin 14s linear infinite;
}

.quad-outer {
  position: absolute;
  inset: 0;
  border: 3px dashed rgba(47, 168, 79, 0.65);
  border-radius: 40px;
  box-shadow: 0 0 50px rgba(47, 168, 79, 0.25), inset 0 0 40px rgba(47, 168, 79, 0.15);
  transform: rotate(45deg);
}

.quad-inner {
  position: absolute;
  inset: 12%;
  border: 3px dashed rgba(240, 96, 47, 0.55);
  border-radius: 32px;
  box-shadow: 0 0 45px rgba(240, 96, 47, 0.22);
  transform: rotate(15deg);
  animation: quadInnerReverse 10s linear infinite reverse;
}

.quad-blip {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.quad-blip.b-orange { background: var(--orange); box-shadow: 0 0 20px var(--orange); }
.quad-blip.p1 { top: -8px; left: 50%; transform: translateX(-50%); }
.quad-blip.p2 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.quad-blip.p3 { top: 50%; left: -8px; transform: translateY(-50%); }
.quad-blip.p4 { top: 50%; right: -8px; transform: translateY(-50%); }

@keyframes quadContinuousSpin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes quadInnerReverse { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }

.gateway {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #FFFFFF 0%, #F4FBF6 100%);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 40px rgba(15, 27, 44, 0.07);
  border: 2px solid var(--green-100);
  overflow: hidden;
  width: 100%;
}

.gw-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #40B050 50%, transparent);
  box-shadow: 0 0 12px #40B050;
  z-index: 5;
  animation: scanLaser 4s linear infinite;
  pointer-events: none;
}

@keyframes scanLaser { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

.gateway-bar { display: flex; align-items: center; gap: 9px; padding: 16px 22px; background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.1); }
.gw-dot { width: 12px; height: 12px; border-radius: 50%; }
.gw-title-badge { font-size: .75rem; font-weight: 800; letter-spacing: .06em; color: #a5b9cb; margin-left: 8px; }

.gw-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #137735;
  background: #EAF7ED;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid #C4EBD0;
  box-shadow: 0 2px 8px rgba(47, 168, 79, 0.12);
}

.gw-live .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2FA84F;
  box-shadow: 0 0 0 0 rgba(47, 168, 79, 0.8);
  animation: ring 1.5s infinite;
}

@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(64,176,80,.7); } 70% { box-shadow: 0 0 0 10px rgba(64,176,80,0); } 100% { box-shadow: 0 0 0 0 rgba(64,176,80,0); } }

.gw-stream { padding: 22px; display: flex; flex-direction: column; gap: 14px; min-height: 340px; }

.gw-msg {
  border-radius: 16px;
  padding: 14px 18px;
  font-size: .88rem;
  line-height: 1.55;
  max-width: 92%;
  opacity: 0;
  transform: translateY(12px);
  animation: msgin .45s var(--ease) forwards;
}

@keyframes msgin { to { opacity: 1; transform: none; } }

.gw-msg.req { background: rgba(255,255,255,.08); color: #dce6f0; border: 1px solid rgba(255,255,255,.08); font-family: var(--font-mono); font-size: .8rem; }
.gw-msg.res { background: linear-gradient(135deg, #2FA84F, #40B050); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; box-shadow: 0 8px 24px rgba(47,168,79,.3); }
.gw-msg b { color: #fff; }
.gw-msg.req b { color: #7BD98C; }
.gw-meta { display: flex; justify-content: space-between; gap: 10px; font-size: .7rem; margin-top: 8px; opacity: .85; }
.gw-meta .ok { color: #7BD98C; font-weight: 800; }
.gw-msg.res .gw-meta .ok { color: #eafff0; }

.hero-float-top {
  position: absolute;
  top: -18px;
  left: -20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15,27,44,.12);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1.5px solid var(--green-100);
  animation: floaty 5s ease-in-out infinite;
}

.hero-float-top .ic-g { width: 40px; height: 40px; border-radius: 12px; background: var(--green-50); color: var(--green-2); display: grid; place-items: center; font-size: 1.25rem; }
.hero-float-top b { display: block; color: var(--ink); font-size: .88rem; }
.hero-float-top small { color: var(--muted); font-size: .74rem; font-weight: 600; }

.hero-float-bottom {
  position: absolute;
  bottom: -22px;
  right: -16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15,27,44,.12);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1.5px solid var(--orange-50);
  animation: floaty 6s ease-in-out 1s infinite reverse;
}

.hero-float-bottom .ic-o { width: 40px; height: 40px; border-radius: 12px; background: var(--orange-50); color: var(--orange); display: grid; place-items: center; font-size: 1.25rem; }
.hero-float-bottom b { display: block; color: var(--ink); font-size: .88rem; }
.hero-float-bottom small { color: var(--muted); font-size: .74rem; font-weight: 600; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ==========================================================================
   UKBD CONVERSATION CLOUD SCENE
   ========================================================================== */
.scene-wrap { background: linear-gradient(180deg, #EFF7F1 0%, #fff 70%); position: relative; overflow: hidden; }
.scene-head { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.scene-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); line-height: 1.06; }
.scene-head p { font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); color: var(--text); margin-top: 16px; }

.scene-grid-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}

.scene-wave-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.scene-wave-path { fill: none; stroke: #40B050; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 8 12; animation: waveDash 1.4s linear infinite; filter: drop-shadow(0 0 10px rgba(64,176,80,0.7)); }
@keyframes waveDash { to { stroke-dashoffset: -40; } }

.scene-card-item { position: relative; z-index: 2; }
.scene-card-item.item-laptop { animation: floatLaptop 6s ease-in-out infinite; }
.scene-card-item.item-tools { animation: floatTools 7s ease-in-out infinite alternate; }
.scene-card-item.item-phone { animation: floatPhone 6.5s ease-in-out infinite alternate-reverse; margin-top: 16px; }
.scene-card-item.item-done { animation: floatDone 5.5s ease-in-out infinite; }
.scene-card-item.item-new {
  position: absolute;
  left: 52%;
  top: 68%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: floatNew 5.8s ease-in-out infinite alternate;
}

@keyframes floatLaptop { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatTools { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatPhone { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatDone { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatNew { 0%, 100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-9px); } }

.new-card {
  width: 215px;
  background: #fff;
  border: 1.5px solid #C4EBD0;
  border-radius: 14px;
  padding: 11px 13px;
  box-shadow: 0 8px 24px rgba(15,27,44,.08);
  text-align: center;
}
.nc-tag { font-size: .66rem; font-weight: 800; color: var(--green-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 7px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.nc-row { display: flex; align-items: center; justify-content: center; gap: 5px; margin-bottom: 5px; }
.nc-ch  { font-size: .62rem; font-weight: 700; color: var(--text); background: var(--bg-2); padding: 3px 7px; border-radius: 6px; border: 1px solid var(--line); }
.nc-ch.active { background: var(--green-50); color: var(--green-2); border-color: var(--green-100); font-weight: 800; }
.nc-arr { font-size: .6rem; color: var(--green); }
.nc-sub { font-size: .62rem; font-weight: 800; color: var(--green-2); }

.mock { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
.laptop { width: 100%; }
.mk-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #F6F8FB; border-bottom: 1px solid var(--line); }
.mk-dot { width: 9px; height: 9px; border-radius: 50%; }
.mk-title { font-size: .72rem; font-weight: 700; color: var(--ink); margin-left: 6px; }
.lp-body { display: grid; grid-template-columns: 120px 1fr; }
.lp-side { background: #F4FBF6; border-right: 1px solid var(--line); padding: 10px 8px; display: flex; flex-direction: column; gap: 2px; }
.lp-side .brand { display: flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 800; font-size: .74rem; padding: 4px 8px 10px; }
.lp-side .brand .d { width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(135deg, #40B050, #2FA84F); flex-shrink: 0; }
.lp-side .s { font-size: .66rem; color: var(--muted); padding: 6px 8px; border-radius: 7px; font-weight: 600; }
.lp-side .s.on { background: var(--green-50); color: var(--green-2); font-weight: 800; }
.lp-main { padding: 14px; }
.lp-h { font-size: .82rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.lp-h .pill-s { font-size: .6rem; font-weight: 700; color: var(--green-2); background: var(--green-50); padding: 2px 8px; border-radius: 999px; }
.lp-box { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 10px; margin-bottom: 9px; }
.lp-box .lb { font-size: .6rem; font-weight: 800; color: var(--green-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.lp-box .lt { font-size: .72rem; color: var(--text); line-height: 1.45; }

.tools { width: 210px; padding: 16px; margin-left: auto; }
.tools .th { font-size: .74rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.tg { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: .74rem; color: var(--text); font-weight: 600; }
.tg .sw { width: 34px; height: 19px; border-radius: 999px; background: #d5dde7; position: relative; flex-shrink: 0; }
.tg .sw::after { content: ""; position: absolute; top: 2px; left: 2px; width: 15px; height: 15px; border-radius: 50%; background: #fff; }
.tg.on .sw { background: var(--green); }
.tg.on .sw::after { transform: translateX(15px); }

.phone { width: 240px; }
.ph-head { display: flex; align-items: center; gap: 8px; padding: 11px 12px; background: linear-gradient(135deg, #2FA84F, #40B050); color: #fff; }
.ph-av { width: 26px; height: 26px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: .72rem; flex-shrink: 0; }
.ph-head b { font-size: .76rem; }
.ph-head .vf { margin-left: auto; font-size: .68rem; }
.ph-body { padding: 12px; background: #E9EFF4; display: flex; flex-direction: column; gap: 8px; }
.ph-in { background: #fff; border-radius: 10px; border-bottom-left-radius: 3px; padding: 8px 10px; font-size: .7rem; color: var(--ink); max-width: 88%; }
.ph-card { background: #fff; border-radius: 10px; padding: 10px; box-shadow: var(--shadow-sm); align-self: flex-end; width: 100%; }
.ph-note { font-size: .66rem; color: var(--muted); margin-bottom: 7px; }
.ph-fl { display: flex; align-items: center; justify-content: space-between; }
.ph-fl .ap { font-size: .9rem; font-weight: 800; color: var(--ink); }
.ph-fl .ap small { display: block; font-size: .56rem; color: var(--muted); font-weight: 600; }
.ph-fl .pl { color: var(--green); font-size: 1.1rem; }
.ph-fl .pr { text-align: right; font-weight: 800; color: var(--ink); font-size: .82rem; }
.ph-lk { display: flex; justify-content: space-between; font-size: .62rem; color: var(--green-2); font-weight: 700; margin-top: 8px; border-top: 1px solid var(--line); padding-top: 7px; }

.done { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.done-chip { font-size: .66rem; font-weight: 700; color: var(--green-2); background: var(--green-50); padding: 5px 11px; border-radius: 999px; }
.done-circle { width: 74px; height: 74px; border-radius: 50%; background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow); display: grid; place-items: center; font-size: 1.9rem; position: relative; }
.done-circle .ck { position: absolute; bottom: -3px; right: -3px; width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .78rem; border: 3px solid #fff; }

.scene-tag { position: relative; }
.scene-tag .chip { position: absolute; top: -14px; left: 10px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: 999px; padding: 5px 12px; font-size: .66rem; font-weight: 700; color: var(--ink); z-index: 2; display: flex; align-items: center; gap: 6px; }
.scene-tag .chip .sp { width: 16px; height: 16px; border-radius: 50%; background: conic-gradient(#40B050, #3D64F4, #EC4899, #40B050); animation: spin 3s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   ACTUAL TRANSPARENT PARTNER LOGOS (UBER, DARAZ, FOODPANDA, AIRBNB ONLY)
   ========================================================================== */
.deliver { padding-block: 52px; border-block: 1px solid var(--line); background: var(--bg-2); }
.deliver-label { text-align: center; font-weight: 800; color: var(--ink); font-size: 1.05rem; margin-bottom: 30px; }

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  align-items: center;
  animation: scroll 20s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }

.logo-item-transparent {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 10px;
  background: transparent !important;
  flex-shrink: 0;
}

.brand-img-logo {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
}

.logo-item-transparent svg { height: 46px; width: auto; max-width: 180px; }

/* ==========================================================================
   GUPSHUP BENTO GRID - ULTRA PREMIUM LIGHT THEME (GUPSHUP.AI QUALITY)
   ========================================================================== */
.bento-section-wrap {
  background: #F8FAFC;
  padding-block: clamp(5rem, 4rem + 5vw, 7.5rem);
  border-block: 1px solid var(--line);
}

.gupshup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.gupshup-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--r-xl);
  padding: 38px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15,27,44,.04);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}

.gupshup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15,27,44,.10);
  border-color: var(--green-100);
}

.bento-badge-category {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-2);
  background: var(--green-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.gupshup-card h3 {
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.gupshup-card p {
  font-size: .98rem;
  color: var(--text);
  line-height: 1.6;
}

/* Card 1: Tall Left Green Gradient */
.gupshup-card.tall-gradient {
  background: linear-gradient(150deg, #137735 0%, #2FA84F 55%, #40B050 100%);
  color: #fff;
  border: 0;
  grid-row: span 2;
  min-height: 580px;
}

.gupshup-card.tall-gradient .bento-badge-category {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.gupshup-card.tall-gradient h3 { color: #fff; font-size: 1.85rem; }
.gupshup-card.tall-gradient p { color: #eafff0; font-size: 1.05rem; margin-top: 12px; }

/* Visual Mockups inside Bento Cards */
.bento-mockup-frame {
  margin-top: 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15,27,44,.06);
}

.tall-gradient .bento-mockup-frame {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Card 1 Chat Thread */
.hero-chat-bubble {
  background: #fff;
  color: var(--ink);
  padding: 13px 16px;
  border-radius: 16px;
  font-size: .86rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bubbleSlideIn 4s ease-in-out infinite alternate;
}

.hero-chat-bubble.green-b {
  background: #EAF7ED;
  color: #2FA84F;
  animation-delay: 2s;
}

@keyframes bubbleSlideIn { 0% { transform: translateX(0); } 100% { transform: translateX(10px); } }

/* Card 2 Verification Input Shield */
.otp-input-mock {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-block: 14px;
}

.otp-box-digit {
  width: 38px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1.5px solid var(--green);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(47,168,79,0.15);
}

/* Card 3 Lifecycle Speed Dial Arc */
.dial-arc-graphic {
  position: relative;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dial-arc-graphic svg { width: 220px; height: 90px; }

/* Card 4 Workflow Pipeline */
.pipeline-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pipe-node {
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  flex: 1;
}

.pipe-node.on {
  background: var(--green-50);
  border-color: var(--green);
  color: var(--green-2);
  box-shadow: 0 4px 12px rgba(47,168,79,0.2);
}

.pipe-arrow { color: var(--green); font-weight: 900; font-size: 1.1rem; }

/* Card 5 WhatsApp Meta BSP Window */
.wa-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  font-weight: 800;
  color: var(--ink);
}

.wa-green-tick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  color: var(--green-2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .74rem;
}

/* Card 6 Omnichannel Multi-Ring Hub */
.omni-ring-hub {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.omni-node-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: nodeFloat 4s ease-in-out infinite alternate;
}

.omni-node-icon:nth-child(2) { animation-delay: .5s; }
.omni-node-icon:nth-child(3) { animation-delay: 1s; }
.omni-node-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes nodeFloat { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }

/* MULTI-CHANNEL TABS */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }

.tab-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-2);
  border: 1.5px solid var(--line);
  background: #fff;
  transition: .25s;
}

.tab-btn:hover { border-color: var(--green); color: var(--green-2); }
.tab-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

.tab-panel { display: none; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.tab-panel.active { display: grid; animation: fade .4s var(--ease); }

@keyframes fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.tab-panel h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin-bottom: 14px; }
.tab-panel p { margin-bottom: 18px; color: var(--text); }

.tab-visual {
  background: linear-gradient(145deg, #F8FAFC 0%, #EFF7F3 100%);
  border: 1px solid #D7EFDC;
  border-radius: var(--r-xl);
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,27,44,.04);
  position: relative;
  overflow: hidden;
}

.tv-badge {
  display: inline-block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--green-2);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Tab 1: WhatsApp Card */
.tv-wa-card {
  background: #fff;
  border: 1px solid #D7EFDC;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(15,27,44,.04);
  text-align: left;
}
.tv-wa-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tv-wa-av { width: 30px; height: 30px; border-radius: 50%; background: #EAF7ED; display: grid; place-items: center; font-size: .9rem; flex-shrink: 0; }
.tv-wa-header b { display: block; font-size: .76rem; color: var(--ink); }
.tv-wa-header small { font-size: .62rem; color: var(--green-2); font-weight: 700; }
.tv-wa-body p { font-size: .74rem; color: var(--text); margin-bottom: 8px; font-weight: 600; }
.tv-wa-pills { display: flex; gap: 6px; }
.tv-wa-pills span { font-size: .62rem; font-weight: 800; color: var(--green-2); background: var(--green-50); padding: 4px 8px; border-radius: 6px; border: 1px solid var(--green-100); }

/* Tab 2: SMS Meter */
.tv-sms-meter {
  background: #fff;
  border: 1px solid #D7EFDC;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(15,27,44,.04);
}
.tv-sms-val { font-size: .92rem; font-weight: 900; color: #F0602F; margin-bottom: 8px; }
.tv-sms-bar { height: 8px; background: #FEECE4; border-radius: 999px; overflow: hidden; margin-bottom: 10px; }
.tv-sms-fill { height: 100%; background: linear-gradient(90deg, #F0602F, #FF8A5B); border-radius: 999px; animation: tpsFill 3s ease-in-out infinite alternate; }
.tv-sms-routes { display: flex; justify-content: space-around; font-size: .64rem; font-weight: 800; color: var(--green-2); }

/* Tab 3: OTP Box */
.tv-otp-box {
  background: #fff;
  border: 1px solid #D7EFDC;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(15,27,44,.04);
}
.tv-otp-digits { display: flex; gap: 6px; justify-content: center; margin-bottom: 10px; }
.tv-otp-digits span {
  width: 32px; height: 40px; border-radius: 9px; background: var(--green-50);
  border: 1.5px solid var(--green-100); display: grid; place-items: center;
  font-size: 1.05rem; font-weight: 900; color: var(--green-2);
}
.tv-otp-tag { font-size: .66rem; font-weight: 800; color: var(--green-2); }

/* Tab 4: Two-Way Flow */
.tv-two-flow {
  background: #fff;
  border: 1px solid #D7EFDC;
  border-radius: 14px;
  padding: 16px 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(15,27,44,.04);
}
.tv-tf-step { font-size: .66rem; font-weight: 700; color: var(--text); background: var(--bg-2); padding: 5px 9px; border-radius: 8px; border: 1px solid var(--line); }
.tv-tf-step.active { background: var(--green-50); color: var(--green-2); border-color: var(--green-100); font-weight: 800; }
.tv-tf-arr { font-size: .7rem; color: var(--green); }

.tab-visual h4 { font-size: 1.25rem; margin-bottom: 6px; color: var(--ink); }
.tab-visual p { font-size: .88rem; color: var(--text); margin: 0; }

/* CODE SANDBOX */
.code-box {
  max-width: 920px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 27, 44, 0.06);
  border: 1.5px solid var(--green-100);
}

.code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 1.5px solid var(--line);
  gap: 12px;
  flex-wrap: wrap;
}

.code-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.code-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-dots .red { background: #FF5F56; }
.code-dots .yellow { background: #FFBD2E; }
.code-dots .green { background: #27C93F; }

.code-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green-2);
  margin-left: 8px;
  font-family: var(--font-mono);
  background: var(--green-50);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid var(--green-100);
}

.lang-tabs { display: flex; gap: 6px; }
.lang-btn {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  transition: all 0.2s ease;
  background: transparent;
  border: 1px solid transparent;
}
.lang-btn.active {
  background: #FFFFFF;
  color: var(--green-2);
  border-color: var(--green-100);
  box-shadow: 0 2px 8px rgba(47, 168, 79, 0.12);
}

.copy-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: all 0.2s ease;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(15, 27, 44, 0.04);
}

.copy-btn:hover {
  color: var(--green-2);
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(47, 168, 79, 0.15);
}

.code-pre {
  margin: 0;
  padding: 24px 26px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.8;
  color: #0F172A;
  background: #FAFAFA;
  display: none;
  border-bottom-left-radius: var(--r-xl);
  border-bottom-right-radius: var(--r-xl);
}

.code-pre.active { display: block; }
.k { color: #166534; font-weight: 700; }
.s { color: #2563EB; font-weight: 600; }
.c { color: #64748B; font-style: italic; }
.f { color: #D97706; font-weight: 700; }

/* PRICING CALCULATOR */
.calc {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.calc-left { padding: 38px; }
.calc-group { margin-bottom: 26px; }
.calc-group label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 10px; font-size: .92rem; }
.calc-select { width: 100%; padding: 13px 15px; border-radius: 11px; border: 1.5px solid var(--line); background: var(--bg-2); }
.calc-select:focus { outline: none; border-color: var(--green); }

.range {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  outline: none;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 3px 10px rgba(47,168,79,.5);
  cursor: pointer;
  border: 3px solid #fff;
}

.vol-out { margin-top: 12px; font-weight: 800; color: var(--green-2); font-size: 1.05rem; }

.calc-right {
  padding: 38px;
  background: linear-gradient(160deg, #FFFFFF, #F4FBF6);
  color: var(--ink);
  border-left: 1.5px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-right .lbl { font-size: .86rem; color: var(--muted); }
.calc-cost { font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem); font-weight: 800; color: var(--green-2); letter-spacing: -.02em; line-height: 1; margin: 6px 0; }
.calc-disc { font-size: .85rem; color: var(--green-2); font-weight: 700; }
.calc-per { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.calc-per b { font-size: 1.5rem; color: var(--ink); display: block; }
.calc-per span { font-size: .8rem; color: var(--muted); }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.stat {
  text-align: center;
  padding: 30px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s;
}

.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat b { display: block; font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat span { color: var(--muted); font-weight: 600; font-size: .9rem; margin-top: 10px; display: block; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }

.info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 18px;
}

.info-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--green-50);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-card h4 { font-size: 1.05rem; margin-bottom: 5px; }
.info-card p, .info-card a { font-size: .92rem; color: var(--text); }
.info-card a { color: var(--green-2); font-weight: 600; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}

.fg { margin-bottom: 18px; }
.fg label { display: block; font-weight: 600; color: var(--ink); font-size: .9rem; margin-bottom: 8px; }

.fg input, .fg textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 11px;
  border: 1.5px solid var(--line);
  background: var(--bg-2);
}

.fg textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* FOOTER */
.footer {
  background: var(--ink);
  color: #9fb3c8;
  padding-block: clamp(3.5rem, 2.5rem + 3vw, 5rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 44px;
  width: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .9rem; color: #8298b0; max-width: 320px; }
.footer-contact { margin-top: 16px; font-size: .86rem; color: #8298b0; line-height: 1.8; }
.footer-contact b { color: #cbd7e6; }
.footer-col h5 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: #9fb3c8; font-size: .9rem; transition: .2s; }
.footer-col a:hover { color: #7BD98C; transform: translateX(3px); }

.foot-news input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #fff;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-block: 24px;
  font-size: .86rem;
  color: #6f869e;
}

.footer-badges { display: flex; gap: 20px; flex-wrap: wrap; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

@media(max-width: 940px) {
  .hero-grid, .tab-panel, .tab-panel.active, .contact-grid, .gupshup-grid, .scene-grid-container { grid-template-columns: 1fr; }
  .gupshup-card.tall-gradient { grid-row: auto; }
  .stats, .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 600px) {
  .stats, .form-row, .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER CERTIFICATION & PARTNER BADGES (AIR SPIDER - SINGLE ROW SAME LINE)
   ========================================================================== */
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.2fr !important;
}

.footer-cert-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: nowrap; /* Strictly force single row - no wrapping to second line */
  width: 100%;
  max-width: 440px;
}

.cert-badge-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px 12px;
  height: 52px;
  flex: 1;
  min-width: 0; /* Prevents wrapping or overflow */
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.cert-badge-card img {
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

/* Specific scaling & optical alignment for Bangladesh Seal */
.cert-badge-card.cert-color img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35)) opacity(0.95);
  border-radius: 50%;
}

.cert-badge-card.cert-monochrome img {
  filter: brightness(0) invert(1) opacity(0.88);
}

/* Hover state: Pure white cool card with vivid full color logos */
.cert-badge-card:hover {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.28), 0 4px 14px rgba(47, 168, 79, 0.25);
}

/* ==========================================================================
   ENTERPRISE FAQ ACCORDION & SERVICE PAGE COMPONENTS
   ========================================================================== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: var(--green-100);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
  animation: fade .3s var(--ease);
}

/* HIGH-IMPACT CTA BANNER (CLEAN LIGHT EMERALD THEME) */
.cta-banner-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4FBF6 100%);
  border: 2px solid var(--green-100);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 60px);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(47, 168, 79, 0.08);
}

.cta-banner-card h2 {
  color: var(--ink);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  margin-bottom: 14px;
}

.cta-banner-card p {
  color: var(--text);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto 30px;
}

/* SERVICE FEATURES GRID */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sf-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all 0.35s var(--ease);
}

.sf-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.sf-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.sf-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.sf-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

@media(max-width: 940px) {
  .svc-features-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) {
  .svc-features-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LIGHT SUBTLE DYNAMIC LIVE STREAM BACKGROUND WAVE
   ========================================================================== */
.airspiders-wave-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.22; /* Soft, light & elegant */
}

.as-wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: waveScroll 24s linear infinite;
}

.as-wave-path-1 {
  fill: none;
  stroke: url(#waveGreenGrad);
  stroke-width: 1.8px;
  filter: drop-shadow(0 2px 6px rgba(47, 168, 79, 0.15));
}

.as-wave-path-2 {
  fill: none;
  stroke: url(#waveOrangeGrad);
  stroke-width: 1.5px;
  filter: drop-shadow(0 2px 6px rgba(255, 114, 53, 0.12));
}

@keyframes waveScroll {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   CONVERSATION ENGINE - HIGH-CONTRAST ENTERPRISE CARDS
   ========================================================================== */
.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ap-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(15, 27, 44, 0.04);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.ap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 27, 44, 0.08);
  border-color: var(--green-100);
}

.ap-card.grad {
  background: linear-gradient(145deg, #FFFFFF 0%, #F4FBF6 100%);
  border-color: var(--green-100);
}

.ap-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #137735;
  background: #EAF7ED;
  border: 1px solid #C4EBD0;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.ap-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}

.ap-sub {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 22px;
}

.mini {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(15, 27, 44, 0.04);
}

.mini-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-title .g {
  color: #137735;
  background: #EAF7ED;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  border: 1px solid #C4EBD0;
}

.seg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg-2);
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.seg-row b { color: var(--ink); font-weight: 700; }
.seg-tag { color: #137735; font-weight: 800; font-size: 0.72rem; }

.offer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 12px;
  background: #EAF7ED;
  border: 1px solid #C4EBD0;
  border-radius: 10px;
}

.offer .txt b { display: block; font-size: 0.78rem; color: #137735; }
.offer .txt { font-size: 0.72rem; color: var(--text); }
.offer .sel { margin-left: auto; font-size: 0.7rem; font-weight: 800; color: #137735; background: #FFFFFF; padding: 3px 10px; border-radius: 999px; }

.pchat {
  background: #F8FAFC;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.pbub {
  background: #FFFFFF;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(15, 27, 44, 0.04);
  margin-bottom: 12px;
}

.pprods {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.pprod {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
}

.pprod .buy { color: #137735; font-weight: 800; cursor: pointer; }
.ptyping { font-size: 0.74rem; color: var(--muted); font-weight: 600; }

.ap-wide {
  grid-column: span 2;
}

.flow {
  position: relative;
  width: 100%;
  height: 280px;
  background: #FAFAFA;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 20px;
}

.flow svg { width: 100%; height: 100%; }

.flow-path {
  fill: none;
  stroke-width: 2.5px;
  stroke-dasharray: 6 8;
  animation: flowDash 2s linear infinite;
}

@keyframes flowDash { to { stroke-dashoffset: -28; } }

.fnode {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #137735;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 900;
  color: #137735;
  box-shadow: 0 4px 12px rgba(47, 168, 79, 0.2);
  z-index: 3;
}

.fnode.fch { border-color: var(--line); color: var(--ink); font-size: 1.1rem; }
.fnode.fcust { border-color: #2563EB; color: #2563EB; }

.fbub {
  position: absolute;
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(15, 27, 44, 0.06);
  z-index: 4;
}

.fbub small { display: block; color: var(--muted); font-size: 0.62rem; font-weight: 600; margin-top: 2px; }



