:root {
  --background: #f6f8fb;
  --foreground: #122033;
  --muted: #586575;
  --ink: #061b33;
  --blue: #00396f;
  --cyan: #16b9e6;
  --line: #dce5ee;
  --surface: #ffffff;
  --soft: #edf7fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

main {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  padding: 24px clamp(20px, 5vw, 72px) 64px;
  background:
    linear-gradient(125deg, rgba(0, 57, 111, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f1f7fb 100%);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1160px, 100%);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: clamp(190px, 24vw, 320px);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: #33465a;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
}

.hero-grid {
  width: min(1160px, 100%);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6.8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: #435366;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 57, 111, 0.22);
}

.secondary {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid var(--line);
}

.hero-panel {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(6, 27, 51, 0.11);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px -1px;
  width: 7px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(180deg, var(--cyan), #0c78b3);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-top strong {
  color: var(--cyan);
  font-size: 2.3rem;
  line-height: 1;
}

.signal-card {
  margin-top: 26px;
  padding: 24px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: var(--soft);
  border-radius: 8px;
}

.signal-mark {
  width: 70px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
}

.signal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.signal-card p,
.highlight-list,
.section p,
.process p {
  color: var(--muted);
  line-height: 1.65;
}

.signal-card p {
  margin: 8px 0 0;
}

.highlight-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.highlight-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--cyan);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
}

.section h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p {
  margin: 34px 0 0;
  font-size: 1.07rem;
}

.services {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
}

.service-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.process-row article {
  min-height: 250px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 27, 51, 0.06);
}

.service-card {
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 5px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(180deg, var(--cyan), #0b75ad);
}

.service-card span,
.process-row span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3,
.process-row h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
  line-height: 1.18;
}

.service-card p,
.process-row p {
  margin: 0;
}

.process {
  border-top: 1px solid var(--line);
}

.process-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-row article {
  min-height: 210px;
}

.contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: clamp(34px, 6vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 8px;
}

.contact h2 {
  max-width: 780px;
  color: #ffffff;
}

.contact .primary {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .nav,
  .hero-grid,
  .intro,
  .contact {
    align-items: flex-start;
  }

  .nav,
  .contact {
    flex-direction: column;
  }

  .hero-grid,
  .intro,
  .service-grid,
  .process-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: 48px;
  }

  .service-card,
  .process-row article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 18px 18px 48px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(245px, 100%);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.45rem, 17vw, 4.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .section,
  .contact {
    width: calc(100% - 36px);
  }
}
