:root {
  --bg: #f5f3ee;
  --paper: rgba(255, 255, 255, 0.72);
  --paper-strong: rgba(255, 255, 255, 0.9);
  --ink: #0c1f3f;
  --ink-soft: #35527f;
  --blue: #1471dc;
  --blue-deep: #0b4da5;
  --line: rgba(12, 31, 63, 0.12);
  --shadow: 0 24px 80px rgba(14, 44, 92, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(20, 113, 220, 0.18), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(11, 77, 165, 0.16), transparent 24%),
    linear-gradient(180deg, #faf8f4 0%, #f1ede6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(20, 113, 220, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 113, 220, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 22px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

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

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

.nav a,
.footer-grid a {
  color: var(--ink);
  text-decoration: none;
}

.nav a {
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  font-weight: 700;
}

.hero,
.section,
.footer {
  border-radius: calc(var(--radius) + 8px);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  padding: 38px;
  min-height: 78vh;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52)),
    linear-gradient(125deg, rgba(20, 113, 220, 0.14), rgba(12, 31, 63, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 38% 62% 46% 54% / 52% 42% 58% 48%;
  background: linear-gradient(135deg, rgba(20, 113, 220, 0.18), rgba(12, 31, 63, 0.06));
  filter: blur(10px);
}

.hero-copy,
.hero-panel,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.hero-text,
.section-heading p:not(.eyebrow),
.info-card p,
.service-card p,
.note-card p,
.documents-grid p,
.small-note,
.footer p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.template-note {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 113, 220, 0.1);
  color: var(--blue-deep);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
  box-shadow: 0 16px 32px rgba(20, 113, 220, 0.24);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid rgba(12, 31, 63, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-self: center;
}

.hero-stat,
.info-card,
.service-card,
.pricing-card,
.checklist-card,
.note-card,
.documents-card,
.footer {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-stat {
  padding: 22px;
  border-radius: 22px;
}

.hero-stat span,
.service-code {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.hero-stat strong {
  font-size: 1.08rem;
}

.section {
  margin-top: 22px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(20, 113, 220, 0.08), rgba(255, 255, 255, 0.8)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
}

.section-band {
  background:
    linear-gradient(125deg, rgba(12, 31, 63, 0.94), rgba(11, 77, 165, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
}

.section-band .eyebrow,
.section-band h2,
.section-band h3,
.section-band p {
  color: white;
}

.section-heading {
  margin-bottom: 26px;
}

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

.info-card,
.service-card,
.pricing-card,
.checklist-card,
.note-card {
  border-radius: var(--radius-sm);
  padding: 24px;
}

.info-card h3,
.service-card h3,
.pricing-card h3,
.checklist-card h3,
.note-card h3,
.documents-grid h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.services-layout,
.compliance-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.service-list {
  display: grid;
  gap: 16px;
}

.price-list,
.checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.price-list li,
.checklist li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.checklist li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
}

.checklist .done::before {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.checklist .pending::before {
  background: #c5a100;
}

.stack-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-wrap span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--paper-strong);
  border: 1px solid rgba(12, 31, 63, 0.08);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(12, 31, 63, 0.06);
}

.documents-card {
  padding: 30px;
  border-radius: var(--radius);
}

.footer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  margin-top: 22px;
  padding: 30px 34px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero,
  .services-layout,
  .compliance-layout,
  .footer,
  .cards-grid,
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .section,
  .footer {
    padding: 24px;
  }

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