*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #e2e8f0;
  background: #0f172a;
  background-image: linear-gradient(rgba(226, 232, 240, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(226, 232, 240, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
body.ax-no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}
input,
textarea {
  font-family: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ax-section {
  padding: 96px 0;
}
.ax-section-head {
  margin-bottom: 56px;
  max-width: 560px;
}
.ax-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ax-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 16px;
}
.ax-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #38bdf8;
}
.ax-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ax-section-sub {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
}
.ax-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 4px;
}
.ax-btn--primary {
  background: #38bdf8;
  color: #0f172a;
  padding: 14px 28px;
}
.ax-btn--primary:hover {
  background: #5fcaf9;
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
}
.ax-btn--ghost {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(226, 232, 240, 0.08);
  padding: 13px 28px;
}
.ax-btn--ghost:hover {
  border-color: rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}
.ax-btn--full {
  width: 100%;
}
.ax-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ax-logo__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ax-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
  transition: all 0.25s ease;
  overflow-x: clip;
}
.ax-header--scrolled {
  border-bottom-color: rgba(56, 189, 248, 0.3);
}
.ax-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.ax-nav {
  display: flex;
  gap: 36px;
}
.ax-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s ease;
}
.ax-nav a:hover {
  color: #38bdf8;
}
.ax-header__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ax-header__cta:hover {
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
}
.ax-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.ax-burger span {
  display: block;
  height: 1px;
  background: #94a3b8;
  transition: all 0.25s ease;
}
.ax-burger span:nth-child(1),
.ax-burger span:nth-child(2) {
  width: 24px;
}
.ax-burger span:nth-child(3) {
  width: 16px;
}
.ax-burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ax-burger--active span:nth-child(2) {
  opacity: 0;
}
.ax-burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}
.ax-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 26, 0.7);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ax-nav-overlay--visible {
  opacity: 1;
  visibility: visible;
}
.ax-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ax-hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 700px;
  height: 700px;
  border: 1px solid rgba(226, 232, 240, 0.08);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none;
}
.ax-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none;
  opacity: 0.4;
}
.ax-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}
.ax-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 28px;
}
.ax-hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #38bdf8;
}
.ax-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e2e8f0;
  line-height: 1.05;
  margin-bottom: 28px;
}
.ax-hero__title span {
  color: #38bdf8;
  display: block;
}
.ax-hero__sub {
  font-size: 17px;
  color: #94a3b8;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.ax-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.ax-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
}
.ax-hero__metric-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #38bdf8;
  line-height: 1;
}
.ax-hero__metric-label {
  font-size: 12px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.ax-data-block {
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.ax-data-block__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #162032;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}
.ax-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ax-dot--red {
  background: #ff5f57;
}
.ax-dot--yellow {
  background: #febc2e;
}
.ax-dot--green {
  background: #28c840;
}
.ax-data-block__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #94a3b8;
  margin-left: 8px;
}
.ax-data-block__body {
  padding: 20px 24px;
}
.ax-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}
.ax-data-row:last-child {
  border-bottom: none;
}
.ax-data-row__key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #94a3b8;
}
.ax-data-row__val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
}
.ax-data-divider {
  height: 1px;
  background: rgba(226, 232, 240, 0.08);
  margin: 8px 0;
}
.ax-c-green {
  color: #4ade80;
}
.ax-c-accent {
  color: #38bdf8;
}
.ax-c-muted {
  color: #475569;
}
.ax-services {
  background: #0f172a;
}
.ax-hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ax-hex-grid .ax-hex:nth-child(4),
.ax-hex-grid .ax-hex:nth-child(5),
.ax-hex-grid .ax-hex:nth-child(6) {
  margin-top: -40px;
}
.ax-hex {
  position: relative;
  padding-bottom: 115%;
  cursor: default;
}
.ax-hex:hover .ax-hex__inner {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
}
.ax-hex__inner {
  position: absolute;
  inset: 0;
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20% 15%;
  text-align: center;
  transition: all 0.25s ease;
}
.ax-hex__icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.ax-hex__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
  line-height: 1.3;
}
.ax-hex__text {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
}
.ax-hex__price {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.06em;
}
.ax-method {
  background: #1e293b;
}
.ax-method__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ax-method__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.6);
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
}
.ax-principle {
  padding: 28px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.ax-principle:last-child {
  border-bottom: none;
}
.ax-principle:hover .ax-principle__num {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}
.ax-principle__num {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(226, 232, 240, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.ax-principle__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.ax-principle__text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}
.ax-stats {
  background: #0f172a;
}
.ax-stats__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ax-radar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ax-radar__svg {
  width: 100%;
  max-width: 360px;
}
.ax-stats__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ax-stat-item {
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  padding: 32px 24px;
  transition: all 0.25s ease;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
}
.ax-stat-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.08);
}
.ax-stat-item__num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 8px;
}
.ax-stat-item__label {
  font-size: 12px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ax-cases {
  background: #1e293b;
}
.ax-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ax-case {
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  overflow: hidden;
  transition: all 0.25s ease;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
}
.ax-case:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
  transform: translateY(-6px);
}
.ax-case__photo-wrap {
  overflow: hidden;
}
.ax-case__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.6);
  display: block;
  transition: transform 0.5s ease;
}
.ax-case:hover .ax-case__photo {
  transform: scale(1.05);
}
.ax-case__tag {
  display: inline-block;
  margin: 20px 24px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  padding: 4px 12px;
  border-radius: 2px;
}
.ax-case__body {
  padding: 16px 24px 28px;
}
.ax-case__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.ax-case__text {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ax-case__results {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
}
.ax-case__result-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #38bdf8;
}
.ax-case__result-label {
  font-size: 11px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ax-team {
  background: #0f172a;
}
.ax-team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ax-team__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.6);
  border: 1px solid rgba(226, 232, 240, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}
.ax-team__text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 40px;
}
.ax-team__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ax-team__fact {
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  padding: 24px 20px;
  transition: all 0.25s ease;
}
.ax-team__fact:hover {
  border-color: rgba(56, 189, 248, 0.3);
}
.ax-team__fact-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 6px;
}
.ax-team__fact-label {
  font-size: 12px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ax-process {
  background: #1e293b;
}
.ax-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.ax-process-step {
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.ax-process-step::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.08);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: all 0.25s ease;
}
.ax-process-step:hover {
  border-color: rgba(56, 189, 248, 0.3);
}
.ax-process-step:hover::before {
  background: rgba(56, 189, 248, 0.3);
}
.ax-process-step__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ax-process-step__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 10px;
}
.ax-process-step__text {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.75;
}
.ax-cta {
  position: relative;
  background: #162032;
  padding: 96px 0;
  overflow: hidden;
}
.ax-cta__geo {
  position: absolute;
  left: -120px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(226, 232, 240, 0.08);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none;
  opacity: 0.5;
}
.ax-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ax-cta__content {
  padding-top: 8px;
}
.ax-cta__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ax-cta__title span {
  color: #38bdf8;
}
.ax-cta__sub {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 28px;
}
.ax-cta__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.ax-cta__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #94a3b8;
}
.ax-cta__bullets li::before {
  content: '◆';
  color: #38bdf8;
  font-size: 8px;
  flex-shrink: 0;
}
.ax-cta__channels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ax-cta__channel {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  text-decoration: none;
  transition: all 0.25s ease;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 98% 100%, 0 100%);
}
.ax-cta__channel:hover {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.08);
}
.ax-cta__channel--static {
  cursor: default;
}
.ax-cta__channel--static:hover {
  border-color: rgba(226, 232, 240, 0.08);
  background: #1e293b;
}
.ax-cta__channel-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #475569;
  text-transform: lowercase;
}
.ax-cta__channel-val {
  font-size: 14px;
  color: #e2e8f0;
}
.ax-cta__form-wrap {
  position: relative;
}
.ax-cta__form {
  background: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.08);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 97%, 98% 100%, 0 100%);
}
.ax-cta__form-bar,
.ax-cta__success-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #162032;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}
.ax-cta__form-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #94a3b8;
  margin-left: 8px;
}
.ax-cta__form-body {
  padding: 28px 32px 32px;
}
.ax-cta__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ax-cta__field {
  display: block;
  margin-bottom: 12px;
}
.ax-cta__field-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #475569;
  margin-bottom: 6px;
  text-transform: lowercase;
}
.ax-cta__form input,
.ax-cta__form textarea {
  background: #0f172a;
  border: 1px solid rgba(226, 232, 240, 0.08);
  border-radius: 4px;
  color: #e2e8f0;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  width: 100%;
  transition: all 0.25s ease;
}
.ax-cta__form input:focus,
.ax-cta__form textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}
.ax-cta__form input::placeholder,
.ax-cta__form textarea::placeholder {
  color: #475569;
}
.ax-cta__form textarea {
  resize: vertical;
  min-height: 100px;
}
.ax-cta__privacy {
  margin-top: 14px;
  font-size: 11px;
  color: #475569;
  line-height: 1.6;
  text-align: center;
}
.ax-cta__privacy a {
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ax-cta__privacy a:hover {
  color: #38bdf8;
}
.ax-cta__success {
  display: none;
  background: #1e293b;
  border: 1px solid rgba(56, 189, 248, 0.3);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
  clip-path: polygon(0 0, 100% 0, 100% 97%, 98% 100%, 0 100%);
}
.ax-cta__success-body {
  padding: 48px 32px;
  text-align: center;
}
.ax-cta__success-icon {
  font-size: 40px;
  color: #38bdf8;
  margin-bottom: 16px;
}
.ax-cta__success-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
}
.ax-cta__success-text {
  font-size: 14px;
  color: #94a3b8;
}
.ax-footer {
  position: relative;
  background: #070d1a;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  overflow: hidden;
}
.ax-footer__accent {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #38bdf8 20%, #818cf8 50%, #38bdf8 80%, transparent 100%);
  opacity: 0.6;
}
.ax-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}
.ax-footer__brand .ax-logo__name {
  font-size: 18px;
}
.ax-footer__desc {
  font-size: 13px;
  color: #475569;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.ax-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
}
.ax-footer__meta span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.02em;
}
.ax-footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 20px;
}
.ax-footer__col a {
  display: block;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}
.ax-footer__col a:hover {
  color: #e2e8f0;
}
.ax-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}
.ax-footer__copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12px;
  color: #475569;
}
.ax-footer__domain {
  font-family: 'JetBrains Mono', monospace;
  color: #94a3b8;
  opacity: 0.7;
}
.ax-footer__badge {
  opacity: 0.5;
  flex-shrink: 0;
}
.ax-hex,
.ax-case,
.ax-process-step,
.ax-principle {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ax--animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .ax-header__cta {
    display: none;
  }
  .ax-burger {
    display: flex;
  }
  .ax-nav {
    position: fixed;
    top: 72px;
    right: calc(-1 * min(300px, 88vw));
    width: min(300px, 88vw);
    height: calc(100dvh - 72px);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: #1e293b;
    border-left: 1px solid rgba(226, 232, 240, 0.08);
    z-index: 95;
    visibility: hidden;
    pointer-events: none;
    transition: right 0.3s ease, visibility 0.3s ease;
  }
  .ax-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.08);
  }
  .ax-nav--open {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }
  .ax-nav-overlay {
    display: block;
  }
  .ax-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ax-hex-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ax-hex-grid .ax-hex:nth-child(4),
  .ax-hex-grid .ax-hex:nth-child(5),
  .ax-hex-grid .ax-hex:nth-child(6) {
    margin-top: 0;
  }
  .ax-method__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ax-stats__wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ax-cases__grid {
    grid-template-columns: 1fr;
  }
  .ax-team__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ax-process__steps {
    grid-template-columns: 1fr 1fr;
  }
  .ax-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ax-cta__fields-row {
    grid-template-columns: 1fr;
  }
  .ax-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .ax-footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .ax-hex-grid {
    grid-template-columns: 1fr;
  }
  .ax-process__steps {
    grid-template-columns: 1fr;
  }
  .ax-stats__numbers {
    grid-template-columns: 1fr 1fr;
  }
  .ax-footer__inner {
    grid-template-columns: 1fr;
  }
  .ax-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }
  .ax-cta__form-body {
    padding: 24px 20px 28px;
  }
  .ax-cta__channel {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .ax-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
