/* RESET.CSS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  background-color: var(--bg);
  color: var(--t2);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

/* Utility Classes */
.lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 10px;
  display: block;
}

.ttl {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--t1);
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.sub {
  font-size: 17px;
  color: var(--t2);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.75;
  margin: 0 auto 52px;
  text-align: center;
}

.sec {
  padding: 96px 40px;
  max-width: 1200px;
  margin: 0 auto;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.sec-dark {
  padding: 88px 40px;
  background: var(--pain-bg);
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--p);
  color: #fff;
  padding: 17px 34px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px -4px rgba(83, 58, 253, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-p:hover::before {
  transform: translateX(100%);
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -4px rgba(83, 58, 253, 0.55);
}

.btn-p:active {
  transform: translateY(0);
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--p);
  padding: 17px 34px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--pl);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-g:hover {
  background: var(--pp);
  border-color: var(--p);
  transform: translateY(-2px);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--p);
  color: #fff;
  padding: 17px 34px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px -4px rgba(83, 58, 253, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.cta:hover::before {
  transform: translateX(100%);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -4px rgba(83, 58, 253, 0.55);
}

.cta:active {
  transform: translateY(0);
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--p);
  color: #fff;
  padding: 17px 34px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px -4px rgba(83, 58, 253, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-p:hover::before {
  transform: translateX(100%);
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -4px rgba(83, 58, 253, 0.55);
}

.btn-p:active {
  transform: translateY(0);
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--p);
  padding: 17px 34px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--pl);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-g:hover {
  background: var(--pp);
  border-color: var(--p);
  transform: translateY(-2px);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--p);
  color: #fff;
  padding: 17px 34px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px -4px rgba(83, 58, 253, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.cta:hover::before {
  transform: translateX(100%);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -4px rgba(83, 58, 253, 0.55);
}

.cta:active {
  transform: translateY(0);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--p);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cta:hover::after {
  transform: scaleX(1);
}

.cta:active::after {
  transform: scaleX(0);
}

.cta:hover {
  box-shadow: 0 6px 24px rgba(83, 58, 253, 0.6);
}

.cta:active {
  box-shadow: 0 4px 12px rgba(83, 58, 253, 0.3);
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  padding: 0 44px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  height: 64px;
  box-shadow: var(--sh1);
}

.nl {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--t1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.4px;
}

.nl .logo-img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: contain;
}

.nls {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nls a {
  font-size: 14px;
  color: var(--t2);
  text-decoration: none;
  padding: 9px 15px;
  border-radius: 10px;
  transition: all 0.2s;
  font-weight: 400;
}

.nls a:hover {
  color: var(--p);
  background: var(--pp);
}

.nc {
  background: var(--p) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  font-weight: 500 !important;
  padding: 10px 22px !important;
}

.nc:hover {
  background: var(--ph) !important;
  color: #fff !important;
}

.tt {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bs);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--t2);
  flex-shrink: 0;
}

.tt:hover {
  background: var(--pp);
  border-color: var(--p);
  color: var(--p);
  transform: rotate(20deg) scale(1.05);
}

.tt .si {
  display: none;
}

[data-theme="dark"] .tt .si {
  display: block;
}

[data-theme="dark"] .tt .mi {
  display: none;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  color: var(--t1);
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s;
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(85vw, 320px);
  background: var(--bc);
  padding: 88px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.32, .72, 0, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 199;
}

.mob-nav.open {
  transform: translateX(0);
}

.mob-nav a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--t1);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border2);
  transition: color 0.15s;
}

.mob-nav a:hover {
  color: var(--p);
}

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 198;
  backdrop-filter: blur(4px);
}

.mob-overlay.on {
  opacity: 1;
  pointer-events: all;
}

.blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.15;
  animation: blobFloat 40s ease-in-out infinite;
  will-change: transform;
}

.b1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c6bff, #533afd);
  top: -150px;
  left: -100px;
  animation-duration: 50s;
}

.b2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f96bee, #ea2261);
  top: 20%;
  right: -150px;
  animation-delay: -15s;
  animation-duration: 55s;
}

.b3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #06b6d4, #3b82f6);
  bottom: -80px;
  left: 30%;
  animation-delay: -25s;
  opacity: 0.08;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(1%, 1%, 0) scale(1.01);
  }
  66% {
    transform: translate3d(-1%, -1%, 0) scale(.995);
  }
}

[data-theme="dark"] .b1 {
  opacity: 0.1;
}

[data-theme="dark"] .b2 {
  opacity: 0.07;
}

[data-theme="dark"] .b3 {
  opacity: 0.05;
}

.hero > *:not(.blobs) {
  position: relative;
  z-index: 1;
}

.hbg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gb);
  border: 1px solid var(--gbo);
  color: var(--gt);
  font-size: 12px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 36px;
  font-weight: 500;
}

.bd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g);
  flex-shrink: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(.75);
  }
}

.h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  color: var(--t1);
  line-height: 1.03;
  letter-spacing: -1.8px;
  max-width: 950px;
  margin: 0 auto 32px;
}

.h1 em {
  font-style: normal;
  background: linear-gradient(130deg, var(--p) 20%, var(--mag) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradAnim 15s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradAnim {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hs {
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 300;
  color: var(--t2);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 52px;
}

.ha {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.ht {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--tm);
}

.ht span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ck {
  color: var(--g);
  font-weight: 600;
}

.hero-card {
  margin: 72px auto 0;
  max-width: 700px;
  background: var(--bc);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: var(--sh3);
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  animation: cardFloat 20s ease-in-out infinite;
  will-change: transform;
}

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

.hero-card .ci {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--p), var(--mag));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.hero-card h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 14px;
  color: var(--t2);
}

.hero-card .stat {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--p);
  margin-right: 4px;
}

.trust-bar {
  background: var(--bs);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.trust-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--bs), transparent);
}

.trust-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bs), transparent);
}

.trust-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 300s linear infinite;
}

.trust-inner:hover {
  animation-play-state: paused;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tm);
  flex-shrink: 0;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--p);
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.trust-item:hover {
  animation-play-state: paused;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tm);
  flex-shrink: 0;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--p);
  flex-shrink: 0;
}

.pain-section {
  background: var(--pain-bg);
  padding: 88px 40px;
  text-align: center;
}

.pain-section h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 400;
  color: #f0edff;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.pain-section > p {
  font-size: 17px;
  color: rgba(240, 237, 255, 0.72);
  margin: 0 auto 48px;
  max-width: 620px;
  line-height: 1.75;
}

.pcg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.pc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 107, 255, 0.12);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s cubic-bezier(.34, 1.56, 0.64, 1);
}

.pc:hover {
  background: rgba(124, 107, 255, 0.08);
  border-color: rgba(124, 107, 255, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.pi {
  font-size: 32px;
  display: block;
  margin-bottom: 18px;
}

.pc h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #f0edff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pc p {
  font-size: 14px;
  color: rgba(240, 237, 255, 0.6);
  line-height: 1.65;
}

.pkg {
  background: var(--bc);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  position: relative;
  box-shadow: var(--sh1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pkg:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--p);
}

.pkg.ft {
  border-color: var(--p);
  box-shadow: 0 0 0 1px var(--p), var(--sh1);
}

.pkg.ft:hover {
  box-shadow: 0 0 0 1px var(--p), var(--sh3);
}

.pbg {
  position: absolute;
  top: -13px;
  left: 30px;
  background: linear-gradient(135deg, var(--p), var(--ph));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(83, 58, 253, 0.4);
}

.pn {
  font-size: 12px;
  font-weight: 600;
  color: var(--p);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pp2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--t1);
  letter-spacing: -1.2px;
  line-height: 1;
}

.pp2 sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 400;
}

.pp2 span {
  font-size: 17px;
  color: var(--t2);
  font-weight: 300;
}

.ps {
  font-size: 13px;
  color: var(--t2);
  margin: 10px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border2);
}

.pb {
  font-size: 13px;
  font-weight: 500;
  color: var(--p);
  margin-bottom: 18px;
}

.pd {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.65;
}

.pf {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border2);
}

.pf li {
  font-size: 14px;
  font-weight: 300;
  color: var(--t2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pf li::before {
  content: '✓';
  color: var(--g);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pnt {
  font-size: 12px;
  color: var(--tm);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border2);
  font-style: italic;
  line-height: 1.5;
}

.pkg.cs {
  opacity: 0.55;
  border-style: dashed;
  pointer-events: none;
}

.pkg.cs .pbg {
  background: var(--tm);
  box-shadow: none;
}

.port-section {
  background: var(--bs);
  padding: 96px 40px;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.port-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1060px;
  margin: 52px auto 0;
}

.dc {
  background: var(--bc);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dc:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--p);
}

.dpv {
  width: 100%;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.dpv.chatbot {
  background: linear-gradient(145deg, #0f0c29, #302b63, #24243e);
}

.dpv.sms {
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
}

.dpv.rev {
  background: linear-gradient(145deg, #f0fdf4, #dcfce7, #bbf7d0);
}

[data-theme="dark"] .dpv.rev {
  background: linear-gradient(145deg, #052e16, #14532d, #166534);
}

.db {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.di {
  font-size: 11px;
  font-weight: 600;
  color: var(--p);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.dt {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--t1);
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.dd {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
}

.dtg {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dtag {
  font-size: 11px;
  font-weight: 500;
  color: var(--p);
  background: var(--pp);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.drow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.dlk {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--p);
  text-decoration: none;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dlk:hover {
  gap: 10px;
  color: var(--ph);
}

.dlive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gt);
  background: var(--gb);
  border: 1px solid var(--gbo);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  max-width: 130px;
  line-height: 1.5;
  backdrop-filter: blur(4px);
}

.dlive::before {
  content: '●';
  font-size: 8px;
  animation: pulse 2s infinite;
}

.port-cta {
  text-align: center;
  margin-top: 52px;
}

.port-note {
  font-size: 14px;
  color: var(--tm);
  margin-top: 10px;
}

.cw {
  width: 240px;
  background: var(--bc);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.82);
  transform-origin: center center;
}

.ch {
  background: var(--p);
  color: #fff;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.cav {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.cht {
  font-size: 12px;
  font-weight: 600;
}

.chs {
  font-size: 10px;
  opacity: 0.75;
}

.cb {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: var(--bs);
}

.cm {
  padding: 9px 12px;
  border-radius: 10px;
  line-height: 1.45;
  max-width: 88%;
  font-size: 11px;
}

.cm.bot {
  background: var(--bc);
  border: 1px solid var(--border2);
  color: var(--t1);
  align-self: flex-start;
}

.cm.usr {
  background: linear-gradient(135deg, var(--p), var(--ph));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.cin {
  padding: 9px 11px;
  border-top: 1px solid var(--border2);
  background: var(--bc);
  display: flex;
  gap: 7px;
  align-items: center;
}

.cib {
  flex: 1;
  height: 24px;
  background: var(--bs);
  border-radius: 12px;
  font-size: 10px;
  color: var(--tm);
  padding: 0 9px;
  display: flex;
  align-items: center;
}

.csnd {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

.sn2 {
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}

.sm {
  padding: 9px 13px;
  border-radius: 15px;
  font-size: 11px;
  line-height: 1.45;
  margin-bottom: 7px;
  max-width: 92%;
}

.sm.out {
  background: #0a84ff;
  color: #fff;
  margin-left: auto;
}

.st2 {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 8px;
}

.rci {
  width: 240px;
  background: var(--bc);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  padding: 18px;
  text-align: center;
  border: 1px solid var(--border2);
  transform: scale(0.82);
  transform-origin: center center;
}

.rl {
  font-size: 30px;
  margin-bottom: 8px;
}

.rb {
  font-size: 12px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 3px;
}

.rs3 {
  font-size: 10px;
  color: var(--tm);
  margin-bottom: 14px;
}

.stars {
  font-size: 22px;
  margin-bottom: 12px;
}

.rbtn {
  background: var(--p);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-block;
}

.rsb {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 10, 46, 0.85);
  color: #fff;
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 9px;
  max-width: 130px;
  line-height: 1.5;
  backdrop-filter: blur(4px);
}

.typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  background: var(--bs);
  border: 1px solid var(--border2);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
  width: fit-content;
  align-self: flex-start;
}

.typing span {
  width: 8px;
  height: 8px;
  background: var(--tm);
  border-radius: 50%;
  animation: typeDot 3s ease infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: scale(.8) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  background: var(--bs);
  border: 1px solid var(--border2);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
  width: fit-content;
  align-self: flex-start;
}

.typing span {
  width: 8px;
  height: 8px;
  background: var(--tm);
  border-radius: 50%;
  animation: typeDot 3s ease infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typeDot {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-7px);
  }
}

.aciw {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--border2);
  background: var(--bs);
}

.aci {
  flex: 1;
  background: var(--bc);
  border: 1.5px solid var(--border2);
  color: var(--t1);
  padding: 13px 18px;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.aci:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 4px var(--inp-focus);
}

.acs {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--ph));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(83, 58, 253, 0.4);
}

.acs:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(83, 58, 253, 0.6);
}

.acs svg {
  width: 20px;
  height: 20px;
}

.qrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  align-self: flex-start;
}

.qr {
  border: 1.5px solid var(--p);
  color: var(--p);
  background: transparent;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.qr:hover {
  background: var(--p);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(83, 58, 253, 0.4);
}

.anim {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  background: var(--bs);
  border: 1px solid var(--border2);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
  width: fit-content;
  align-self: flex-start;
}

.typing span {
  width: 8px;
  height: 8px;
  background: var(--tm);
  border-radius: 50%;
  animation: typeDot 3s ease infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: scale(.8) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes typeDot {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-7px);
  }
}

.aciw {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--border2);
  background: var(--bs);
}

.aci {
  flex: 1;
  background: var(--bc);
  border: 1.5px solid var(--border2);
  color: var(--t1);
  padding: 13px 18px;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.aci:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 4px var(--inp-focus);
}

.acs {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--ph));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(83, 58, 253, 0.4);
}

.acs:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(83, 58, 253, 0.6);
}

.acs svg {
  width: 20px;
  height: 20px;
}

.qrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  align-self: flex-start;
}

.qr {
  border: 1.5px solid var(--p);
  color: var(--p);
  background: transparent;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.qr:hover {
  background: var(--p);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(83, 58, 253, 0.4);
}

@media (max-width: 980px) {
  .pcg,
  .pkgs,
  .dg,
  .stps,
  .stts {
    grid-template-columns: repeat(2, 1fr);
  }

  .fi {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-card {
    flex-direction: column;
    text-align: center;
  }

  .fi {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .fr {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .trust-inner {
    gap: 28px;
  }

  .acw {
    width: calc(100vw - 40px);
    bottom: 16px;
    right: 16px;
  }

  .acw {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 20px;
    height: 68px;
  }

  .nls li:not(:last-child):not(:nth-last-child(2)):not(:nth-last-child(3)) {
    display: none;
  }

  .nls .nc {
    display: none;
  }

  .ham {
    display: flex;
  }

  .hero {
    padding: 88px 20px 60px;
  }

  .pain-section,
  .sec,
  .port-section,
  .who-section,
  .res-section,
  .ctc-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    letter-spacing: -1px;
    font-size: clamp(34px, 9vw, 48px);
  }

  .ha {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .ha .btn-p,
  .ha .btn-g {
    width: 100%;
    justify-content: center;
  }

  .pcg,
  .pkgs,
  .stps,
  .stts,
  .dg {
    grid-template-columns: 1fr;
  }

  .fr {
    grid-template-columns: 1fr;
  }

  .fi {
    grid-template-columns: 1fr;
  }

  .fb2 {
    flex-direction: column;
    text-align: center;
  }

  .fsoc {
    justify-content: center;
  }

  .cf {
    padding: 28px 22px;
  }

  .hero-card {
    display: none;
  }

  .trust-inner {
    gap: 28px;
  }

  .acw {
    width: calc(100vw - 40px);
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 20px;
    height: 68px;
  }

  .nls li:not(:last-child):not(:nth-last-child(2)):not(:nth-last-child(3)) {
    display: none;
  }

  .nls .nc {
    display: none;
  }

  .ham {
    display: flex;
  }

  .hero {
    padding: 88px 20px 60px;
  }

  .pain-section,
  .sec,
  .port-section,
  .who-section,
  .res-section,
  .ctc-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    letter-spacing: -1px;
    font-size: clamp(34px, 9vw, 48px);
  }

  .ha {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .ha .btn-p,
  .ha .btn-g {
    width: 100%;
    justify-content: center;
  }

  .pcg,
  .pkgs,
  .stps,
  .stts,
  .dg {
    grid-template-columns: 1fr;
  }

  .fr {
    grid-template-columns: 1fr;
  }

  .fi {
    grid-template-columns: 1fr;
  }

  .fb2 {
    flex-direction: column;
    text-align: center;
  }

  .fsoc {
    justify-content: center;
  }

  .cf {
    padding: 28px 22px;
  }

  .hero-card {
    display: none;
  }

  .trust-inner {
    gap: 28px;
  }

  .acw {
    width: calc(100vw - 40px);
    bottom: 16px;
    right: 16px;
  }

  .acw {
    bottom: 16px;
    right: 16px;
  }
}

/* ANIMATIONS */
.anim {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  background: var(--bs);
  border: 1px solid var(--border2);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
  width: fit-content;
  align-self: flex-start;
}

.typing span {
  width: 8px;
  height: 8px;
  background: var(--tm);
  border-radius: 50%;
  animation: typeDot 3s ease infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: scale(.8) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes typeDot {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-7px);
  }
}

.aciw {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--border2);
  background: var(--bs);
}

.aci {
  flex: 1;
  background: var(--bc);
  border: 1.5px solid var(--border2);
  color: var(--t1);
  padding: 13px 18px;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.aci:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 4px var(--inp-focus);
}

.acs {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--ph));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(83, 58, 253, 0.4);
}

.acs:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(83, 58, 253, 0.6);
}

.acs svg {
  width: 20px;
  height: 20px;
}

.qrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  align-self: flex-start;
}

.qr {
  border: 1.5px solid var(--p);
  color: var(--p);
  background: transparent;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.qr:hover {
  background: var(--p);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(83, 58, 253, 0.4);
}

@media (max-width: 980px) {
  .pcg,
  .pkgs,
  .dg,
  .stps,
  .stts {
    grid-template-columns: repeat(2, 1fr);
  }

  .fi {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-card {
    flex-direction: column;
    text-align: center;
  }

  .trust-inner {
    gap: 28px;
  }

  .acw {
    width: calc(100vw - 40px);
    bottom: 16px;
    right: 16px;
  }

  .acw {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 20px;
    height: 68px;
  }

  .nls li:not(:last-child):not(:nth-last-child(2)):not(:nth-last-child(3)) {
    display: none;
  }

  .nls .nc {
    display: none;
  }

  .ham {
    display: flex;
  }

  .hero {
    padding: 88px 20px 60px;
  }

  .pain-section,
  .sec,
  .port-section,
  .who-section,
  .res-section,
  .ctc-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    letter-spacing: -1px;
    font-size: clamp(34px, 9vw, 48px);
  }

  .ha {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .ha .btn-p,
  .ha .btn-g {
    width: 100%;
    justify-content: center;
  }

  .pcg,
  .pkgs,
  .stps,
  .stts,
  .dg {
    grid-template-columns: 1fr;
  }

  .fr {
    grid-template-columns: 1fr;
  }

  .fi {
    grid-template-columns: 1fr;
  }

  .fb2 {
    flex-direction: column;
    text-align: center;
  }

  .fsoc {
    justify-content: center;
  }

  .cf {
    padding: 28px 22px;
  }

  .hero-card {
    display: none;
  }

  .trust-inner {
    gap: 28px;
  }

  .acw {
    width: calc(100vw - 40px);
    bottom: 16px;
    right: 16px;
  }

  .acw {
    bottom: 16px;
    right: 16px;
  }
}

/* ANIMATIONS */
.anim {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}