:root {
  --blue: #075be8;
  --blue-2: #0f64ff;
  --navy: #07152f;
  --ink: #071126;
  --muted: #4b5870;
  --line: #dfe7f4;
  --soft-blue: #eef6ff;
  --panel: #ffffff;
  --shadow: 0 16px 36px rgba(7, 17, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

img {
  display: block;
  max-width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eef1f7;
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.brand-tagline {
  color: #192132;
  font-size: 8px;
  font-weight: 750;
  text-align: center;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #050c1f;
  font-size: 14px;
  font-weight: 850;
}

.site-menu a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 4px;
}

.site-menu a:not(.button).active {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #004bd4);
  box-shadow: 0 12px 25px rgba(7, 91, 232, 0.24);
}

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

.button-small {
  min-height: 47px;
  padding: 0 20px;
  font-size: 12px;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 34%, #eef2f5 66%, #dce5ed 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 635px;
  grid-template-columns: minmax(455px, 0.96fr) minmax(220px, 0.48fr) minmax(292px, 0.56fr);
  align-items: center;
  gap: 10px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 54px 0 62px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 19px;
  color: #08132b;
  font-size: clamp(42px, 4.55vw, 49px);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span,
.section-heading h2 span {
  color: var(--blue);
}

.hero-copy > p {
  max-width: 455px;
  margin-bottom: 28px;
  color: #111a2f;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.72;
}

.quick-wins {
  display: grid;
  max-width: 488px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 42px;
}

.quick-wins div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
}

.mini-icon {
  display: grid;
  width: 48px;
  height: 48px;
  grid-row: span 2;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: #edf4ff;
}

.mini-icon svg {
  width: 27px;
  height: 27px;
}

.quick-wins strong {
  font-size: 13px;
  line-height: 1.2;
}

.quick-wins small {
  color: #202b40;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .button {
  min-height: 56px;
  padding: 0 18px;
  font-size: 14px;
}

.play-dot {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 9px;
}

.hero-media {
  align-self: end;
  z-index: 1;
}

.hero-media img {
  width: min(330px, 100%);
  height: 585px;
  object-fit: cover;
  object-position: center bottom;
}

.lead-form {
  display: grid;
  gap: 10px;
  color: #fff;
  background: var(--navy);
}

.hero-form {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 292px;
  margin-left: auto;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 22px 44px rgba(7, 21, 47, 0.28);
}

.lead-form h2 {
  margin-bottom: 3px;
  color: #fff;
  font-size: 23px;
  line-height: 1.15;
}

.lead-form p {
  margin-bottom: 10px;
  color: #dbe5f5;
  font-size: 14px;
  line-height: 1.55;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d5dce8;
  border-radius: 5px;
  padding: 0 12px;
  color: #1b2639;
  background: #fff;
  font: inherit;
  font-size: 12px;
}

.lead-form button {
  width: 100%;
  min-height: 52px;
  margin-top: 3px;
  padding: 0 12px;
  font-size: 13px;
  white-space: normal;
}

.form-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.form-perks span {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 8px;
  align-items: center;
}

.form-perks svg {
  width: 30px;
  height: 30px;
  grid-row: span 2;
  padding: 7px;
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 91, 170, 0.45);
}

.form-perks strong,
.form-perks small {
  display: block;
}

.form-perks strong {
  font-size: 11px;
}

.form-perks small {
  color: #dbe5f5;
  font-size: 11px;
}

.form-message {
  min-height: 16px;
  margin: 0;
  color: #b8f4dd;
  font-size: 12px;
}

.stats-section {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 8px 0 30px;
  background: #fff;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(7, 17, 38, 0.08);
}

.stats-card div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 0 15px;
  padding: 26px 32px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.stats-card div:last-child {
  border-right: 0;
}

.stats-card svg {
  width: 43px;
  height: 43px;
  grid-row: span 2;
  color: var(--blue);
}

.stats-card strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.stats-card span {
  color: #1c2638;
  font-size: 14px;
}

.industries-section {
  padding: 0 0 36px;
  background: #fff;
}

.section-kicker {
  margin: 0 0 24px;
  color: #111827;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 28px;
}

.industry-grid div {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--blue);
}

.industry-grid svg {
  width: 38px;
  height: 38px;
}

.industry-grid strong {
  color: #071126;
  font-size: 12px;
  text-align: center;
}

.services-section {
  padding: 34px 0 36px;
  background: linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 8px;
  color: #071126;
  font-size: 31px;
  line-height: 1.12;
}

.section-heading p:last-child {
  margin: 0;
  color: #111827;
  font-size: 14px;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.service-grid article {
  min-height: 162px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px 14px 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(7, 17, 38, 0.06);
}

.service-grid svg {
  width: 43px;
  height: 43px;
  margin: 0 auto 10px;
  color: var(--blue);
}

.service-grid h3 {
  margin-bottom: 8px;
  color: #071126;
  font-size: 14px;
  line-height: 1.18;
  text-align: center;
}

.service-grid p {
  margin: 0;
  color: #1e293b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.48;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 32px 0 34px;
  color: #fff;
  background:
    radial-gradient(circle at 7% 20%, rgba(11, 91, 232, 0.42) 0 8%, transparent 9%),
    radial-gradient(circle at 98% 92%, rgba(15, 100, 255, 0.22) 0 12%, transparent 13%),
    linear-gradient(135deg, #06142c 0%, #071b3a 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 105px 1fr 420px;
  gap: 36px;
  align-items: center;
}

.cta-icon {
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 91, 232, 0.46);
}

.cta-icon svg {
  width: 46px;
  height: 46px;
}

.cta-section h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.22;
}

.cta-section p {
  margin: 0;
  color: #eef5ff;
  font-size: 16px;
  line-height: 1.55;
}

.cta-action {
  display: grid;
  gap: 16px;
}

.cta-action .button {
  min-height: 56px;
  width: 100%;
  font-size: 17px;
}

.cta-action p {
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1120px) and (min-width: 961px) {
  .container {
    width: min(100% - 34px, 1160px);
  }

  .site-menu {
    gap: 14px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 25px;
  }

  .cta-grid {
    grid-template-columns: 90px 1fr;
  }

  .cta-action {
    grid-column: 2;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 10px;
  }

  .hero-grid,
  .stats-card,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-form {
    grid-column: auto;
    max-width: none;
    margin: 0 0 32px;
  }

  .hero-copy {
    padding-bottom: 22px;
  }

  .hero-media {
    justify-self: center;
  }

  .hero-media img {
    height: 440px;
  }

  .quick-wins {
    grid-template-columns: 1fr;
  }

  .stats-card div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-card div:last-child {
    border-bottom: 0;
  }

  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .cta-action {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 30px, 1160px);
  }

  .nav-shell {
    display: grid;
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-tagline {
    font-size: 6px;
    text-align: left;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding-top: 9px;
    justify-self: end;
  }

  .site-menu {
    top: 66px;
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 82px);
    overflow-y: auto;
  }

  .site-menu .button {
    width: 100%;
    min-height: 46px;
    white-space: normal;
  }

  .hero {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 48%, #e8f0f7 100%);
  }

  .hero-grid {
    min-height: 0;
    gap: 18px;
  }

  .hero-copy {
    padding: 30px 0 0;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-copy > p {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .quick-wins {
    gap: 10px;
    margin-bottom: 22px;
  }

  .quick-wins div {
    min-height: 64px;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.76);
  }

  .mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .mini-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button,
  .cta-action .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
  }

  .hero-media {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #e8eef5;
  }

  .hero-media img {
    width: 100%;
    height: min(380px, 98vw);
    object-fit: cover;
    object-position: 46% top;
  }

  .hero-form {
    margin: 0 0 28px;
    border-radius: 12px;
    padding: 20px;
  }

  .lead-form h2 {
    font-size: 25px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 46px;
    font-size: 14px;
  }

  .lead-form button {
    min-height: 54px;
    font-size: 14px;
  }

  .form-perks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stats-section {
    padding: 18px 0 34px;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-card div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    min-height: 142px;
    padding: 20px 12px;
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stats-card div:nth-child(2n) {
    border-right: 0;
  }

  .stats-card div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stats-card svg {
    width: 38px;
    height: 38px;
    grid-row: auto;
  }

  .stats-card strong {
    font-size: 27px;
  }

  .stats-card span {
    font-size: 12px;
  }

  .industries-section {
    padding-bottom: 34px;
  }

  .section-kicker {
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.5;
  }

  .industry-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .industry-grid div {
    min-height: 96px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .services-section {
    padding: 40px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p:last-child {
    font-size: 13px;
  }

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

  .service-grid article {
    min-height: 0;
    padding: 18px;
  }

  .service-grid svg {
    width: 45px;
    height: 45px;
  }

  .service-grid h3 {
    font-size: 16px;
  }

  .service-grid p {
    font-size: 14px;
    text-align: center;
  }

  .cta-section {
    padding: 38px 0;
  }

  .cta-grid {
    gap: 22px;
    text-align: center;
  }

  .cta-icon {
    width: 86px;
    height: 86px;
    justify-self: center;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p,
  .cta-action p {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 19px;
  }

  h1 {
    font-size: 34px;
  }

  .stats-card strong {
    font-size: 24px;
  }

  .industry-grid {
    gap: 10px;
  }
}
