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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #111827;
  background-color: #F8FAFC;
  line-height: 1.6;
}

a {
  color: #1D4ED8;
  text-decoration: none;
}

a:hover {
  color: #60A5FA;
}

img {
  max-width: 100%;
  display: block;
}

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

.header {
  background: #0B1220;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: block;
}

.logo-header {
  height: 50px;
}

.logo-footer {
  height: 100px;
}

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

.nav a {
  color: #F8FAFC;
  font-weight: 500;
}

.menu-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #F8FAFC;
}

.menu-close {
  display: none;
}

.hero {
  background: #0B1220;
  color: #F8FAFC;
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-text p {
  margin-bottom: 16px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: #1D4ED8;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #60A5FA;
  color: #60A5FA;
}

.hero-metrics {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-card {
  background: #111827;
  padding: 16px;
  border-radius: 8px;
}

.metric-card span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #22C55E;
}

.section {
  padding: 64px 0;
}

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

.bg-light {
  background: #F8FAFC;
}

.bg-navy {
  background: #0B1220;
  color: #F8FAFC;
}

.cards-grid,
.process-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.process-step,
.trust-card,
.faq-item {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}

.bg-navy .process-step {
  background: #111827;
  border: 1px solid #1F2937;
}

.process-step span {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #22C55E;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.check-list {
  list-style: none;
  margin-top: 16px;
}

.check-list li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22C55E;
}

.logo-strip {
  margin-top: 24px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.contact-section .contact-grid,
.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row input,
.form-row textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #D1D5DB;
}

.footer {
  background: #0B1220;
  color: #F8FAFC;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #F8FAFC;
}

.footer-bottom {
  border-top: 1px solid #1F2937;
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.page-hero {
  background: #0B1220;
  color: #F8FAFC;
  padding: 64px 0;
}

.page-hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.legal-section {
  padding: 64px 0;
}

.legal-section h1 {
  margin-bottom: 20px;
}

.legal-section h2 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.thanks-section {
  padding: 80px 0;
  text-align: left;
}

.thanks-summary {
  margin: 24px 0;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #F8FAFC;
  padding: 16px;
  display: none;
  z-index: 99;
}

.cookie-content {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-link {
  color: #60A5FA;
  font-weight: 500;
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0;
    background: #0B1220;
    flex-direction: column;
    padding: 80px 24px;
    transform: translateX(100%);
    transition: none;
  }

  .nav a {
    font-size: 1.4rem;
  }

  .menu-close {
    display: block;
    color: #F8FAFC;
    font-size: 2rem;
    align-self: flex-end;
    margin-bottom: 40px;
    cursor: pointer;
  }

  .menu-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section {
    padding: 48px 0;
  }
}

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