@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #0b1220;
  --secondary: #71717a;
  --muted: #5e6875;
  --brand: #14b8a6;
  --brand-blue: #2f80ed;
  --brand-soft: rgba(20, 184, 166, 0.12);
  --brand-blue-soft: rgba(47, 128, 237, 0.14);
  --neutral-50: #fafafa;
  --neutral-100: #f4f4f5;
  --neutral-200: #e4e4e7;
  --neutral-300: #d4d4d8;
  --neutral-400: #a1a1aa;
  --neutral-500: #71717a;
  --neutral-600: #52525b;
  --neutral-700: #3f3f46;
  --neutral-800: #27272a;
  --neutral-900: #18181b;
  --neutral-950: #09090b;
  --body: #ececec;
  --panel: #f7f7f8;
  --shadow-soft: 0 7.77px 16px rgba(0, 0, 0, 0.06), 0 3px 3px rgba(0, 0, 0, 0.1), inset 0 -8px 0 rgba(0, 0, 0, 0.05), inset 0 4px 0 rgba(255, 255, 255, 0.68);
  --shadow-dark: 0 7.77px 2.21px rgba(0, 0, 0, 0.06), 0 3px 3px rgba(0, 0, 0, 0.1), inset 0 -8px 0 #2e2e2e, inset 0 4px 0 rgba(255, 255, 255, 0.3);
  --shadow-button: 0 -3px 0 #080808 inset, 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 12px 30px rgba(0, 0, 0, 0.18);
  --shadow-button-light: 0 -3px 0 #e9e9e9 inset, 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 3px 3px rgba(0, 0, 0, 0.14);
  --radius-lg: 40px;
  --radius-md: 28px;
  --container: 1520px;
  --font-primary: "Urbanist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --scroll-y: 0px;
  --scroll-tilt: 0deg;
  --motion-glow: rgba(42, 198, 248, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-primary);
  background: var(--body);
  color: var(--primary);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 72% 10%, rgba(47, 128, 237, 0.1), transparent 24%),
    linear-gradient(180deg, #f5f5f5 0%, #ececec 42%, #f7f7f7 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 18, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8) 18%, transparent 86%);
  animation: gridDrift 22s linear infinite;
}

a {
  color: inherit;
}

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

button,
summary {
  font: inherit;
}

input,
textarea,
select {
  font-family: var(--font-primary);
}

button {
  border: 0;
}

.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;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-170%);
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: var(--shadow-button);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  height: 3px;
  background: rgba(11, 18, 32, 0.06);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-blue));
  box-shadow: 0 0 18px var(--motion-glow);
  transition: width 120ms linear;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.flat-spacing {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.text-display-2,
.heading-title {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0;
}

.text-display-2 {
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.95;
}

.heading-title {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
}

.heading-section .heading-title {
  font-weight: 600;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 0;
}

.text-brand {
  color: #2ac6f8;
}

.text-body-1 {
  font-size: 18px;
  line-height: 28px;
}

.text-body-3 {
  font-size: 14px;
  line-height: 20px;
}

.fw-semibold {
  font-weight: 600 !important;
}

.text-gradient-2,
.text-gradient-3 {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.text-gradient-2 {
  background-image: linear-gradient(180deg, #3f444a 0%, #777d84 46%, rgba(11, 18, 32, 0.16) 100%);
}

.text-gradient-3 {
  background-image: linear-gradient(180deg, #24292f 0%, #343a40 64%, #6d747d 100%);
}

.heading-section {
  position: relative;
  margin-bottom: 58px;
}

.heading-section.center {
  text-align: center;
}

.heading-section.center .heading-sub {
  margin-left: auto;
  margin-right: auto;
}

.heading-section .heading-sub,
.heading-sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  border-radius: 9px;
  color: var(--brand-blue);
  padding: 7px 18px 7px 34px;
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, #f8f8f9, #f8f8f9);
  box-shadow: var(--shadow-button-light);
  margin: 0 0 30px;
  font-weight: 700;
  line-height: 1;
  animation: pillFloat 4.2s ease-in-out infinite;
}

.heading-section .heading-sub::before,
.heading-sub::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 99px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 6px rgba(47, 128, 237, 0.1);
  animation: dotPulse 1.9s ease-in-out infinite;
}

.heading-sub.style-1 {
  color: var(--brand-blue);
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, var(--neutral-900), var(--neutral-900));
  box-shadow: 0 -3px 0 #080808 inset, 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 3px 3px rgba(0, 0, 0, 0.14);
}

.tf-btn,
.tf-btn-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  text-decoration: none;
  white-space: normal;
  isolation: isolate;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, color 260ms ease, background 260ms ease;
  animation: buttonBreath 4.8s ease-in-out infinite;
}

.tf-btn {
  color: var(--white);
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, #272727, #272727);
  box-shadow: var(--shadow-button);
}

.tf-btn-2 {
  color: var(--primary);
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, #f8f8f9, #f8f8f9);
  box-shadow: var(--shadow-button-light);
  animation-name: buttonBreathLight;
}

.tf-btn::after,
.tf-btn-2::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: -1;
  width: 50%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 520ms ease;
}

.tf-btn:hover,
.tf-btn:focus-visible,
.tf-btn-2:hover,
.tf-btn-2:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.tf-btn:hover::after,
.tf-btn:focus-visible::after,
.tf-btn-2:hover::after,
.tf-btn-2:focus-visible::after {
  left: 120%;
}

.light-btn {
  color: var(--primary);
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, #ffffff, #ffffff);
  box-shadow: 0 -3px 0 rgba(255, 255, 255, 0.35) inset, 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 12px 28px rgba(0, 0, 0, 0.22);
}

.tf-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 900;
  width: min(calc(100% - 40px), 1220px);
  min-height: 70px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(248, 248, 249, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.tf-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 164px;
  min-width: 164px;
  height: 44px;
  overflow: hidden;
  text-decoration: none;
}

.brand-mark img {
  width: 164px;
  max-width: none;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
  background: rgba(20, 184, 166, 0.11);
  transform: translateY(-1px);
  outline: none;
}

.header-btn {
  min-height: 46px;
  padding: 13px 20px;
  font-size: 15px;
}

.mobile-menu-button {
  display: none;
}

.section-hero {
  position: relative;
  min-height: 100vh;
  padding: 138px 0 106px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.75;
}

.glow-one {
  width: 42vw;
  height: 180px;
  top: 0;
  left: 3%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(47, 128, 237, 0.11), rgba(255, 255, 255, 0.25));
}

.glow-two {
  width: 38vw;
  height: 160px;
  top: 0;
  right: 2%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(20, 184, 166, 0.14), rgba(255, 255, 255, 0.95));
}

.glow-three {
  width: 22vw;
  height: 120px;
  top: 4%;
  right: 24%;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.2), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto 56px;
}

.hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.hero-orbit-panel {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-lg);
  padding: 52px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(72% 72% at 32% -12%, rgba(255, 255, 255, 0.2), transparent 58%),
    linear-gradient(0deg, var(--neutral-900), var(--neutral-900));
  box-shadow: var(--shadow-dark);
  transform: translate3d(0, var(--scroll-y, 0px), 0) rotate(var(--scroll-tilt, 0deg));
  animation: panelFloat 7.4s ease-in-out infinite;
  will-change: transform;
}

.hero-orbit-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38%;
  width: 92%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.08) 18%, transparent 21%),
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.4px);
  background-size: 100% 100%, 11px 11px;
  box-shadow: 0 -18px 42px rgba(255, 255, 255, 0.12);
  opacity: 0.85;
  animation: earthDrift 13s ease-in-out infinite;
}

.hero-orbit-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(47, 128, 237, 0.08), transparent 56%),
    radial-gradient(circle at 72% 58%, rgba(20, 184, 166, 0.18), transparent 26%);
  mix-blend-mode: screen;
  background-size: 180% 180%, 100% 100%;
  animation: shineSweep 6s ease-in-out infinite;
}

.panel-status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.24);
  animation: rippleFade 1.8s ease-out infinite;
}

.orbital-core {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 50%;
  width: min(460px, 56vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: coreFloat 6.4s ease-in-out infinite;
  will-change: transform;
}

.ring,
.core-node,
.signal {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.ring {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 40px rgba(47, 128, 237, 0.12);
}

.ring-one {
  animation: rotateSoft 18s linear infinite;
}

.ring-two {
  inset: 13%;
  border-style: dashed;
  border-color: rgba(20, 184, 166, 0.32);
  animation: rotateSoft 15s linear infinite reverse;
}

.ring-three {
  inset: 29%;
  border-color: rgba(255, 255, 255, 0.28);
  animation: breathe 4s ease-in-out infinite;
}

.core-node {
  inset: 42%;
  background: radial-gradient(circle, var(--white), var(--brand) 54%, rgba(20, 184, 166, 0.1));
  box-shadow: 0 0 44px rgba(20, 184, 166, 0.45);
}

.signal {
  width: 15px;
  height: 15px;
  background: var(--brand-blue);
  box-shadow: 0 0 24px rgba(47, 128, 237, 0.45);
  animation: signalPulse 2.8s ease-in-out infinite;
}

.signal.s1 {
  top: 7%;
  left: 48%;
}

.signal.s2 {
  right: 8%;
  top: 48%;
}

.signal.s3 {
  left: 18%;
  bottom: 15%;
  background: var(--brand);
}

.signal.s4 {
  right: 24%;
  bottom: 20%;
  width: 10px;
  height: 10px;
}

.panel-caption {
  position: absolute;
  z-index: 2;
  left: 52px;
  right: 52px;
  bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  color: rgba(255, 255, 255, 0.82);
}

.panel-caption strong {
  display: block;
  max-width: 320px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1;
}

.panel-caption span {
  max-width: 260px;
  text-align: right;
  font-weight: 700;
}

.hero-mini-stack {
  display: grid;
  gap: 28px;
}

.glass-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 44px;
  background: var(--neutral-100);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: translate3d(0, var(--scroll-y, 0px), 0) rotate(var(--scroll-tilt, 0deg));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
  will-change: transform;
}

.glass-card::after,
.featured-card::after,
.accordion-faq_item::after,
.dark-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.56) 48%, transparent 62%),
    radial-gradient(circle at var(--glow-x, 18%) var(--glow-y, 18%), rgba(42, 198, 248, 0.14), transparent 34%);
  background-size: 240% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  opacity: 0.74;
  mix-blend-mode: screen;
  animation: cardSweep 6.8s ease-in-out infinite;
}

.glass-card:hover {
  transform: translate3d(0, calc(var(--scroll-y, 0px) - 8px), 0) rotate(var(--scroll-tilt, 0deg));
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14), inset 0 -8px 0 rgba(0, 0, 0, 0.04), inset 0 4px 0 rgba(255, 255, 255, 0.74);
}

.stat-card {
  min-height: 255px;
}

.card-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--brand-blue);
  font-weight: 800;
}

.stat-card h2 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.12;
}

.stat-card p,
.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
}

.quote-card {
  display: grid;
  min-height: 255px;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  align-items: center;
}

.quote-card::before {
  content: "";
  width: 118px;
  height: 170px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 38% 34%, rgba(20, 184, 166, 0.9) 0 8%, transparent 9%),
    linear-gradient(145deg, var(--primary), #14181f 45%, var(--brand-blue));
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.18);
}

.quote-mark {
  position: absolute;
  top: 34px;
  left: 190px;
  color: rgba(11, 18, 32, 0.08);
  font-size: 7rem;
  line-height: 1;
  font-weight: 800;
}

.quote-card span {
  display: block;
  margin-top: 18px;
  color: var(--secondary);
  font-weight: 700;
}

.scroll-more {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 12px 14px 12px 20px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  font-weight: 800;
}

.scroll-more i {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--brand-blue);
  border: 1px solid rgba(47, 128, 237, 0.15);
}

.section-about-us,
.section-services,
.section-featured-works,
.section-benefits,
.section-features,
.section-pricing,
.section-faqs,
.section-contact {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 28px;
}

.section-about-us .col-left {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 70px 40px 0;
  color: var(--white);
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, var(--neutral-900), var(--neutral-900));
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.z-stack {
  position: relative;
  z-index: 4;
}

.section-about-us .col-left .sub {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  padding: 7px 15px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.section-about-us .col-left .dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.section-about-us .col-left .dot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.25);
  animation: rippleFade 1.8s ease-out infinite;
}

.section-about-us .col-left .title {
  max-width: 630px;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-about-us .col-left .title span {
  color: var(--brand);
}

.earth-map {
  position: relative;
  z-index: 2;
  width: min(92%, 760px);
  aspect-ratio: 1.64;
  margin-top: auto;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at 20% 56%, rgba(255, 255, 255, 0.7) 1px, transparent 2px),
    radial-gradient(circle at 36% 64%, rgba(255, 255, 255, 0.58) 1px, transparent 2px),
    radial-gradient(circle at 56% 48%, rgba(255, 255, 255, 0.64) 1px, transparent 2px),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.54) 1px, transparent 2px);
  background-size: 18px 18px, 14px 14px, 16px 16px, 13px 13px;
  box-shadow: 0 -24px 56px rgba(255, 255, 255, 0.22);
  opacity: 0.9;
}

.earth-map::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border-top: 2px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 26px 28px rgba(255, 255, 255, 0.08);
}

.map-dot {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(20, 184, 166, 0.7);
}

.d1 { left: 28%; top: 42%; }
.d2 { left: 48%; top: 30%; }
.d3 { left: 62%; top: 48%; }
.d4 { left: 40%; top: 63%; }
.d5 { left: 70%; top: 35%; }

.route-line {
  position: absolute;
  display: block;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
}

.r1 {
  left: 29%;
  top: 44%;
  width: 32%;
  transform: rotate(-14deg);
  animation: signalRun 3.2s ease-in-out infinite;
}

.r2 {
  left: 41%;
  top: 63%;
  width: 28%;
  transform: rotate(-28deg);
  animation: signalRun 3.2s 0.8s ease-in-out infinite;
}

.about-side {
  display: grid;
  gap: 28px;
}

.review-box,
.box-quotes,
.benefits-box,
.features-item,
.pricing-card,
.accordion-asked-item,
.contact-shell {
  position: relative;
  overflow: hidden;
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--scroll-y, 0px), 0) rotate(var(--scroll-tilt, 0deg));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
  will-change: transform;
}

.review-box::after,
.box-quotes::after,
.benefits-box::after,
.features-item::after,
.pricing-card::after,
.accordion-asked-item::after,
.contact-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.74) 48%, transparent 62%),
    radial-gradient(circle at var(--glow-x, 18%) var(--glow-y, 18%), rgba(42, 198, 248, 0.12), transparent 36%);
  background-size: 230% 100%, 100% 100%;
  background-position: -140% 0, 0 0;
  opacity: 0.78;
  mix-blend-mode: screen;
  animation: cardSweep 7.2s ease-in-out infinite;
}

.review-box:hover,
.box-quotes:hover,
.benefits-box:hover,
.features-item:hover,
.pricing-card:hover,
.accordion-asked-item:hover,
.contact-shell:hover {
  transform: translate3d(0, calc(var(--scroll-y, 0px) - 8px), 0) rotate(var(--scroll-tilt, 0deg));
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14), inset 0 -8px 0 rgba(0, 0, 0, 0.04), inset 0 4px 0 rgba(255, 255, 255, 0.74);
}

.review-box {
  min-height: 300px;
  padding: 46px 42px 34px;
}

.review-box .desc {
  margin: 0 0 50px;
  color: var(--primary);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.35;
  font-weight: 800;
}

.counter-wrap {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 98px;
  justify-content: end;
  text-align: right;
}

.counter-wrap::before {
  content: "AI";
  position: absolute;
  right: 0;
  bottom: -28px;
  color: rgba(11, 18, 32, 0.05);
  font-size: clamp(6rem, 11vw, 11rem);
  line-height: 1;
  font-weight: 800;
}

.counter-wrap span,
.counter-wrap strong {
  position: relative;
  z-index: 2;
  display: block;
}

.counter-wrap span {
  color: var(--secondary);
  font-weight: 700;
}

.counter-wrap strong {
  color: var(--brand);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.05;
}

.box-quotes {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 310px;
  padding: 40px 30px 32px 42px;
}

.abstract-card {
  position: relative;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 34%, var(--brand) 0 8%, transparent 9%),
    radial-gradient(circle at 38% 58%, rgba(47, 128, 237, 0.85), transparent 18%),
    linear-gradient(145deg, var(--primary), #111722 48%, #ffffff 49%, #e9edf1);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.18);
  animation: panelFloat 6.6s ease-in-out infinite;
}

.abstract-card span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.abstract-card span:nth-child(1) {
  left: 28px;
  right: 34px;
  top: 46px;
  height: 10px;
}

.abstract-card span:nth-child(2) {
  left: 28px;
  width: 86px;
  top: 82px;
  height: 10px;
}

.abstract-card span:nth-child(3) {
  right: 22px;
  bottom: 34px;
  width: 46px;
  height: 46px;
  background: var(--brand);
}

.quote-icon {
  color: rgba(11, 18, 32, 0.08);
  font-size: 6rem;
  line-height: 0.7;
  font-weight: 800;
}

.box-quotes .desc {
  margin: 0 0 26px;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.35;
  font-weight: 800;
}

.cite {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 700;
}

.cite strong {
  color: var(--primary);
}

.cite .line {
  width: 1px;
  height: 18px;
  background: var(--neutral-400);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 7vw, 120px);
  align-items: start;
}

.service-copy {
  position: sticky;
  top: 126px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 600;
}

.services-image {
  width: min(100%, 420px);
  margin-top: 46px;
  border-radius: 18px;
  overflow: hidden;
  animation: panelFloat 7.2s ease-in-out infinite;
}

.control-render {
  position: relative;
  height: 250px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 20%, #d4d6d8 21% 79%, transparent 80%),
    linear-gradient(180deg, #ececec, #d9dcdf);
  box-shadow: var(--shadow-soft);
}

.control-render::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 36px;
  bottom: 0;
  border-radius: 22px 22px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.knob {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7f7f7, #cacdd1);
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.16), inset 0 2px 0 rgba(255, 255, 255, 0.9);
  animation: knobTurn 5.8s ease-in-out infinite;
}

.k1 { left: 30%; top: 62px; }
.k2 { right: 30%; top: 62px; animation-delay: 0.5s; }
.k3 { left: 30%; top: 148px; animation-delay: 1s; }
.k4 { right: 30%; top: 148px; animation-delay: 1.5s; }
.cable {
  position: absolute;
  left: 0;
  right: 0;
  top: 98px;
  height: 12px;
  background: repeating-linear-gradient(90deg, #bd866c 0 6px, #e0b08c 6px 10px);
}

.indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 88px;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.45);
  animation: signalPulse 2s ease-in-out infinite;
}

.accordion-faq_list {
  display: grid;
  gap: 20px;
}

.accordion-faq_item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--neutral-100);
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--scroll-y, 0px), 0) rotate(var(--scroll-tilt, 0deg));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
  will-change: transform;
}

.accordion-faq_item:hover {
  transform: translate3d(0, calc(var(--scroll-y, 0px) - 8px), 0) rotate(var(--scroll-tilt, 0deg));
}

.accordion-action {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 122px;
  padding: 38px 46px;
  text-align: left;
  cursor: pointer;
  color: var(--secondary);
  background: transparent;
}

.accordion-action::before {
  content: "";
  position: absolute;
  inset: 0 0 110%;
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, var(--neutral-900), var(--neutral-900));
  box-shadow: var(--shadow-dark);
  transition: inset 320ms ease;
}

.accordion-faq_item.active .accordion-action::before {
  inset: 0;
}

.accordion-title {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  color: inherit;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0;
  transition: color 260ms ease, transform 260ms ease;
}

.accordion-title .num {
  font-size: 1rem;
  line-height: 1.2;
}

.accordion-faq_item.active .accordion-title {
  color: var(--white);
}

.accordion-content {
  position: relative;
  z-index: 2;
  padding: 0 46px 42px;
  color: rgba(255, 255, 255, 0.74);
}

.accordion-faq_item.active .accordion-content {
  animation: accordionContentIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.accordion-content p {
  max-width: 640px;
  margin: 0 0 28px;
  line-height: 1.55;
  font-weight: 600;
}

.accordion-faq_item:not(.active) .accordion-content {
  display: none;
}

.list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-tags span {
  border-radius: 999px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.15);
  font-weight: 700;
}

.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: 46px;
  padding: 28px 28px 40px;
  background: var(--neutral-100);
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--scroll-y, 0px), 0) rotate(var(--scroll-tilt, 0deg));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
  will-change: transform;
}

.featured-card:hover {
  transform: translate3d(0, calc(var(--scroll-y, 0px) - 8px), 0) rotate(var(--scroll-tilt, 0deg));
  box-shadow: 0 34px 76px rgba(15, 23, 42, 0.15), inset 0 -8px 0 rgba(0, 0, 0, 0.04), inset 0 4px 0 rgba(255, 255, 255, 0.74);
}

.featured-visual {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(20, 184, 166, 0.42), transparent 19%),
    radial-gradient(circle at 34% 46%, rgba(47, 128, 237, 0.36), transparent 24%),
    linear-gradient(135deg, #09111d, #111827 42%, #dfe4e7 43%, #f7f8fa);
}

.featured-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.78), transparent 50%, rgba(20, 184, 166, 0.18));
}

.route-board {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.route-path {
  position: absolute;
  left: 16%;
  right: 12%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-blue), transparent);
  animation: signalRun 3.4s ease-in-out infinite;
  box-shadow: 0 0 22px rgba(42, 198, 248, 0.38);
}

.route-chip {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--white);
  background: rgba(11, 18, 32, 0.48);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  font-weight: 800;
  animation: chipDrift 4.6s ease-in-out infinite;
  will-change: transform;
}

.c1 { left: 12%; top: 24%; }
.c2 { left: 30%; top: 60%; animation-delay: 0.3s; }
.c3 { left: 48%; top: 28%; animation-delay: 0.6s; }
.c4 { right: 22%; top: 60%; animation-delay: 0.9s; }
.c5 { right: 10%; top: 28%; animation-delay: 1.2s; }

.featured-content {
  padding: 34px 34px 0;
}

.pagi-dot {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.pagi-dot span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d1d5db;
}

.pagi-dot .active {
  background: var(--brand-blue);
}

.featured-content .bot {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--neutral-300);
  padding-top: 36px;
}

.featured-content h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
}

.featured-content dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}

.featured-content dt {
  margin-bottom: 8px;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
}

.featured-content dd {
  margin: 0;
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.benefits-box {
  min-height: 405px;
  padding: 44px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.benefits-progress {
  min-height: 440px;
}

.benefits-progress-inner {
  display: grid;
  gap: 18px;
}

.benefits-progress-item {
  position: relative;
  height: 44px;
}

.progress-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 38px;
  border-radius: 10px;
  background: #f4f5f6;
  box-shadow: var(--shadow-button-light);
}

.p1 { width: 58%; }
.p2 { width: 84%; }
.p3 { width: 42%; }
.p4 { width: 76%; }

.progress-text {
  position: absolute;
  top: -3px;
  right: 0;
  border-radius: 12px;
  padding: 10px 16px;
  color: var(--primary);
  background: #f8f8f9;
  box-shadow: var(--shadow-button-light);
  font-weight: 800;
}

.benefits-box h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.1;
}

.benefits-box p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 600;
}

.benefits-step-inner {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-top: 54px;
}

.line-step {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 86px;
  height: 18px;
  border-radius: 999px;
  background: #f5f5f6;
  box-shadow: var(--shadow-button-light);
}

.step-item {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 14px;
  color: var(--primary);
  background: #f8f8f9;
  box-shadow: var(--shadow-soft);
  font-size: 3rem;
}

.shield-visual,
.mini-interface {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.shield {
  width: 170px;
  height: 190px;
  clip-path: polygon(50% 0, 92% 18%, 82% 74%, 50% 100%, 18% 74%, 8% 18%);
  background: linear-gradient(180deg, #ffffff, #edf0f3);
  box-shadow: var(--shadow-soft);
}

.lock {
  position: absolute;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 3rem;
}

.mini-interface .speech {
  position: absolute;
  left: 14%;
  top: 32px;
  width: 220px;
  height: 118px;
  border-radius: 24px;
  background: #f8f8f9;
  box-shadow: var(--shadow-soft);
}

.mini-interface .speech::before,
.mini-interface .speech::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 44px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.mini-interface .speech::before {
  top: 32px;
}

.mini-interface .speech::after {
  top: 56px;
  right: 86px;
}

.card-small {
  position: absolute;
  right: 12%;
  top: 28px;
  width: 190px;
  height: 210px;
  border-radius: 26px;
  background: #f7f7f8;
  box-shadow: var(--shadow-soft);
}

.card-small::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-blue));
  box-shadow: var(--shadow-button-light);
}

.check-small {
  position: absolute;
  right: 4%;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--primary);
  font-size: 2rem;
}

.features-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
}

.features-col {
  display: grid;
  gap: 28px;
}

.features-item {
  position: relative;
  min-height: 230px;
  padding: 44px 36px 38px;
}

.features-item::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.42));
}

.features-col.col-left .features-item::before {
  right: -170px;
}

.features-col.col-right .features-item::before {
  left: -170px;
  transform: rotate(180deg);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 36px;
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%),
    #272727;
  box-shadow: var(--shadow-button);
  font-weight: 800;
}

.features-item h3 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.features-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 600;
}

.features-center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 230px;
  height: 150px;
  margin: auto;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), #162033);
  box-shadow: 0 20px 68px rgba(20, 184, 166, 0.2), var(--shadow-soft);
  animation: panelFloat 6.8s ease-in-out infinite;
}

.features-center img {
  width: 145px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
}

.feature-pulse {
  position: absolute;
  inset: -34px;
  z-index: -1;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.24), transparent 65%);
  animation: breathe 3.5s ease-in-out infinite;
}

.section-tools {
  overflow: hidden;
}

.tool-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
}

.tool-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 600;
}

.floating-tools span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 18px;
  transform: rotate(var(--tilt, 0deg));
  color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.12);
  font-weight: 800;
  animation: floatY 5.2s ease-in-out infinite;
}

.floating-tools span:nth-child(1) { left: 12%; top: 16%; --tilt: -18deg; }
.floating-tools span:nth-child(2) { left: 22%; top: 56%; --tilt: 14deg; animation-delay: 0.4s; }
.floating-tools span:nth-child(3) { right: 12%; top: 18%; --tilt: 15deg; animation-delay: 0.8s; }
.floating-tools span:nth-child(4) { right: 22%; top: 58%; --tilt: -15deg; animation-delay: 1.2s; }
.floating-tools span:nth-child(5) { left: 6%; top: 46%; --tilt: -8deg; animation-delay: 1.6s; }
.floating-tools span:nth-child(6) { right: 6%; top: 46%; --tilt: 8deg; animation-delay: 2s; }

.dark-section {
  position: relative;
  margin-top: 10px;
  color: var(--white);
  background: var(--neutral-950);
  border-radius: 58px 58px 0 0;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0 18% auto;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent);
  clip-path: polygon(25% 0, 75% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.dark-heading {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.dark-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.98;
}

.dark-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 28px;
}

.dark-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius-lg);
  padding: 42px;
  background: #18191d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32), inset 0 4px 0 rgba(255, 255, 255, 0.06);
  transform: translate3d(0, var(--scroll-y, 0px), 0) rotate(var(--scroll-tilt, 0deg));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
  will-change: transform;
}

.dark-card:hover {
  transform: translate3d(0, calc(var(--scroll-y, 0px) - 8px), 0) rotate(var(--scroll-tilt, 0deg));
  border-color: rgba(42, 198, 248, 0.26);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 42px rgba(42, 198, 248, 0.08), inset 0 4px 0 rgba(255, 255, 255, 0.08);
}

.dark-card.large {
  min-height: 520px;
}

.dark-portrait {
  height: 285px;
  border-radius: 28px;
  margin-bottom: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 36%, rgba(20, 184, 166, 0.82), transparent 7%),
    radial-gradient(circle at 48% 38%, rgba(255, 255, 255, 0.75) 0 6%, transparent 7%),
    linear-gradient(140deg, #050608, #111827 44%, var(--brand) 45%, var(--brand-blue));
}

.dark-card h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.dark-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  font-weight: 600;
}

.dark-kicker {
  display: inline-block;
  margin-bottom: 100px;
  color: var(--brand-blue);
  font-weight: 800;
}

.pilot-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pricing-card {
  min-height: 450px;
  padding: 46px;
}

.pricing-card.dark {
  color: var(--white);
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.16), transparent 100%),
    var(--neutral-900);
  box-shadow: var(--shadow-dark);
}

.plan-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
  font-weight: 800;
}

.plan-meta small {
  color: var(--secondary);
  font-size: 1rem;
}

.pricing-card h3 {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.pricing-card p {
  max-width: 580px;
  margin: 0 0 34px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.pricing-card.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 30px 0 0;
  margin: 34px 0 32px;
  border-top: 1px solid rgba(113, 113, 122, 0.2);
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.pricing-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--neutral-200);
  font-size: 12px;
}

.pricing-card.dark li::before {
  color: var(--white);
  background: var(--neutral-600);
}

.accordion-asked {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.accordion-asked-item {
  padding: 0;
  overflow: hidden;
}

.accordion-asked-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
  padding: 24px 36px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
}

.accordion-asked-item summary::-webkit-details-marker {
  display: none;
}

.accordion-asked-item summary span {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #272727;
  box-shadow: var(--shadow-button);
}

.accordion-asked-item summary span::before,
.accordion-asked-item summary span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.accordion-asked-item summary span::after {
  transform: rotate(90deg);
  transition: opacity 160ms ease;
}

.accordion-asked-item[open] summary span::after {
  opacity: 0;
}

.accordion-asked-item p {
  margin: 0;
  padding: 0 36px 30px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.section-contact {
  padding-bottom: 100px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
}

.contact-shell h2 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.contact-shell p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.55;
  font-weight: 600;
}

.contact-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.contact-actions span {
  color: var(--secondary);
  font-weight: 800;
}

.tf-footer {
  padding: 58px 0 70px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--neutral-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  width: 165px;
  height: 44px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
}

.footer-logo img {
  width: 165px;
  max-width: none;
}

.tf-footer p {
  margin: 16px 0 0;
}

.tf-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.tf-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
}

.go-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 800;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow-button);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.go-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.privacy-main {
  padding: 150px 0 90px;
}

.privacy-hero,
.privacy-content {
  width: min(calc(100% - 48px), 1040px);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--neutral-100);
  box-shadow: var(--shadow-soft);
}

.privacy-hero {
  padding: clamp(42px, 8vw, 86px);
  margin-bottom: 28px;
}

.privacy-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.98;
}

.privacy-hero p,
.privacy-content p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.privacy-content {
  padding: clamp(34px, 6vw, 64px);
}

.privacy-content h2 {
  margin: 32px 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content a {
  color: var(--brand-blue);
  font-weight: 800;
}

.simple-page .tf-header {
  grid-template-columns: auto 1fr;
}

.simple-page .main-nav,
.site-nav.static-nav {
  justify-self: end;
}

.effectFade {
  opacity: 1;
  filter: none;
  transform: none;
}

.js .effectFade {
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(0, calc(58px + var(--scroll-y, 0px)), 0) scale(0.96);
  transition:
    opacity 760ms ease,
    filter 760ms ease,
    transform 840ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity, filter;
}

.js .effectFade.fadeRotateX {
  transform: translate3d(0, calc(68px + var(--scroll-y, 0px)), 0) rotateX(14deg) scale(0.96);
  transform-origin: 50% 80%;
}

.js .effectFade.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--scroll-y, 0px), 0) rotate(var(--scroll-tilt, 0deg)) scale(1);
}

.word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.62em) rotateX(22deg) scale(0.98);
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-index, 0) * 38ms);
}

.text-gradient-2 .word,
.text-gradient-3 .word {
  color: transparent;
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
}

.split-ready.is-visible .word,
.is-visible .split-ready .word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) rotateX(0deg) scale(1);
}

.split-ready.is-visible .word:nth-child(3n),
.is-visible .split-ready .word:nth-child(3n) {
  transition-duration: 900ms;
}

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

@keyframes rotateSoft {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes signalRun {
  0%, 100% { opacity: 0.25; filter: blur(0); }
  50% { opacity: 1; filter: blur(1px); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--tilt, 0deg)); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 88px 88px, -88px 88px; }
}

@keyframes buttonBreath {
  0%, 100% { box-shadow: var(--shadow-button); }
  50% { box-shadow: 0 -3px 0 #080808 inset, 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 18px 44px rgba(42, 198, 248, 0.22); }
}

@keyframes buttonBreathLight {
  0%, 100% { box-shadow: var(--shadow-button-light); }
  50% { box-shadow: 0 -3px 0 #e9e9e9 inset, 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 16px 36px rgba(42, 198, 248, 0.16); }
}

@keyframes panelFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 12px)) scale(1.035); }
}

@keyframes earthDrift {
  0%, 100% { background-position: 0 0, 0 0; opacity: 0.84; }
  50% { background-position: 0 0, 18px 0; opacity: 0.96; }
}

@keyframes shineSweep {
  0%, 100% { background-position: -120% 0, 0 0; opacity: 0.6; }
  50% { background-position: 120% 0, 0 0; opacity: 1; }
}

@keyframes signalPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.62; }
  45% { transform: scale(1.22); opacity: 1; }
  70% { transform: scale(0.94); opacity: 0.74; }
}

@keyframes cardSweep {
  0%, 22% { background-position: -150% 0, 0 0; opacity: 0.18; }
  48%, 58% { background-position: 60% 0, 0 0; opacity: 0.84; }
  100% { background-position: 180% 0, 0 0; opacity: 0.2; }
}

@keyframes chipDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -13px, 0); }
}

@keyframes accordionContentIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes knobTurn {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(16deg) translateY(-5px); }
}

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

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(47, 128, 237, 0.1); transform: translateY(-50%) scale(1); }
  50% { box-shadow: 0 0 0 11px rgba(47, 128, 237, 0.03); transform: translateY(-50%) scale(1.22); }
}

@media (max-width: 1199px) {
  .hero-showcase,
  .about-grid,
  .service-layout,
  .benefits-grid,
  .pilot-pricing-grid,
  .dark-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .service-copy {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .services-image {
    margin-bottom: 10px;
  }

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

  .features-center {
    order: -1;
  }

  .features-item::before {
    display: none;
  }

  .featured-content .bot,
  .featured-content dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .flat-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .tf-header {
    grid-template-columns: auto auto;
    width: min(calc(100% - 24px), 720px);
    padding: 10px 12px;
  }

  .brand-mark,
  .brand-mark img {
    width: 142px;
  }

  .mobile-menu-button {
    justify-self: end;
    display: grid;
    gap: 6px;
    place-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-button);
    cursor: pointer;
  }

  .mobile-menu-button span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
  }

  .main-nav,
  .header-btn {
    display: none;
  }

  .simple-page .main-nav.static-nav {
    display: flex;
    justify-self: end;
    gap: 4px;
  }

  .simple-page .main-nav.static-nav a {
    padding: 9px 8px;
    font-size: 12px;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open a {
    padding: 14px 16px;
  }

  .section-hero {
    padding-top: 118px;
  }

  .hero-orbit-panel {
    min-height: 470px;
    padding: 36px;
  }

  .quote-card,
  .box-quotes {
    grid-template-columns: 1fr;
  }

  .quote-card::before {
    display: none;
  }

  .quote-mark {
    left: 34px;
  }

  .featured-visual {
    min-height: 410px;
  }

  .floating-tools span {
    display: none;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .flat-spacing {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .heading-section {
    margin-bottom: 38px;
  }

  .heading-title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .heading-section .heading-title {
    font-size: 40px;
    line-height: 48px;
  }

  .text-display-2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .tf-btn,
  .hero-actions .tf-btn-2,
  .contact-actions .tf-btn,
  .contact-actions .tf-btn-2 {
    width: 100%;
  }

  .hero-orbit-panel {
    min-height: 410px;
    border-radius: 30px;
    padding: 28px;
  }

  .panel-caption {
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: block;
  }

  .panel-caption span {
    display: block;
    text-align: left;
    margin-top: 10px;
  }

  .glass-card,
  .review-box,
  .box-quotes,
  .benefits-box,
  .features-item,
  .pricing-card,
  .contact-shell,
  .privacy-hero,
  .privacy-content {
    border-radius: 28px;
    padding: 28px;
  }

  .section-about-us .col-left {
    min-height: 520px;
    border-radius: 28px;
    padding: 44px 24px 0;
  }

  .accordion-action {
    min-height: 94px;
    padding: 26px;
  }

  .accordion-title {
    font-size: 26px;
    line-height: 34px;
  }

  .accordion-content {
    padding: 0 26px 30px;
  }

  .featured-card {
    border-radius: 28px;
    padding: 18px 18px 28px;
  }

  .featured-visual {
    min-height: 320px;
    border-radius: 22px;
  }

  .route-chip {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .benefits-grid,
  .features-col,
  .accordion-faq_list {
    gap: 18px;
  }

  .benefits-box {
    min-height: 340px;
  }

  .benefits-progress-item {
    height: 52px;
  }

  .progress-line {
    height: 34px;
  }

  .progress-text {
    top: 28px;
    right: auto;
    left: 0;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .mini-interface .speech {
    left: 0;
    width: 190px;
  }

  .card-small {
    right: 0;
    width: 155px;
  }

  .pricing-card ul {
    grid-template-columns: 1fr;
  }

  .accordion-asked-item summary {
    padding: 22px;
  }

  .accordion-asked-item p {
    padding: 0 22px 24px;
  }

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

  .tf-footer nav {
    justify-content: flex-start;
  }
}

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

  .effectFade,
  .word {
    opacity: 1 !important;
    transform: none !important;
  }
}
