/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base: #07060d;
  --bg-surface: #0e0c1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(124, 58, 237, 0.45);
  --purple-1: #7c3aed;
  --purple-2: #8b5cf6;
  --purple-3: #a78bfa;
  --text-primary: #f0eeff;
  --text-secondary: #8a87a4;
  --text-muted: #4e4b6a;
  --radius-pill: 100px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 64px;
  --nav-top: 16px;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

section {
  scroll-margin-top: calc(var(--nav-height) + var(--nav-top) + 16px);
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Loader ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s var(--ease);
}

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

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader__logo {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #ffffff 0%, var(--purple-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader__track {
  width: 210px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-1), var(--purple-3));
  border-radius: var(--radius-pill);
  transition: width 1.05s var(--ease);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease), opacity 0.22s var(--ease);
  white-space: nowrap;
  border: none;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 65%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  pointer-events: none;
  transition: left 0.55s var(--ease);
}

.btn:hover::after {
  left: 160%;
}

.btn--primary {
  background: var(--purple-1);
  color: #fff;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.3), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover {
  background: var(--purple-2);
  box-shadow: 0 0 44px rgba(124, 58, 237, 0.55), 0 6px 22px rgba(124, 58, 237, 0.22);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.3);
  transition-duration: 0.1s;
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(124, 58, 237, 0.38);
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.05);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.1), 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn--ghost:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

.btn--text {
  background: transparent;
  color: var(--text-secondary);
  padding: 13px 10px;
  overflow: visible;
}

.btn--text::after {
  display: none;
}

.btn--text svg {
  width: 16px;
  height: 16px;
  transition: transform 0.28s var(--ease);
}

.btn--text:hover {
  color: var(--text-primary);
}

.btn--text:hover svg {
  transform: translateX(6px);
}

.btn--large {
  padding: 16px 36px;
  font-size: 15px;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: var(--nav-top);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1080px;
  height: var(--nav-height);
  z-index: 200;
  border-radius: var(--radius-pill);
  background: rgba(8, 7, 16, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(7, 6, 13, 0.96);
  border-color: rgba(124, 58, 237, 0.14);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124, 58, 237, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__inner {
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
}

.nav__logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff 0%, var(--purple-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: auto;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 20px;
}

.nav__links li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 450;
  color: var(--text-secondary);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.005em;
  transition: color 0.22s var(--ease);
  overflow: hidden;
}

.nav__links li a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.055);
  transform: scale(0.72);
  opacity: 0;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.nav__links li a:hover {
  color: var(--text-primary);
}

.nav__links li a:hover::before {
  transform: scale(1);
  opacity: 1;
}

/* ─── Hamburger ─── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.28s ease, background 0.28s ease;
  transform-origin: center;
}

.nav__burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--text-primary);
}

.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--text-primary);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(7, 6, 13, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  transform: translateY(18px);
  transition: transform 0.38s var(--ease) 0.04s;
}

.mobile-menu.is-open .mobile-menu__inner {
  transform: translateY(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-menu__link {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

.mobile-menu__link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

/* ─── Section Shared ─── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-3);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-header {
  margin-bottom: 52px;
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal {
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), background var(--transition), border-color var(--transition);
}

.service-card.reveal.visible {
  transform: translateY(0) scale(1);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ─── Hero Rotating Text ─── */
.hero__rotate-wrap {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  line-height: 1.25;
  overflow: visible;
  height: 1.25em;
}

.hero__phrase {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(10px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease), filter 0.72s var(--ease);
  background: linear-gradient(135deg, var(--purple-2) 0%, var(--purple-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.hero__phrase.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
  pointer-events: auto;
}

.hero__phrase.exiting {
  opacity: 0;
  transform: translateY(-18px);
  filter: blur(8px);
  transition: opacity 0.48s var(--ease), transform 0.48s var(--ease), filter 0.48s var(--ease);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__spline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__spline-cover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 48px;
  background: var(--bg-base);
  z-index: 3;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 46%, rgba(7, 6, 13, 0.55) 0%, rgba(7, 6, 13, 0.35) 40%, rgba(7, 6, 13, 0.08) 70%, transparent 100%), linear-gradient(to bottom, rgba(7, 6, 13, 0.45) 0%, transparent 22%, transparent 68%, rgba(7, 6, 13, 1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-height) + var(--nav-top) + 80px) 48px 100px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-3);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 32px;
}

.hero__headline {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.hero__headline--accent {
  background: linear-gradient(135deg, var(--purple-2) 0%, var(--purple-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--bg-base));
  z-index: 2;
  pointer-events: none;
}

/* ─── Word reveal ─── */
@keyframes wordGlow {
  0% {
    text-shadow: none;
  }

  30% {
    text-shadow: 0 0 22px rgba(167, 139, 250, 0.75), 0 0 44px rgba(124, 58, 237, 0.35);
  }

  100% {
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.18);
  }
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.52s var(--ease), transform 0.52s var(--ease);
}

.word-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: wordGlow 1.6s var(--ease) 0.25s both;
}

/* ─── Services ─── */
.services {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 50%, var(--bg-base) 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  cursor: default;
  position: relative;
  will-change: transform;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% 115%, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.service-card > *:not(.card-border-svg) {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-5px) scale(1.026);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(124, 58, 237, 0.14),
    0 0 48px rgba(124, 58, 237, 0.14);
}

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

.card-border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--purple-3);
  background: rgba(124, 58, 237, 0.07);
  margin-bottom: 28px;
  flex-shrink: 0;
}

.service-card__body {
  flex: 1;
}

.service-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── Results ─── */
.results {
  padding: 72px 0;
}

/* Stats row */
.results__stats {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.results__stats .stat {
  flex: 1;
  padding: 40px 44px;
  border-left: none;
  border-right: 1px solid var(--border);
}

.results__stats .stat:last-child {
  border-right: none;
}

.stat__row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.stat__number {
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.stat__unit {
  font-size: 24px;
  font-weight: 600;
  color: var(--purple-3);
}

.stat__label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Chart */
.results__chart {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: stretch;
}

.chart-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chart-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.chart-highlight::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.chart-highlight__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chart-highlight__value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-top: 4px;
}

.chart-highlight__number {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.chart-highlight__unit {
  font-size: 20px;
  font-weight: 600;
  color: var(--purple-3);
  letter-spacing: -0.02em;
}

.chart-highlight__sub {
  font-size: 12px;
  color: var(--purple-3);
  opacity: 0.75;
  margin-top: 2px;
}

.chart {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.chart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--border);
}

.chart__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.chart__period {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.chart__body {
  display: flex;
  gap: 10px;
  padding: 20px 20px 0;
}

.chart__yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 32px;
  flex-shrink: 0;
}

.chart__yaxis span {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-align: right;
  line-height: 1;
}

.chart__plot {
  flex: 1;
  min-width: 0;
}

.chart__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.chart__grid {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
}

.chart__grid--v {
  stroke: rgba(255, 255, 255, 0.03);
}

.chart__area {
  fill: url(#areaGrad);
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}

.chart__area.animated {
  opacity: 1;
}

.chart__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart__line--primary {
  stroke: url(#lineGrad);
  stroke-width: 2;
}

.chart__line--secondary {
  stroke: rgba(124, 58, 237, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
}

.chart__labels {
  display: flex;
  justify-content: space-between;
  padding: 8px 4px 14px;
}

.chart__labels span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Chart data dots */
.chart__dot {
  fill: var(--bg-surface);
  stroke: var(--purple-3);
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.chart__dot.visible {
  opacity: 1;
}

/* Metrics panel */
.metrics-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.metrics-panel__header {
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--border);
}

.metrics-panel .metrics {
  padding: 24px;
}

/* Metrics */
.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric__name {
  font-size: 13px;
  color: var(--text-secondary);
}

.metric__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-3);
  letter-spacing: -0.01em;
}

.metric__track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.metric__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-1), var(--purple-3));
  border-radius: var(--radius-pill);
  transition: width 1.3s var(--ease);
}

/* ─── Globe Section ─── */
.globe-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 50%, var(--bg-base) 100%);
}

.globe-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.globe-section__content {
  max-width: 460px;
}

.globe-section__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 20px 0 36px;
}

.globe-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-canvas {
  width: 560px;
  height: 560px;
  max-width: 100%;
}

/* ─── Contact ─── */
.contact {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__info {
  padding-top: 8px;
}

.contact__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 12px;
}

.contact__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 360px;
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 28px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  width: 100%;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(124, 58, 237, 0.04);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.form-submit.is-sending {
  opacity: 0.65;
  pointer-events: none;
}

.form-submit.is-sent {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #6ee7b7;
  box-shadow: none;
  transform: none;
}

/* ─── Footer ─── */
.footer {
  padding: 88px 0 44px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__brand {
  flex-shrink: 0;
  max-width: 260px;
}

.footer__brand .nav__logo {
  font-size: 22px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 220px;
  line-height: 1.7;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer__social svg {
  width: 19px;
  height: 19px;
}

.footer__social:hover {
  color: var(--text-primary);
  border-color: rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.06);
}

.footer__nav {
  display: flex;
  gap: 72px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__col a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--text-secondary);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .results__chart {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .results__stats {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .results__stats .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .results__stats .stat:last-child {
    border-bottom: none;
  }

  .globe-section__layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .globe-section__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-top: 12px;
  }

  .nav {
    width: calc(100% - 24px);
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__content {
    padding: calc(var(--nav-height) + var(--nav-top) + 48px) 24px 80px;
  }

  .hero__headline {
    font-size: clamp(36px, 9vw, 56px);
  }

  .hero__overlay {
    background: radial-gradient(ellipse 120% 100% at 50% 50%, rgba(7, 6, 13, 0.65) 0%, rgba(7, 6, 13, 0.5) 50%, rgba(7, 6, 13, 0.1) 100%), linear-gradient(to bottom, rgba(7, 6, 13, 0.5) 0%, transparent 25%, transparent 65%, rgba(7, 6, 13, 1) 100%);
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .results__chart {
    grid-template-columns: 1fr;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__info {
    padding-top: 0;
  }

  .contact__desc {
    max-width: 100%;
  }

  .globe-canvas {
    width: 340px;
    height: 340px;
  }

  .contact__form {
    padding: 32px 24px;
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    align-items: start;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__nav {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .footer__nav {
    gap: 24px;
  }

  .globe-canvas {
    width: 290px;
    height: 290px;
  }

  .results__stats .stat {
    padding: 28px 28px;
  }
}

