@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  zoom: 0.8;
}

body {
  font-family: "Public Sans", sans-serif;
  color: #555555;
  line-height: 1.6;
  background: #FFFFFF;
}

h1, h2, h3, h4, h5 {
  font-family: "Manrope", sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 10rem 0 6rem;
}

@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  height: 75px;
  border-radius: 35px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-beige {
  background: #B69974;
  color: #FFFFFF;
  border-color: #B69974;
}
.btn-beige:hover {
  background: #9e8262;
}
.btn-beige-outline {
  background: #FFFFFF;
  color: #B69974;
  border-color: #B69974;
}
.btn-beige-outline:hover {
  background: #B69974;
  color: #FFFFFF;
}
.btn-white {
  background: #FFFFFF;
  color: #B69974;
  border-color: transparent;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}
.btn-arrow::after {
  content: "›";
  font-size: 1.2rem;
  line-height: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.site-header.scrolled .nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(182, 153, 116, 0.2);
}

.topbar {
  background: #FFFFFF;
  padding: 0.5rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.topbar-text {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  color: #004169;
}
.topbar-line {
  width: 28px;
  height: 1px;
  background: rgba(0, 65, 105, 0.25);
}
.topbar-linkedin {
  color: #004169;
  transition: opacity 0.2s;
  align-items: center;
  display: flex;
}
.topbar-linkedin:hover {
  opacity: 0.7;
}
.topbar-linkedin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav {
  padding: 1rem 0;
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo img, .nav-logo svg {
  height: 58px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #004169;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #68a0c8;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.mobile-toggle img, .mobile-toggle svg {
  width: auto;
  height: 25px;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
}
.footer-cta {
  background-size: cover;
  background-position: center;
  background-color: #004169;
  padding: 6rem 0 5rem;
  text-align: center;
}
.footer-cta-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.19;
  margin-bottom: 1.5rem;
}
.footer-cta p {
  font-size: 1rem;
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.875;
}

.footer {
  background: #004169;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(182, 153, 116, 0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  position: relative;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 1rem;
  color: #ECE8E0;
  line-height: 1.875;
  max-width: 300px;
}
.footer-col div {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.footer-col p, .footer-col address {
  font-style: normal;
  font-size: 1rem;
  color: #ECE8E0;
  line-height: 1.875;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-nav a {
  font-size: 1rem;
  color: #ECE8E0;
  line-height: 2.5;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #FFFFFF;
}
.footer-bottom {
  border-top: 2px solid #B69974;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  font-size: 1rem;
  color: #ECE8E0;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #FFFFFF;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-social span {
  font-size: 0.875rem;
  color: #FFFFFF;
}
.footer-social-line {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.footer-social a {
  color: #FFFFFF;
  transition: opacity 0.2s;
  align-items: center;
  display: flex;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-copy {
  font-size: 1rem;
  color: #ECE8E0;
  text-align: center;
  padding: 1.25rem 0;
}
.footer-copy strong {
  color: #FFFFFF;
}
.footer-toggle {
  position: absolute;
  top: 8px;
  right: 0;
  display: none;
}
.footer-toggle img {
  width: auto;
  height: 32px;
}
.footer.is-open {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  padding-top: 1rem;
}
.footer.is-open .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.footer.is-open .footer-toggle {
  display: flex;
}
.footer.is-open .footer-grid {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.footer.is-open .footer-col:nth-child(2) {
  order: 3;
}
.footer.is-open .footer-col:nth-child(3) {
  order: 2;
  margin-top: auto;
}
.footer.is-open .footer-brand p, .footer.is-open .footer-social, .footer.is-open .footer-copy {
  display: none;
}

.scroll-top-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  transform: translateY(25px);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-color: #004169;
  display: flex;
  align-items: flex-end;
  padding-bottom: 9rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 65, 105, 0.2) 0%, rgba(0, 128, 207, 0.1) 100%);
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #68a0c8;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  font-weight: 700;
  color: #004169;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero {
  /*&-gallery {
      display: flex;
      gap: 6px;
      margin-top: 3rem;

      span {
          width: 12px;
          height: 12px;
          border-radius: 50%;
          background: rgba($blue-dark, 0.25);
          display: none;

          &.active {
              background: $blue-dark;
          }
      }
  }*/
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 3rem;
  }
  .hero-label, .hero h1 {
    max-width: 60%;
  }
  .hero h1 {
    max-width: 60%;
    font-size: 38px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    justify-content: center;
  }
}
.services {
  background: #FFFFFF;
}
.services-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #004169;
  margin-bottom: 1rem;
}
.services-head-sub {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #68a0c8;
  letter-spacing: 0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.services-card {
  border-radius: 16px;
  padding: 2.25rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  background: #ECE8E0;
}
.services-card-icon {
  height: 80px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.services-card-icon img {
  width: auto;
  height: 100%;
  max-width: 80px;
  object-fit: contain;
  display: block;
}
.services-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1B1E23;
  margin-bottom: 1rem;
}
.services-card-sub {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #B69974;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.services-card hr {
  border: none;
  border-top: 1px solid rgba(182, 153, 116, 0.4);
  margin-bottom: 1.25rem;
}
.services-card ul li {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.875;
}
.services-card ul li::before {
  content: "• ";
  color: #B69974;
}

.company {
  background: #004169;
}
.company h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 4rem;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 900px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.company-col-icon {
  height: 72px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.company-col-icon img {
  width: auto;
  height: 100%;
  max-width: 72px;
  object-fit: contain;
  display: block;
}
.company-col h3 {
  font-family: "Public Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #B69974;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.company-col p {
  font-size: 1rem;
  color: #ECE8E0;
  line-height: 1.875;
}

.challenges {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
}
.challenges-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 65, 105, 0.2) 0%, rgba(0, 128, 207, 0.1) 100%);
  opacity: 0.5;
}
.challenges .container {
  position: relative;
  z-index: 1;
}
.challenges-icon {
  width: 80px;
  height: auto;
  margin-bottom: 2rem;
}
.challenges-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.challenges h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #004169;
  margin-bottom: 2.5rem;
  max-width: 800px;
}
.challenges-label {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #68a0c8;
  display: block;
  margin-bottom: 1rem;
}
.challenges-text {
  max-width: 440px;
  font-size: 1rem;
  line-height: 1.875;
  color: #555555;
}
@media (max-width: 768px) {
  .challenges-text {
    max-width: 48%;
  }
}
.challenges-text strong {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  color: #68a0c8;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.clients {
  padding: 3.5rem 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(104, 160, 200, 0.15);
  border-bottom: 1px solid rgba(104, 160, 200, 0.15);
}
.clients-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.clients-item {
  border-right: 1px solid rgba(104, 160, 200, 0.3);
}
.clients-item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .clients-item {
    padding: 0.75rem 3rem;
  }
}

.solutions {
  background: #B69974;
  padding: 10rem 0 5rem;
}
.solutions-head {
  text-align: center;
  margin-bottom: 3rem;
}
.solutions-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.solutions-head-sub {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #004169;
  line-height: 2.2rem;
  margin-bottom: 0.75rem;
}
.solutions-head-sub span {
  font-weight: 600;
  font-style: normal;
}
.solutions-head-desc {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ECE8E0;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 15rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.solutions-item {
  text-align: center;
}
.solutions-item-icon {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 2rem;
}
.solutions-item-icon img {
  width: auto;
  height: 100%;
  max-width: 130px;
  object-fit: contain;
  display: block;
}
.solutions-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #004169;
  margin-bottom: 1.25rem;
}
.solutions-item p {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.875;
}

.testimonials {
  background: #FFFFFF;
  padding: 6rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-card {
  background: #ECE8E0;
  border-radius: 10px;
  padding: 4rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.testimonials-card-icon {
  width: 50px;
  height: 42px;
  margin-bottom: 2.5rem;
}
.testimonials-card-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.testimonials-card-quote {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.testimonials-card-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #68a0c8;
  margin-bottom: 0.25rem;
  margin-top: auto;
}
.testimonials-card-role {
  font-size: 1rem;
  color: #555555;
}

.layout-subpage .site-header.scrolled .nav {
  background: rgba(0, 65, 105, 0.97);
}
.layout-subpage .nav {
  background-color: #004169;
}
.layout-subpage .nav-logo path {
  fill: #FFFFFF;
}
.layout-subpage .nav-links a {
  color: #FFFFFF;
}
.layout-subpage .nav-links a:hover {
  color: #68a0c8;
}
.layout-subpage .nav .mobile-toggle line {
  stroke: #FFFFFF;
}

.subpage-hero {
  background-color: #FFFFFF;
  padding-bottom: 130px;
  text-align: center;
}
.subpage-hero__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #004169;
  line-height: 91px;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .subpage-hero__title {
    font-size: 32px;
    line-height: 50px;
  }
}
.subpage-hero__subtitle {
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #B69974;
  line-height: 1.4;
}

.subpage-content {
  padding-top: 225px;
  padding-bottom: 80px;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .subpage-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.subpage-content .subpage-content-inner h2 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #68a0c8;
  margin-bottom: 20px;
  margin-top: 48px;
  line-height: 1.3;
}
.subpage-content .subpage-content-inner h2:first-child {
  margin-top: 0;
}
.subpage-content .subpage-content-inner h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #B69974;
  margin-bottom: 16px;
  margin-top: 32px;
  line-height: 1.3;
}
.subpage-content .subpage-content-inner p {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  color: #555555;
  line-height: 30px;
  margin-bottom: 16px;
}
.subpage-content .subpage-content-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}
.subpage-content .subpage-content-inner ul li {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  color: #555555;
  line-height: 30px;
}
.subpage-content .agb-list {
  list-style-type: decimal;
  padding-left: 28px;
}
.subpage-content .agb-list > li {
  padding-left: 8px;
  margin-bottom: 16px;
}
.subpage-content .agb-list > li:last-child {
  margin-bottom: 0;
}
.subpage-content .agb-list .agb-section-title {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #68a0c8;
  line-height: 1.3;
  margin-bottom: 16px;
}
.subpage-content .agb-list p {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  color: #555555;
  line-height: 30px;
  margin-bottom: 12px;
}
.subpage-content .agb-list p:last-child {
  margin-bottom: 0;
}
.subpage-content .agb-list p strong {
  font-weight: 700;
}
.subpage-content .agb-list::marker,
.subpage-content .agb-list li::marker {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #68a0c8;
}

/*# sourceMappingURL=main.css.map */
