@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #050507;
  --bg2: #0a0a12;
  --card: rgba(255, 255, 255, .03);
  --glass: rgba(255, 255, 255, .05);
  --border: rgba(255, 255, 255, .08);
  --purple: #a855f7;
  --pdim: rgba(168, 85, 247, .12);
  --blue: #3b82f6;
  --bdim: rgba(59, 130, 246, .12);
  --cyan: #06b6d4;
  --cdim: rgba(6, 182, 212, .12);
  --orange: #f97316;
  --odim: rgba(249, 115, 22, .12);
  --green: #4ade80;
  --t1: #f8fafc;
  --t2: #94a3b8;
  --t3: #64748b;
  --grad: linear-gradient(135deg, #a855f7, #3b82f6);
  --r: 16px;
  --rx: 28px;
  --tr: all .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 2px
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, .1);
  border: 1px solid rgba(168, 85, 247, .25);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px
}

.section-header {
  text-align: center;
  margin-bottom: 60px
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.02em
}

.section-sub {
  font-size: 1.05rem;
  color: var(--t2);
  max-width: 520px;
  margin: 0 auto
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  font-family: inherit;
  white-space: nowrap;
  position: relative;
  overflow: hidden
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .1);
  opacity: 0;
  transition: var(--tr)
}

.btn:hover::before {
  opacity: 1
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, .3)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, .45)
}

.btn-secondary {
  background: rgba(255, 255, 255, .06);
  color: var(--t1);
  border: 1px solid var(--border)
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(168, 85, 247, .4);
  transform: translateY(-2px)
}

.btn-full {
  width: 100%;
  justify-content: center
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.4, 0, .2, 1) var(--delay, 0s), transform .55s cubic-bezier(.4, 0, .2, 1) var(--delay, 0s)
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* icons */
.icon-purple {
  background: var(--pdim);
  border: 1px solid rgba(168, 85, 247, .2);
  color: var(--purple)
}

.icon-blue {
  background: var(--bdim);
  border: 1px solid rgba(59, 130, 246, .2);
  color: var(--blue)
}

.icon-cyan {
  background: var(--cdim);
  border: 1px solid rgba(6, 182, 212, .2);
  color: var(--cyan)
}

.icon-orange {
  background: var(--odim);
  border: 1px solid rgba(249, 115, 22, .2);
  color: var(--orange)
}

.icon-green {
  background: rgba(74, 222, 128, .1);
  border: 1px solid rgba(74, 222, 128, .2);
  color: var(--green)
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--tr)
}

.navbar.scrolled {
  background: rgba(5, 5, 7, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3)
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  box-shadow: 0 0 16px rgba(168, 85, 247, .4)
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav-link {
  color: var(--t2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 100px;
  transition: var(--tr)
}

.nav-link:hover,
.nav-link.active {
  color: var(--t1);
  background: rgba(255, 255, 255, .06)
}

.nav-link.nav-cta {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 3px 12px rgba(168, 85, 247, .3)
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(168, 85, 247, .45)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: var(--tr)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 110px 80px 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0
}

.g1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(168, 85, 247, .18), transparent 70%);
  top: -80px;
  left: -80px;
  animation: gp 8s ease-in-out infinite
}

.g2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, .13), transparent 70%);
  bottom: -60px;
  right: 150px;
  animation: gp 11s ease-in-out infinite reverse
}

.g3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, .1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: gp 6s ease-in-out infinite
}

@keyframes gp {

  0%,
  100% {
    opacity: .7;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.08)
  }
}

.hero-content {
  position: relative;
  z-index: 2
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, .08);
  border: 1px solid rgba(168, 85, 247, .2);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: dp 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--green)
}

@keyframes dp {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--green)
  }

  50% {
    opacity: .5;
    box-shadow: 0 0 12px var(--green)
  }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 22px
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.hero-chips span {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--t3);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px
}

.hero-orb {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, .25), rgba(59, 130, 246, .12), transparent 70%);
  border: 1px solid rgba(168, 85, 247, .18);
  animation: os 20s linear infinite
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, rgba(59, 130, 246, .18), rgba(168, 85, 247, .08), transparent 60%);
  border: 1px solid rgba(59, 130, 246, .12);
  animation: os 14s linear infinite reverse
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, .35), rgba(59, 130, 246, .15), transparent 65%);
  box-shadow: 0 0 50px rgba(168, 85, 247, .25)
}

@keyframes os {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  animation: fl 6s ease-in-out infinite
}

.fc1 {
  top: 10%;
  left: -8%;
  animation-delay: 0s
}

.fc2 {
  top: 42%;
  right: -12%;
  animation-delay: 2s
}

.fc3 {
  bottom: 16%;
  left: -4%;
  animation-delay: 4s
}

@keyframes fl {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2
}

.scroll-dot {
  width: 30px;
  height: 50px;
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  position: relative
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--purple);
  border-radius: 2px;
  animation: sb 2s ease-in-out infinite;
  box-shadow: 0 0 5px var(--purple)
}

@keyframes sb {

  0%,
  100% {
    top: 7px;
    opacity: 1
  }

  50% {
    top: 20px;
    opacity: .3
  }
}

/* TECH ECOSYSTEM */
.ecosystem {
  padding: 100px 0;
  position: relative;
  z-index: 1
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 16px
}

.eco-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: var(--tr);
  cursor: default
}

.eco-card:hover {
  border-color: rgba(168, 85, 247, .3);
  transform: translateY(-5px);
  background: rgba(168, 85, 247, .04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25)
}

.eco-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr)
}

.eco-card:hover .eco-icon {
  transform: scale(1.1)
}

.eco-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  text-align: center;
  letter-spacing: .3px
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, rgba(168, 85, 247, .07), rgba(59, 130, 246, .07));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  position: relative;
  z-index: 1
}

.ticker {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: tm 28s linear infinite
}

.ticker span {
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
  flex-shrink: 0
}

.td {
  color: var(--purple) !important;
  opacity: .6
}

@keyframes tm {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* SERVICES */
.services {
  padding: 110px 0;
  position: relative;
  z-index: 1
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rx);
  padding: 30px;
  transition: var(--tr);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, .06), rgba(59, 130, 246, .03));
  opacity: 0;
  transition: var(--tr);
  border-radius: var(--rx)
}

.service-card:hover {
  border-color: rgba(168, 85, 247, .28);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28)
}

.service-card:hover::before {
  opacity: 1
}

.service-card--hl {
  background: linear-gradient(135deg, rgba(168, 85, 247, .07), rgba(59, 130, 246, .04));
  border-color: rgba(168, 85, 247, .22)
}

.card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--grad);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--tr)
}

.service-card:hover .card-icon {
  transform: scale(1.08)
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px
}

.service-card p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 18px
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--tr)
}

.card-link:hover {
  gap: 9px
}

.srv-techs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.srv-tech {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  transition: var(--tr);
}

.srv-tech svg {
  width: 14px;
  height: 14px;
  opacity: .7;
}

.service-card:hover .srv-tech {
  border-color: rgba(168, 85, 247, .2);
  color: var(--t2);
  background: rgba(168, 85, 247, .04);
}

.service-card:hover .srv-tech svg {
  opacity: 1;
}

/* PRODUCTS */
.products {
  padding: 110px 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, .03), transparent 70%)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rx);
  padding: 32px;
  transition: var(--tr);
  position: relative
}

.product-card:hover {
  border-color: rgba(168, 85, 247, .3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

.product-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .25;
  margin-bottom: 16px
}

.product-icon {
  margin-bottom: 16px
}

.product-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px
}

.product-card p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 18px
}

.product-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 22px
}

.product-tags span {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  color: var(--t3);
  padding: 3px 10px;
  border-radius: 100px
}

/* SOLUTIONS */
.solutions {
  padding: 110px 0;
  position: relative;
  z-index: 1
}

.solutions-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.solutions-left .section-badge {
  margin-bottom: 18px
}

.solutions-left .section-title {
  text-align: left;
  margin-bottom: 16px
}

.solutions-left>p {
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: .98rem
}

.sol-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px
}

.sol-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: var(--t2)
}

.solutions-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.sol-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: var(--tr)
}

.sol-card:hover {
  border-color: rgba(168, 85, 247, .25);
  background: rgba(168, 85, 247, .03)
}

.sol-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.sol-card strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px
}

.sol-card p {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5
}

/* PLANS */
.plans {
  padding: 110px 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, .03), transparent 70%)
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rx);
  padding: 36px;
  transition: var(--tr);
  position: relative
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, .25)
}

.plan-card--hl {
  background: linear-gradient(135deg, rgba(168, 85, 247, .07), rgba(59, 130, 246, .04));
  border-color: rgba(168, 85, 247, .25)
}

.plan-card--hl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  border-radius: var(--rx) var(--rx) 0 0
}

.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap
}

.plan-header {
  margin-bottom: 24px
}

.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.plan-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px
}

.plan-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.55
}

.plan-price {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px
}

.price-tag {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px
}

.price-note {
  font-size: 11px;
  color: var(--t3)
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--t2)
}

/* CONTACT */
.contact-section {
  padding: 110px 0;
  position: relative;
  z-index: 1
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  align-items: start
}

.contact-left h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 28px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.next-step {
  display: flex;
  gap: 16px;
  margin-bottom: 22px
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pdim);
  border: 1px solid rgba(168, 85, 247, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0
}

.next-step strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px
}

.next-step p {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5
}

.contact-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--t2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--tr)
}

.contact-link-item:hover {
  color: var(--purple)
}

.lead-form {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: var(--rx);
  padding: 36px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 7px;
  letter-spacing: .3px
}

.req {
  color: var(--purple)
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--t1);
  font-family: inherit;
  outline: none;
  transition: var(--tr);
  width: 100%
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--t3)
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(168, 85, 247, .5);
  background: rgba(168, 85, 247, .04);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, .08)
}

.form-group textarea {
  resize: vertical;
  min-height: 110px
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 4px
}

.cb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  color: var(--t2);
  transition: var(--tr);
  user-select: none
}

.cb-item:hover {
  border-color: rgba(168, 85, 247, .3);
  background: rgba(168, 85, 247, .04)
}

.cb-item input {
  accent-color: var(--purple);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0
}

.cb-item:has(input:checked) {
  border-color: rgba(168, 85, 247, .4);
  background: rgba(168, 85, 247, .08);
  color: var(--purple)
}

.field-error {
  font-size: 11px;
  color: #f87171;
  margin-top: 3px;
  min-height: 14px
}

.btn-loader {
  display: none;
  align-items: center;
  gap: 7px
}

.spin {
  animation: sp .8s linear infinite
}

@keyframes sp {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.form-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500
}

.form-msg.success {
  background: rgba(74, 222, 128, .06);
  border: 1px solid rgba(74, 222, 128, .18);
  color: var(--green)
}

.form-msg.error {
  background: rgba(248, 113, 113, .06);
  border: 1px solid rgba(248, 113, 113, .18);
  color: #f87171
}

/* TERMS */
.terms-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, .2)
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.terms-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: var(--tr)
}

.terms-card:hover {
  border-color: rgba(168, 85, 247, .2)
}

.terms-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--t1)
}

.terms-card p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65
}

.terms-card a {
  color: var(--purple);
  text-decoration: none
}

/* FOOTER */
.footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, .25)
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, .05), transparent 70%);
  pointer-events: none
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 14px
}

.footer-brand p {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px
}

.social-links {
  display: flex;
  gap: 10px
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  text-decoration: none;
  transition: var(--tr)
}

.social-link:hover {
  border-color: rgba(168, 85, 247, .3);
  color: var(--purple);
  background: rgba(168, 85, 247, .08)
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col a {
  font-size: 13px;
  color: var(--t3);
  text-decoration: none;
  transition: var(--tr)
}

.footer-col a:hover {
  color: var(--purple);
  padding-left: 3px
}

.footer-badge {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  background: rgba(74, 222, 128, .05);
  border: 1px solid rgba(74, 222, 128, .14);
  border-radius: 100px;
  padding: 5px 11px;
  width: fit-content
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--t3)
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .eco-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 32px 70px;
    text-align: center
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .hero-visual {
    display: none
  }

  .hero-sub {
    max-width: 580px
  }

  .hero-actions {
    justify-content: center
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .solutions-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .solutions-left .section-title {
    text-align: left
  }

  .contact-wrapper {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:768px) {
  .hamburger {
    display: flex
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 7, .96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 18px;
    gap: 4px;
    z-index: 999
  }

  .nav-links.open {
    display: flex
  }

  .nav-link {
    padding: 11px 14px;
    border-radius: 8px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .products-grid {
    grid-template-columns: 1fr
  }

  .plans-grid {
    grid-template-columns: 1fr
  }

  .eco-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .terms-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .lead-form {
    padding: 22px
  }
}

@media(max-width:480px) {
  .checkbox-grid {
    grid-template-columns: 1fr
  }

  .eco-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .hero-title {
    font-size: 2rem
  }
}

/* --- WATERTING V2 UPDATES --- */

/* TECH WEB (CONNECTED LOGOS) */
.tech-web {
  position: relative;
  height: 500px;
  max-width: 800px;
  margin: 60px auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tw-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  transition: var(--tr);
}

.tw-node span {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  transition: var(--tr);
}

.tw-icon {
  width: 50px;
  height: 50px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t1);
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.tw-icon svg {
  width: 24px;
  height: 24px;
  filter: grayscale(1) brightness(150%) contrast(100%);
  opacity: .6;
  transition: var(--tr);
}

.tw-node:hover .tw-icon {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(168, 85, 247, .2);
  transform: scale(1.1);
}

.tw-node:hover .tw-icon svg {
  filter: grayscale(0) brightness(100%);
  opacity: 1;
}

.tw-node:hover span {
  color: var(--t1);
}

.tw-center {
  z-index: 3;
}

.tw-inner {
  padding: 18px 28px;
  background: var(--grad);
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 0 40px rgba(168, 85, 247, .4);
}

/* Node Positioning */
.tw-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tw-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tw-l {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.tw-r {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.tw-tl {
  top: 15%;
  left: 15%;
}

.tw-tr {
  top: 15%;
  right: 15%;
}

.tw-bl {
  bottom: 15%;
  left: 15%;
}

.tw-br {
  bottom: 15%;
  right: 15%;
}

.tw-cl1 {
  top: 30%;
  left: 5%;
}

.tw-vr1 {
  bottom: 30%;
  right: 5%;
}

.tw-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.tw-line {
  stroke: var(--purple);
  stroke-width: 1;
  stroke-opacity: .15;
}

/* MOBILE SYNC */
@media (max-width: 768px) {
  .tech-web {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
  }

  .tw-node {
    position: static;
    transform: none !important;
    width: calc(33.333% - 14px);
  }

  .tw-center,
  .tw-lines {
    display: none;
  }
}

/* WHO WE HELP SECTION */
.who-we-help {
  padding: 120px 0;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, .04), transparent 60%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.audience-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: var(--tr);
}

.audience-card:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(168, 85, 247, .25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.aud-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}

.audience-card p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* SOLUTIONS GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.sol-card {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: var(--r);
  transition: var(--tr);
}

.sol-card:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(168, 85, 247, .3);
  transform: translateY(-5px);
}

.sol-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* INFRASTRUCTURE DIAGRAM */
.infrastructure {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, .04), transparent 70%);
}

.infra-diagram {
  position: relative;
  height: 500px;
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infra-node {
  position: absolute;
  padding: 14px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  color: var(--t1);
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  transition: var(--tr);
  text-align: center;
}

.infra-node:hover {
  border-color: var(--purple);
  box-shadow: 0 0 30px rgba(168, 85, 247, .2);
  transform: scale(1.05);
}

.n-central {
  padding: 24px 36px;
  background: var(--grad);
  border: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(168, 85, 247, .4);
}

.n1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.n2 {
  top: 20%;
  right: 5%;
}

.n3 {
  bottom: 20%;
  right: 5%;
}

.n4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.n5 {
  bottom: 20%;
  left: 5%;
}

.n6 {
  top: 20%;
  left: 5%;
}

.infra-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.infra-line {
  stroke: var(--purple);
  stroke-width: 1.5;
  stroke-opacity: .15;
  stroke-dasharray: 6, 6;
  animation: lineDash 30s linear infinite;
}

@keyframes lineDash {
  to {
    stroke-dashoffset: -100;
  }
}

/* CONTACT CTA SECTION */
.contact-cta {
  padding: 100px 0;
}

.contact-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.contact-cta p {
  color: var(--t2);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 16px;
}

/* MOBILE SYNC */
@media (max-width: 768px) {
  .infra-diagram {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .infra-node {
    position: static;
    transform: none !important;
    width: 100%;
    max-width: 280px;
  }

  .infra-lines {
    display: none;
  }

  .n-central {
    order: -1;
    margin-bottom: 24px;
  }
}

/* --- WATERTING V3 UPDATES --- */

/* --- WATERTING V3 MINIMAL SERVICES GRID --- */
.service-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.sgm-node {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.sgm-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  transition: var(--tr);
}

.sgm-icon svg {
  width: 40px;
  height: 40px;
  filter: grayscale(1) brightness(120%);
  opacity: 0.6;
  transition: var(--tr);
}

.sgm-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.3px;
  transition: var(--tr);
}

/* Tooltip */
.sgm-tooltip {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  width: 240px;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.sgm-node:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.sgm-node:hover .sgm-icon svg {
  filter: grayscale(1) brightness(200%);
  opacity: 1;
  color: #fff;
}

.sgm-node:hover .sgm-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* MOBILE SYNC */
@media (max-width: 768px) {
  .service-grid-minimal {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* PLAY CARDS */
.play-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.play-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  cursor: pointer;
}

.play-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(168, 85, 247, .08), transparent 60%);
  opacity: 0;
  transition: var(--tr);
}

.play-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, .3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(168, 85, 247, .1) inset;
}

.play-card:hover::before {
  opacity: 1;
}

.pc-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.play-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 12px;
  color: var(--t1);
  letter-spacing: -.5px;
}

.play-card p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.6;
}

.pc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  opacity: 0.7;
  transition: var(--tr);
  pointer-events: none;
}

.play-card:hover .pc-btn {
  opacity: 1;
}

.play-card:hover .pc-btn svg {
  transform: translateX(4px);
}

.pc-btn svg {
  transition: var(--tr);
}

.play-card--hl {
  border-color: rgba(168, 85, 247, .3);
  background: linear-gradient(180deg, rgba(168, 85, 247, .05) 0%, rgba(10, 10, 10, 1) 100%);
}

.play-card--hl::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, .8), transparent);
}


/* MODALS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(12px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.95);
  width: 90%;
  max-width: 500px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05) inset;
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(ellipse at top, rgba(168, 85, 247, .15), transparent 70%);
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .05);
  border: none;
  color: var(--t2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}

.modal-close:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--t1);
  letter-spacing: -.5px;
}

.modal-body p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-body li {
  font-size: 14px;
  color: var(--t2);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.modal-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

.modal-body li strong {
  color: var(--t1);
  font-weight: 600;
}

.mt-4 {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .play-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .play-cards {
    grid-template-columns: 1fr;
  }

  .modal {
    width: 95%;
    padding: 30px;
  }
}

/* ============================================================
   DARK LUXURY TECH â€” SERVE TICKER & BENTO SERVICES GRID
   ============================================================ */

/* â”€â”€ WHO WE SERVE TICKER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.serve-ticker-wrap {
  padding: 0 0 16px;
  overflow: hidden;
}

.serve-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 max(24px, 5vw);
  margin-bottom: 8px;
}

.serve-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .5), rgba(0, 245, 255, .3), transparent);
}

.serve-glow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00F5FF;
  box-shadow: 0 0 10px 3px rgba(0, 245, 255, .7), 0 0 20px 6px rgba(0, 245, 255, .3);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(.75);
  }
}

.serve-ticker-inner {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: 24px 0;
}

.serve-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: serveTick 30s linear infinite;
  width: max-content;
}

@keyframes serveTick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.serve-item {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  color: rgba(255, 255, 255, .12);
  letter-spacing: -1px;
  padding: 0 32px;
  transition: color .3s;
  cursor: default;
}

.serve-item:hover {
  color: rgba(255, 255, 255, .55);
}

.serve-sep {
  font-size: 20px;
  color: rgba(124, 58, 237, .5);
  flex-shrink: 0;
}

/* â”€â”€ BENTO SECTION WRAPPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-bento {
  position: relative;
  padding: 100px 0 130px;
  background: #080808;
  overflow: hidden;
}

/* Subtle animated dot-grid background */
.sb-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 40px 40px;
  }
}

.services-bento .container {
  position: relative;
  z-index: 1;
}

/* â”€â”€ SECTION HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sb-header {
  margin-bottom: 64px;
  max-width: 700px;
}

.sb-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00F5FF;
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 245, 255, .25);
  border-radius: 100px;
}

.sb-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.sb-title em {
  font-style: normal;
  background: linear-gradient(135deg, #7C3AED, #00F5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sb-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  max-width: 460px;
}

/* â”€â”€ BENTO GRID LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

/* --- Card placement --- */
/* Hero AI card: columns 1-8, row 1 */
.bento-hero {
  grid-column: span 8;
  min-height: 280px;
}

/* Website Dev: columns 9-12, row 1 */
.bento-grid .bento-card:nth-child(2) {
  grid-column: span 4;
}

/* WhatsApp: columns 1-4, row 2 */
.bento-grid .bento-card:nth-child(3) {
  grid-column: span 4;
}

/* Lead Gen: columns 5-8, row 2 */
.bento-grid .bento-card:nth-child(4) {
  grid-column: span 4;
}

/* Ecommerce wide: columns 9-12 row 2 + spans tall */
.bento-wide {
  grid-column: span 4;
  grid-row: span 2;
}

/* Business Auto: columns 1-6, row 3 */
.bento-grid .bento-card:nth-child(6) {
  grid-column: span 8;
}

/* â”€â”€ BENTO CARD BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bento-card {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1),
    border-color .35s ease,
    box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .16);
}

/* Halo glow on hover */
.bento-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
}

.bento-card:hover .bento-glow {
  opacity: 1;
}

.bento-glow--violet {
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, .18), transparent 70%);
}

.bento-glow--blue {
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, .18), transparent 70%);
}

.bento-glow--green {
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, .15), transparent 70%);
}

.bento-glow--orange {
  background: radial-gradient(circle at 30% 30%, rgba(251, 146, 60, .15), transparent 70%);
}

.bento-glow--cyan {
  background: radial-gradient(circle at 30% 30%, rgba(0, 245, 255, .14), transparent 70%);
}

/* â”€â”€ BENTO INNER CONTENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bento-inner {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  justify-content: space-between;
}

.bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bento-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* â”€â”€ ICON WRAPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bento-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
  flex-shrink: 0;
}

.bento-card:hover .bento-icon-wrap {
  transform: scale(1.12) rotate(-4deg);
}

.bento-icon--violet {
  background: rgba(124, 58, 237, .18);
  color: #a78bfa;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, .3) inset;
}

.bento-icon--violet .bento-card:hover {
  box-shadow: 0 0 30px rgba(124, 58, 237, .4);
}

.bento-icon--blue {
  background: rgba(59, 130, 246, .15);
  color: #93c5fd;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, .25) inset;
}

.bento-icon--green {
  background: rgba(34, 197, 94, .12);
  color: #86efac;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .2) inset;
}

.bento-icon--orange {
  background: rgba(251, 146, 60, .12);
  color: #fdba74;
  box-shadow: 0 0 0 1px rgba(251, 146, 60, .2) inset;
}

.bento-icon--cyan {
  background: rgba(0, 245, 255, .1);
  color: #00F5FF;
  box-shadow: 0 0 0 1px rgba(0, 245, 255, .2) inset;
}

/* â”€â”€ FEATURED BADGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bento-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #00F5FF;
  background: rgba(0, 245, 255, .1);
  border: 1px solid rgba(0, 245, 255, .3);
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(0, 245, 255, .2);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 16px rgba(0, 245, 255, .2);
  }

  50% {
    box-shadow: 0 0 24px rgba(0, 245, 255, .5), 0 0 40px rgba(0, 245, 255, .15);
  }
}

/* â”€â”€ CARD TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bento-name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin: 0;
}

.bento-hero .bento-name {
  font-size: clamp(26px, 3vw, 36px);
}

.bento-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.65;
  margin: 0;
  max-width: 420px;
}

.bento-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(124, 58, 237, .7);
  letter-spacing: .3px;
  transition: color .25s ease, gap .25s ease;
  pointer-events: none;
}

.bento-card:hover .bento-link {
  color: #a78bfa;
  gap: 10px;
}

/* â”€â”€ HERO CARD VISUAL ACCENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bento-hero {
  display: flex;
}

.bento-hero .bento-inner {
  flex: 1;
}

.bento-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
  overflow: hidden;
  opacity: .6;
}

.bento-visual-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, .5) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, .8), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, .8), transparent);
}

.bento-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(60px);
  pointer-events: none;
  animation: orbPulse 4s ease-in-out infinite;
}

.bento-orb--violet {
  background: radial-gradient(circle, rgba(124, 58, 237, .7), transparent 70%);
}

@keyframes orbPulse {

  0%,
  100% {
    opacity: .6;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
  }
}

/* â”€â”€ MOBILE RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .bento-card,
  .bento-hero,
  .bento-wide {
    grid-column: unset;
    grid-row: unset;
    min-height: 200px;
  }

  .bento-visual {
    display: none;
  }

  .sb-title {
    font-size: clamp(40px, 10vw, 60px);
    letter-spacing: -2px;
  }
}

@media (max-width: 600px) {
  .services-bento {
    padding: 70px 0 90px;
  }

  .sb-header {
    margin-bottom: 40px;
  }

  .bento-inner {
    padding: 24px;
  }

  .serve-item {
    font-size: clamp(22px, 6vw, 36px);
    padding: 0 20px;
  }
}
/* ============================================================
   BOOM ARRAY SERVICES GRID
   ============================================================ */

/* -- SECTION WRAPPER --------------------------------------- */
.sa-section {
  position: relative;
  padding: 110px 0 130px;
  background: #0B0B0B;
  overflow: hidden;
}

.sa-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#sa-particle-canvas {
  width: 100%;
  height: 100%;
  opacity: .35;
}

.sa-section .container {
  position: relative;
  z-index: 1;
}

/* -- HEADER ------------------------------------------------ */
.sa-header {
  margin-bottom: 64px;
}

.sa-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.sa-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7C3AED;
  box-shadow: 0 0 12px rgba(124,58,237,.9);
  animation: saDotPulse 2.5s ease-in-out infinite;
}

@keyframes saDotPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(124,58,237,.9); }
  50%       { box-shadow: 0 0 22px rgba(124,58,237,1), 0 0 40px rgba(124,58,237,.4); }
}

.sa-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 16px;
}

.sa-title em {
  font-style: normal;
  background: linear-gradient(135deg, #7C3AED 0%, #00F5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sa-sub {
  font-size: 15px;
  color: rgba(255,255,255,.35);
  max-width: 480px;
  line-height: 1.65;
}

/* -- ARRAY GRID -------------------------------------------- */
.sa-array {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* -- INDIVIDUAL NODE --------------------------------------- */
.sa-node {
  position: relative;
  background: #111116;
  border: none;
  border-radius: 18px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  aspect-ratio: 1 / .85;
  min-height: 200px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.sa-node:hover {
  transform: translateY(-5px) scale(1.01);
}

.sa-node:active {
  transform: scale(.97);
}

/* Gradient stroke border via pseudo+backdrop */
.sa-node-border {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,.4) 0%, rgba(59,130,246,.2) 50%, rgba(0,245,255,.15) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

/* Featured card — brighter animated border */
.sa-node-border--featured {
  background: linear-gradient(135deg, #7C3AED, #00F5FF, #7C3AED);
  background-size: 200% 200%;
  animation: borderFlow 3s linear infinite;
  opacity: .8;
}

@keyframes borderFlow {
  0%   { background-position: 0 0; }
  100% { background-position: 200% 200%; }
}

/* Hover glow spread */
.sa-node-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(var(--c),.18), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}

.sa-node:hover .sa-node-glow {
  opacity: 1;
}

/* -- NODE INNER CONTENT ------------------------------------ */
.sa-node-inner {
  position: relative;
  z-index: 2;
  padding: 28px 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FEATURED badge */
.sa-node-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #00F5FF;
  background: rgba(0,245,255,.08);
  border: 1px solid rgba(0,245,255,.35);
  padding: 3px 10px;
  border-radius: 100px;
  box-shadow: 0 0 14px rgba(0,245,255,.25);
  animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(0,245,255,.25); }
  50%       { box-shadow: 0 0 22px rgba(0,245,255,.6), 0 0 40px rgba(0,245,255,.15); }
}

/* Icon */
.sa-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ic);
  background: color-mix(in srgb, var(--ic) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 25%, transparent);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .sa-icon {
    background: rgba(124, 58, 237, .12);
    border-color: rgba(124, 58, 237, .2);
  }
}

.sa-icon svg {
  width: 22px;
  height: 22px;
}

.sa-node:hover .sa-icon {
  transform: scale(1.1) rotate(-6deg);
}

.sa-label {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.4px;
  line-height: 1.2;
}

.sa-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.55;
  margin-top: auto;
}

/* -- BOOM MODAL OVERLAY ------------------------------------ */
.boom-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.boom-overlay.active {
  pointer-events: all;
  opacity: 1;
}

.boom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(16px) brightness(.6);
  -webkit-backdrop-filter: blur(16px) brightness(.6);
}

.boom-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* The card that BOOMS in */
.boom-card {
  position: relative;
  z-index: 2;
  background: #111116;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 520px;
  width: calc(100% - 48px);
  transform: scale(.8);
  opacity: 0;
  transition:
    transform .55s cubic-bezier(.34,1.56,.64,1),
    opacity   .3s ease;
  overflow: hidden;
}

.boom-overlay.active .boom-card {
  transform: scale(1);
  opacity: 1;
}

/* Top accent line — colored per service */
.boom-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: var(--boom-color, #7C3AED);
  box-shadow: 0 0 24px var(--boom-color, #7C3AED);
}

/* Close button */
.boom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}

.boom-close:hover {
  background: rgba(255,255,255,.13);
  color: #fff;
  transform: rotate(90deg);
}

/* Card icon */
.boom-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.25);
}

.boom-card-icon svg {
  width: 28px;
  height: 28px;
}

/* Title  */
.boom-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Description */
.boom-card-desc {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Start Now CTA */
.boom-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--boom-color, #7C3AED);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .3px;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--boom-color, #7C3AED) 40%, transparent);
}

.boom-cta:hover {
  opacity: .88;
  transform: translateY(-2px);
}

/* -- MOBILE ------------------------------------------------- */
@media (max-width: 860px) {
  .sa-array {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .sa-array {
    grid-template-columns: 1fr;
  }

  .sa-node {
    aspect-ratio: unset;
    min-height: 140px;
  }

  .boom-card {
    padding: 36px 28px;
  }
}
