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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  color: #101828;
  background-color: #fbfcff;
  line-height: 1.6;
}

.page {
  background: #f5f7fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.subpage-header,
.subpage-footer {
  padding: 1.8rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.subpage-footer {
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: none;
}

.legal,
.contact {
  padding: 4rem 0 3rem;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.legal h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
}

.legal p,
.legal li {
  color: #475467;
  font-size: 0.98rem;
}

.contact-hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
}

.contact-hero p {
  max-width: 620px;
  color: #475467;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-form button {
  margin-top: 0.5rem;
  justify-self: flex-start;
}

.form-note {
  font-size: 0.86rem;
  color: #64748b;
}

.contact-card ul {
  color: #475467;
  margin-top: 1rem;
}

.contact-card h3 {
  margin-top: 2rem;
}

.contact-visual {
  margin-top: 2rem;
}

.contact-visual img {
  width: 100%;
  max-width: 300px;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  color: #0b1623;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

.site-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: #475467;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #1d4ed8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 20px rgba(59, 130, 246, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(59, 130, 246, 0.25);
}

.secondary-link {
  font-weight: 600;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero {
  padding: 5rem 0 4rem;
}

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

.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  color: #475467;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
}

.stat {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  color: #475467;
  font-size: 0.9rem;
}

.hero-visual img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section.muted {
  background: #f5f7fb;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card img {
  width: 64px;
  height: 64px;
}

.card ul {
  color: #475467;
  font-size: 0.95rem;
  padding-left: 1.2rem;
}

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

.metrics {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: #475467;
  margin-bottom: 0.3rem;
}

.metric-value {
  font-weight: 700;
  font-size: 1.4rem;
}

.image-frame {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.12));
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame img {
  width: 100%;
  height: auto;
}

.quote-source {
  font-weight: 600;
  color: #2563eb;
}

.process-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.process-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.step-number {
  font-weight: 700;
  font-size: 0.85rem;
  color: #2563eb;
  letter-spacing: 0.2em;
}

.cta {
  background: linear-gradient(120deg, #0f172a, #1e293b);
  color: #ffffff;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta .secondary-link {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: #0b1623;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-grid .logo {
  color: #ffffff;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid h4 {
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

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

  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
