@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  color: #0f172a;
  background: #f8fafc;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

a {
  color: #1d4ed8;
}

.shell {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #dbeafe;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
}

.siteHeader .shell,
.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.nav a,
.footerInner a {
  text-decoration: none;
  font-weight: 600;
  color: #334155;
}

.pageWrap {
  padding: 1.25rem 0 3rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.hero {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.08);
}

.eyebrow {
  margin: 0 0 0.65rem;
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.12;
}

.lead {
  max-width: 54rem;
  margin: 0.9rem 0 0;
  color: #475569;
  font-size: 1.02rem;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.primaryBtn,
.secondaryBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.primaryBtn {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.secondaryBtn {
  border: 1px solid #bfdbfe;
  background: #fff;
}

.metaStrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.metaStrip div,
.sideCard,
.seoBlock {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.metaStrip div {
  padding: 0.95rem 1rem;
}

.metaStrip strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.metaStrip span {
  color: #475569;
  font-size: 0.92rem;
}

.contentGrid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
  gap: 1rem;
  margin-top: 1rem;
}

.contentMain,
.contentSide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.seoBlock,
.sideCard {
  padding: 1.15rem 1.15rem 1.2rem;
}

.seoBlock h2,
.sideCard h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.seoBlock p,
.sideCard p,
.seoFaqItem p {
  margin: 0 0 0.8rem;
  color: #475569;
}

.seoBlock p:last-child,
.sideCard p:last-child,
.seoFaqItem p:last-child {
  margin-bottom: 0;
}

.seoBlock ul,
.sideCard ol,
.seoLinkList {
  margin: 0;
  padding-left: 1.15rem;
  color: #475569;
}

.seoBlock li + li,
.seoLinkList li + li,
.sideCard li + li {
  margin-top: 0.45rem;
}

.seoFaqList {
  display: grid;
  gap: 0.9rem;
}

.seoFaqItem {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #eff6ff;
}

.seoFaqItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.seoFaqItem h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.seoLinkList a {
  font-weight: 600;
  text-decoration: none;
}

.siteFooter {
  margin-top: 2rem;
  border-top: 1px solid #dbeafe;
  background: #ffffff;
}

@media (max-width: 900px) {
  .contentGrid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .siteHeader .shell,
  .footerInner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .ctaRow {
    flex-direction: column;
  }

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

  .pageWrap {
    padding-top: 1rem;
  }
}
