* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  background: linear-gradient(115deg, rgba(7, 26, 47, 0.93), rgba(19, 119, 212, 0.74), rgba(242, 99, 34, 0.5)), url("/table-decor-hero.png") center/cover;
  color: #ffffff;
  padding: 28px;
}

.nav,
.hero-inner,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

.hero-inner {
  padding-bottom: 84px;
}

.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1377d4;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 26px 0 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 780px;
  margin: 26px 0 0;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 650;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  background: #f26322;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: #ffffff;
  color: #071a2f;
}

.section {
  padding: 60px 0;
}

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

.card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f8fafc;
  padding: 24px;
}

.card h2,
.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.card p,
.section p,
li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 560;
}

.section-title {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.answer {
  border-left: 5px solid #1377d4;
  background: #eaf4ff;
  padding: 24px;
}

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

.links a {
  border-radius: 999px;
  background: #f3f4f6;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.faq {
  border-top: 1px solid #e5e7eb;
  padding-top: 22px;
}

footer {
  background: #071a2f;
  color: #ffffff;
  padding: 38px 0;
}

footer p {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 760px) {
  .hero {
    padding: 18px 0;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 52px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-inner {
    padding-bottom: 58px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
