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

:root {
  --navy: #102f4c;
  --dark: #081f34;
  --blue: #1979c7;
  --pale: #e9f4fc;
  --green: #27976b;
  --ink: #1f2933;
  --muted: #566878;
  --line: #d9e3ea;
  --surface: #f5f8fb;
  --max: 1160px;
  --shadow: 0 16px 42px rgba(12, 39, 64, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #f3c653;
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 50px), var(--max));
  margin-inline: auto;
}

.top {
  background: var(--dark);
  color: #d7e6f2;
  font-size: 0.9rem;
}

.top .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.top a {
  color: #fff;
  font-weight: 800;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand img {
  display: block;
  width: 260px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #35495b;
  font-size: 0.95rem;
  font-weight: 750;
}

nav a:hover { color: var(--blue); }

.menu {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  transition: 0.2s ease;
}

.button:hover {
  border-color: #0f62a8;
  background: #0f62a8;
  transform: translateY(-1px);
}

.button.secondary {
  border-color: #c9d8e4;
  background: #fff;
  color: var(--navy);
}

.button.secondary:hover {
  border-color: var(--blue);
  background: var(--pale);
}

.hero {
  padding: 76px 0 90px;
  border-radius: 0 0 54px 54px;
  background: linear-gradient(135deg, #f2f9ff, #fff 56%, #ecf8f3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.eyebrow.light { color: #c3eadf; }

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}

.compact-heading { font-size: 1.75rem; }

p { margin: 0 0 1rem; }

.lead {
  max-width: 725px;
  color: #34485a;
  font-size: clamp(1.07rem, 1.8vw, 1.22rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.5rem;
  color: #466074;
  font-size: 0.92rem;
  font-weight: 700;
}

.assurance span::before {
  margin-right: 0.43rem;
  color: var(--green);
  content: "✓";
}

section { padding: 82px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.85rem;
  color: #405365;
}

.checklist li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: #dff5ec;
  color: #078554;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.info-box {
  padding: 2rem;
  border: 1px solid #d7e6ee;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.info-box p { color: var(--muted); }

.clients,
.why { background: var(--surface); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.section-heading p {
  max-width: 560px;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.five { grid-template-columns: repeat(5, 1fr); }

.card {
  min-height: 220px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: 0.2s ease;
}

.card:hover {
  border-color: #a7cce8;
  box-shadow: 0 12px 30px rgba(12, 39, 64, 0.08);
  transform: translateY(-3px);
}

.icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: 15px;
  background: var(--pale);
  color: var(--blue);
  font-size: 1.22rem;
  font-weight: 900;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.card a {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.card a::after {
  margin-left: 0.3rem;
  content: "→";
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.client-card {
  display: grid;
  min-height: 136px;
  padding: 1rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  transition: 0.2s ease;
}

.client-card:hover {
  border-color: #a6cde9;
  box-shadow: 0 12px 28px rgba(12, 39, 64, 0.09);
  transform: translateY(-3px);
}

.client-card img {
  display: block;
  width: auto;
  max-width: 84%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.86;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.quote {
  padding: 2.2rem;
  border-radius: 26px;
  background: var(--navy);
  color: #e5f0f8;
  box-shadow: var(--shadow);
}

.quote blockquote {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.42;
}

.quote figcaption {
  margin-top: 1.4rem;
  color: #b7d3e7;
  font-size: 0.92rem;
}

.quote strong {
  display: block;
  color: #fff;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  position: relative;
  padding: 1rem 1rem 1rem 4.1rem;
}

.number {
  position: absolute;
  top: 0.8rem;
  left: 0;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 2px solid #bbd9ed;
  border-radius: 50%;
  color: var(--blue);
  font-weight: 900;
}

.cta {
  padding: 75px 0;
  border-radius: 54px 54px 0 0;
  background: linear-gradient(115deg, var(--navy), #1b587e);
  color: #dfedf7;
}

.cta h2 { max-width: 700px; color: #fff; }
.cta p { max-width: 670px; font-size: 1.08rem; }

.cta .button {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.cta .button:hover {
  border-color: #dcebf7;
  background: #dcebf7;
}

.cta .secondary {
  border-color: #75b1d4;
  background: transparent;
  color: #fff;
}

.cta .secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

footer {
  padding: 50px 0 25px;
  background: var(--dark);
  color: #b9cfde;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

footer h3 {
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

footer p { font-size: 0.92rem; }
footer a:hover { color: #fff; }

.legal {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .cards.five { grid-template-columns: repeat(2, 1fr); }
  .cards.five .card:last-child { grid-column: span 2; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 650px) {
  .top .container { justify-content: center; }
  .top span { display: none; }
  .nav { min-height: 72px; }
  .brand img { width: 215px; }
  .menu { display: block; }

  nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 20px 1rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  nav.open { display: flex; }
  nav a { padding: 0.75rem 0; }
  nav .button { margin-top: 0.5rem; }
  .hero { padding: 55px 0 70px; border-radius: 0 0 34px 34px; }
  section { padding: 60px 0; }
  .section-heading { display: block; }
  .cards.five { grid-template-columns: 1fr; }
  .cards.five .card:last-child { grid-column: auto; }
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .client-card { min-height: 115px; padding: 0.8rem; }
  .client-card img { max-width: 88%; max-height: 58px; }
  .process { grid-template-columns: 1fr; gap: 0.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { border-radius: 34px 34px 0 0; }
}
