@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&subset=latin,latin-ext&display=block");
:root {
  --navy: #1B2F50;
  --navy-dark: #152540;
  --blue-accent: #2E86C8;
  --text-dark: #1a1a2e;
  --text-muted: #4a5568;
  --white: #ffffff;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Raleway", sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  overflow-x: hidden;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: #ffffff;
}

nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: auto;
  height: 50px;
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
}
.nav-logo img {
  -webkit-transform: translateX(-14px);
          transform: translateX(-14px);
  height: 120px;
  width: auto;
  display: block;
}

.nav-logo-tagline {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-top: -43px;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  list-style: none;
  margin-right: 40px;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a2e;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.nav-active {
  color: #2E86C8;
}

.btn-request {
  background: #1B2F50;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-request:hover {
  background: #152540;
}

.hero {
  margin-top: 80px;
  position: relative;
  height: 560px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(221, 225, 236)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(221, 225, 236) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  pointer-events: none;
}

.hero-overlay-dots {
  bottom: 0;
  right: 40%;
  width: 70%;
  z-index: 10;
  max-width: 700px;
  mix-blend-mode: multiply;
}

.hero-overlay-blue {
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
  -o-object-position: left center;
     object-position: left center;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}

.hero-content {
  padding: 60px 40px 60px 80px;
}
.hero-content h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 100;
  line-height: 1.13;
  color: #1a1a2e;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-content h1 .accent {
  color: #2E86C8;
}
.hero-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #4a5568;
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn-primary {
  background: #1B2F50;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 2px solid #1B2F50;
  border-radius: 40px 0 0 40px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
}
.btn-primary:hover {
  background: #152540;
  border-color: #152540;
}

.btn-secondary {
  background: transparent;
  color: #1B2F50;
  font-family: "Raleway", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 2px solid rgba(27, 47, 80, 0.35);
  cursor: pointer;
  border-radius: 0 40px 40px 0;
  text-decoration: none;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: #1B2F50;
  background: rgba(27, 47, 80, 0.05);
}

.hero-visual {
  position: relative;
  height: 100%;
}

.hero-shadow {
  top: 0;
  right: 0;
  background: linear-gradient(210deg, rgb(176, 191, 240) 0%, rgba(224, 228, 238, 0) 100%);
  position: absolute;
  width: calc(100% + 100px);
  margin-right: -100px;
  height: 100%;
  border-top-left-radius: 90px;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  -webkit-transform: skewX(-24deg) translateX(-60px);
          transform: skewX(-24deg) translateX(-60px);
}

.hero-img-wrap {
  position: relative;
  width: calc(100% + 140px);
  margin-right: -140px;
  height: 100%;
  border-top-left-radius: 90px;
  border-bottom-left-radius: 200px;
  overflow: hidden;
  -webkit-transform: skewX(-24deg);
          transform: skewX(-24deg);
}
.hero-img-wrap img {
  -webkit-transform: skewX(24deg) scale(1.2);
          transform: skewX(24deg) scale(1.2);
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.stats {
  background: #ffffff;
  padding: 26px;
}

.stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 35px;
  font-weight: 100;
  color: #2E86C8;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  letter-spacing: 0.02em;
}

.section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 48px;
}

.section-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 28px;
}

.services {
  background: #ffffff;
}

.services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.service-card:hover img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(15, 25, 50, 0.82)), color-stop(50%, rgba(15, 25, 50, 0.2)), to(transparent));
  background: linear-gradient(to top, rgba(15, 25, 50, 0.82) 0%, rgba(15, 25, 50, 0.2) 50%, transparent 100%);
}

.service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.industries {
  background: #ffffff;
  padding-top: 0;
}

.industries-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.industry-card {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.industry-card:hover .industry-card-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.industry-card-img {
  overflow: hidden;
  line-height: 0;
}
.industry-card-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.industry-card-label {
  background: #e8eef7;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a2e;
}

.mob-fab {
  display: none;
}

.mob-menu {
  display: none;
}

.prefooter {
  position: relative;
  overflow: hidden;
}

.prefooter-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 0 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.prefooter-inner > div {
  padding: 30px;
}
.prefooter-inner > div:last-child {
  padding: 40px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
.prefooter-inner > div:first-child {
  padding-left: 0;
}
.prefooter-inner > div {
  min-height: 400px;
}

.pf-about h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 20px;
}
.pf-about p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 16px;
}

.btn-learn {
  display: inline-block;
  margin-top: 10px;
  background: rgba(27, 47, 80, 0.08);
  color: #1B2F50;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1.5px solid rgba(27, 47, 80, 0.2);
  border-radius: 60px;
  text-decoration: none;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
}
.btn-learn:hover {
  background: rgba(27, 47, 80, 0.14);
  border-color: rgba(27, 47, 80, 0.4);
}

.pf-trusted h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.trusted-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.trusted-logo {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  height: 52px;
}

.pf-cta {
  background: #1B2F50;
  padding-top: 20px;
  position: relative;
}
.pf-cta:before {
  background: url("../images/corner_left.svg") no-repeat center;
  width: 80px;
  background-size: 100%;
  height: 80px;
  position: absolute;
  left: -79px;
  z-index: 10;
  bottom: -1px;
  content: "";
}
.pf-cta:after {
  background: url("../images/corner_right.svg") no-repeat center;
  background-size: 100%;
  width: 80px;
  height: 80px;
  position: absolute;
  right: -79px;
  z-index: 10;
  bottom: -1px;
  content: "";
}
.pf-cta h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 28px;
  text-align: center;
}

.pf-cta-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.pf-cta-form input,
.pf-cta-form select {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 15px 18px;
  color: #ffffff;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.pf-cta-form input:focus,
.pf-cta-form select:focus {
  border-color: #2E86C8;
}
.pf-cta-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.pf-cta-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.pf-cta-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.pf-cta-form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.pf-cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.pf-cta-form select {
  color: rgba(255, 255, 255, 0.65);
}
.pf-cta-form select option {
  background: #1B2F50;
  color: #ffffff;
}

.btn-send {
  background: #2E86C8;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-send:hover {
  background: rgb(36.4634146341, 106.2195121951, 158.5365853659);
}

footer {
  background: #1B2F50;
  padding: 36px 48px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  padding: 0 48px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-brand-tagline {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 0 28px;
}
.social-icons a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-icons a:hover {
  color: #ffffff;
}
.social-icons svg {
  width: 22px;
  height: 22px;
}

.footer-contact {
  text-align: right;
}
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1.8;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #ffffff;
}

.page-hero {
  margin-top: 80px;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  padding: 0 48px;
  margin-bottom: 100px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
}

.page-content {
  position: relative;
  padding: 72px 60px 80px 0;
  z-index: 2;
}

.page-heading {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 52px;
}
.page-heading .accent {
  color: #2E86C8;
}

.page-photo img {
  width: 100%;
  margin-bottom: 100px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  clip-path: url(#photo-mask);
}

.about-intro {
  margin-bottom: 48px;
}
.about-intro h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.about-intro p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
}
.about-intro p:last-child {
  margin-bottom: 0;
}

.about-cols {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
}
.about-col p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
}
.about-col p:last-child {
  margin-bottom: 0;
}

.about-watermark {
  position: absolute;
  bottom: -10px;
  left: 40px;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(26, 26, 46, 0.04);
  text-transform: uppercase;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.timeline {
  padding: 0 80px 80px;
  background: #ffffff;
}

.timeline-track {
  position: relative;
  padding: 64px 0;
}

.timeline-rule {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: #1a1a2e;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.timeline-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #1a1a2e;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.timeline-label {
  font-size: 12.5px;
  color: #4a5568;
  line-height: 1.4;
  max-width: 180px;
}

.timeline-item.above .timeline-year {
  position: absolute;
  bottom: calc(50% + 22px);
  left: 0;
}
.timeline-item.above .timeline-label {
  position: absolute;
  bottom: calc(50% + 38px);
  left: 0;
}

.timeline-item.below .timeline-year {
  position: absolute;
  top: calc(50% + 22px);
  left: 0;
}
.timeline-item.below .timeline-label {
  position: absolute;
  top: calc(50% + 38px);
  left: 0;
}

@media (max-width: 900px) {
  .page-hero-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-content {
    padding: 48px 24px;
  }
  .page-photo {
    height: 320px;
  }
  .page-photo img {
    border-radius: 0;
  }
  .about-cols {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .timeline {
    padding: 0 24px 60px;
  }
  .timeline-items {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .timeline-rule {
    display: none;
  }
  .timeline-item::before {
    display: none;
  }
  .timeline-item.above .timeline-year,
  .timeline-item.above .timeline-label,
  .timeline-item.below .timeline-year,
  .timeline-item.below .timeline-label {
    position: static;
    display: block;
  }
  .timeline-item.above .timeline-year,
  .timeline-item.below .timeline-year {
    margin-bottom: 4px;
  }
}
.contact-intro {
  margin-bottom: 36px;
}
.contact-intro p {
  font-size: 15px;
  line-height: 1.65;
  color: #4a5568;
  font-weight: 500;
  max-width: 440px;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 480px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  background: #f0f2f6;
  border: none;
  border-radius: 8px;
  padding: 16px 18px;
  color: #1a1a2e;
  outline: none;
  width: 100%;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  -webkit-appearance: none;
}
.form-input::-webkit-input-placeholder, .form-select::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #aab0bc;
}
.form-input::-moz-placeholder, .form-select::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #aab0bc;
}
.form-input:-ms-input-placeholder, .form-select:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #aab0bc;
}
.form-input::-ms-input-placeholder, .form-select::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #aab0bc;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #aab0bc;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #e8ecf3;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  color: #aab0bc;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-submit {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: #2E86C8;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-top: 6px;
}
.btn-submit:hover {
  background: rgb(36.4634146341, 106.2195121951, 158.5365853659);
}

@media (max-width: 900px) {
  .form-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .contact-form {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero {
    height: auto;
  }
  .hero-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 40px 24px;
    text-align: center;
  }
  .hero-content p {
    max-width: 100%;
  }
  .hero-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero-visual {
    padding: 0 0 40px;
    height: 280px;
  }
  .hero-img-wrap img {
    border-radius: 16px;
  }
  .services-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .prefooter-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
  .prefooter::after {
    display: none;
  }
  .pf-cta h3 {
    color: #1a1a2e;
  }
  .pf-cta-form input,
  .pf-cta-form select {
    background: rgba(27, 47, 80, 0.06);
    border-color: rgba(27, 47, 80, 0.2);
    color: #1a1a2e;
  }
  .footer-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-contact {
    text-align: center;
  }
  .mob-fab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1B2F50;
    border: none;
    cursor: pointer;
    z-index: 200;
    -webkit-box-shadow: 0 4px 20px rgba(27, 47, 80, 0.35);
            box-shadow: 0 4px 20px rgba(27, 47, 80, 0.35);
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
  }
  .mob-fab--open {
    background: #2E86C8;
  }
  .mob-fab-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .mob-fab--open .mob-fab-bar:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  .mob-fab--open .mob-fab-bar:nth-child(2) {
    opacity: 0;
  }
  .mob-fab--open .mob-fab-bar:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  .mob-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    position: fixed;
    inset: 0;
    background: #1B2F50;
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .mob-menu--open {
    opacity: 1;
    pointer-events: all;
  }
  .mob-menu-links {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
  }
  .mob-menu-links a {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
    opacity: 0.85;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .mob-menu-links a:hover {
    opacity: 1;
  }
  .mob-menu-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #2E86C8;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
  }
}