/* ===== Global design tokens (EasyClient landing) ===== */
:root {
  --ln-ink: #111827;              /* rgb(17,24,39) */
  --ln-ink-soft: #6b7280;
  --ln-paper: #f7f8fa;            /* rgb(247,248,250) */
  --ln-paper-alt: #ffffff;
  --ln-accent: #00a884;
  --ln-accent-dark: #009574;
  --ln-accent-soft: rgba(0, 168, 132, 0.12);
  --ln-line: #e5e7eb;
  --ln-shadow: 0 20px 45px -20px rgba(15, 26, 23, 0.18);
  --ln-radius: 14px;
  --ln-font: Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Circular theme reveal (View Transitions API) */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  z-index: 1;
}

::view-transition-new(root) {
  z-index: 9999;
}

/* Overall site background + typography */
html,
body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: var(--ln-paper) !important;
  background-color: var(--ln-paper) !important;
  font-family: var(--ln-font) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  color: var(--ln-ink) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ln-font) !important;
  color: var(--ln-ink);
}

p {
  font-family: var(--ln-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ln-ink-soft);
}

/* ===== EasyClient Preloader (from style.css) ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader--hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader__content {
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.preloader__text {
  font-family: var(--ln-font);
  font-size: 2.5rem;
  font-weight: 100;
  letter-spacing: 0.3rem;
  color: #333;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  display: inline-block;
}

.preloader__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader__letter:nth-child(1) { animation-delay: 0.1s; }
.preloader__letter:nth-child(2) { animation-delay: 0.2s; }
.preloader__letter:nth-child(3) { animation-delay: 0.3s; }
.preloader__letter:nth-child(4) { animation-delay: 0.4s; }
.preloader__letter:nth-child(5) { animation-delay: 0.5s; }
.preloader__letter:nth-child(6) { animation-delay: 0.6s; }
.preloader__letter:nth-child(7) { animation-delay: 0.7s; }
.preloader__letter:nth-child(8) { animation-delay: 0.8s; }
.preloader__letter:nth-child(9) { animation-delay: 0.9s; }
.preloader__letter:nth-child(10) { animation-delay: 1s; }

/* Sticky header — match reference before/after scroll */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  width: 100%;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
}

.header.header--scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: color-mix(in srgb, var(--ln-paper) 88%, transparent);
  border-bottom: 1px solid var(--ln-line) !important;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 40px !important;
}

.header .navbar {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}

/* Side margins like reference page wrap */
.header .container,
.hero-new .container {
  max-width: 1240px !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

@media (max-width: 720px) {
  .header .container,
  .hero-new .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Offset page content because header is fixed */
body {
  padding-top: 88px;
}

/* Brand logo + EasyClient text */
.navbar__logo {
  gap: 0;
}

.navbar__logo .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
  user-select: none;
}

.navbar__logo .logo-box {
  height: 40px;
  min-width: 40px;
  max-width: 120px;
  width: auto;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.navbar__logo .brand-logo-img,
.navbar__logo .logo-box img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.navbar__logo .brand-text,
.navbar__logo h6 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  color: var(--ln-ink);
  letter-spacing: -0.02em;
  font-family: var(--ln-font);
  transition: color 0.25s ease;
}

.navbar__logo .brand-text__crm,
.navbar__logo .brand-text span,
.navbar__logo h6 span {
  color: #00a884;
  transition: color 0.25s ease;
}

/* Hover: logo pop + green glow; whats turns same green as CRM */
.navbar__logo .brand-link:hover .logo-box {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: rgba(0, 168, 132, 0.45) 0px 8px 24px;
}

.navbar__logo .brand-link:hover .brand-text,
.navbar__logo .brand-link:hover h6 {
  color: #00a884;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.header-actions .lang-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  padding: 3.6px 7.5px;
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgb(229, 231, 235);
  background-color: rgb(255, 255, 255);
  color: inherit;
  cursor: pointer;
  user-select: none;
  appearance: none;
  outline: 0;
  transition: 0.2s;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.header-actions .lang-select:hover {
  border-color: rgb(0, 168, 132);
  color: rgb(0, 168, 132);
  background: rgba(0, 168, 132, 0.06);
  transform: translateY(-1px);
}

.header-actions .lang-select:hover .lang-select__label,
.header-actions .lang-select:hover .lang-select__chevron,
.header-actions .lang-select:hover .lang-select__icon {
  color: rgb(0, 168, 132);
}

.header-actions .lang-select__icon {
  width: 1em;
  height: 1em;
  font-size: 14px;
  flex-shrink: 0;
  fill: currentColor;
  color: rgb(0, 168, 132);
  display: inline-block;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-actions .lang-select__label {
  margin: 0;
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.66;
  color: rgb(107, 114, 128);
  text-transform: capitalize;
}

.header-actions .lang-select__chevron {
  width: 1em;
  height: 1em;
  font-size: 14px;
  flex-shrink: 0;
  fill: currentColor;
  color: rgb(156, 163, 175);
  display: inline-block;
  transition: transform 0.2s;
  transform: rotate(0deg);
}

.header-actions .icon-btn.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0;
  margin: 0;
  margin-left: 6px;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  text-align: center;
  flex: 0 0 auto;
  padding: 5px;
  font-size: 1.125rem;
  color: rgb(107, 114, 128);
  border-radius: 10px;
  border: 1px solid rgb(229, 231, 235);
  width: 36px;
  height: 36px;
  transition: 0.25s;
}

.header-actions .icon-btn.theme-toggle:hover {
  border-color: rgb(0, 168, 132);
  color: rgb(0, 168, 132);
  background: rgba(0, 168, 132, 0.06);
  transform: translateY(-1px) rotate(15deg);
}

/* Simple tooltip — stays level while button tilts */
.header-actions .icon-btn.theme-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(97, 97, 97, 0.92);
  color: #fff;
  border: 0;
  box-shadow: none;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 20;
}

.header-actions .icon-btn.theme-toggle:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) rotate(-15deg);
}

.header-actions .theme-toggle__moon,
.header-actions .theme-toggle__sun {
  width: 1em;
  height: 1em;
  font-size: 17px;
  flex-shrink: 0;
  fill: currentColor;
  display: inline-block;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-actions .theme-toggle__sun {
  display: none;
}

.header-actions .icon-btn:not(.theme-toggle) {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--ln-line);
  background: var(--ln-paper-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ln-ink-soft);
  cursor: pointer;
  padding: 0;
}

.header-actions .icon-btn:not(.theme-toggle):hover {
  color: var(--ln-accent-dark);
  border-color: var(--ln-accent);
}

.header-actions .btn-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  margin-left: 6px;
  min-width: 64px;
  padding: 4.5px 12px;
  border-radius: 10px;
  border: 1px solid rgb(229, 231, 235);
  background-color: transparent;
  box-shadow: none;
  color: rgb(17, 24, 39) !important;
  font-family: var(--ln-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
  text-transform: none;
  text-decoration: none !important;
  cursor: pointer;
  user-select: none;
  transition: 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.header-actions .btn-signin:hover {
  border-color: rgb(0, 168, 132);
  color: rgb(0, 168, 132) !important;
  background: rgba(0, 168, 132, 0.06);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Header menu items — before/after hover */
.header .navbar-nav {
  gap: 4px;
  align-items: center;
}

.header .navbar-nav .nav-link,
.header .navbar-nav .navbar__link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none !important;
  font-family: var(--ln-font) !important;
  line-height: 1.75 !important;
  min-width: 64px;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  text-transform: none;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #6b7280 !important;
  border-radius: 8px;
  padding: 4.5px 10.5px !important;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

/* Smooth underline motion */
.header .navbar-nav .nav-link::after,
.header .navbar-nav .navbar__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 60%;
  height: 2px;
  border-radius: 2px;
  background: #00a884;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s;
  pointer-events: none;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .navbar__link:hover,
.header .navbar-nav .nav-link:focus,
.header .navbar-nav .navbar__link:focus {
  color: #00a884 !important;
  background: rgba(0, 168, 132, 0.07) !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.header .navbar-nav .nav-link:hover::after,
.header .navbar-nav .navbar__link:hover::after,
.header .navbar-nav .nav-link:focus::after,
.header .navbar-nav .navbar__link:focus::after {
  transform: translateX(-50%) scaleX(1);
}

/* Do not highlight current/active menu item by default */
.header .navbar-nav .nav-item.active > .nav-link,
.header .navbar-nav .current-menu-item > .nav-link,
.header .navbar-nav .current_page_item > .nav-link,
.header .navbar-nav .current-menu-item > .navbar__link,
.header .navbar-nav .current_page_item > .navbar__link {
  color: #6b7280 !important;
  background: transparent !important;
}

.header .navbar-nav .nav-item.active > .nav-link::after,
.header .navbar-nav .current-menu-item > .nav-link::after,
.header .navbar-nav .current_page_item > .nav-link::after {
  transform: translateX(-50%) scaleX(0);
}

/* Home/current item should still animate on hover like others */
.header .navbar-nav .nav-item.active > .nav-link:hover,
.header .navbar-nav .current-menu-item > .nav-link:hover,
.header .navbar-nav .current_page_item > .nav-link:hover,
.header .navbar-nav .current-menu-item > .navbar__link:hover,
.header .navbar-nav .current_page_item > .navbar__link:hover {
  color: #00a884 !important;
  background: rgba(0, 168, 132, 0.07) !important;
}

.header .navbar-nav .nav-item.active > .nav-link:hover::after,
.header .navbar-nav .current-menu-item > .nav-link:hover::after,
.header .navbar-nav .current_page_item > .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hide old filled/outline header buttons if present */
.header .navbar__btn {
  display: none;
}

/* Dark mode — flip tokens so whole page follows */
html[data-theme="dark"] {
  color-scheme: dark;
  --ln-ink: #e6edf3;              /* rgb(230,237,243) */
  --ln-ink-soft: #9ca3af;
  --ln-paper: #0d1117;            /* rgb(13,17,23) */
  --ln-paper-alt: #161b22;
  --ln-accent-soft: rgba(0, 168, 132, 0.18);
  --ln-line: rgba(255, 255, 255, 0.12);
  --ln-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.55);
}

html[data-theme="dark"],
html[data-theme="dark"] body {
  background: var(--ln-paper) !important;
  background-color: var(--ln-paper) !important;
  color: var(--ln-ink) !important;
}

html[data-theme="dark"] .header.header--scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .navbar__logo .brand-link:hover .brand-text,
html[data-theme="dark"] .navbar__logo .brand-link:hover h6,
html[data-theme="dark"] .navbar__logo .brand-link:hover .brand-text__crm,
html[data-theme="dark"] .navbar__logo .brand-link:hover .brand-text span {
  color: #00a884 !important;
}

html[data-theme="dark"] .header .navbar-nav .nav-link,
html[data-theme="dark"] .header .navbar-nav .navbar__link {
  color: #9ca3af !important;
}

html[data-theme="dark"] .header .navbar-nav .nav-link:hover,
html[data-theme="dark"] .header .navbar-nav .navbar__link:hover,
html[data-theme="dark"] .header .navbar-nav .nav-link:focus,
html[data-theme="dark"] .header .navbar-nav .navbar__link:focus,
html[data-theme="dark"] .header .navbar-nav .nav-item.active > .nav-link:hover,
html[data-theme="dark"] .header .navbar-nav .current-menu-item > .nav-link:hover,
html[data-theme="dark"] .header .navbar-nav .current_page_item > .nav-link:hover {
  color: #00a884 !important;
  background: rgba(0, 168, 132, 0.07) !important;
}

html[data-theme="dark"] .header-actions .lang-select,
html[data-theme="dark"] .header-actions .icon-btn,
html[data-theme="dark"] .header-actions .btn-signin {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e8eef5 !important;
}

html[data-theme="dark"] .header-actions .lang-select:hover,
html[data-theme="dark"] .header-actions .icon-btn.theme-toggle:hover,
html[data-theme="dark"] .header-actions .btn-signin:hover {
  border-color: rgb(0, 168, 132);
  color: rgb(0, 168, 132) !important;
  background: rgba(0, 168, 132, 0.06);
}

html[data-theme="dark"] .header-actions .lang-select:hover .lang-select__label,
html[data-theme="dark"] .header-actions .lang-select:hover .lang-select__chevron,
html[data-theme="dark"] .header-actions .lang-select:hover .lang-select__icon {
  color: rgb(0, 168, 132);
}

html[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

html[data-theme="dark"] .hero-new__media {
  background: var(--ln-paper-alt);
}

html[data-theme="dark"] section,
html[data-theme="dark"] .growth-section-bg {
  background-color: transparent;
  color: var(--ln-ink);
}

html[data-theme="dark"] .growth-section,
html[data-theme="dark"] .rounded-4.shadow-sm {
  background: var(--ln-paper-alt) !important;
  color: var(--ln-ink);
  box-shadow: none !important;
  border: 1px solid var(--ln-line);
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6 {
  color: var(--ln-ink) !important;
}

html[data-theme="dark"] p {
  color: var(--ln-ink-soft);
}

@media (max-width: 991px) {
  .header-actions .lang-select__label {
    display: none;
  }
}

/* ===== Hero ===== */
@keyframes heroFloatMini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-new {
  position: relative;
  padding: 15px 0 48px;
  background: var(--ln-paper);
  color: var(--ln-ink);
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero-new {
    /* padding-top: 84px; */
    padding-bottom: 60px;
  }
}

.hero-new__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(0, 168, 132, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(0, 168, 132, 0.05), transparent 70%);
}

.hero-new__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .hero-new__container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

.hero-new__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}

@media (min-width: 900px) {
  .hero-new__row {
    flex-direction: row;
    align-items: center;
  }

  .hero-new__row > :not(:first-child) {
    margin-left: 36px;
  }
}

.hero-new__copy {
  flex: 1 1 0%;
  max-width: 540px;
  width: 100%;
  text-align: center;
  padding-right:50px;
}

@media (min-width: 900px) {
  .hero-new__copy {
    text-align: left;
  }
}

.hero-new__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  margin-bottom: 18px;
  padding: 0 6px;
  border-radius: 6px;
  border: 1px solid rgba(0, 168, 132, 0.2);
  background-color: rgba(0, 168, 132, 0.1);
  color: rgb(0, 168, 132);
  font-family: var(--ln-font);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.hero-new__badge svg {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-right: -2px;
  fill: rgb(97, 97, 97);
  flex-shrink: 0;
}

.hero-new__badge span {
  padding: 0 6px;
}

.hero-new__title {
  margin: 0 0 12px;
  color: var(--ln-ink);
  font-family: var(--ln-font) !important;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

@media (min-width: 600px) {
  .hero-new__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) {
  .hero-new__title {
    font-size: 3.5rem;
  }
}

.hero-new__title span {
  color: rgb(0, 168, 132);
}

.hero-new__title-sub {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-family: var(--ln-font);
  color: rgb(107, 114, 128) !important;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

@media (min-width: 900px) {
  .hero-new__title-sub {
    font-size: 4.8rem;
    letter-spacing: -2.5px;
  }
}

/* Rotating gradient typewriter phrases */
.hero-new__title .hero-new__typewriter {
  display: inline-block;
  min-height: 1.05em;
  line-height: 1.05;
  font-weight: 800;
  white-space: nowrap;
  vertical-align: bottom;
  position: relative;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(125deg, rgb(0, 168, 132) 0%, rgba(0, 168, 132, 0.125) 60%, rgb(0, 168, 132) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  transition: opacity 0.22s, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  animation: gradientShift 4s ease infinite;
}

.hero-new__title .hero-new__typewriter::after {
  content: "";
  display: inline-block;
  width: 0.12em;
  height: 0.9em;
  margin-left: 2px;
  vertical-align: -0.05em;
  background: currentColor;
  background-color: rgb(0, 168, 132);
  animation: heroCaretBlink 0.75s step-end infinite;
}

.hero-new__title .hero-new__typewriter.is-exit {
  opacity: 0;
  transform: translateY(8px);
}

.hero-new__title .hero-new__typewriter.is-enter {
  opacity: 0;
  transform: translateY(-8px);
}

.hero-new__title .hero-new__typewriter[data-variant="smart-inbox"],
.hero-new__title .hero-new__typewriter[data-variant="qr-meta"] {
  background-image: linear-gradient(125deg, rgb(0, 168, 132) 0%, rgba(0, 168, 132, 0.125) 60%, rgb(0, 168, 132) 100%);
}

.hero-new__title .hero-new__typewriter[data-variant="smart-inbox"]::after,
.hero-new__title .hero-new__typewriter[data-variant="qr-meta"]::after {
  background-color: rgb(0, 168, 132);
}

.hero-new__title .hero-new__typewriter[data-variant="ai-voice"] {
  background-image: linear-gradient(125deg, rgb(59, 130, 246) 0%, rgb(98, 155, 247) 60%, rgb(59, 130, 246) 100%);
}

.hero-new__title .hero-new__typewriter[data-variant="ai-voice"]::after {
  background-color: rgb(59, 130, 246);
}

.hero-new__title .hero-new__typewriter[data-variant="bulk"] {
  background-image: linear-gradient(125deg, rgb(239, 68, 68) 0%, rgb(242, 105, 105) 60%, rgb(239, 68, 68) 100%);
}

.hero-new__title .hero-new__typewriter[data-variant="bulk"]::after {
  background-color: rgb(239, 68, 68);
}

.hero-new__title .hero-new__typewriter[data-variant="flow"],
.hero-new__title .hero-new__typewriter[data-variant="chatbot"] {
  background-image: linear-gradient(125deg, rgb(13, 146, 118) 0%, rgba(13, 146, 118, 0.125) 60%, rgb(13, 146, 118) 100%);
}

.hero-new__title .hero-new__typewriter[data-variant="flow"]::after,
.hero-new__title .hero-new__typewriter[data-variant="chatbot"]::after {
  background-color: rgb(13, 146, 118);
}

.hero-new__title .hero-new__typewriter[data-variant="phonebook"],
.hero-new__title .hero-new__typewriter[data-variant="wa-auto"] {
  background-image: linear-gradient(125deg, rgb(16, 185, 129) 0%, rgb(63, 199, 154) 60%, rgb(16, 185, 129) 100%);
}

.hero-new__title .hero-new__typewriter[data-variant="phonebook"]::after,
.hero-new__title .hero-new__typewriter[data-variant="wa-auto"]::after {
  background-color: rgb(16, 185, 129);
}

.hero-new__title .hero-new__typewriter[data-variant="rest-api"] {
  background-image: linear-gradient(125deg, rgb(245, 158, 11) 0%, rgb(247, 177, 59) 60%, rgb(245, 158, 11) 100%);
}

.hero-new__title .hero-new__typewriter[data-variant="rest-api"]::after {
  background-color: rgb(245, 158, 11);
}

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

@keyframes heroCaretBlink {
  from, to { opacity: 0; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-new__title .hero-new__typewriter {
    animation: none;
    transition: none;
  }

  .hero-new__title .hero-new__typewriter::after {
    display: none;
  }
}

.hero-new__desc {
  margin: 0 0 24px;
  color: rgb(107, 114, 128);
  font-family: var(--ln-font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 600px) {
  .hero-new__desc {
    font-size: 1.1rem;
  }
}

.hero-new__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero-new__tags {
    justify-content: flex-start;
  }
}

.hero-new__tags span {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.04);
  color: rgb(0, 168, 132);
  font-family: var(--ln-font);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

html[data-theme="dark"] .hero-new__tags span {
  background-color: rgba(255, 255, 255, 0.06);
}

.hero-new__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero-new__actions {
    justify-content: flex-start;
  }
}

.hero-new .btn-primary,
.hero-new__actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  border: 0;
  border-radius: 12px;
  background: rgb(0, 168, 132);
  color: #fff !important;
  font-family: var(--ln-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none !important;
  box-shadow: rgba(0, 168, 132, 0.4) 0 8px 24px 0;
  transition: 0.22s;
}

.hero-new .btn-primary svg,
.hero-new__actions .btn-primary svg,
.hero-new .btn-secondary svg,
.hero-new__actions .btn-secondary svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-new .btn-primary:hover,
.hero-new__actions .btn-primary:hover {
  background-color: rgb(0, 168, 132);
  box-shadow: rgba(0, 168, 132, 0.35) 0 4px 12px 0;
  transform: translateY(-1px);
  opacity: 0.9;
  color: #fff !important;
}

.hero-new .btn-secondary,
.hero-new__actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.2);
  background: transparent;
  color: var(--ln-ink) !important;
  font-family: var(--ln-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none !important;
  transition: 0.22s;
}

html[data-theme="dark"] .hero-new .btn-secondary,
html[data-theme="dark"] .hero-new__actions .btn-secondary {
  border-color: rgba(230, 237, 243, 0.2);
}

.hero-new .btn-secondary:hover,
.hero-new__actions .btn-secondary:hover {
  border-color: rgb(0, 168, 132);
  color: rgb(0, 168, 132) !important;
  background: rgba(0, 168, 132, 0.06);
}

/* Visual / workspace mockup */
.hero-new__visual {
  position: relative;
  flex: 1 1 0%;
  width: 100%;
  /* max-width: 520px; */
  margin: 36px auto 0;
  perspective: 1200px;
}

@media (min-width: 900px) {
  .hero-new__visual {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-new__float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4.8px;
  padding: 4.32px 8.1px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.2);
  box-shadow: rgba(0, 0, 0, 0.08) 0 8px 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: heroFloatMini 4s ease-in-out infinite;
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  white-space: nowrap;
}

html[data-theme="dark"] .hero-new__float {
  background-color: rgba(22, 27, 34, 0.95);
  color: #e6edf3;
  border-color: rgba(0, 168, 132, 0.25);
}

.hero-new__float--wa {
  top: -21px;
  left: 10px;
}

.hero-new__float--ai {
  bottom: 20px;
  right: -10px;
  animation-delay: 1.2s;
  border-color: rgba(0, 168, 132, 0.25);
}

.hero-new__float-icon--wa {
  width: 16px;
  height: 16px;
  background-color: rgb(37, 211, 102);
  mask: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/whatsapp.svg") center / contain no-repeat;
  -webkit-mask: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/whatsapp.svg") center / contain no-repeat;
  flex-shrink: 0;
}

.hero-new__float svg {
  width: 16px;
  height: 16px;
  fill: rgb(0, 168, 132);
  flex-shrink: 0;
}

.hero-workspace {
  color: var(--ln-ink);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: rgba(0, 0, 0, 0.1) 0 20px 50px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
  min-height: 380px;
}

html[data-theme="dark"] .hero-workspace {
  background-color: rgba(22, 27, 34, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: rgba(0, 0, 0, 0.35) 0 20px 50px;
}

.hero-workspace__bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid rgb(229, 231, 235);
  background-color: rgba(0, 0, 0, 0.02);
}

.hero-workspace__dot + .hero-workspace__dot {
  margin-left: 6px;
}

html[data-theme="dark"] .hero-workspace__bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.03);
}

.hero-workspace__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-workspace__dot--r { background-color: rgb(255, 95, 87); }
.hero-workspace__dot--y { background-color: rgb(254, 187, 46); }
.hero-workspace__dot--g { background-color: rgb(40, 200, 64); }

.hero-workspace__bar p {
  margin: 0 0 0 12px;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 11px;
  font-weight: 600;
  color: rgb(156, 163, 175);
}

.hero-workspace__body {
  display: flex;
  min-height: 380px;
}

@media (max-width: 575px) {
  .hero-workspace__body {
    display: block;
    min-height: 0;
  }

  .hero-workspace__rail,
  .hero-workspace__inbox {
    display: none;
  }
}

.hero-workspace__rail {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 9px;
  border-right: 1px solid rgb(229, 231, 235);
  background-color: rgba(0, 0, 0, 0.02);
}

.hero-workspace__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px;
  border-radius: 12px;
  background-color: transparent;
  cursor: pointer;
}

.hero-workspace__channel.is-active {
  background-color: rgba(37, 211, 102, 0.15);
}

.hero-workspace__channel-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

.hero-workspace__channel-icon--whatsapp {
  background-color: rgb(37, 211, 102);
  mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/whatsapp.svg");
  -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/whatsapp.svg");
}

.hero-workspace__channel-icon--telegram {
  background-color: rgb(34, 158, 217);
  mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/telegram.svg");
  -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/telegram.svg");
}

.hero-workspace__channel-icon--instagram {
  background-color: rgb(225, 48, 108);
  mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/instagram.svg");
  -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/instagram.svg");
}

.hero-workspace__channel-icon--messenger {
  background-color: rgb(0, 132, 255);
  mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/messenger.svg");
  -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/messenger.svg");
}

.hero-workspace__inbox {
  width: 220px;
  flex-shrink: 0;
  padding: 9px;
  border-right: 1px solid rgb(229, 231, 235);
  box-sizing: border-box;
  min-width: 0;
}

.hero-workspace__chat {
  flex: 1 1 0%;
  min-width: 0;
  padding: 12px;
  box-sizing: border-box;
}

html[data-theme="dark"] .hero-workspace__rail,
html[data-theme="dark"] .hero-workspace__inbox {
  border-right-color: rgba(255, 255, 255, 0.08);
}

.hero-workspace__label {
  margin: 0 0 12px;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 13px;
  font-weight: 800;
  color: var(--ln-ink);
}

.hero-workspace__threads {
  display: flex;
  flex-direction: column;
}

.hero-workspace__thread + .hero-workspace__thread {
  margin-top: 6px;
}

.hero-workspace__thread {
  padding: 7.2px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.hero-workspace__thread.is-active {
  background-color: rgba(0, 168, 132, 0.1);
  border: 1px solid rgba(0, 168, 132, 0.2);
}

html[data-theme="dark"] .hero-workspace__thread {
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hero-workspace__thread.is-active {
  background-color: rgba(0, 168, 132, 0.15);
  border-color: rgba(0, 168, 132, 0.3);
}

.hero-workspace__thread-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 3px;
}

.hero-workspace__thread-top strong {
  margin: 0;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--ln-ink);
}

.hero-workspace__thread-top span {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 10px;
  color: rgb(156, 163, 175);
}

.hero-workspace__thread p {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--ln-font);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: rgb(107, 114, 128);
}

html[data-theme="dark"] .hero-workspace__thread p {
  color: #9ca3af;
}

.hero-workspace__chat-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
}

.hero-workspace__chat-meta {
  margin-left: 6px;
}

.hero-workspace__avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  border: 2px solid rgba(0, 168, 132, 0.15);
  background-color: rgb(37, 211, 102);
}

.hero-workspace__avatar-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  background-color: rgb(255, 255, 255);
  mask: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/whatsapp.svg") center / contain no-repeat;
  -webkit-mask: url("https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/whatsapp.svg") center / contain no-repeat;
}

.hero-workspace__chat-meta strong {
  display: block;
  margin: 0;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--ln-ink);
}

.hero-workspace__chat-meta span {
  display: block;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 11px;
  color: rgb(16, 185, 129);
}

.hero-workspace__flow {
  color: var(--ln-ink);
  background-color: rgba(59, 130, 246, 0.05);
  margin-bottom: 12px;
  border: 1px solid rgb(229, 231, 235);
  padding: 9px;
  border-radius: 12px;
}

html[data-theme="dark"] .hero-workspace__flow {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(59, 130, 246, 0.1);
}

.hero-workspace__flow-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 6px;
}

.hero-workspace__flow-title svg {
  width: 1em;
  height: 1em;
  font-size: 16px;
  flex-shrink: 0;
  fill: currentColor;
  color: rgb(59, 130, 246);
}

.hero-workspace__flow-title p {
  margin: 0 0 0 6px;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 700;
  color: rgb(59, 130, 246);
}

.hero-workspace__flow > p {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 11px;
  color: rgb(107, 114, 128);
}

.hero-workspace__bubble-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-workspace__bubble {
  background-color: rgb(0, 168, 132);
  color: rgb(255, 255, 255);
  padding: 7.2px;
  border-radius: 12px 12px 0;
  max-width: 80%;
}

.hero-workspace__bubble p {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 12px;
  color: inherit;
}

/* Stats */
.hero-new__stats {
  display: grid;
  gap: 12px;
  margin-top: 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .hero-new__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .hero-new__stats {
    margin-top: 60px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-new__stat {
  color: rgb(17, 24, 39);
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(0, 168, 132, 0.15);
  gap: 12px;
  box-shadow: none;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-new__stat--green {
  border-color: rgba(0, 168, 132, 0.15);
}

.hero-new__stat--green .hero-new__stat-icon {
  background-color: rgba(0, 168, 132, 0.1);
  color: rgb(0, 168, 132);
}

.hero-new__stat--teal {
  border-color: rgba(13, 146, 118, 0.15);
}

.hero-new__stat--teal .hero-new__stat-icon {
  background-color: rgba(13, 146, 118, 0.1);
  color: rgb(13, 146, 118);
}

.hero-new__stat--emerald {
  border-color: rgba(16, 185, 129, 0.15);
}

.hero-new__stat--emerald .hero-new__stat-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: rgb(16, 185, 129);
}

.hero-new__stat--blue {
  border-color: rgba(59, 130, 246, 0.15);
}

.hero-new__stat--blue .hero-new__stat-icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: rgb(59, 130, 246);
}

html[data-theme="dark"] .hero-new__stat {
  background-color: rgba(22, 27, 34, 0.8);
  color: #e6edf3;
}

.hero-new__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-new__stat-icon svg {
  width: 1em;
  height: 1em;
  font-size: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-new__stat-value {
  margin: 0;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 22px;
  font-weight: 800;
  color: rgb(17, 24, 39);
}

html[data-theme="dark"] .hero-new__stat-value {
  color: #e6edf3;
}

.hero-new__stat-label {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--ln-font);
  font-size: 12px;
  color: rgb(107, 114, 128);
}

@media (max-width: 575px) {
  .hero-new__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-new .btn-primary,
  .hero-new .btn-secondary {
    justify-content: center;
  }

  .hero-new__float--ai {
    right: 8px;
  }
}

/* ===== Integrations & Partners (marquee) ===== */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes pulse {
  0%, 100% {
    box-shadow: rgba(0, 168, 132, 0.35) 0px 0px 0px 3px;
  }
  50% {
    box-shadow: rgba(0, 168, 132, 0.08) 0px 0px 0px 7px;
  }
}

.integrations {
  padding: 60px 0;
  background: var(--ln-paper);
  color: var(--ln-ink);
  overflow: hidden;
  border-top: 1px solid rgb(229, 231, 235);
  border-bottom: 1px solid rgb(229, 231, 235);
}

html[data-theme="dark"] .integrations {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.integrations__container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.integrations__intro {
  text-align: center;
  margin-bottom: 36px;
}

.integrations__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 3.9px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 168, 132, 0.25);
  background-color: rgba(0, 168, 132, 0.06);
}

.integrations__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgb(0, 168, 132);
  flex-shrink: 0;
  box-shadow: rgba(0, 168, 132, 0.35) 0px 0px 0px 3px;
  animation-name: pulse;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
}

.integrations__badge-text {
  margin: 0;
  font-family: var(--ln-font);
  line-height: 1.66;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 10px;
  color: rgb(0, 168, 132);
  text-transform: uppercase;
}

.integrations__title {
  margin: 0 0 9px;
  font-size: 1.5rem;
  font-family: var(--ln-font) !important;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: rgb(17, 24, 39);
}

@media (min-width: 900px) {
  .integrations__title {
    font-size: 2.4rem;
  }
}

html[data-theme="dark"] .integrations__title {
  color: var(--ln-ink);
}

.integrations__title span {
  background: linear-gradient(135deg, rgb(0, 168, 132), rgba(0, 168, 132, 0.125));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.integrations__desc {
  margin: 0 auto;
  max-width: 400px;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: var(--ln-font);
  color: rgb(107, 114, 128);
  line-height: 1.85;
}

.integrations__marquee {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  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%);
}

.integrations__marquee + .integrations__marquee {
  margin-top: 16px;
}

.integrations__track {
  display: flex;
  width: max-content;
  align-items: center;
}

.integrations__track--left {
  animation: scrollLeft 18s linear infinite;
}

.integrations__track--right {
  animation: scrollRight 18s linear infinite;
}

.integrations__marquee:hover .integrations__track {
  animation-play-state: paused;
}

.integrations__card {
  width: 140px;
  height: 72px;
  margin: 0 7.5px;
  padding: 0 21px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgb(229, 231, 235);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    rgba(255, 255, 255, 0.9) 0 1px 0 0 inset,
    rgba(0, 0, 0, 0.05) 0 4px 16px 0;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.integrations__card:hover {
  transform: translateY(-8px);
  box-shadow:
    rgba(255, 255, 255, 0.9) 0 1px 0 0 inset,
    rgba(0, 168, 132, 0.18) 0 10px 24px 0;
}

html[data-theme="dark"] .integrations__card {
  background-color: rgba(22, 27, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.25) 0 4px 16px 0;
}

.integrations__card img {
  width: 50px;
  height: 40px;
  object-fit: contain;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .integrations__track--left,
  .integrations__track--right {
    animation: none;
  }
}

/* ===== Features (tabbed) ===== */
@keyframes featuresTabProgress {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes featuresPanelIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes featuresPulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes featuresSoundBar {
  0%, 100% { height: 4px; opacity: 0.35; }
  50% { height: 22px; opacity: 1; }
}

.features {
  position: relative;
  padding: 72px 0;
  background: var(--ln-paper);
  color: var(--ln-ink);
  overflow: hidden;
}

.features__container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  position: relative;
  z-index: 1;
}

.features__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 4.5px;
  border: 1px solid rgb(229, 231, 235);
  border-radius: 18px;
  background-color: #fff;
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .features__tabs {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.features__tab {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--ln-ink-soft);
  cursor: pointer;
  text-align: left;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.features__tab-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 8px;
  background: rgb(0, 168, 132);
  pointer-events: none;
}

.features__tab.is-active .features__tab-progress {
  animation: featuresTabProgress 8s linear forwards;
}

.features__tab.is-active {
  background: rgba(0, 168, 132, 0.1);
  border-color: rgba(0, 168, 132, 0.3);
  color: var(--ln-ink);
}

.features__tab:hover {
  background: rgba(0, 168, 132, 0.06);
}

.features__tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: inherit;
  flex-shrink: 0;
}

.features__tab.is-active .features__tab-icon {
  background: rgba(0, 168, 132, 0.15);
  color: rgb(0, 168, 132);
}

.features__tab-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.features__tab-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.features__tab-num {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
  opacity: 0.75;
  font-family: var(--ln-font);
}

.features__tab.is-active .features__tab-num {
  color: rgb(0, 168, 132);
  opacity: 1;
}

.features__tab-label {
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.3;
  font-family: var(--ln-font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.features__tab[data-features-tab="2"] .features__tab-label {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.features__panel[hidden] {
  display: none !important;
}

.features__panel.is-active {
  animation: featuresPanelIn 0.45s ease;
}

.features__copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.features__title {
  margin: 0 0 12px;
  font-family: var(--ln-font) !important;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ln-ink);
}

.features__title span {
  background: linear-gradient(135deg, rgb(0, 168, 132), rgba(0, 168, 132, 0.35));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 03 Campaigns & Webhooks — amber accent */
.features__tab[data-features-tab="2"].is-active {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

.features__tab[data-features-tab="2"].is-active .features__tab-progress {
  background: linear-gradient(135deg, rgb(245, 158, 11), rgb(247, 177, 59));
}

.features__tab[data-features-tab="2"].is-active .features__tab-icon {
  background: rgba(245, 158, 11, 0.18);
  color: rgb(245, 158, 11);
}

.features__tab[data-features-tab="2"].is-active .features__tab-num {
  color: rgb(245, 158, 11);
}

.features__panel[data-features-panel="2"] .features__title span {
  background: linear-gradient(135deg, rgb(245, 158, 11), rgb(247, 177, 59));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 04 AI Voice Calling — blue accent */
.features__tab[data-features-tab="3"].is-active {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.28);
}

.features__tab[data-features-tab="3"].is-active .features__tab-progress {
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(98, 155, 247));
}

.features__tab[data-features-tab="3"].is-active .features__tab-icon {
  background: rgba(59, 130, 246, 0.18);
  color: rgb(59, 130, 246);
}

.features__tab[data-features-tab="3"].is-active .features__tab-num {
  color: rgb(59, 130, 246);
}

.features__panel[data-features-panel="3"] .features__title span {
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(98, 155, 247));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.features__desc {
  margin: 0 auto;
  max-width: 620px;
  color: rgb(107, 114, 128);
  font-size: 14px;
  line-height: 1.65;
  font-family: var(--ln-font);
}

.features__visual {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
}

.features__frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: rgba(0, 0, 0, 0.1) 0 24px 60px;
}

html[data-theme="dark"] .features__frame {
  background: rgba(22, 27, 34, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

.features__frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgb(229, 231, 235);
  background: rgba(0, 0, 0, 0.02);
}

html[data-theme="dark"] .features__frame-bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.features__frame-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(255, 95, 87);
}

.features__frame-bar span:nth-child(2) { background: rgb(254, 187, 46); }
.features__frame-bar span:nth-child(3) { background: rgb(40, 200, 64); }

.features__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.features__float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: rgba(0, 0, 0, 0.08) 0 8px 20px;
  font-size: 12px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  font-family: var(--ln-font);
  animation: featuresFloatY 4s ease-in-out infinite;
  white-space: nowrap;
}

html[data-theme="dark"] .features__float {
  background: rgba(22, 27, 34, 0.95);
  color: #e6edf3;
  border-color: rgba(255, 255, 255, 0.1);
}

.features__float--wa-api { top: 18%; left: -8px; }
.features__float--wa-qr { bottom: 22%; left: -4px; animation-delay: 0.8s; }
.features__float--tg { top: 28%; right: -6px; animation-delay: 1.2s; }
.features__float--ig { bottom: 18%; right: -2px; animation-delay: 1.6s; }

.features__float-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.features__float-dot--wa { background: rgb(37, 211, 102); }
.features__float-dot--tg { background: rgb(34, 158, 217); }
.features__float-dot--ig { background: rgb(225, 48, 108); }

.features__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features__card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgb(229, 231, 235);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

html[data-theme="dark"] .features__card {
  background: rgba(22, 27, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.features__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
}

.features__card--green .features__card-icon { background: rgb(0, 168, 132); }
.features__card--blue .features__card-icon { background: rgb(59, 130, 246); }
.features__card--teal .features__card-icon { background: rgb(16, 185, 129); }

.features__card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.features__card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--ln-font) !important;
  color: var(--ln-ink);
}

.features__card > p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgb(107, 114, 128);
  font-family: var(--ln-font);
}

.features__card-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--ln-font);
}

.features__card-meta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.features__card-meta--green { color: rgb(0, 168, 132); }
.features__card-meta--blue { color: rgb(59, 130, 246); }
.features__card-meta--teal { color: rgb(16, 185, 129); }

.features__voice-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .features__voice-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.features__voice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features__voice-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgb(229, 231, 235);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .features__voice-item {
  background: rgba(22, 27, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.features__voice-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 132, 0.12);
  color: rgb(0, 168, 132);
}

.features__voice-item-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.features__voice-item-copy {
  min-width: 0;
}

.features__voice-item-copy strong {
  display: block;
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ln-ink);
  font-family: var(--ln-font);
  line-height: 1.3;
}

.features__voice-item-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgb(107, 114, 128);
  font-family: var(--ln-font);
}

.features__phone {
  width: min(320px, 100%);
  margin: 0 auto;
  padding: 10px;
  border-radius: 36px;
  background: #111827;
  box-shadow: 0 28px 60px -24px rgba(15, 26, 23, 0.45);
}

.features__phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 18px 16px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0b3d32 0%, #075e54 42%, #128c7e 100%);
  color: #fff;
  overflow: hidden;
}

.features__phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ln-font);
  opacity: 0.92;
}

.features__phone-encrypted {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
}

.features__phone-encrypted svg {
  width: 12px;
  height: 12px;
  fill: #25d366;
}

.features__phone-caller {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.features__phone-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  flex-shrink: 0;
}

.features__phone-avatar svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.features__phone-caller-text {
  flex: 1;
  min-width: 0;
}

.features__phone-caller-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ln-font);
  line-height: 1.2;
}

.features__phone-listening {
  display: inline-block;
  margin-top: 3px;
  font-size: 12px;
  color: #86efac;
  font-family: var(--ln-font);
  animation: featuresListening 1.4s ease-in-out infinite;
}

.features__phone-timer {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ln-font);
  opacity: 0.9;
}

.features__phone-transcript {
  margin-top: 28px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.features__phone-transcript-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--ln-font);
}

.features__phone-transcript p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ln-font);
}

.features__phone-transcript em {
  font-style: normal;
  font-weight: 700;
  color: #86efac;
  margin-right: 6px;
}

.features__phone-actions {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 8px;
}

.features__phone-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: default;
  font-family: var(--ln-font);
  font-size: 11px;
  font-weight: 600;
  padding: 0;
}

.features__phone-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  padding: 14px;
  box-sizing: content-box;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.features__phone-btn--end svg {
  background: #ef4444;
  padding: 16px;
}

.platform {
  background: rgba(0, 168, 132, 0.024);
  border-top: 1px solid rgb(229, 231, 235);
  border-bottom: 1px solid rgb(229, 231, 235);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--ln-ink);
}

html[data-theme="dark"] .platform {
  background: rgba(0, 168, 132, 0.05);
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.platform__container {
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
  padding-left: 12px !important;
  padding-right: 12px !important;
  position: relative;
  z-index: 1;
}

.platform__intro {
  text-align: center;
  margin-bottom: 48px;
}

.platform__badge {
  max-width: 100%;
  font-family: var(--ln-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 22px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 11px;
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
  white-space: nowrap;
  border: 1px solid rgba(0, 168, 132, 0.25);
  border-radius: 9px;
  padding: 0;
}

.platform__badge-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 8px;
}

.platform__title {
  margin: 0 0 12px;
  font-size: 2rem;
  font-family: var(--ln-font) !important;
  font-weight: 950;
  letter-spacing: -1.6px;
  color: rgb(17, 24, 39);
  line-height: 1.08;
}

@media (min-width: 900px) {
  .platform__title {
    font-size: 2.85rem;
  }
}

html[data-theme="dark"] .platform__title {
  color: var(--ln-ink);
}

.platform__title span {
  background: linear-gradient(135deg, rgb(0, 168, 132), rgba(0, 168, 132, 0.35));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.platform__desc {
  margin: 0 auto;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: var(--ln-font);
  color: rgb(107, 114, 128);
  max-width: 620px;
  line-height: 1.9;
}

.platform__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .platform__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .platform__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes featureIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform__card {
  color: rgb(17, 24, 39);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px 0px, rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
  border-radius: 24px;
  border: 1px solid rgb(229, 231, 235);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  overflow: hidden;
  position: relative;
  padding: 21px 21px 24px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s, border-color 0.28s;
  animation: featureIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.platform__card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 24px 0px, rgba(0, 0, 0, 0.06) 0px 2px 6px 0px;
  border-color: rgba(0, 168, 132, 0.35);
}

html[data-theme="dark"] .platform__card {
  color: var(--ln-ink);
  background-color: rgba(22, 27, 34, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
}

.platform__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.platform__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  box-shadow: rgba(0, 168, 132, 0.24) 0px 10px 28px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.platform__card:hover .platform__icon {
  transform: scale(1.06);
}

.platform__icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.platform__icon--blue { background: linear-gradient(135deg, rgb(25, 118, 210), rgb(66, 165, 245)); }
.platform__icon--purple { background: linear-gradient(135deg, rgb(124, 58, 237), rgb(167, 139, 250)); }
.platform__icon--amber { background: linear-gradient(135deg, rgb(245, 158, 11), rgb(251, 191, 36)); }
.platform__icon--green { background: linear-gradient(135deg, rgb(0, 168, 132), rgb(52, 211, 153)); }
.platform__icon--indigo { background: linear-gradient(135deg, rgb(79, 70, 229), rgb(129, 140, 248)); }
.platform__icon--orange { background: linear-gradient(135deg, rgb(37, 99, 235), rgb(96, 165, 250)); }
.platform__icon--pink { background: linear-gradient(135deg, rgb(22, 163, 74), rgb(134, 239, 172)); }
.platform__icon--violet { background: linear-gradient(135deg, rgb(147, 51, 234), rgb(244, 114, 182)); }
.platform__icon--cyan { background: linear-gradient(135deg, rgb(15, 118, 110), rgb(45, 212, 191)); }

.platform__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ln-font);
  font-size: 10px;
  font-weight: 800;
  height: 23px;
  line-height: 1.5;
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
  white-space: nowrap;
  border: 1px solid rgba(0, 168, 132, 0.23);
  border-radius: 8px;
  padding: 0 8px;
}

.platform__card-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-family: var(--ln-font) !important;
  font-weight: 900;
  letter-spacing: -0.45px;
  color: rgb(17, 24, 39);
  line-height: 1.25;
}

html[data-theme="dark"] .platform__card-title {
  color: var(--ln-ink);
}

.platform__card-desc {
  margin: 0 0 15px;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: var(--ln-font);
  line-height: 1.8;
  color: rgb(107, 114, 128);
}

.platform__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5.1px;
}

.platform__pill {
  padding: 3.3px 8.1px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--ln-font);
  background-color: rgba(0, 168, 132, 0.07);
  border: 1px solid rgba(0, 168, 132, 0.18);
  color: rgb(0, 168, 132);
  white-space: nowrap;
  transition: transform 0.25s;
}

.platform__card:hover .platform__pill {
  transform: translateY(-3px);
}

/* ===== Testimonials ===== */
.testimonials {
  padding-top: 84px;
  padding-bottom: 84px;
  background: var(--ln-paper);
  color: var(--ln-ink);
}

.testimonials__container {
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

@media (min-width: 600px) {
  .testimonials__container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

.testimonials__intro {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__badge {
  max-width: 100%;
  font-family: var(--ln-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 11px;
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid rgba(0, 168, 132, 0.267);
  padding: 0;
}

.testimonials__badge-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 8px;
}

.testimonials__title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.3;
  font-family: var(--ln-font) !important;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: rgb(17, 24, 39);
}

@media (min-width: 900px) {
  .testimonials__title {
    font-size: 2.8rem;
  }
}

html[data-theme="dark"] .testimonials__title {
  color: var(--ln-ink);
}

.testimonials__title span {
  color: rgb(0, 168, 132);
}

.testimonials__desc {
  margin: 0 auto;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: var(--ln-font);
  color: rgb(107, 114, 128);
  max-width: 420px;
  line-height: 1.9;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonials__card {
  background-color: rgb(255, 255, 255);
  color: rgb(17, 24, 39);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px 0px, rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
  border-radius: 32px;
  border: 1px solid rgb(229, 231, 235);
  height: 100%;
  padding: 21px 21px 24px;
  transition: 0.3s;
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 24px 0px, rgba(0, 0, 0, 0.06) 0px 2px 6px 0px;
}

html[data-theme="dark"] .testimonials__card {
  background-color: rgba(22, 27, 34, 0.9);
  color: var(--ln-ink);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonials__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: rgba(0, 168, 132, 0.055);
  border: 1px solid rgba(0, 168, 132, 0.19);
  margin-bottom: 12px;
  color: rgb(0, 168, 132);
}

.testimonials__quote-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.testimonials__stars {
  display: flex;
  gap: 1.8px;
  margin-bottom: 9px;
  color: rgb(245, 158, 11);
}

.testimonials__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonials__quote {
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: var(--ln-font);
  line-height: 1.85;
  font-style: italic;
  color: rgb(107, 114, 128);
  font-style: italic;
  min-height: 100px;
}


.testimonials__divider {
  margin: 0 0 12px;
  border: 0;
  border-bottom: 1px solid rgb(229, 231, 235);
}

html[data-theme="dark"] .testimonials__divider {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.testimonials__avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ln-font);
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  border: 2px solid rgba(0, 168, 132, 0.15);
  width: 40px;
  height: 40px;
  font-size: 13px;
  font-weight: 800;
  color: rgb(255, 255, 255);
}

.testimonials__avatar--green {
  background-color: rgb(0, 168, 132);
  border-color: rgba(0, 168, 132, 0.15);
}

.testimonials__avatar--blue {
  background-color: rgb(13, 146, 118);
  border-color: rgba(59, 130, 246, 0.2);
}

.testimonials__avatar--purple {
  background-color: rgb(16, 185, 129);
  border-color: rgba(139, 92, 246, 0.2);
}

.testimonials__name {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.43;
  font-family: var(--ln-font);
  font-weight: 700;
  color: rgb(17, 24, 39);
}

html[data-theme="dark"] .testimonials__name {
  color: var(--ln-ink);
}

.testimonials__role {
  margin: 0;
  font-family: var(--ln-font);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.66;
  color: rgb(107, 114, 128);
}

/* ===== Pricing ===== */
.pricing {
  padding-top: 84px;
  padding-bottom: 84px;
  background: rgba(0, 168, 132, 0.02);
  border-top: 1px solid rgb(229, 231, 235);
  color: var(--ln-ink);
}

html[data-theme="dark"] .pricing {
  background: rgba(0, 168, 132, 0.05);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.pricing__container {
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

@media (min-width: 600px) {
  .pricing__container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

.pricing__intro {
  text-align: center;
  margin-bottom: 48px;
}

.pricing__badge {
  max-width: 100%;
  font-family: var(--ln-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 11px;
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid rgba(0, 168, 132, 0.267);
  padding: 0;
}

.pricing__badge-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 8px;
}

.pricing__title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.3;
  font-family: var(--ln-font) !important;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: rgb(17, 24, 39);
}

@media (min-width: 900px) {
  .pricing__title {
    font-size: 2.8rem;
  }
}

html[data-theme="dark"] .pricing__title {
  color: var(--ln-ink);
}

.pricing__title span {
  color: rgb(0, 168, 132);
}

.pricing__desc {
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--ln-font);
  max-width: 460px;
  line-height: 1.9;
  color: rgb(107, 114, 128);
}

.pricing__tabs {
  display: inline-flex;
  gap: 4px;
  margin: 0 auto 28px;
  padding: 4px;
  border: 1px solid rgb(229, 231, 235);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.pricing__tab {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--ln-font);
  font-size: 13px;
  font-weight: 700;
  color: rgb(107, 114, 128);
  padding: 8px 18px;
  border-radius: 999px;
}

.pricing__tab.is-active {
  background: rgb(0, 168, 132);
  color: #fff;
}

.pricing__grid.is-hidden,
.pricing__grid[hidden] {
  display: none !important;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 600px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing__card {
  background-color: rgb(255, 255, 255);
  color: rgb(17, 24, 39);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px 0px, rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
  border-radius: 32px;
  height: 100%;
  position: relative;
  overflow: visible;
  border: 1px solid rgb(229, 231, 235);
  transition: 0.3s;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px 0px, rgba(0, 0, 0, 0.06) 0px 2px 6px 0px;
}

.pricing__card--popular {
  border-color: rgb(0, 168, 132);
  box-shadow: rgba(0, 168, 132, 0.16) 0px 12px 32px 0px, rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
}

html[data-theme="dark"] .pricing__card {
  background-color: rgba(22, 27, 34, 0.9);
  color: var(--ln-ink);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .pricing__card--popular {
  border-color: rgb(0, 168, 132);
}

.pricing__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgb(0, 168, 132);
  color: #fff;
  font-family: var(--ln-font);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  z-index: 2;
}

.pricing__popular-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.pricing__icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 168, 132, 0.267);
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
}

.pricing__icon--popular {
  background-color: rgb(0, 168, 132);
  border-color: rgb(0, 168, 132);
  color: #fff;
}

.pricing__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.pricing__plan-name {
  margin: 0 0 3px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: var(--ln-font) !important;
  font-weight: 800;
  color: rgb(17, 24, 39);
}

html[data-theme="dark"] .pricing__plan-name {
  color: var(--ln-ink);
}

.pricing__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  font-family: var(--ln-font);
  font-weight: 700;
  font-size: 10px;
  margin-bottom: 12px;
  align-self: flex-start;
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 8px;
}

.pricing__chip--trial {
  background-color: rgba(13, 146, 118, 0.08);
  color: rgb(13, 146, 118);
  border-color: rgba(13, 146, 118, 0.267);
}

.pricing__chip--paid {
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
  border-color: rgba(0, 168, 132, 0.267);
}

.pricing__plan-desc {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: var(--ln-font);
  line-height: 1.7;
  color: rgb(107, 114, 128);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.8125rem * 1.7 * 2);
}

.pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 4.8px;
  margin-bottom: 3px;
}

.pricing__price-old {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--ln-font);
  color: rgb(156, 163, 175);
  text-decoration: line-through;
}

.pricing__price {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.4;
  font-family: var(--ln-font);
  font-weight: 900;
  color: rgb(0, 168, 132);
}

.pricing__period {
  margin: 0 0 18px;
  font-family: var(--ln-font);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.66;
  display: block;
  color: rgb(107, 114, 128);
}

.pricing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  width: 100%;
  min-width: 64px;
  padding: 8.4px 20px;
  border-radius: 24px;
  font-family: var(--ln-font);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.75;
  text-transform: none;
  text-decoration: none !important;
  cursor: pointer;
  user-select: none;
  transition: 0.25s;
  box-shadow: none;
}

.pricing__btn--outline {
  border: 1.5px solid rgb(0, 168, 132);
  background-color: transparent;
  color: rgb(0, 168, 132) !important;
}

.pricing__btn--outline:hover {
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132) !important;
}

.pricing__btn--filled {
  border: 1.5px solid rgb(0, 168, 132);
  background-color: rgb(0, 168, 132);
  color: #fff !important;
}

.pricing__btn--filled:hover {
  background-color: rgb(0, 149, 116);
  border-color: rgb(0, 149, 116);
  color: #fff !important;
}

.pricing__divider {
  margin: 0 0 18px;
  border: 0;
  border-bottom: 1px solid rgb(229, 231, 235);
}

html[data-theme="dark"] .pricing__divider {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing__features {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}

.pricing__features-title {
  margin: 0 0 3px;
  font-size: 0.8125rem;
  line-height: 1.57;
  font-family: var(--ln-font) !important;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

html[data-theme="dark"] .pricing__features-title {
  color: var(--ln-ink);
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 7.2px;
}

.pricing__feature svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  color: rgb(16, 185, 129);
  flex-shrink: 0;
}

.pricing__feature p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.43;
  font-family: var(--ln-font);
  color: rgb(107, 114, 128);
  display: flex;
  align-items: center;
  gap: 4.8px;
}

.pricing__feature-value {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  height: 18px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: rgb(0, 168, 132);
  background: rgba(0, 168, 132, 0.08);
  border: 1px solid rgba(0, 168, 132, 0.18);
}

/* ===== Trust strip ===== */
.trust-strip {
  padding-top: 36px;
  padding-bottom: 36px;
  border-top: 1px solid rgb(229, 231, 235);
  border-bottom: 1px solid rgb(229, 231, 235);
  background: var(--ln-paper);
}

html[data-theme="dark"] .trust-strip {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.trust-strip__container {
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

@media (min-width: 600px) {
  .trust-strip__container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  justify-content: center;
}

@media (min-width: 600px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.2px;
}

.trust-strip__icon {
  display: inline-flex;
  color: rgb(0, 168, 132);
  flex-shrink: 0;
}

.trust-strip__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trust-strip__label {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.43;
  font-family: var(--ln-font);
  font-weight: 700;
  color: rgb(107, 114, 128);
}

/* ===== CTA banner ===== */
.cta-banner {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--ln-paper);
}

@media (min-width: 900px) {
  .cta-banner {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}

.cta-banner__container {
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

@media (min-width: 600px) {
  .cta-banner__container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

.cta-banner__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background-color: rgba(0, 168, 132, 0.04);
  border: 1px solid rgba(0, 168, 132, 0.12);
  backdrop-filter: blur(24px);
}

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

.cta-banner__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__blob--1 {
  top: -40%;
  left: -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(rgba(0, 168, 132, 0.14) 0%, rgba(0, 0, 0, 0) 65%);
  filter: blur(60px);
}

.cta-banner__blob--2 {
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(rgba(13, 146, 118, 0.1) 0%, rgba(0, 0, 0, 0) 65%);
  filter: blur(70px);
}

.cta-banner__dots {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: radial-gradient(rgb(17, 24, 39) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 24px 24px;
}

html[data-theme="dark"] .cta-banner__dots {
  background-image: radial-gradient(rgb(255, 255, 255) 1px, rgba(0, 0, 0, 0) 1px);
}

.cta-banner__line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
}

.cta-banner__line--top {
  top: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 168, 132, 0.5), rgba(0, 168, 132, 0.6), rgba(0, 0, 0, 0));
}

.cta-banner__line--bottom {
  bottom: 0;
  left: 20%;
  right: 20%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(13, 146, 118, 0.3), rgba(0, 0, 0, 0));
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 36px;

}

@media (min-width: 900px) {
  .cta-banner__inner {
    padding: 54px 60px;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    justify-content: space-between;
  }
}

.cta-banner__copy {
  flex: 1 1 0%;
}

@media (min-width: 900px) {
  .cta-banner__copy {
    max-width: 520px;
  }
}

.cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 4.5px;
  margin-bottom: 15px;
  padding: 3px 7.5px;
  border-radius: 8px;
  background-color: rgba(0, 168, 132, 0.09);
  border: 1px solid rgba(0, 168, 132, 0.15);
  color: rgb(0, 168, 132);
}

.cta-banner__eyebrow svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

.cta-banner__eyebrow span {
  margin: 0;
  font-family: var(--ln-font);
  line-height: 1.66;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: rgb(0, 168, 132);
}

.cta-banner__title {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.15;
  font-family: var(--ln-font) !important;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: rgb(17, 24, 39);
}

@media (min-width: 900px) {
  .cta-banner__title {
    font-size: 2.8rem;
  }
}

html[data-theme="dark"] .cta-banner__title {
  color: var(--ln-ink);
}

.cta-banner__desc {
  margin: 0;
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
  font-family: var(--ln-font);
  color: rgb(107, 114, 128);
}

@media (min-width: 900px) {
  .cta-banner__desc {
    font-size: 1rem;
  }
}

.cta-banner__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 21px;
}

.cta-banner__perk {
  display: flex;
  align-items: center;
  gap: 3.6px;
}

.cta-banner__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(0, 168, 132);
  flex-shrink: 0;
}

.cta-banner__perk span:last-child {
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 500;
  color: rgb(156, 163, 175);
  line-height: 1.4;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .cta-banner__actions {
    align-items: flex-end;
  }
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  margin: 0;
  cursor: pointer;
  user-select: none;
  text-decoration: none !important;
  font-family: var(--ln-font);
  line-height: 1.75;
  border-radius: 12px;
  text-transform: none;
  font-size: 15px;
  padding: 9.3px 21px;
  min-width: 200px;
  transition: 0.22s;
}

.cta-banner__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cta-banner__btn--primary {
  border: 0;
  font-weight: 700;
  background-color: rgb(0, 168, 132);
  color: rgb(255, 255, 255) !important;
  box-shadow: rgba(0, 168, 132, 0.35) 0px 4px 20px;
}

.cta-banner__btn--primary:hover {
  background-color: rgb(0, 149, 116);
  color: #fff !important;
  transform: translateY(-1px);
}

.cta-banner__btn--ghost {
  border: 1px solid rgb(229, 231, 235);
  background-color: transparent;
  font-weight: 600;
  color: rgb(107, 114, 128) !important;
  box-shadow: none;
}

.cta-banner__btn--ghost:hover {
  color: rgb(17, 24, 39) !important;
  background-color: rgba(0, 168, 132, 0.05);
  border-color: rgba(0, 168, 132, 0.25);
  transform: translateY(-1px);
}

html[data-theme="dark"] .cta-banner__btn--ghost {
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-banner__rating {
  display: flex;
  align-items: center;
  gap: 4.5px;
  margin-top: 3px;
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .cta-banner__rating {
    justify-content: flex-end;
  }
}

.cta-banner__rating > span {
  font-size: 12px;
  color: rgb(245, 158, 11);
  line-height: 1;
}

.cta-banner__rating em {
  font-style: normal;
  font-family: var(--ln-font);
  font-size: 11.5px;
  font-weight: 500;
  color: rgb(156, 163, 175);
}

/* ===== Site footer ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: rgba(247, 248, 250, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--ln-ink);
}

html[data-theme="dark"] .site-footer {
  background-color: rgba(13, 17, 23, 0.95);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.site-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 132, 0.4) 15%, rgb(0, 168, 132) 35%, rgb(13, 146, 118) 55%, rgba(13, 146, 118, 0.4) 75%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

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

.site-footer__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.site-footer__blob--1 {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -80px;
  background: radial-gradient(rgba(0, 168, 132, 0.12) 0%, transparent 70%);
}

.site-footer__blob--2 {
  width: 240px;
  height: 240px;
  bottom: -100px;
  right: 10%;
  background: radial-gradient(rgba(13, 146, 118, 0.1) 0%, transparent 70%);
}

.site-footer__blob--3 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: -60px;
  background: radial-gradient(rgba(0, 168, 132, 0.08) 0%, transparent 70%);
}

.site-footer__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

@media (min-width: 600px) {
  .site-footer__container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-top: 42px;
  padding-bottom: 36px;
}

@media (min-width: 900px) {
  .site-footer__main {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    padding-top: 54px;
    padding-bottom: 42px;
  }
}

.site-footer__logo {
  display: block;
  margin-bottom: 18px;
  max-width: 140px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.site-footer__logo:hover {
  opacity: 0.85;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 140px;
  object-fit: contain;
}

.site-footer__logo-text {
  font-family: var(--ln-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgb(17, 24, 39);
  letter-spacing: -0.02em;
}

.site-footer__logo-text span {
  color: rgb(0, 168, 132);
}

html[data-theme="dark"] .site-footer__logo-text {
  color: var(--ln-ink);
}

.site-footer__about {
  margin: 0 0 21px;
  font-family: var(--ln-font);
  line-height: 1.85;
  font-size: 13.5px;
  max-width: 300px;
  color: rgb(107, 114, 128);
  font-weight: 400;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid rgb(229, 231, 235);
  color: rgb(156, 163, 175);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  text-decoration: none !important;
  transition: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__social:hover {
  color: rgb(255, 255, 255);
  border-color: transparent;
  background: linear-gradient(135deg, rgb(0, 168, 132), rgb(0, 168, 132));
  transform: translateY(-3px) scale(1.08);
  box-shadow: rgba(0, 168, 132, 0.4) 0px 6px 16px;
}

html[data-theme="dark"] .site-footer__social {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-footer__lang-wrap {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4.5px 9px;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  transition: 0.2s;
}

.site-footer__lang-wrap:hover {
  border-color: rgba(0, 168, 132, 0.3);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: rgba(0, 168, 132, 0.1) 0px 4px 16px;
}

html[data-theme="dark"] .site-footer__lang-wrap {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-footer__lang {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4.5px !important;
  margin: 0 !important;
  padding: 3.6px 7.5px !important;
  border: 1px solid rgb(229, 231, 235) !important;
  border-radius: 10px !important;
  background-color: rgb(255, 255, 255) !important;
  box-shadow: none !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  cursor: pointer;
  appearance: none;
  outline: 0;
  color: inherit;
  transition: 0.2s;
}

.site-footer__lang .lang-select__icon,
.site-footer__lang .lang-select__chevron {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  flex-shrink: 0;
  display: block;
  fill: currentColor;
}

.site-footer__lang .lang-select__icon {
  color: rgb(0, 168, 132);
}

.site-footer__lang .lang-select__chevron {
  color: rgb(156, 163, 175);
}

.site-footer__lang .lang-select__label {
  display: inline-block;
  margin: 0;
  font-family: var(--ln-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.66;
  color: rgb(107, 114, 128);
  white-space: nowrap;
}

html[data-theme="dark"] .site-footer__lang {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.site-footer__theme.icon-btn.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 5px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgb(229, 231, 235);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: rgb(156, 163, 175);
  cursor: pointer;
  appearance: none;
  outline: 0;
  flex-shrink: 0;
  transition: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-footer__theme.icon-btn.theme-toggle:hover {
  border-color: rgb(0, 168, 132);
  color: rgb(0, 168, 132);
  background: rgba(0, 168, 132, 0.06);
  transform: translateY(-1px) rotate(15deg);
}

.site-footer__theme .theme-toggle__moon,
.site-footer__theme .theme-toggle__sun {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.site-footer__theme .theme-toggle__sun {
  display: none;
}

html[data-theme="dark"] .site-footer__theme .theme-toggle__moon {
  display: none;
}

html[data-theme="dark"] .site-footer__theme .theme-toggle__sun {
  display: block;
}

html[data-theme="dark"] .site-footer__theme.icon-btn.theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-footer__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .site-footer__links {
    grid-template-columns: 5fr 7fr;
    gap: 30px;
  }
}

.site-footer__heading {
  margin: 0 0 15px;
  line-height: 1.43;
  font-family: var(--ln-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgb(17, 24, 39);
  text-transform: uppercase;
}

html[data-theme="dark"] .site-footer__heading {
  color: var(--ln-ink);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__list li {
  margin: 0;
}

.site-footer__list a {
  font-family: var(--ln-font);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 2.2;
  color: rgb(75, 85, 99) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-footer__list a:hover {
  color: rgb(0, 168, 132) !important;
  transform: translateX(2px);
}

.site-footer__bottom {
  position: relative;
  padding-top: 21px;
  padding-bottom: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .site-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
  display: flex;
  align-items: center;
  gap: 4.5px;
  margin: 0;
}

.site-footer__copy span {
  font-family: var(--ln-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgb(156, 163, 175);
}

.site-footer__brand-name {
  background: linear-gradient(135deg, rgb(0, 168, 132) 0%, rgb(13, 146, 118) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--ln-font);
}

.site-footer__bottom-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  gap: 3.6px;
  cursor: pointer;
  padding: 4.2px 9px;
  border-radius: 9px;
  border: 1px solid rgb(229, 231, 235);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: rgb(156, 163, 175);
  font-family: var(--ln-font);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.66;
  transition: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-footer__top svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform 0.2s;
}

.site-footer__top:hover {
  color: rgb(0, 168, 132);
  border-color: rgba(0, 168, 132, 0.35);
  background: rgba(0, 168, 132, 0.06);
  transform: translateY(-1px);
}

.site-footer__top:hover svg {
  transform: translateY(-1px);
}

html[data-theme="dark"] .site-footer__top {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-footer__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(156, 163, 175, 0.4);
  flex-shrink: 0;
}

/* FAQ
-------------------------------------------------- */
.faq {
  padding-top: 84px;
  padding-bottom: 84px;
}

.faq__container {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 600px) {
  .faq__container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.faq__intro {
  text-align: center;
  margin-bottom: 48px;
}

.faq__badge {
  max-width: 100%;
  font-family: var(--ln-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 11px;
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid rgba(0, 168, 132, 0.267);
  padding: 0;
}

.faq__badge-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 8px;
}

.faq__title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.3;
  font-family: var(--ln-font) !important;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: rgb(17, 24, 39);
}

@media (min-width: 900px) {
  .faq__title {
    font-size: 2.8rem;
  }
}

.faq__title span {
  color: rgb(0, 168, 132);
}

html[data-theme="dark"] .faq__title {
  color: var(--ln-ink);
}

.faq__desc {
  margin: 0 auto;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: var(--ln-font);
  color: rgb(107, 114, 128);
  max-width: 420px;
  line-height: 1.9;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.faq__item {
  color: rgb(17, 24, 39);
  position: relative;
  border: 1px solid rgb(229, 231, 235);
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  transition: 0.25s;
  border-radius: 16px;
}

.faq__item:hover,
.faq__item:has(.show) {
  border-color: rgb(0, 168, 132);
  background-color: rgba(0, 168, 132, 0.03);
}

html[data-theme="dark"] .faq__item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ln-ink);
}

html[data-theme="dark"] .faq__item:hover,
html[data-theme="dark"] .faq__item:has(.show) {
  background: rgba(0, 168, 132, 0.08);
  border-color: rgb(0, 168, 132);
}

.faq__heading {
  margin: 0;
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 9px 18px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__trigger:focus {
  outline: none;
}

.faq__trigger:focus-visible {
  outline: 2px solid rgba(0, 168, 132, 0.45);
  outline-offset: -2px;
}

.faq__trigger-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  padding-right: 12px;
  margin: 12px 0;
  text-align: start;
}

.faq__num {
  margin: 0;
  font-family: var(--ln-font);
  color: rgba(0, 168, 132, 0.133);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  min-width: 32px;
  transition: color 0.25s;
  font-variant-numeric: tabular-nums;
}

.faq__question {
  margin: 0;
  font-size: 0.875rem;
  font-family: var(--ln-font);
  font-weight: 700;
  color: rgb(17, 24, 39);
  transition: color 0.25s;
  line-height: 1.5;
}

html[data-theme="dark"] .faq__question {
  color: var(--ln-ink);
}

.faq__trigger:not(.collapsed) .faq__num,
.faq__trigger:not(.collapsed) .faq__question {
  color: rgb(0, 168, 132);
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 168, 132, 0.08);
  color: rgb(0, 168, 132);
  transition: background-color 0.25s, color 0.25s;
}

.faq__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__trigger:not(.collapsed) .faq__icon {
  background-color: rgb(0, 168, 132);
  color: rgb(255, 255, 255);
}

.faq__trigger:not(.collapsed) .faq__icon svg {
  transform: rotate(180deg);
}

.faq__body {
  padding: 0 18px 18px;
}

.faq__answer {
  padding-left: 48px;
}

.faq__answer,
.faq__answer p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: var(--ln-font);
  line-height: 1.9;
  color: rgb(107, 114, 128);
}

.faq__answer p + p {
  margin-top: 0.75em;
}

html[data-theme="dark"] .faq__answer,
html[data-theme="dark"] .faq__answer p {
  color: rgb(156, 163, 175);
}

@keyframes featuresListening {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (max-width: 900px) {
  .features__tabs {
    grid-template-columns: 1fr 1fr;
  }

  .features__float--wa-api,
  .features__float--wa-qr,
  .features__float--tg,
  .features__float--ig {
    display: none;
  }
}

@media (max-width: 575px) {
  .features__tabs {
    grid-template-columns: 1fr;
  }
}
