:root {
  --bg-dark: #07111f;
  --bg-light: #f7f9fc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --border: #e2e8f0;
  --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
}

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

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

.section {
  padding: 90px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-title span {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title h1,
.section-title h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.section-title p {
  color: var(--text-muted);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}

.logo span {
  color: #60a5fa;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.menu-btn {
  display: none;
  color: var(--white);
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 34%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.22), transparent 36%),
    var(--bg-dark);
  color: var(--white);
  padding: 115px 0 95px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  max-width: 640px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-trust {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.hero-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.metric-list {
  display: grid;
  gap: 16px;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.metric strong {
  font-size: 28px;
  color: #93c5fd;
}

.metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.page-hero {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.3), transparent 32%),
    var(--bg-dark);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

.why-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.content h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.content p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 18px;
}

.list-box {
  display: grid;
  gap: 18px;
}

.list-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--card-shadow);
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  font-weight: 800;
}

.list-item h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.list-item p {
  color: var(--text-muted);
  font-size: 15px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.step-number {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
}

.results-box {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 30px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.results-box h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.results-box p {
  color: rgba(255, 255, 255, 0.72);
}

.results-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.result-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
}

.result-card h3 {
  color: #93c5fd;
  font-size: 18px;
  margin-bottom: 8px;
}

.result-card p {
  font-size: 14px;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.industry {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.cta {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.35), transparent 30%),
    var(--bg-dark);
  color: var(--white);
  text-align: center;
  border-radius: 32px;
  padding: 70px 30px;
}

.cta h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 16px;
}

.form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
  font-family: inherit;
  background: #ffffff;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

.form-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
}

.contact-line {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.contact-line strong {
  color: var(--text-main);
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin: 34px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.footer {
  background: #040a14;
  color: rgba(255, 255, 255, 0.72);
  padding: 44px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-logo {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .results-box {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 90px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(7, 17, 31, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 18px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .nav .btn {
    display: none;
  }

  .grid-3,
  .grid-2,
  .process,
  .results-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .hero-card,
  .results-box {
    padding: 26px;
  }

  .footer-grid {
    align-items: flex-start;
  }
}