:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0b5bd3;
  --primary-dark: #0847a7;
  --accent: #ff7b29;
  --border: #dbe5f4;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  font-weight: 800;
  color: var(--primary);
}

.brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-fpt {
  height: 34px;
  width: auto;
}

.logo-geobase {
  height: 30px;
  width: auto;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: #c6d7f1;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: #1e293b;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  border-color: var(--border);
  background: #fff;
  color: var(--text);
}

.btn-ghost:hover {
  border-color: #bfd2ef;
}

.hero {
  padding: 72px 0 56px;
  background: radial-gradient(circle at 18% 18%, #dceaff 0, #f4f8ff 42%, #f4f8ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero-brand {
  margin-bottom: 12px;
}

.hero-brand img {
  height: 42px;
  width: auto;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
  margin-top: 16px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

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

.hero-card h3 {
  margin-top: 0;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.card-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: #edf3ff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.section-subtitle {
  margin-top: 0;
  max-width: 75ch;
  color: var(--muted);
}

.feature-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pricing-cta {
  margin-top: 24px;
  text-align: center;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.35fr 1fr;
}

.steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: #1e293b;
}

.quote-box {
  margin: 0;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quote-box p {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.quote-box span {
  color: var(--muted);
}

.contact-box {
  text-align: center;
}

.contact-box p {
  color: var(--muted);
}

.contact-form {
  margin: 22px auto 0;
  max-width: 760px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.contact-form textarea,
.contact-form input {
  width: 100%;
  border: 1px solid #c7d7f0;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 210px;
}

.form-message {
  min-height: 26px;
  margin: 8px 0 0;
  font-weight: 600;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 0;
}

.footer-contact-strip {
  background: linear-gradient(90deg, #001f57 0%, #0a2f72 55%, #0a397f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-contact-list {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  color: #f1f5f9;
}

.footer-contact-list p {
  margin: 0;
  padding: 8px 10px;
  font-size: 1rem;
  line-height: 1.35;
}

.footer-contact-list p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  padding: 18px 0 22px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .section,
  .hero {
    padding: 56px 0;
  }

  .feature-grid,
  .pricing-gallery,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .brand-divider {
    display: none;
  }

  .logo-fpt {
    height: 30px;
  }

  .logo-geobase {
    height: 26px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .footer-contact-list p + p {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
