:root {
  --navy: #1f3a5f;
  --navy2: #12283f;
  --blue: #2c5a87;
  --mist: #eef2f6;
  --grey: #bfc5ce;
  --ink: #182330;
  --white: #fff;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  color: var(--ink);
  background: #f7f9fb;
  line-height: 1.55;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(217, 227, 238, 0.95);
  backdrop-filter: blur(15px);
}
.header-wrap {
  width: 94vw;
  max-width: 1560px;
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}
.logo-image {
  display: block;
  width: 260px;
  max-width: 34vw;
  max-height: 58px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.header-phone-common,
.nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
}
.nav-link {
  position: relative;
  height: 100%;
  padding: 0 13px;
  color: #415268;
  font-weight: 760;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: #185eb9;
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.nav-link.active,
.nav-link:hover {
  color: #0f3562;
}
.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}
.header-phone-common {
  justify-self: end;
  min-height: 42px;
  padding: 10px 15px;
  gap: 8px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 53, 98, 0.17);
}
.header-phone-common svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 54px;
  align-items: center;
  min-height: 610px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  margin: 14px 0 22px;
  color: var(--navy2);
  letter-spacing: -0.045em;
}
.eyebrow,
.hero h1 span {
  color: var(--blue);
}
.lead {
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  color: var(--navy);
  max-width: 780px;
}
.hero-copy > p:not(.eyebrow):not(.lead) {
  max-width: 760px;
  font-size: 17px;
}
.actions {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
}
.primary {
  background: var(--navy);
  color: #fff;
}
.ghost {
  border: 1px solid #cbd5df;
  color: var(--navy);
  background: #fff;
}
.proof {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  font-size: 13px;
  font-weight: 750;
}
.proof li:before {
  content: "✓";
  color: var(--blue);
  margin-right: 7px;
}
.hero-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(18, 40, 63, 0.22);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.promise-strip {
  max-width: 1320px;
  margin: 0 auto 28px;
  padding: 0 clamp(20px, 5vw, 78px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.promise-strip article {
  padding: 24px;
  border: 1px solid #dce5ed;
  border-radius: 20px;
  background: #fff;
}
.promise-strip span,
.steps span {
  font-weight: 900;
  color: var(--blue);
}
.promise-strip span {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: #e8f1fa;
}
.promise-strip h2 {
  margin: 10px 0 4px;
  color: var(--navy);
  font-size: 22px;
}
.promise-strip p {
  margin: 0;
  color: #55687a;
}
.method,
.situations,
.tasks {
  margin: 0 auto;
}
.difference,
.method,
.situations,
.tasks {
  max-width: 1320px;
  padding: 72px clamp(20px, 5vw, 78px);
}
h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  color: var(--navy2);
  letter-spacing: -0.035em;
  margin: 12px 0 30px;
}
.cards,
.steps,
.task-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.compare,
.tasks {
  display: grid;
  gap: 16px;
}
.tasks {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.cards article,
.steps article,
.task-grid article {
  background: #fff;
  border: 1px solid #e1e7ed;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(31, 58, 95, 0.06);
}
.cards b,
.task-grid h3 {
  font-size: 19px;
  color: var(--navy);
}
.page-back a:hover,
.steps article {
  background: var(--mist);
}
.steps span {
  font-size: 13px;
}
.steps h3 {
  font-size: 23px;
  margin: 10px 0;
}
.task-grid {
  grid-template-columns: 1fr 1fr;
}
.difference {
  background: #fff;
  border-radius: 34px;
  margin: 0 auto 72px;
}
.difference blockquote {
  margin: 25px 0 34px;
  padding: 28px 32px;
  border-left: 5px solid var(--blue);
  background: var(--mist);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
}
.compare {
  grid-template-columns: repeat(3, 1fr);
}
.cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 72px 20px;
}
.cta .eyebrow {
  color: #cbd9e6;
}
.cta h2 {
  color: #fff;
  max-width: 850px;
  margin: 12px auto 20px;
}
.cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto 28px;
}
.light,
.page-back a {
  background: #fff;
  color: var(--navy);
}
.page-back a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid #cbd9e7;
  border-radius: 999px;
  color: var(--navy2);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 78px);
  font-size: 12px;
  background: #0c1d2d;
  color: #d5dee7;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 980px) {
  .header-wrap {
    width: 92vw;
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .logo-link {
    order: 1;
  }
  .header-phone-common {
    order: 2;
    margin-left: auto;
  }
  .main-nav {
    width: 100%;
    height: auto;
    order: 3;
    justify-content: center;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }
  .hero-visual {
    justify-self: center;
    max-width: 760px;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .tasks {
    grid-template-columns: 1fr;
  }
  .task-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .header-wrap {
    width: 100%;
    padding: 10px 14px 8px;
  }
  .logo-image {
    width: 150px;
    max-width: 48vw;
  }
  .header-phone-common {
    min-height: 39px;
    padding: 8px 9px;
    font-size: 11px;
  }
  .main-nav {
    width: 100%;
    padding: 6px 0 2px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }
  .nav-link {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    height: auto;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid #d7e1eb;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link.active {
    color: #fff;
    background: #185eb9;
  }
  .hero {
    min-height: 0;
    gap: 26px;
    padding: 36px 18px;
  }
  .hero-visual {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .actions,
  .proof {
    display: grid;
  }
  .proof {
    gap: 9px;
  }
  .difference,
  .method,
  .situations,
  .tasks {
    padding: 54px 18px;
  }
  .cards,
  .compare,
  .steps,
  .task-grid {
    grid-template-columns: 1fr;
  }
  .difference {
    border-radius: 0;
    margin-bottom: 0;
  }
  .difference blockquote {
    padding: 22px;
    font-size: 23px;
  }
  footer {
    flex-direction: column;
  }
  .promise-strip {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }
}
.page-back {
  max-width: 1320px;
  margin: 18px auto 0;
  padding: 0 clamp(20px, 5vw, 78px);
}
.interim-alternative {
  max-width: 1320px;
  margin: 0 auto 72px;
  padding: 42px clamp(20px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border: 1px solid #bfd2e7;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #eaf2fa);
}
.interim-alternative h2 {
  margin-bottom: 18px;
}
.interim-alternative p:not(.eyebrow) {
  max-width: 900px;
}
@media (max-width: 980px) {
  .nav-phone-mobile {
    display: block !important;
    color: #fff !important;
    background: var(--navy) !important;
    padding: 11px 14px !important;
    border-radius: 10px;
    text-align: center;
  }
  .interim-alternative {
    grid-template-columns: 1fr;
    margin: 0 20px 54px;
  }
}
@media (max-width: 620px) {
  .interim-alternative {
    margin: 0 0 42px;
    padding: 38px 18px;
    border-radius: 0;
  }
}
