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

html {
  scroll-behavior: smooth;
}

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: 6rem 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;
}
.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 {
  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;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-color: #004169;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
}
.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.1;
  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;
}
.hero-gallery span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 65, 105, 0.25);
}
.hero-gallery span.active {
  background: #004169;
}

.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: 600px) {
  .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;
}
.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;
  justify-content: center;
  gap: 0;
}
.clients-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(104, 160, 200, 0.3);
}
.clients-item:last-child {
  border-right: none;
}
.clients-item img {
  max-height: 50px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 700px) {
  .clients-item {
    border-right: none;
    padding: 0.75rem 1.5rem;
  }
}

.solutions {
  background: #B69974;
  padding: 4.5rem 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: 700px) {
  .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;
}
.testimonials-card-icon {
  width: 62px;
  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.375rem;
  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;
}
.testimonials-card-role {
  font-size: 1rem;
  color: #555555;
}

.footer-cta {
  background-size: cover;
  background-position: center;
  background-color: #004169;
  padding: 6rem 0 5rem;
  text-align: center;
}
.footer-cta h2 {
  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;
}
@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 h4 {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.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;
}
.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;
}

@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }
  .hero {
    padding-bottom: 4rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
html {
  zoom: 0.8;
}

.clients {
  overflow: hidden;
}

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