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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #EAF4FB;
  color: #185FA5;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.nav__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 100%;
}
.nav__logo img {
  height: 60px;
  width: auto;
}
.nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
@media (max-width: 767px) {
  .nav__links {
    display: none;
  }
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #444444;
  transition: color 0.2s ease;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1478AC;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__links a:hover {
  color: #1478AC;
}
.nav__links a:hover::after {
  transform: scaleX(1);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1478AC;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #1478AC;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav__cta:hover {
  background: #0C447C;
  border-color: #0C447C;
  transform: translateY(-1px);
}
.nav__cta:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .nav__cta {
    display: none;
  }
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #444444;
  border-radius: 9999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: #444444;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu a:last-of-type {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: #1478AC;
}
.mobile-menu .btn-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1478AC;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #1478AC;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mobile-menu .btn-mobile:hover {
  background: #0C447C;
  border-color: #0C447C;
  transform: translateY(-1px);
}
.mobile-menu .btn-mobile:active {
  transform: translateY(0);
}
.mobile-menu .btn-mobile {
  justify-content: center;
  margin-top: 0.5rem;
}

.hero {
  padding-top: calc(72px + 4rem);
  padding-bottom: 5rem;
  background: #EAF4FB;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #B5D4F4 0%, #EAF4FB 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero__content {
    order: 2;
  }
}
.hero__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #EAF4FB;
  color: #185FA5;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  color: #042C53;
  margin-bottom: 1.25rem;
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 1.875rem;
  }
}
.hero__title span {
  color: #1478AC;
}
.hero__desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #185FA5;
  margin-bottom: 2rem;
  max-width: 520px;
}
@media (max-width: 767px) {
  .hero__desc {
    margin-inline: auto;
  }
}
.hero__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero__btns {
    justify-content: center;
  }
}
.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1478AC;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #1478AC;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero__btn-primary:hover {
  background: #0C447C;
  border-color: #0C447C;
  transform: translateY(-1px);
}
.hero__btn-primary:active {
  transform: translateY(0);
}
.hero__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #1478AC;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #1478AC;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero__btn-outline:hover {
  background: #EAF4FB;
  transform: translateY(-1px);
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__visual {
    order: 1;
  }
}
.hero__img-wrap {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #B5D4F4;
  max-width: 400px;
  width: 100%;
}
.hero__img-wrap img {
  width: 100%;
  height: auto;
}
.hero__badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .hero__badge {
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero__badge-icon {
  font-size: 20px;
}
.hero__badge-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1478AC;
}
.hero__badge-text span {
  font-size: 0.75rem;
  color: #777777;
}

.stats {
  background: #042C53;
  padding: 2rem 0;
}
.stats__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats__item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stats__item:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .stats__item:nth-child(2) {
    border-right: none;
  }
}
.stats__num {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #85B7EB;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stats__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services {
  padding: 5rem 0;
  background: #FFFFFF;
}
.services__header {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  margin-bottom: 3rem;
  max-width: 640px;
}
.services__header h2 {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .services__header h2 {
    font-size: 1.875rem;
  }
}
.services__header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #777777;
}
.services__grid {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.services__card:hover .services__card-icon {
  background: #1478AC;
  color: #FFFFFF;
}
.services__card-icon {
  width: 52px;
  height: 52px;
  background: #EAF4FB;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.25rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.services__card-icon img {
  width: 60%;
  height: auto;
}
.services__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}
.services__card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #777777;
}

.why {
  padding: 5rem 0;
  background: #F5F5F5;
}
.why__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .why__inner {
    grid-template-columns: 1fr;
  }
}
.why__content h2 {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .why__content h2 {
    font-size: 1.875rem;
  }
}
.why__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #777777;
  margin-bottom: 2rem;
}
.why__content a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1478AC;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #1478AC;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.why__content a:hover {
  background: #0C447C;
  border-color: #0C447C;
  transform: translateY(-1px);
}
.why__content a:active {
  transform: translateY(0);
}
.why__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
.why__item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.25rem;
}
.why__item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #EAF4FB;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.why__item-icon img {
  width: 60%;
  height: auto;
}
.why__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.25rem;
}
.why__item-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #777777;
}

.process {
  padding: 5rem 0;
  background: #FFFFFF;
}
.process__header {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.process__header h2 {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .process__header h2 {
    font-size: 1.875rem;
  }
}
.process__header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #777777;
  max-width: 520px;
  margin-inline: auto;
}
.process__steps {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 1023px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(1.5rem + 28px);
  right: calc(1.5rem + 28px);
  height: 2px;
  background: #B5D4F4;
  z-index: 0;
}
@media (max-width: 1023px) {
  .process__steps::before {
    display: none;
  }
}
.process__step {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.process__step-num {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #EAF4FB;
  border: 2px solid #1478AC;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 1.25rem;
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1478AC;
}
.process__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.process__step-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #777777;
}

.about {
  padding: 5rem 0;
  background: #042C53;
}
.about__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.about__logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.about__logo-wrap img {
  max-width: 300px;
  opacity: 0.9;
}
.about__content .section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #0C447C;
  color: #85B7EB;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about__content h2 {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .about__content h2 {
    font-size: 1.875rem;
  }
}
.about__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #85B7EB;
  margin-bottom: 1.25rem;
}
.about__content .about__data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .about__content .about__data {
    max-width: 320px;
    margin-inline: auto;
  }
}
.about__content .about__data-item {
  border-left: 2px solid #1478AC;
  padding-left: 1rem;
  text-align: left;
}
.about__content .about__data-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #B5D4F4;
  margin-bottom: 0.25rem;
}
.about__content .about__data-item span {
  font-size: 0.75rem;
  color: #85B7EB;
}

.contact {
  padding: 5rem 0;
  background: #FFFFFF;
}
.contact__header {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.contact__header h2 {
  font-family: "Barlow", "Inter", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .contact__header h2 {
    font-size: 1.875rem;
  }
}
.contact__header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #777777;
  max-width: 480px;
  margin-inline: auto;
}
.contact__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 767px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}
.contact__info-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  width: 100%;
}
.contact__info-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #EAF4FB;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.contact__info-card-icon img {
  width: 60%;
  height: auto;
}
.contact__info-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.contact__info-card-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A1A;
}
.contact__form {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.contact__form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}
.contact__form form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 639px) {
  .contact__form-row {
    grid-template-columns: 1fr;
  }
}
.contact__form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}
.contact label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact input, .contact textarea, .contact select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #1A1A1A;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact input:focus, .contact textarea:focus, .contact select:focus {
  outline: none;
  border-color: #1478AC;
  box-shadow: 0 0 0 3px rgba(20, 120, 172, 0.12);
}
.contact input::-moz-placeholder, .contact textarea::-moz-placeholder, .contact select::-moz-placeholder {
  color: #CCCCCC;
}
.contact input::placeholder, .contact textarea::placeholder, .contact select::placeholder {
  color: #CCCCCC;
}
.contact textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1478AC;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #1478AC;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.contact__submit:hover {
  background: #0C447C;
  border-color: #0C447C;
  transform: translateY(-1px);
}
.contact__submit:active {
  transform: translateY(0);
}
.contact__submit {
  justify-content: center;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.footer {
  background: #042C53;
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer__brand img {
  height: auto;
  width: 70%;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.875rem;
  color: #85B7EB;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
.footer__col ul li a {
  font-size: 0.875rem;
  color: #85B7EB;
  transition: color 0.2s ease;
}
.footer__col ul li a:hover {
  color: #FFFFFF;
}
.footer__bottom {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
.footer__bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.footer__bottom-links a:hover {
  color: #FFFFFF;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.w-form-success {
  display: none;
  padding: 1.5rem;
  background: #E5FFEA;
  border: 1px solid #66ce80;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.w-form-success .form-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #03cb2b;
}
.w-form-success .success-subtitle {
  font-size: 0.875rem;
  color: #34c157;
}
.w-form-error {
  display: none;
  padding: 1.5rem;
  background: #FFE5E5;
  border: 1px solid #FF9999;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.w-form-error .form-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FF0000;
}
.w-form-error .form-error-subtitle {
  font-size: 0.875rem;
  color: #FF3333;
  text-align: center;
}/*# sourceMappingURL=main.css.map */