:root {
  --navy: #061c59;
  --blue: #0756e8;
  --orange: #ff6500;
  --text: #071a4e;
  --soft-blue: #dce4f4;
  --white: #ffffff;
  --site-width: 1440px;
  --page-padding: clamp(24px, 4.5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 48%, rgba(223, 231, 247, .72), transparent 31%),
    linear-gradient(112deg, #fff 0%, #fcfdff 48%, #f0f4fc 100%);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  min-height: 104px;
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 18px var(--page-padding);
  gap: 28px;
}

.logo {
  display: inline-flex;
  height: 48px;
  align-items: center;
  width: max-content;
}

.logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 50px);
  font-size: 15px;
  font-weight: 650;
}

.main-navigation a {
  position: relative;
  padding: 12px 0;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.services-link {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.main-navigation a:focus-visible {
  outline: 3px solid rgba(7, 86, 232, .28);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 28, 89, .14);
}

.button-primary:hover {
  background: #0c2a75;
  box-shadow: 0 14px 28px rgba(6, 28, 89, .2);
}

.button-outline {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(255, 255, 255, .45);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.button-helpdesk svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 104px);
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  align-items: center;
  overflow: hidden;
  padding: 70px var(--page-padding) 110px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(725px, 55.2vw);
}

.hero-word {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 20%;
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(175px, 18.1vw, 260px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: .015em;
  white-space: nowrap;
  -webkit-text-stroke: 2px rgba(101, 126, 184, .14);
  transform: translateY(-40%);
  user-select: none;
}

.accent-line {
  width: 65px;
  height: 3px;
  margin-bottom: 31px;
  background: var(--orange);
}

.eyebrow {
  margin: 0 0 37px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  max-width: 713px;
  margin: 0 0 30px;
  font-size: clamp(51px, 4.8vw, 78px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.intro {
  max-width: 702px;
  margin: 0 0 42px;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
}

.button-large {
  min-height: 64px;
  padding: 0 30px;
  font-size: 15px;
}

.button-large span {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.button-accent {
  color: var(--navy);
  border-color: var(--orange);
  background: rgba(255, 255, 255, .5);
}

.button-accent span {
  color: var(--orange);
}

.button-accent:hover {
  color: var(--white);
  background: var(--orange);
}

.button-accent:hover span {
  color: var(--white);
}

.recognition {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.2), #fff 180px);
  padding: 42px var(--page-padding) 110px;
}

.recognition-inner {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-kicker span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.recognition h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.section-intro {
  margin: 0 0 32px;
  color: #5d6d8d;
  font-size: 15px;
  line-height: 1.65;
}

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

.recognition-card {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  padding: 28px 30px 26px;
  border: 1px solid #d9e1ef;
  border-radius: 7px;
  background: rgba(255,255,255,.46);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.recognition-card::before {
  position: absolute;
  top: -1px;
  left: 20px;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.recognition-card::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  bottom: auto;
  width: 230px;
  height: 230px;
  content: "";
  background-image: url("/card-icons.png");
  background-repeat: no-repeat;
  background-size: 690px 460px;
  transform: translate(30%, -50%);
  pointer-events: none;
}

.recognition-card:nth-child(1)::after {
  background-image: url("/hourglass.svg");
  background-position: center;
  background-size: contain;
}
.recognition-card:nth-child(2)::after { background-position: -230px 0; }
.recognition-card:nth-child(3)::after { background-position: -460px 0; }
.recognition-card:nth-child(4)::after { background-position: 0 -230px; }
.recognition-card:nth-child(5)::after { background-position: -230px -230px; }
.recognition-card:nth-child(6)::after { background-position: -460px -230px; }

.recognition-card:hover {
  border-color: #b9c7df;
  box-shadow: 0 14px 32px rgba(6,28,89,.08);
  transform: translateY(-3px);
}

.card-number {
  display: block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.recognition-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  max-width: 78%;
  font-size: 18px;
  line-height: 1.25;
}

.recognition-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 73%;
  color: #667694;
  font-size: 14px;
  line-height: 1.5;
}

.card-icon {
  display: none;
}

.approach {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  margin-top: -1px;
  padding: 112px var(--page-padding) 120px;
  color: #fff;
  background:
    radial-gradient(circle at 25% 55%, rgba(42,77,132,.3), transparent 34%),
    linear-gradient(115deg, #071837, #0a224a 62%, #071a3c);
  clip-path: polygon(0 22px, 48% 34px, 100% 0, 100% 100%, 0 100%);
}

.approach::before {
  position: absolute;
  top: 22px;
  left: max(var(--page-padding), calc((100% - 1296px) / 2));
  width: 72px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.approach-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}

.approach-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.approach-kicker span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.approach h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.approach-intro {
  margin: 0 0 40px;
  color: #c1cce0;
  font-size: 16px;
  line-height: 1.6;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(194,210,235,.4);
  border-radius: 12px;
  background: rgba(7,24,55,.23);
  backdrop-filter: blur(3px);
}

.comparison-column {
  min-width: 0;
  padding: 37px 46px 28px;
}

.comparison-column + .comparison-column {
  border-left: 1px solid rgba(194,210,235,.42);
}

.comparison-heading {
  min-height: 75px;
}

.comparison-heading h3 {
  margin: 0 0 8px;
  color: #c7d2e5;
  font-size: 23px;
  font-weight: 650;
}

.comparison-heading p {
  margin: 0;
  color: #b7c3d8;
  font-size: 14px;
  line-height: 1.5;
}

.comparison-logo img {
  display: block;
  width: auto;
  max-width: 118px;
  height: 35px;
  margin-bottom: 8px;
  object-fit: contain;
  object-position: left center;
}

.comparison ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 18px;
  padding: 8px 15px;
  border: 1px solid rgba(205,218,239,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  font-size: 15px;
}

.process {
  position: relative;
  padding: 68px var(--page-padding) 120px;
  background:
    radial-gradient(circle at 70% 30%, rgba(226,234,248,.55), transparent 34%),
    linear-gradient(180deg, #fff, #fbfcff);
}

.process-accent {
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 3px;
  background: var(--orange);
  transform: translateX(-50%);
}

.process-inner {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}

.process h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.process-intro {
  margin: 0 0 40px;
  color: #657492;
  font-size: 16px;
  line-height: 1.6;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 34px 0 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--orange) 0 34px, #afbdd3 34px calc(100% - 34px), var(--orange) calc(100% - 34px));
}

.process-step {
  position: relative;
  min-width: 0;
}

.step-marker {
  position: absolute;
  z-index: 2;
  top: -42px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 16px;
  font-weight: 800;
  transform: translateX(-50%);
}

.process-step::before {
  position: absolute;
  z-index: 3;
  top: -19px;
  left: 0;
  width: 34px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.process-step article {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 34px 32px 28px;
  border: 1px solid #d7dfec;
  border-radius: 8px;
  background: rgba(255,255,255,.52);
}

.step-duration {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.process-step h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.process-step p {
  position: relative;
  z-index: 1;
  max-width: 235px;
  margin: 0;
  color: #667694;
  font-size: 15px;
  line-height: 1.55;
}

.step-watermark {
  position: absolute;
  top: -2px;
  right: 4px;
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 94px;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(104,130,179,.11);
  user-select: none;
}

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: 170px 1fr auto;
  }

  .header-actions .button-helpdesk {
    display: none;
  }

  .main-navigation {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 88px;
  }

  .logo {
    height: 42px;
  }

  .logo img {
    max-width: 155px;
    max-height: 42px;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(6, 28, 89, .18);
    border-radius: 5px;
    color: var(--navy);
    background: rgba(255,255,255,.72);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .main-navigation {
    position: absolute;
    top: 76px;
    right: var(--page-padding);
    display: none;
    width: min(310px, calc(100vw - 48px));
    align-items: stretch;
    padding: 16px 24px;
    border: 1px solid rgba(6, 28, 89, .1);
    border-radius: 8px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 24px 50px rgba(6, 28, 89, .16);
    flex-direction: column;
    gap: 0;
  }

  .main-navigation.is-open {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 88px);
    align-items: flex-start;
    padding-top: 90px;
  }

  .hero-content {
    width: min(650px, 100%);
  }

  .hero-word {
    top: 43%;
    left: 20%;
    font-size: 27vw;
    opacity: .7;
  }

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

  .approach {
    padding-top: 100px;
  }

  .comparison-column {
    padding-right: 28px;
    padding-left: 28px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 14px;
  }

  .process-grid::before {
    display: none;
  }

  .process-step::before {
    top: -1px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .header-actions .button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .accent-line {
    width: 46px;
    margin-bottom: 24px;
  }

  .eyebrow {
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: .17em;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 12vw, 60px);
  }

  .intro {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-large {
    justify-content: space-between;
  }

  .hero-word {
    top: 42%;
    left: 4%;
    font-size: 38vw;
  }

  .recognition {
    padding-bottom: 72px;
  }

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

  .recognition-card h3 { max-width: 76%; }
  .recognition-card p { max-width: 70%; }

  .approach {
    padding-top: 90px;
    padding-bottom: 72px;
    clip-path: polygon(0 14px, 50% 24px, 100% 0, 100% 100%, 0 100%);
  }

  .approach::before {
    top: 14px;
    width: 46px;
  }

  .approach-intro {
    margin-bottom: 28px;
  }

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

  .comparison-column {
    padding: 28px 22px 20px;
  }

  .comparison-column + .comparison-column {
    border-top: 1px solid rgba(194,210,235,.42);
    border-left: 0;
  }

  .comparison-heading {
    min-height: 0;
    margin-bottom: 20px;
  }

  .process {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .process-accent {
    width: 92px;
  }

  .process-intro {
    margin-bottom: 30px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-step article {
    min-height: 200px;
    padding: 30px 25px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
