:root {
  --bg: #020617;
  --bg-alt: #030712;
  --bg-soft: #020617;
  --accent: #54e54a;
  --accent-soft: rgba(84, 229, 74, 0.18);
  --accent2: #48cfff;
  --accent2-soft: rgba(72, 207, 255, 0.14);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --danger: #f97373;
  --radius-lg: 1.25rem;
  --radius-md: 0.875rem;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .quick-contact,
  .drawer-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(3, 7, 18, 0.92);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, var(--accent2-soft), transparent 55%),
    radial-gradient(circle at bottom right, var(--accent-soft), transparent 55%),
    linear-gradient(135deg, #000000, var(--bg));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   MAIN SITE
========================================= */

.page {
  padding-bottom: 3rem;
}

.section {
  padding: 2.75rem 0 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
  max-width: 42rem;
}

.section-title {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent2);
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* =========================
   Header / Nav
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 18, 0.92),
    rgba(3, 7, 18, 0.78),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  padding: 2px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.8);
  box-shadow: 0 0 12px rgba(15, 23, 42, 0.9);
}

.lang-switch button {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  background: transparent;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.lang-switch button.is-active {
  color: #020617;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:
    0 0 0 1px rgba(8, 47, 73, 0.4),
    0 0 16px rgba(72, 207, 255, 0.7);
}

/* =========================
   Buttons
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #001018;
  border-color: rgba(72, 207, 255, 0.28);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(72, 207, 255, 0.16),
    var(--shadow-soft);
}

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

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent2);
  border-color: rgba(37, 99, 235, 0.8);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
  box-shadow:
    0 0 18px rgba(37, 99, 235, 0.6),
    0 0 10px rgba(15, 23, 42, 1);
}

.btn-ghost {
  background: rgba(2, 6, 23, 0.35);
  border-color: rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.88);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(72, 207, 255, 0.32);
  background: rgba(2, 6, 23, 0.55);
}

/* =========================
   Hero
   ========================= */

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent2);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(37, 99, 235, 0.7);
  box-shadow:
    0 0 18px rgba(37, 99, 235, 0.55),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  margin-bottom: 1.15rem;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(84, 229, 74, 0.22),
    0 0 16px rgba(84, 229, 74, 0.7);
}

.hero-title {
  margin: 0 0 0.95rem;
  max-width: 42rem;
  font-size: clamp(2.2rem, 3.35vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-title span {
  background: linear-gradient(120deg, rgba(84, 229, 74, 0.92), rgba(72, 207, 255, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 1.45rem;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(203, 213, 225, 0.78);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.05rem;
}

.hero-meta {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.hero-meta-item {
  color: rgba(226, 232, 240, 0.7);
}

.hero-meta-item span {
  display: inline-block;
  margin-right: 0.35rem;
  color: var(--accent2);
}

.hero-card {
  max-width: 28rem;
  margin-top: 1rem;
  padding: 0.7rem 0.95rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.72));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.hero-card strong {
  color: var(--accent);
  font-weight: 500;
}

.hero-visual {
  padding: 1.25rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(72, 207, 255, 0.2), transparent 58%),
    radial-gradient(circle at 85% 100%, rgba(84, 229, 74, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.86));
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(2, 6, 23, 0.6);
}

.hero-visual picture {
  display: block;
 /* width: 100%;*/
}

.orb-spider-img {
  width: 80%;
 /* max-width: 640px;
  height: auto;
  margin: 0 auto;*/
  display: block;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55));
}

/* =========================
   Cards
   ========================= */

.card {
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: flex;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(72, 207, 255, 0.2), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(84, 229, 74, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 170px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.card-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 12px rgba(72, 207, 255, 0.9);
}

.card-title {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.3;
}

.card-text {
  margin: 0;
  flex: 1;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.card-meta {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent2);
  font-size: 0.92rem;
}

/* =========================
   About
   ========================= */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.about-text {
  margin-top: 0.85rem;
  max-width: 44rem;
  white-space: pre-line;
}

.about-points {
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
}

.about-point {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
}

.about-point-icon {
  color: var(--accent2);
  line-height: 1;
  margin-top: 0.2rem;
  text-shadow: 0 0 12px rgba(72, 207, 255, 0.75);
}

.about-point-title {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.about-point-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-cta-row {
  margin-top: 1.15rem;
}

.about-side-card {
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at 18% 14%, rgba(72, 207, 255, 0.14), transparent 58%),
    radial-gradient(circle at 82% 86%, rgba(84, 229, 74, 0.12), transparent 58%),
    rgba(15, 23, 42, 0.86);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-side-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(72, 207, 255, 0.9);
  margin-bottom: 0.9rem;
}

.about-side-metric {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.about-side-metric.is-fade {
  opacity: 0;
  transform: translateY(4px);
}

.about-side-num {
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: rgba(84, 229, 74, 0.95);
  text-shadow: 0 0 18px rgba(84, 229, 74, 0.16);
}

.about-side-title {
  font-size: 1.05rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}

.about-side-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.about-side-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.12);
  margin: 1rem 0 0.85rem;
}

.outcome-bullets {
  margin: 0.65rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.35rem;
}

.outcome-bullets li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.outcome-bullets li::marker {
  color: rgba(72, 207, 255, 0.85);
}

.outcomes-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.outcomes-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.35);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
}

.outcomes-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(72, 207, 255, 0.32);
  background: rgba(2, 6, 23, 0.55);
}

.outcomes-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.outcomes-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.outcomes-dots .dot.is-active {
  background: rgba(84, 229, 74, 0.95);
  box-shadow: 0 0 16px rgba(84, 229, 74, 0.22);
}

/* =========================
   Platform
   ========================= */

.platform-card-main {
  border-color: rgba(84, 229, 74, 0.28);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(84, 229, 74, 0.1);
}

.platform-card .card-inner {
  height: 100%;
}

.platform-card .card-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(72, 207, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  min-height: calc(1.25em * 2);
}

.platform-story {
  margin: 1.1rem 0 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(72, 207, 255, 0.22);
  background:
    radial-gradient(circle at top left, rgba(72, 207, 255, 0.1), transparent 55%),
    radial-gradient(circle at bottom right, rgba(84, 229, 74, 0.1), transparent 55%),
    rgba(5, 10, 25, 0.7);
}

.highlighting {
  display: inline-block;
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(72, 207, 255, 0.28);
  margin-right: 0.35rem;
  font-weight: 600;
}

/* =========================
   Connectivity card
   ========================= */

.ci-card {
  padding: 0;
}

.ci-card .card-inner {
  padding: 1.25rem 1.35rem;
}

.ci-title {
  margin: 0.25rem 0 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}

.ci-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.55rem 0 0.85rem;
}

.ci-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1;
  color: rgba(226, 232, 240, 0.82);
  background: rgba(10, 18, 35, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.ci-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 68rem;
}

/* =========================
   Shared carousel
   ========================= */

.pricing-carousel {
  position: relative;
  margin-top: 24px;
}

.pc-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.pc-track {
  display: flex;
  gap: 18px;
  padding: 6px 10px;
  will-change: transform;
  transition: transform 0.35s ease;
  align-items: stretch;
}

.pc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 18, 35, 0.55);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pc-prev {
  left: 8px;
}

.pc-next {
  right: 8px;
}

.pc-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.pc-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.pc-dots .dot.is-active {
  background: rgba(84, 229, 74, 0.95);
  box-shadow: 0 0 18px rgba(84, 229, 74, 0.35);
}

/* =========================
   Use cases
   ========================= */

.uc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 18px;
  flex-wrap: wrap;
}

.uc-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.uc-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  letter-spacing: 0.2px;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  cursor: pointer;
}

.uc-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(84, 229, 74, 0.35);
  box-shadow: 0 0 0 3px rgba(84, 229, 74, 0.08);
}

.uc-chip.is-active {
  border-color: rgba(84, 229, 74, 0.55);
  background: rgba(84, 229, 74, 0.1);
  box-shadow: 0 0 0 3px rgba(84, 229, 74, 0.1);
}

.uc-search input {
  width: min(360px, 82vw);
}

#ucTrack {
  display: flex;
  gap: 16px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease;
}

.uc-card {
  flex: 0 0 calc((100% - 16px) / 2);
  max-width: none;
  display: flex;
  flex-direction: column;
  padding-top: 44px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    opacity 0.22s ease,
    box-shadow 0.22s ease;
}

.uc-card-strip {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(84, 229, 74, 0.9), rgba(72, 207, 255, 0.75));
  opacity: 0.9;
}

.uc-toprow {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "idx pills"
    "meta meta";
  gap: 8px 12px;
}

.uc-index {
  grid-area: idx;
}

.uc-pills {
  grid-area: pills;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.uc-meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  gap: 8px;
}

.uc-title {
  font-size: 18px;
  margin: 12px 0 10px;
  line-height: 1.25;
}

.uc-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  flex: 1;
  min-height: 0;
  margin-top: 8px;
}

.uc-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 0 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.uc-row:first-child {
  border-top: none;
  padding-top: 0;
}

.uc-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.uc-row:nth-of-type(1)::before {
  background: rgba(249, 115, 115, 0.35);
}

.uc-row:nth-of-type(2)::before {
  background: rgba(72, 207, 255, 0.35);
}

.uc-k {
  font-size: 12px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.uc-v {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  min-height: 5.2em;
}

.uc-outcome {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.94);
  min-height: 3.2em;
}

#ucDots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(72, 207, 255, 0.55);
  background: transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

#ucDots .dot.is-active {
  background: rgba(84, 229, 74, 0.85);
  border-color: rgba(84, 229, 74, 0.9);
  transform: scale(1.1);
}

#ucPrev.is-disabled,
#ucNext.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.uc-num {
  display: inline-block;
  padding: 0.08em 0.45em;
  border-radius: 999px;
  background: rgba(84, 229, 74, 0.16);
  border: 1px solid rgba(84, 229, 74, 0.35);
  color: #eaffea;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.uc-pill--kpi {
  color: var(--accent2);
  font-size: 0.95rem;
}

.uc-pill--ttv .uc-num {
  background: rgba(72, 207, 255, 0.14);
  border-color: rgba(72, 207, 255, 0.35);
}

.uc-badge--industry {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(72, 207, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.uc-mini {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(84, 229, 74, 0.95);
  filter: drop-shadow(0 0 10px rgba(84, 229, 74, 0.35));
  flex: 0 0 auto;
}

.uc-mini svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* =========================
   How
   ========================= */

.card-outcome {
  margin: 0.85rem 0 0;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(84, 229, 74, 0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(84, 229, 74, 0.14), transparent 55%),
    rgba(2, 6, 23, 0.25);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  line-height: 1.45;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.card-outcome::before {
  content: "Output";
  display: inline-block;
  margin-right: 0.55rem;
  padding: 0.12rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(72, 207, 255, 0.22);
  background: rgba(15, 23, 42, 0.55);
  color: rgba(72, 207, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-micro {
  margin: 0.55rem 0 0;
  padding: 0.45rem 0.6rem 0.45rem 1.05rem;
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.2);
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  white-space: pre-line;
}

.card-micro::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.78rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(72, 207, 255, 0.95);
  box-shadow: 0 0 14px rgba(72, 207, 255, 0.3);
}

/* =========================
   Pricing
   ========================= */

.pc-card {
  flex: 0 0 min(360px, calc(100vw - 72px));
  max-width: min(360px, calc(100vw - 72px));
  background: rgba(10, 18, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.pc-card.is-featured {
  border: 1px solid rgba(84, 229, 74, 0.35);
  box-shadow: 0 18px 70px rgba(84, 229, 74, 0.12);
}

.enterprise {
  position: relative;
  border: 1px solid rgba(84, 229, 74, 0.35);
  background: rgba(10, 20, 35, 0.92);
}

.enterprise::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(72, 207, 255, 0.7), rgba(84, 229, 74, 0.7));
  opacity: 0.12;
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.pc-top {
  margin-bottom: 14px;
}

.pc-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(72, 207, 255, 0.85);
  margin-bottom: 10px;
}

.pc-name {
  font-size: 22px;
  margin: 0 0 6px;
}

.pc-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

.pc-price {
  font-size: 18px;
  font-weight: 700;
  margin-top: 14px;
  min-height: 2.2em;
}

.pc-note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.35;
  min-height: 2.8em;
}

.pc-list {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  flex: 1 1 auto;
}

.pc-list li {
  margin: 8px 0;
}

/* =========================
   Contact / Forms
   ========================= */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 1.75rem;
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.96);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 1);
  padding: 1.25rem 1.3rem 1.2rem;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(55, 65, 81, 0.95);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
  font-size: 0.85rem;
  padding: 0.6rem 0.75rem;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  resize: vertical;
  min-height: 40px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

input:focus,
textarea:focus {
  border-color: rgba(72, 207, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(30, 64, 175, 1),
    0 0 18px rgba(30, 64, 175, 0.9);
  background: rgba(15, 23, 42, 0.98);
}

.pricing-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.form-footnote {
  font-size: 0.75rem;
  color: var(--muted);
}

.toast {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #48cfff, #54e54a);
  color: #001018;
  font-weight: 600;
  font-size: 14px;
}

/* =========================
   FAQ
   ========================= */

.faq-list {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  padding: 0.85rem 1rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q-wrap {
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-q {
  font-size: 0.88rem;
  margin: 0.25rem 0;
  color: var(--text);
}

.faq-a {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-q {
  color: #54e54a;
  opacity: 0.79;
}

.faq-tag {
  display: inline-flex;
  margin-bottom: 0.3rem;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.85;
}

.faq-tag--ops {
  background: rgba(84, 229, 74, 0.12);
  color: #54e54a;
  border: 1px solid rgba(84, 229, 74, 0.3);
}

.faq-tag--it {
  background: rgba(72, 207, 255, 0.12);
  color: #48cfff;
  border: 1px solid rgba(72, 207, 255, 0.3);
}

.faq-tag--compliance {
  background: rgba(255, 200, 100, 0.12);
  color: #faff64;
  border: 1px solid rgba(255, 245, 100, 0.3);
}

.faq-trust {
  margin-top: 1rem;
  padding: 22px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(84, 229, 74, 0.08), rgba(72, 207, 255, 0.05));
  border: 1px solid rgba(84, 229, 74, 0.25);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  box-shadow: 0 0 25px rgba(84, 229, 74, 0.08);
}

/* =========================
   Footer
   ========================= */

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.95);
  margin-top: 3rem;
  padding: 1.2rem 0 1.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--accent2);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(200, 220, 255, 0.85);
  background: rgba(10, 16, 28, 0.35);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 0.75rem;
}

/* =========================
   Quick contact + Drawer
   ========================= */

.quick-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 207, 255, 0.28);
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(72, 207, 255, 0.25);
  cursor: pointer;
}

.quick-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 6px rgba(84, 229, 74, 0.18),
    0 0 18px rgba(84, 229, 74, 0.55);
  animation: pulse 1.6s ease-in-out infinite;
}

.quick-label {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.88);
  white-space: nowrap;
}

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

  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  right: 16px;
  bottom: 72px;
  width: min(420px, calc(100vw - 32px));
  z-index: 90;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.92);
  background:
    radial-gradient(circle at 15% 10%, rgba(72, 207, 255, 0.2), transparent 60%),
    radial-gradient(circle at 85% 90%, rgba(84, 229, 74, 0.16), transparent 60%),
    rgba(15, 23, 42, 0.92);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.82);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.6rem;
}

.drawer-title {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.drawer-close {
  border: none;
  background: transparent;
  color: rgba(226, 232, 240, 0.72);
  cursor: pointer;
  font-size: 1.1rem;
}

.drawer-body {
  padding: 0.2rem 1rem 1rem;
}

.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.drawer-note {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.8);
  line-height: 1.45;
}

/* =========================
   Responsive
   ========================= */

@media (min-width: 1100px) {
  #pricingCarousel .pc-viewport {
    overflow: visible;
  }

  #pricingCarousel .pc-track {
    transform: none !important;
  }

  #pricingCarousel .pc-card {
    flex: 0 0 calc((100% - 18px * 3) / 4);
    max-width: calc((100% - 18px * 3) / 4);
  }

  #pricingCarousel .pc-nav,
  #pricingCarousel .pc-dots {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uc-card {
    flex: 0 0 100%;
  }

  .about-side-num {
    font-size: 1.85rem;
  }

  .about-side-title {
    font-size: 1rem;
  }

  .about-side-text {
    font-size: 0.92rem;
  }
}

@media (max-width: 860px) {
  .pc-nav {
    display: none;
  }

  .pc-track {
    padding: 6px;
    gap: 14px;
  }

  .pc-card {
    flex-basis: 86vw;
    max-width: 86vw;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding-inline: 1rem;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-title {
    font-size: 2.02rem;
    line-height: 1.08;
  }

  .grid-3,
  .grid-2,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 100%;
  }

  .quick-contact {
    left: 16px;
    right: 16px;
    justify-content: center;
  }

  .card-outcome {
    font-size: 0.84rem;
  }

  .card-micro {
    font-size: 0.76rem;
  }
}

/* =========================================
   POLICY PAGE
   keep this separate
========================================= */

.policy-page {
  background:
    radial-gradient(circle at top left, rgba(84, 229, 74, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(72, 207, 255, 0.08), transparent 24%),
    #07111f;
  color: #eaf4ff;
  min-height: 100vh;
}

.policy-page .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header--simple {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.site-logo__text {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  color: #ffffff;
}

.site-nav--simple {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(234, 244, 255, 0.72);
  font-size: 0.95rem;
}

.site-nav__link {
  color: #48cfff;
  text-decoration: none;
}

.site-nav__link:hover {
  color: #ffffff;
}

.site-nav__sep {
  opacity: 0.45;
}

.site-nav__current {
  color: rgba(234, 244, 255, 0.88);
}

.site-footer--simple {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 42px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__inner p {
  margin: 0;
  color: rgba(234, 244, 255, 0.68);
  font-size: 0.95rem;
}

.site-footer__back {
  color: #48cfff;
  text-decoration: none;
  font-weight: 600;
}

.site-footer__back:hover {
  color: #ffffff;
}

.policy-page .policy-wrap {
  width: 100%;
  max-width: 900px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.policy-page .page {
  padding: 3.5rem 0 4.5rem;
}

.policy-page .policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent2);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(37, 99, 235, 0.7);
  box-shadow:
    0 0 18px rgba(37, 99, 235, 0.35),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  margin-bottom: 1rem;
}

.policy-page .policy-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(84, 229, 74, 0.22),
    0 0 16px rgba(84, 229, 74, 0.7);
}

.policy-page .policy-meta {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.policy-page .policy-lead {
  margin: 0 0 1.4rem;
  color: rgba(203, 213, 225, 0.82);
  max-width: 52rem;
}

.policy-page .policy-box {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(84, 229, 74, 0.18);
  background:
    radial-gradient(circle at top left, rgba(84, 229, 74, 0.08), transparent 60%),
    radial-gradient(circle at bottom right, rgba(72, 207, 255, 0.08), transparent 60%),
    rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow-soft);
}

.policy-page .policy-box > *:last-child {
  margin-bottom: 0;
}

.policy-page .policy-divider {
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(
    90deg,
    rgba(72, 207, 255, 0),
    rgba(72, 207, 255, 0.22),
    rgba(84, 229, 74, 0.22),
    rgba(84, 229, 74, 0)
  );
}

.policy-page .policy-foot {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

@media (max-width: 720px) {
  .policy-page .page {
    padding: 2.5rem 0 3.5rem;
  }

  .policy-page .policy-box {
    padding: 0.95rem;
  }

  .policy-page .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header__inner {
    min-height: 64px;
    gap: 12px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================
   KEEP BELOW FOR OTHER PAGES
   MITE-ECO or other dedicated page styles
========================================= */