/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f9fafb;
  line-height: 1.6;
}

/* Utilities */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background-color: #f3f4f6;
}

.section-accent {
  background: linear-gradient(135deg, #111827, #020617);
  color: #f9fafb;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 640px;
  color: #4b5563;
}

/* Grid */

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease,
    transform 80ms ease, box-shadow 80ms ease;
}

.btn-primary {
  background-color: #2563eb;
  color: #f9fafb;
  border-color: #2563eb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #111827;
  border-color: #d1d5db;
}

.btn-outline:hover {
  background-color: #e5e7eb;
}

.section-accent .btn-outline {
  color: #f9fafb;
  border-color: #4b5563;
}

.section-accent .btn-outline:hover {
  background-color: rgba(249, 250, 251, 0.1);
  border-color: #6b7280;
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Topbar */

.topbar {
  background-color: #0f172a;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}

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

/* Nav */

.nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.1rem;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #111827;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
}

.nav-cta:hover {
  background-color: #f3f4f6;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-toggle-line {
  width: 1.2rem;
  height: 2px;
  background-color: #111827;
}

@media (max-width: 840px) {
  .nav-menu {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 180ms ease;
  }

  .nav-menu.is-open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #dbeafe 0, #eff6ff 40%, #f9fafb 100%);
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
  color: #0f172a;
}

.hero p {
  color: #4b5563;
  max-width: 640px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.hero-trust span {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffffaa;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.hero-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #1f2933, #0b1120);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.hero-map {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.hero-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Cards / pills / lists */

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.94rem;
  color: #4b5563;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  color: #374151;
  background-color: #ffffff;
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
  color: #4b5563;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
}

/* Final CTA */

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.final-cta h2 {
  margin: 0 0 0.4rem;
}

.final-cta p {
  margin: 0;
}

@media (max-width: 800px) {
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer */

.footer {
  background-color: #020617;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-inner {
  padding: 2.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #111827;
  padding: 0.9rem 0;
  text-align: center;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

@media (max-width: 780px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Forms */

.form {
  max-width: 640px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.6rem 0.7rem;
  font: inherit;
}

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

/* Page titles */

.page-header {
  padding: 2.5rem 0 1rem;
}

.page-header h1 {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
}

.page-header p {
  margin: 0;
  max-width: 640px;
  color: #4b5563;
}

/* Simple table */

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table th,
.table td {
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid #e5e7eb;
}

.table th {
  background-color: #f3f4f6;
  text-align: left;
  font-weight: 600;
}

/* Vendor logos */
.vendor-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
}

.vendor-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.vendor-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.vendor-logo-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 150ms ease;
}

.vendor-logo-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 700px) {
  .vendor-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
