:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #0f2854;
  --surface-soft: #eaf0fa;
  --text: #13233d;
  --muted: #587093;
  --line: rgba(19, 35, 61, 0.12);
  --brand-blue: #1d4f9b;
  --brand-blue-deep: #12366d;
  --brand-red: #c73a3a;
  --brand-red-deep: #a62929;
  --shadow: 0 24px 60px rgba(14, 34, 72, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 58, 58, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(29, 79, 155, 0.18), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.section {
  padding: 40px 0 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  background: rgba(244, 247, 251, 0.78);
  border-bottom: 1px solid rgba(19, 35, 61, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
}

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

.site-nav a:not(.button) {
  position: relative;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a.active:not(.button),
.site-nav a:hover:not(.button) {
  color: var(--text);
}

.site-nav a.active:not(.button)::after,
.site-nav a:hover:not(.button)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  box-shadow: 0 16px 30px rgba(26, 62, 121, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 34px rgba(26, 62, 121, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  padding-top: 54px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.page-hero .narrow,
.cta-box,
.service-detail,
.contact-card,
.benefit-card,
.service-card,
.step-card,
.hero-card,
.metric-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

.hero-text {
  max-width: 62ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

.hero-points,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.contact-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(18, 54, 109, 0.96), rgba(29, 79, 155, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.hero-card,
.metric-card,
.service-card,
.benefit-card,
.step-card,
.service-detail,
.contact-card,
.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.card-emphasis {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-emphasis strong,
.card-emphasis p {
  color: #fff;
}

.card-emphasis strong {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

.metric-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.metric-card span,
.metric-card strong,
.metric-card p {
  color: #fff;
}

.metric-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-grid,
.benefits-grid {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.benefit-card {
  padding: 28px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(29, 79, 155, 0.12), rgba(199, 58, 58, 0.12));
  color: var(--brand-blue-deep);
  font-weight: 800;
}

.section-accent {
  position: relative;
}

.split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.steps-list,
.service-detail-list {
  display: grid;
  gap: 20px;
}

.step-card,
.service-detail,
.contact-card,
.cta-box {
  padding: 28px;
}

.page-hero {
  padding-top: 54px;
  padding-bottom: 44px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.service-detail {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.cta-section {
  padding-bottom: 100px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(29, 79, 155, 0.12), rgba(199, 58, 58, 0.12)),
    rgba(255, 255, 255, 0.88);
}

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

.contact-highlight {
  background:
    linear-gradient(160deg, rgba(18, 54, 109, 0.96), rgba(29, 79, 155, 0.88)),
    rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-highlight h2,
.contact-highlight p,
.contact-highlight .eyebrow {
  color: #fff;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-meta span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-meta strong {
  font-size: 1.05rem;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(19, 35, 61, 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-footer {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 0;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a:not(.button) {
    padding: 12px 8px;
  }

  .site-nav a.active:not(.button)::after,
  .site-nav a:hover:not(.button)::after {
    left: 8px;
    right: 8px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    line-height: 1;
  }

  .hero-metrics,
  .service-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 28px 0 72px;
  }

  .hero-panel,
  .step-card,
  .service-detail,
  .contact-card,
  .cta-box,
  .service-card,
  .benefit-card,
  .hero-card,
  .metric-card {
    padding: 22px;
  }

  .button,
  .menu-toggle {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand span {
    font-size: 0.95rem;
  }
}
