* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background-color: #050a14;
  color: #f0f3fa;
  line-height: 1.5;
}

.global-map-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 40%, #07121f 0%, #03070f 100%);
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: drop-shadow(0 0 8px rgba(0, 255, 210, 0.1));
}

.bg-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(3, 7, 18, 0.2) 0%,
    rgba(2, 5, 12, 0.65) 90%
  );
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #0f172ad9;
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 40px;
  color: #ffffff;
  z-index: 100;
  font-weight: 500;
}

.skip-link:focus {
  left: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 12, 24, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 4px #0ff6);
}

.brand-name,
.footer-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #a0f0ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 210, 0.3);
  background: rgba(10, 20, 35, 0.7);
  align-items: center;
  justify-content: center;
}

.nav-burger-lines,
.nav-burger-lines::before,
.nav-burger-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #eafcff;
  border-radius: 999px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger-lines::before,
.nav-burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-burger-lines::before {
  top: -6px;
}

.nav-burger-lines::after {
  top: 6px;
}

.nav-toggle:checked + .nav-burger .nav-burger-lines {
  background: transparent;
}

.nav-toggle:checked + .nav-burger .nav-burger-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-burger .nav-burger-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a,
.footer-links a {
  color: #eef5ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.2s;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.footer-links a:hover {
  color: #2effe6;
  border-bottom-color: #2effe6;
}

.nav-cta {
  background: rgba(0, 210, 200, 0.12);
  border: 1px solid rgba(0, 255, 210, 0.45);
  border-radius: 32px;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: rgba(0, 210, 200, 0.25);
  border-color: #2effe6;
}

.hero {
  padding: 80px 0 70px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  background: rgba(0, 255, 210, 0.12);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #b4f8f0;
  border: 0.5px solid rgba(0, 255, 200, 0.3);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 18px 0 12px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff, #c0faf2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.05rem;
  color: #cdddf5;
  max-width: 85%;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(105deg, #0b9b8f, #0f6b8f);
  border: none;
  box-shadow: 0 8px 20px rgba(0, 210, 190, 0.25);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(105deg, #14c2b2, #1280aa);
  box-shadow: 0 12px 28px rgba(0, 210, 180, 0.4);
}

.btn-secondary {
  background: rgba(20, 40, 60, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 255, 210, 0.5);
  color: #e2f3ff;
}

.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 0.5px solid rgba(0, 255, 210, 0.3);
}

.meta-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2effe6;
  box-shadow: 0 0 6px cyan;
}

.hero-panel,
.card,
.feature,
.point,
.deliverable,
.form-card,
.team-card {
  background: rgba(8, 18, 32, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  border: 1px solid rgba(0, 255, 210, 0.25);
}

.hero-panel {
  padding: 22px;
}

.panel-icon svg {
  stroke: #2effe6;
  filter: drop-shadow(0 0 4px #0ff4);
}

.panel-card h3 {
  font-size: 1.2rem;
  margin-top: 12px;
  color: #ffffff;
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.stat {
  background: rgba(0, 20, 30, 0.6);
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(0, 210, 200, 0.3);
}

.stat-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ccfdb;
}

.stat-value {
  font-weight: 700;
  font-size: 1rem;
  color: #e2f7ff;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: rgba(2, 12, 24, 0.6);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(0, 255, 200, 0.15);
  border-bottom: 1px solid rgba(0, 255, 200, 0.15);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  color: #bcd0e8;
  max-width: 70ch;
}

.cards-grid,
.about-grid,
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card,
.feature,
.point {
  padding: 24px;
  transition: 0.2s;
}

.card:hover,
.feature:hover {
  border-color: rgba(0, 255, 200, 0.6);
  background: rgba(12, 28, 44, 0.75);
  transform: translateY(-3px);
}

.point {
  display: flex;
  gap: 16px;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 200, 190, 0.2);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #2effe6;
  border: 1px solid #2effe6;
  flex-shrink: 0;
}

.split,
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.deliverable {
  padding: 28px;
}

.deliverable-pill {
  display: inline-flex;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(0, 255, 210, 0.1);
  border: 1px solid rgba(0, 255, 210, 0.25);
  color: #b4f8f0;
  font-size: 0.8rem;
  font-weight: 600;
}

.step {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 255, 210, 0.15);
}

.step-index {
  font-weight: 800;
  font-size: 1.4rem;
  color: #2effe6;
}

.checklist {
  margin-top: 20px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.check-mark {
  width: 22px;
  height: 22px;
  background: rgba(0, 200, 190, 0.25);
  border-radius: 30px;
  display: inline-block;
  position: relative;
  border: 1px solid #2effe6;
}

.check-mark::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 5px;
  font-size: 14px;
  color: #2effe6;
}

.split-actions,
.cta-actions {
  margin-top: 24px;
}

.team-card {
  margin-top: 28px;
  padding: 28px;
}

.team-card p {
  color: #d3e4fb;
  font-size: 1rem;
  max-width: 75ch;
}

.form-card {
  padding: 28px;
  border: 1px solid rgba(0, 210, 190, 0.4);
}

.field + .field {
  margin-top: 16px;
}

.field input {
  width: 100%;
  padding: 12px;
  background: rgba(10, 25, 45, 0.9);
  border: 1px solid rgba(0, 255, 210, 0.4);
  border-radius: 20px;
  color: #ffffff;
  font-weight: 500;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-note {
  background: rgba(0, 210, 180, 0.1);
  border-radius: 20px;
  padding: 14px;
  font-size: 0.8rem;
  margin-top: 18px;
  border-left: 3px solid #2effe6;
}

.site-footer {
  border-top: 1px solid rgba(0, 255, 210, 0.2);
  padding: 40px 0;
  background: rgba(3, 8, 18, 0.8);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-location,
.footer-copyright {
  color: #9bb4d0;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contacts {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-contacts a:hover {
  color: #2effe6;
  text-decoration: underline;
}

@media (max-width: 880px) {
  .hero-inner,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .nav-burger {
    display: flex;
    flex-shrink: 0;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    background: rgba(7, 18, 31, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 24px;
    gap: 18px;
    border: 1px solid rgba(46, 255, 230, 0.45);
    z-index: 200;
  }

  .lead {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contacts {
    text-align: left;
  }
}