* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-header: #08044e;
  --blue-dark: #05003f;
  --blue-deep: #070047;
  --blue-main: #0800a8;
  --blue-light: #1b4cff;
  --blue-electric: #245dff;
  --pink: #ff004f;
  --pink-strong: #ff1f6d;
  --cyan: #36d6ff;
  --cyan-soft: rgba(54, 214, 255, 0.14);
  --white: #ffffff;
  --black: #050510;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f8;
  --gray-200: #dce4ef;
  --gray-300: #c9d3e1;
  --gray-500: #6b7280;
  --gray-700: #2f3a4a;
  --gray-900: #111827;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-soft: 0 22px 60px rgba(5, 0, 63, 0.13);
  --shadow-heavy: 0 34px 90px rgba(5, 0, 63, 0.28);
  --transition: 0.28s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: var(--pink);
  color: var(--white);
}

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

button,
input,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

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

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

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 146px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 0, 79, 0.22), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(54, 214, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #05003f 0%, #070047 48%, #03001e 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.32) 1px, transparent 0);
  background-size: 18px 18px;
  mix-blend-mode: screen;
}

.hero-grid-bg,
.method-bg-grid,
.thexa-bg-grid,
.final-cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-glow,
.thexa-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-one {
  width: 430px;
  height: 430px;
  left: -160px;
  top: 180px;
  background: rgba(255, 0, 79, 0.18);
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 140px;
  background: rgba(54, 214, 255, 0.14);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-header span,
.final-cta span,
.diagnostic-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(54, 214, 255, 0.08);
  border: 1px solid rgba(54, 214, 255, 0.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue-main);
  background: rgba(8, 0, 168, 0.07);
  border-color: rgba(8, 0, 168, 0.14);
}

.hero h1 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -3.6px;
  margin-bottom: 26px;
}

.hero h1::after {
  content: "";
  display: block;
  width: 128px;
  height: 4px;
  border-radius: 999px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 26px rgba(54, 214, 255, 0.35);
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-trust-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  overflow: hidden;
}

.hero-trust-row div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-trust-row div:last-child {
  border-right: 0;
}

.hero-trust-row strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 5px;
}

.hero-trust-row span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

/* Hero visual */

.hero-visual {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.command-panel {
  width: min(100%, 590px);
  min-height: 540px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 0, 79, 0.24), transparent 28%),
    radial-gradient(circle at 78% 75%, rgba(54, 214, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-heavy);
  backdrop-filter: blur(18px);
}

.command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.72;
  pointer-events: none;
}

.command-panel::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.panel-header,
.panel-footer {
  position: relative;
  z-index: 2;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-dots {
  display: flex;
  gap: 8px;
}

.panel-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.panel-dots span:first-child {
  background: var(--pink);
}

.panel-dots span:nth-child(2) {
  background: var(--cyan);
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-status span,
.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(54, 214, 255, 0.8);
}

.system-core {
  width: 315px;
  height: 315px;
  position: relative;
  z-index: 2;
  margin: 38px auto 22px;
  display: grid;
  place-items: center;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(54, 214, 255, 0.22);
}

.core-ring-one {
  inset: 0;
  animation: rotateCore 18s linear infinite;
}

.core-ring-two {
  inset: 38px;
  border-color: rgba(255, 0, 79, 0.26);
  animation: rotateCore 14s linear infinite reverse;
}

.core-ring-three {
  inset: 74px;
  border-color: rgba(255, 255, 255, 0.16);
}

.core-ring-one::before,
.core-ring-two::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 18px;
  left: 50%;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(54, 214, 255, 0.9);
}

.core-ring-two::before {
  background: var(--pink);
  box-shadow: 0 0 20px rgba(255, 0, 79, 0.8);
}

@keyframes rotateCore {
  to {
    transform: rotate(360deg);
  }
}

.core-center {
  width: 190px;
  height: 190px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  padding: 20px 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 0, 79, 0.88), rgba(8, 0, 168, 0.92) 58%, rgba(54, 214, 255, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 48px rgba(54, 214, 255, 0.19),
    0 26px 70px rgba(8, 0, 168, 0.32);
}

.core-center span {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.core-center strong {
  display: block;
  width: 100%;
  color: var(--white);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -1px;
  font-weight: 950;
  text-align: center;
}

.core-center small {
  display: block;
  width: 100%;
  max-width: 138px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 650;
  text-align: center;
  margin: 0 auto;
}

.system-nodes {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.system-node {
  position: absolute;
  min-width: 92px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.system-node i {
  color: var(--cyan);
  font-size: 17px;
}

.node-erp {
  top: 150px;
  left: 26px;
}

.node-crm {
  top: 138px;
  right: 32px;
}

.node-rpa {
  left: 62px;
  bottom: 165px;
}

.node-ai {
  right: 68px;
  bottom: 150px;
}

.node-bi {
  top: 290px;
  left: 38px;
}

.node-api {
  top: 300px;
  right: 34px;
}

.panel-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.panel-footer div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.panel-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
  margin-bottom: 7px;
}

.panel-footer div:first-child > span {
  width: 86px;
  white-space: normal;
}

.panel-footer strong,
.panel-footer .counter {
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
  margin: 0;
}

.floating-alert {
  position: absolute;
  z-index: 7;
  min-height: 48px;
  padding: 0 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(3, 0, 30, 0.18);
  font-size: 12px;
  font-weight: 900;
  animation: floatAlert 4.8s ease-in-out infinite;
}

.floating-alert span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(54, 214, 255, 0.8);
}

.alert-one {
  left: 52px;
  top: 102px;
}

.alert-two {
  right: -8px;
  top: 250px;
  animation-delay: 0.6s;
}

.alert-three {
  left: 8px;
  top: 236px;
  bottom: auto;
  animation-delay: 1.2s;
}

@keyframes floatAlert {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Architecture strip */

.architecture-strip {
  position: relative;
  z-index: 6;
  margin-top: -46px;
  padding-bottom: 70px;
}

.architecture-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr 64px 1fr;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}

.architecture-item {
  padding: 16px 18px;
}

.architecture-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--blue-main);
  background: rgba(8, 0, 168, 0.075);
  font-size: 12px;
  font-weight: 950;
}

.architecture-item h3 {
  color: var(--blue-dark);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
}

.architecture-item p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.architecture-line {
  height: 2px;
  position: relative;
  background: linear-gradient(90deg, rgba(8, 0, 168, 0.12), var(--pink), var(--cyan));
}

.architecture-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(54, 214, 255, 0.8);
}

/* Section headers */

.section-header {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-header-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header-center span {
  margin-left: auto;
  margin-right: auto;
}

.section-header h2,
.thexa-text h2,
.final-cta h2,
.diagnostic-copy h2 {
  color: var(--blue-dark);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -2.4px;
  margin-bottom: 22px;
}

.section-header p,
.thexa-text p,
.final-cta p,
.diagnostic-copy p {
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.75;
}

.white h2 {
  color: var(--white);
}

.white p {
  color: rgba(255, 255, 255, 0.72);
}

/* Problems */

.problems {
  position: relative;
  overflow: hidden;
  padding: 82px 0 104px;
  background:
    radial-gradient(circle at 92% 12%, rgba(8, 0, 168, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.problems-content {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 64px;
}

.problems .section-header {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.alerts-board {
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 79, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}

.alerts-header {
  min-height: 70px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--blue-dark);
  background:
    linear-gradient(135deg, rgba(8, 0, 168, 0.055), rgba(54, 214, 255, 0.035));
  border-bottom: 1px solid var(--gray-200);
}

.alerts-header div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}

.alerts-header small {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
}

.alerts-list {
  display: grid;
}

.alert-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.alert-card:last-child {
  border-bottom: 0;
}

.alert-card:hover {
  background: rgba(8, 0, 168, 0.035);
}

.alert-critical {
  background:
    radial-gradient(circle at top right, rgba(255, 0, 79, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.98);
}

.alert-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue-main));
  box-shadow: 0 16px 34px rgba(8, 0, 168, 0.18);
}

.alert-icon i {
  font-size: 24px;
}

.alert-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.alert-card p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

/* Method */

.method {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 0, 79, 0.19), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(54, 214, 255, 0.16), transparent 31%),
    linear-gradient(145deg, #05003f 0%, #070047 58%, #03001e 100%);
  color: var(--white);
}

.method .container {
  position: relative;
  z-index: 2;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.method-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.method-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(54, 214, 255, 0.16), transparent 35%);
  opacity: 0;
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(54, 214, 255, 0.34);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.28);
}

.method-card:hover::before {
  opacity: 1;
}

.method-number {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(255, 255, 255, 0.26);
  font-size: 56px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.method-icon {
  width: 54px;
  height: 54px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue-light));
  box-shadow: 0 18px 36px rgba(255, 0, 79, 0.18);
  margin-bottom: 24px;
}

.method-icon i {
  font-size: 25px;
}

.method-card h3 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}

.method-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 550;
}

.method-card strong {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 28px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 850;
}

.comparison-panel {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.comparison-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.comparison-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.comparison-card h3 i {
  flex: 0 0 auto;
  font-size: 28px;
}

.comparison-card.negative h3 i {
  color: var(--pink);
}

.comparison-card.positive h3 i {
  color: var(--cyan);
}

.comparison-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.comparison-card li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  padding-left: 25px;
  position: relative;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.negative li::before {
  background: var(--pink);
}

.positive li::before {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(54, 214, 255, 0.65);
}

/* Thexa */

.thexa {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(8, 0, 168, 0.10), transparent 30%),
    radial-gradient(circle at 88% 28%, rgba(255, 0, 79, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.thexa .container {
  position: relative;
  z-index: 2;
}

.thexa::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(8, 0, 168, 0.18),
    rgba(54, 214, 255, 0.28),
    rgba(255, 0, 79, 0.18),
    transparent
  );
}

.thexa-bg-grid {
  background-image:
    linear-gradient(rgba(8, 0, 168, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 0, 168, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.thexa-glow-one {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 130px;
  background: rgba(8, 0, 168, 0.08);
}

.thexa-glow-two {
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: 80px;
  background: rgba(255, 0, 79, 0.075);
}

.thexa-content {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 74px;
}

.thexa-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.thexa-robot-stage {
  width: min(100%, 560px);
  height: 600px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(54, 214, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(255, 0, 79, 0.13), transparent 34%),
    linear-gradient(145deg, #05003f, #070047 58%, #03001e);
  border: 1px solid rgba(8, 0, 168, 0.1);
  box-shadow: var(--shadow-heavy);
}

.thexa-robot-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.thexa-robot-stage::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 80px;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(54, 214, 255, 0.2), transparent 65%);
  filter: blur(2px);
}

.robot-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(54, 214, 255, 0.17);
  pointer-events: none;
}

.orbit-one {
  width: 470px;
  height: 470px;
  animation: rotateCore 28s linear infinite;
}

.orbit-two {
  width: 350px;
  height: 350px;
  border-color: rgba(255, 0, 79, 0.17);
  animation: rotateCore 22s linear infinite reverse;
}

.orbit-three {
  width: 240px;
  height: 240px;
  border-color: rgba(255, 255, 255, 0.11);
}

.thexa-robot {
  position: relative;
  z-index: 4;
  width: min(86%, 430px);
  max-height: 555px;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 28px rgba(54, 214, 255, 0.14));
  animation: robotFloat 5.2s ease-in-out infinite;
}

@keyframes robotFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.thexa-node {
  position: absolute;
  z-index: 6;
  min-width: 78px;
  height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 900;
}

.thexa-node i {
  color: var(--cyan);
  font-size: 16px;
}

.thexa-node-erp {
  left: 34px;
  top: 125px;
}

.thexa-node-crm {
  right: 38px;
  top: 148px;
}

.thexa-node-rpa {
  left: 38px;
  bottom: 165px;
}

.thexa-node-ai {
  right: 46px;
  bottom: 178px;
}

.thexa-node-bi {
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
}

.thexa-text {
  max-width: 620px;
}

.thexa-feature-grid {
  margin: 34px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.thexa-feature {
  padding: 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--gray-200);
  box-shadow: 0 16px 38px rgba(5, 0, 63, 0.055);
  transition: var(--transition);
}

.thexa-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(8, 0, 168, 0.16);
}

.thexa-feature > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue-main));
  font-size: 21px;
  box-shadow: 0 14px 28px rgba(8, 0, 168, 0.16);
}

.thexa-feature strong {
  display: block;
  color: var(--blue-dark);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.thexa-feature p {
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
  margin: 0;
}

.thexa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Solutions */

.solutions {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(54, 214, 255, 0.10), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(8, 0, 168, 0.10), transparent 30%),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 0, 168, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 0, 168, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.solutions .container {
  position: relative;
  z-index: 2;
}

.solutions::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(8, 0, 168, 0.16),
    rgba(255, 0, 79, 0.16),
    transparent
  );
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 48px rgba(5, 0, 63, 0.065);
  transition: var(--transition);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 79, 0.08), transparent 34%),
    radial-gradient(circle at bottom left, rgba(54, 214, 255, 0.08), transparent 34%);
  opacity: 0;
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 0, 168, 0.2);
  box-shadow: var(--shadow-soft);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.solution-top span {
  color: rgba(8, 0, 168, 0.18);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.solution-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue-main));
  box-shadow: 0 16px 32px rgba(8, 0, 168, 0.16);
}

.solution-icon i {
  font-size: 24px;
}

.solution-card h3 {
  position: relative;
  z-index: 2;
  color: var(--blue-dark);
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.6px;
  margin-bottom: 15px;
}

.solution-card p {
  position: relative;
  z-index: 2;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 24px;
}

.solution-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.solution-card li {
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
  padding-left: 22px;
  position: relative;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-main);
}


/* Clients / Success Cases */

.clients-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 0, 79, 0.08), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(54, 214, 255, 0.11), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(5, 0, 63, 0.035),
      transparent 18%,
      transparent 82%,
      rgba(5, 0, 63, 0.035)
    );
}

.clients-section .container {
  position: relative;
  z-index: 2;
}

.clients-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(54, 214, 255, 0.22),
    rgba(255, 0, 79, 0.18),
    transparent
  );
}

.clients-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 0, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 0, 168, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.clients-logo-panel {
  position: relative;
  overflow: hidden;
  padding: 42px 0;
  margin-top: 10px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 0, 79, 0.18), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(54, 214, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #05003f 0%, #080071 45%, #03245f 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 28px 74px rgba(5, 0, 63, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.clients-logo-panel::before,
.clients-logo-panel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.clients-logo-panel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 0, 63, 1), rgba(5, 0, 63, 0));
}

.clients-logo-panel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 36, 95, 1), rgba(3, 36, 95, 0));
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
}

.clients-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: clientsMarquee 30s linear infinite;
}

.clients-logo-panel:hover .clients-track {
  animation-play-state: paused;
}

.client-logo-card {
  width: 340px;
  height: 172px;
  flex: 0 0 auto;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.20), transparent 38%),
    linear-gradient(135deg, rgba(72, 94, 190, 0.88), rgba(24, 46, 122, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.client-logo-card:hover {
  transform: translateY(-7px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(91, 116, 218, 0.95), rgba(31, 58, 150, 0.95));
  border-color: rgba(54, 214, 255, 0.38);
  box-shadow:
    0 30px 66px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(54, 214, 255, 0.10);
}

.client-logo-card img {
  max-width: 270px;
  max-height: 118px;
  object-fit: contain;
  filter:
    contrast(1.12)
    saturate(1.08)
    drop-shadow(0 5px 12px rgba(0, 0, 0, 0.28));
  opacity: 1;
  transition: var(--transition);
}

.client-logo-card:hover img {
  transform: scale(1.05);
}

@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.success-cases-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.success-case-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 32px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 48px rgba(5, 0, 63, 0.065);
  transition: var(--transition);
}

.success-case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 79, 0.08), transparent 34%),
    radial-gradient(circle at bottom left, rgba(54, 214, 255, 0.08), transparent 34%);
  opacity: 0;
  transition: var(--transition);
}

.success-case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 0, 168, 0.2);
  box-shadow: var(--shadow-soft);
}

.success-case-card:hover::before {
  opacity: 1;
}

.success-case-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 0, 79, 0.2), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(54, 214, 255, 0.16), transparent 34%),
    linear-gradient(145deg, var(--blue-dark), var(--blue-deep) 58%, #03001e);
  border-color: rgba(255, 255, 255, 0.12);
}

.success-case-icon {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 19px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue-main));
  box-shadow: 0 18px 36px rgba(8, 0, 168, 0.16);
}

.success-case-icon i {
  font-size: 26px;
}

.success-case-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-main);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.success-case-card h3 {
  position: relative;
  z-index: 2;
  color: var(--blue-dark);
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -0.7px;
  margin-bottom: 15px;
}

.success-case-card p {
  position: relative;
  z-index: 2;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.success-case-card.featured span {
  color: var(--cyan);
}

.success-case-card.featured h3 {
  color: var(--white);
}

.success-case-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

/* Diagnostic */

.diagnostic-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 0, 168, 0.13), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(255, 0, 79, 0.11), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(54, 214, 255, 0.10), transparent 35%),
    linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.diagnostic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 0, 168, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 0, 168, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.diagnostic-section .container {
  position: relative;
  z-index: 2;
}

.diagnostic-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(54, 214, 255, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(220, 228, 239, 0.95);
  box-shadow:
    0 28px 76px rgba(5, 0, 63, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.diagnostic-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 0, 79, 0.065), transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(54, 214, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.diagnostic-copy,
.diagnostic-form,
.diagnostic-stats {
  position: relative;
  z-index: 2;
}

.diagnostic-copy {
  padding: 58px 50px;
  border-right: 1px solid var(--gray-200);
}

.diagnostic-badge {
  color: var(--blue-main);
  background: rgba(8, 0, 168, 0.075);
  border-color: rgba(8, 0, 168, 0.14);
}

.diagnostic-copy p {
  margin-bottom: 30px;
}

.diagnostic-list {
  list-style: none;
  display: grid;
  gap: 15px;
}

.diagnostic-list li {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  padding-left: 28px;
  position: relative;
}

.diagnostic-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: 950;
}

.diagnostic-form {
  padding: 58px 50px 46px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border-radius: 15px;
  border: 1px solid var(--gray-200);
  outline: none;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
  transition: var(--transition);
  box-shadow: 0 10px 26px rgba(5, 0, 63, 0.035);
}

.form-group input::placeholder {
  color: rgba(47, 58, 74, 0.42);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue-main) 50%),
    linear-gradient(135deg, var(--blue-main) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(8, 0, 168, 0.36);
  box-shadow: 0 0 0 4px rgba(8, 0, 168, 0.075);
  background: var(--white);
}

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.turnstile-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 4px 0 2px;
}

.turnstile-wrap .cf-turnstile {
  max-width: 100%;
}

.diagnostic-submit {
  min-height: 58px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue-main), var(--blue-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 950;
  transition: var(--transition);
  box-shadow: 0 18px 38px rgba(255, 0, 79, 0.22);
}

.diagnostic-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(8, 0, 168, 0.3);
}

.diagnostic-submit i {
  font-size: 19px;
}

.diagnostic-submit.is-loading,
.diagnostic-submit:disabled {
  opacity: 0.75;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
}

.diagnostic-form small {
  text-align: center;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 750;
  margin-top: 2px;
}

.form-status {
  display: none;
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}

.form-status.is-success {
  display: block;
  color: var(--blue-dark);
  background: rgba(54, 214, 255, 0.12);
  border: 1px solid rgba(54, 214, 255, 0.28);
}

.form-status.is-error {
  display: block;
  color: #8a102f;
  background: rgba(255, 0, 79, 0.08);
  border: 1px solid rgba(255, 0, 79, 0.22);
}

.diagnostic-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 252, 0.94));
}

.diagnostic-stats div {
  padding: 24px 38px;
  border-right: 1px solid var(--gray-200);
}

.diagnostic-stats div:last-child {
  border-right: 0;
}

.diagnostic-stats strong,
.diagnostic-stats .counter {
  display: block;
  color: var(--blue-dark);
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 7px;
}

.diagnostic-stats span {
  display: block;
  color: var(--gray-500);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 0, 79, 0.23), transparent 31%),
    radial-gradient(circle at 82% 24%, rgba(54, 214, 255, 0.18), transparent 31%),
    linear-gradient(145deg, #05003f 0%, #08005a 100%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta span {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.btn-secondary.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary.light:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

/* Animations */

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s ease;
  filter: blur(3px);
}

[data-animate="fade-left"] {
  transform: translateX(34px);
}

[data-animate="fade-right"] {
  transform: translateX(-34px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

.method-card:nth-child(2),
.solution-card:nth-child(2) {
  transition-delay: 0.08s;
}

.method-card:nth-child(3),
.solution-card:nth-child(3) {
  transition-delay: 0.16s;
}

.method-card:nth-child(4),
.solution-card:nth-child(4) {
  transition-delay: 0.24s;
}

/* Responsive */

@media (max-width: 1120px) {
  .hero-content,
  .thexa-content {
    gap: 46px;
  }

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

  .solution-card {
    min-height: 360px;
  }

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

  .problems .section-header {
    position: static;
    max-width: 820px;
  }

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

@media (max-width: 980px) {

  .hero {
    min-height: auto;
    padding: 126px 0 82px;
  }

  .hero-content,
  .thexa-content,
  .diagnostic-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 600px;
  }

  .command-panel {
    max-width: 620px;
  }

  .architecture-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .architecture-line {
    width: 2px;
    height: 46px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(8, 0, 168, 0.12), var(--pink), var(--cyan));
  }

  .architecture-line::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }

  .method-grid,
  .comparison-panel {
    grid-template-columns: 1fr;
  }

  .thexa-visual {
    min-height: 560px;
  }

  .thexa-robot-stage {
    height: 560px;
  }

  .diagnostic-copy {
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }

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

  .diagnostic-stats div:nth-child(2) {
    border-right: 0;
  }

  .diagnostic-stats div:nth-child(1),
  .diagnostic-stats div:nth-child(2) {
    border-bottom: 1px solid var(--gray-200);
  }


  .clients-section {
    padding: 86px 0;
  }

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

  .success-case-card {
    min-height: auto;
  }

  .clients-logo-panel {
    padding: 34px 0;
    border-radius: 34px;
  }

  .client-logo-card {
    width: 270px;
    height: 140px;
    padding: 24px 28px;
  }

  .client-logo-card img {
    max-width: 210px;
    max-height: 92px;
  }

}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 118px 0 70px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -2.4px;
  }

  .hero p,
  .section-header p,
  .thexa-text p,
  .final-cta p,
  .diagnostic-copy p {
    font-size: 16px;
  }

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


  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .hero-trust-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-trust-row div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    min-height: 660px;
  }

  .command-panel {
    min-height: 620px;
    padding: 22px 18px;
    border-radius: 30px;
  }

  .system-core {
    width: 245px;
    height: 245px;
    margin: 42px auto 92px;
  }

  .core-center {
    width: 150px;
    height: 150px;
    padding: 18px 14px;
  }

  .core-center strong {
    font-size: 25px;
  }

  .core-center span {
    font-size: 9px;
  }

  .core-center small {
    font-size: 10px;
    max-width: 112px;
  }

  .system-node {
    display: inline-flex;
    min-width: 66px;
    height: 34px;
    padding: 0 10px;
    gap: 5px;
    font-size: 10px;
    border-radius: 999px;
  }

  .system-node i {
    font-size: 15px;
  }

  .node-erp {
    top: 142px;
    left: 18px;
  }

  .node-crm {
    top: 142px;
    right: 18px;
  }

  .node-rpa {
      left: 30px;
      top: 352px;
      bottom: auto;
    }

  .node-ai {
      right: 30px;
      top: 352px;
      bottom: auto;
    }

  .node-bi {
    display: inline-flex;
    top: 236px;
    left: 18px;
  }

  .node-api {
    display: inline-flex;
    top: 236px;
    right: 18px;
  }

  .floating-alert {
    display: inline-flex;
    min-height: 36px;
    padding: 0 12px;
    gap: 8px;
    font-size: 10px;
    max-width: calc(100% - 44px);
    white-space: nowrap;
    animation: none;
  }

  .floating-alert span {
    width: 7px;
    height: 7px;
  }

  .alert-one {
    left: 24px;
    top: 92px;
  }

  .alert-two {
    right: 22px;
    top: 308px;
  }

  .alert-three {
    left: 24px;
    top: 292px;
  }

  .panel-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
  }

  .panel-footer div {
    padding: 18px 20px;
  }

  .architecture-strip {
    margin-top: -30px;
    padding-bottom: 58px;
  }

  .architecture-grid {
    padding: 20px;
    border-radius: 24px;
  }

  .problems,
  .method,
  .thexa,
  .solutions,
  .clients-section,
  .diagnostic-section,
  .final-cta {
    padding: 76px 0;
  }

  .section-header h2,
  .thexa-text h2,
  .final-cta h2,
  .diagnostic-copy h2 {
    font-size: clamp(32px, 9.5vw, 44px);
    letter-spacing: -1.6px;
  }

  .alerts-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .alert-card {
    grid-template-columns: 44px 1fr;
    padding: 21px;
  }

  .alert-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .thexa-visual {
    min-height: 510px;
  }

  .thexa-robot-stage {
    height: 510px;
    border-radius: 30px;
  }

  .thexa-robot {
    width: min(88%, 360px);
  }

  .robot-orbit.orbit-one {
    width: 390px;
    height: 390px;
  }

  .robot-orbit.orbit-two {
    width: 290px;
    height: 290px;
  }

  .thexa-node {
    min-width: 70px;
    height: 38px;
    font-size: 11px;
  }

  .thexa-node-erp {
    left: 16px;
    top: 108px;
  }

  .thexa-node-crm {
    right: 16px;
    top: 130px;
  }

  .thexa-node-rpa {
    left: 18px;
    bottom: 140px;
  }

  .thexa-node-ai {
    right: 18px;
    bottom: 150px;
  }

  .thexa-node-bi {
    bottom: 42px;
  }

  .thexa-feature-grid,
  .solutions-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .diagnostic-copy,
  .diagnostic-form {
    padding: 34px 24px;
  }

  .turnstile-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .diagnostic-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
    padding: 22px 24px;
  }

  .diagnostic-stats div:last-child {
    border-bottom: 0;
  }


}

@media (max-width: 620px) {

  .clients-logo-panel {
    padding: 30px 0;
    border-radius: 28px;
  }

  .clients-logo-panel::before,
  .clients-logo-panel::after {
    width: 64px;
  }

  .clients-track {
    gap: 18px;
    animation-duration: 24s;
  }

  .client-logo-card {
    width: 215px;
    height: 112px;
    padding: 18px 22px;
    border-radius: 24px;
  }

  .client-logo-card img {
    max-width: 168px;
    max-height: 70px;
  }

  .success-case-card {
    padding: 28px;
    border-radius: 26px;
  }

  .success-case-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 460px) {

  .hero h1 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 670px;
  }

  .command-panel {
    min-height: 630px;
    padding: 20px 16px;
  }

  .system-core {
    width: 230px;
    height: 230px;
    margin: 42px auto 100px;
  }

  .core-center {
    width: 148px;
    height: 148px;
    padding: 18px;
  }

  .core-center strong {
    font-size: 24px;
  }

  .core-center span {
    font-size: 10px;
  }

  .core-center small {
    font-size: 10px;
    max-width: 108px;
  }

  .system-node {
    display: inline-flex;
    min-width: 60px;
    height: 32px;
    padding: 0 9px;
    font-size: 9px;
  }

  .system-node i {
    font-size: 14px;
  }

  .node-erp {
    top: 142px;
    left: 14px;
  }

  .node-crm {
    top: 142px;
    right: 14px;
  }

  .node-bi {
    display: inline-flex;
    top: 232px;
    left: 14px;
  }

  .node-api {
    display: inline-flex;
    top: 232px;
    right: 14px;
  }

  .node-rpa {
    left: 24px;
    bottom: 258px;
  }

  .node-ai {
    right: 24px;
    bottom: 258px;
  }

  .floating-alert {
    display: inline-flex;
    min-height: 34px;
    padding: 0 10px;
    font-size: 9px;
  }

  .alert-one {
    left: 20px;
    top: 88px;
  }

  .alert-two {
    right: 18px;
    top: 304px;
  }

  .alert-three {
    left: 20px;
    top: 286px;
  }

  .panel-footer strong,
  .panel-footer .counter {
    font-size: 30px;
  }

  .method-card,
  .comparison-card,
  .solution-card {
    padding: 26px;
    border-radius: 24px;
  }

  .thexa-robot-stage {
    height: 460px;
  }

  .thexa-robot {
    width: min(92%, 330px);
  }

  .thexa-node {
    display: none;
  }

  .robot-orbit.orbit-one {
    width: 330px;
    height: 330px;
  }

  .robot-orbit.orbit-two {
    width: 250px;
    height: 250px;
  }

  .turnstile-wrap {
    transform: scale(0.92);
    transform-origin: left center;
    width: 108%;
  }

  .form-status {
    font-size: 12px;
    padding: 13px 14px;
  }
  
}

/* Home Blog Section */

.home-blog-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(54, 214, 255, 0.10), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(8, 0, 168, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.home-blog-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(8, 0, 168, 0.16),
    rgba(54, 214, 255, 0.26),
    rgba(255, 0, 79, 0.12),
    transparent
  );
}

.home-blog-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 0, 168, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 0, 168, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.home-blog-section .container {
  position: relative;
  z-index: 2;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-blog-card {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 48px rgba(5, 0, 63, 0.065);
  transition: var(--transition);
}

.home-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 0, 168, 0.16);
  box-shadow: var(--shadow-soft);
}

.home-blog-media {
  display: block;
  overflow: hidden;
  min-height: 230px;
  background: var(--blue-dark);
}

.home-blog-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: var(--transition);
}

.home-blog-card:hover .home-blog-media img {
  transform: scale(1.05);
}

.home-blog-placeholder {
  height: 230px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(54, 214, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 0, 79, 0.14), transparent 34%),
    linear-gradient(145deg, #05003f, #070047 58%, #03001e);
}

.home-blog-placeholder span {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.home-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--blue-main);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
  margin-bottom: 14px;
}

.home-blog-meta small {
  color: var(--gray-300);
}

.home-blog-card h3 {
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}

.home-blog-card h3 a {
  transition: var(--transition);
}

.home-blog-card h3 a:hover {
  color: var(--blue-main);
}

.home-blog-card p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 600;
  margin-bottom: 24px;
}

.home-blog-read-more {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-main);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.home-blog-read-more:hover {
  color: var(--pink);
  transform: translateX(4px);
}

.home-blog-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.home-blog-loading {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 44px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 48px rgba(5, 0, 63, 0.065);
}

.home-blog-loading-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue-main));
  box-shadow: 0 16px 34px rgba(8, 0, 168, 0.18);
}

.home-blog-loading-icon i {
  font-size: 28px;
}

.home-blog-loading h3 {
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
}

.home-blog-loading p {
  max-width: 520px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .home-blog-section {
    padding: 82px 0;
  }

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

  .home-blog-card-content {
    padding: 24px;
  }

  .home-blog-card h3 {
    font-size: 22px;
  }

  .home-blog-media,
  .home-blog-media img,
  .home-blog-placeholder {
    height: 220px;
    min-height: 220px;
  }

  .home-blog-actions .btn-primary {
    width: 100%;
  }
}
