* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(145deg, #d9e2ea 0%, #edf2f7 52%, #c8d2dc 100%);
  color: #102033;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  padding: 40px 24px;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #102033;
  line-height: 1.1;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d5f97, #143d63);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 28px rgba(20, 61, 99, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(20, 61, 99, 0.3);
}

.footer {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #566273;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
}
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto;
  padding: 28px;
  position: relative;
}

.site-header,
.hero,
.stats-strip,
.content-section,
.site-footer {
  backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3,
strong {
  font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
}

.site-nav {
  display: flex;
  gap: 18px;
  padding-top: 6px;
}

.site-nav a,
.contact-card a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a {
  position: relative;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  margin-top: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(226, 234, 241, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.hero h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.97;
  margin-bottom: 20px;
  max-width: 10ch;
}

.hero-text,
.content-section p,
.contact-card p,
.stats-strip span,
.process-grid p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 16px 28px rgba(20, 61, 99, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(16, 32, 51, 0.1);
}

.hero-card,
.service-card,
.contact-card,
.process-grid article,
.stats-strip,
.content-section {
  border: 1px solid var(--line);
}

.hero-card {
  padding: 24px;
  align-self: end;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(21, 57, 89, 0.95), rgba(29, 95, 151, 0.92));
  color: white;
}

.hero-card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

.stats-strip {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.stats-strip article {
  display: grid;
  gap: 6px;
}

.content-section {
  margin-top: 24px;
  padding: 32px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.section-heading h2,
.split-section h2,
.contact-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0;
}

.service-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--primary);
}

.contact-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(232, 237, 243, 0.9));
}

.site-footer {
  margin-top: 24px;
  padding: 18px 24px 10px;
  color: var(--muted);
  text-align: center;
}

.site-header,
.hero,
.stats-strip,
.content-section {
  animation: rise 700ms ease both;
}

.stats-strip {
  animation-delay: 90ms;
}

.content-section:nth-of-type(1) {
  animation-delay: 140ms;
}

.content-section:nth-of-type(2) {
  animation-delay: 220ms;
}

.content-section:nth-of-type(3) {
  animation-delay: 300ms;
}

.content-section:nth-of-type(4) {
  animation-delay: 380ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .section-heading,
  .split-section,
  .contact-section,
  .service-grid,
  .process-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .site-header,
  .section-heading {
    display: grid;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 28px;
  }

  .hero h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 18px, 1120px);
    margin: 10px auto 18px;
    padding: 10px;
  }

  .site-header,
  .hero,
  .content-section,
  .stats-strip {
    padding: 22px;
    border-radius: 22px;
  }

  .brand-lockup {
    gap: 14px;
  }

  h1 {
    font-size: 1.35rem;
  }

  .hero h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}
