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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.navbar .navbar-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 480px) {
  .navbar .navbar-container {
    padding: 0 20px;
  }
}
.navbar .navbar-logo {
  flex-shrink: 0;
}
.navbar .navbar-logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 1024px) {
  .navbar .navbar-logo img {
    height: 40px;
  }
}
.navbar .navbar-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .navbar .navbar-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #000a20;
    padding: 0 20px;
    overflow-y: auto;
    flex: none;
    justify-content: flex-start;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
    z-index: 101;
  }
}
.navbar .navbar-list {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1024px) {
  .navbar .navbar-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
}
.navbar .navbar-item {
  position: relative;
}
@media (max-width: 1024px) {
  .navbar .navbar-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .navbar .navbar-item:last-child {
    border-bottom: none;
  }
}
@media (min-width: 1025px) {
  .navbar .navbar-item.navbar-item--dropdown:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .navbar .navbar-item.navbar-item--dropdown:hover .navbar-chevron {
    transform: rotate(-135deg) translateY(1px);
    border-color: #ffffff;
  }
}
.navbar .navbar-item.is-open .navbar-dropdown-inner {
  display: block;
}
.navbar .navbar-item.is-open .navbar-chevron {
  transform: rotate(-135deg) translateY(1px);
}
.navbar .navbar-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.navbar .navbar-link:hover {
  color: #ffffff;
}
.navbar .navbar-link.navbar-link--active {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .navbar .navbar-link {
    padding: 16px 0;
    width: 100%;
    justify-content: space-between;
  }
}
.navbar .navbar-chevron {
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.65);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
  margin-top: -2px;
}
.navbar .navbar-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
@media (max-width: 1024px) {
  .navbar .navbar-dropdown {
    position: static;
    transform: none;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.navbar .navbar-dropdown-inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px;
  min-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .navbar .navbar-dropdown-inner {
    display: none;
    background: transparent;
    border-radius: 0;
    padding: 0 0 12px;
    box-shadow: none;
    min-width: unset;
  }
}
.navbar .navbar-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 18, 60, 0.09);
  margin-bottom: 6px;
  background: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.navbar .navbar-dropdown-link:last-child {
  margin-bottom: 0;
}
.navbar .navbar-dropdown-link:hover {
  background: rgba(0, 18, 60, 0.04);
  border-color: rgba(0, 18, 60, 0.18);
}
.navbar .navbar-dropdown-link:hover .navbar-dropdown-arrow {
  background: #00123c;
  color: #ffffff;
  border-color: #00123c;
}
@media (max-width: 1024px) {
  .navbar .navbar-dropdown-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.07);
    margin-bottom: 4px;
  }
  .navbar .navbar-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.14);
  }
  .navbar .navbar-dropdown-link:hover .navbar-dropdown-arrow {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
  }
}
.navbar .navbar-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.navbar .navbar-dropdown-title {
  font-size: 14px;
  font-weight: 600;
  color: #00123c;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .navbar .navbar-dropdown-title {
    color: #ffffff;
  }
}
.navbar .navbar-dropdown-desc {
  font-size: 12px;
  font-weight: 400;
  color: #777777;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .navbar .navbar-dropdown-desc {
    color: rgba(255, 255, 255, 0.5);
  }
}
.navbar .navbar-dropdown-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 18, 60, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #777777;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 1024px) {
  .navbar .navbar-dropdown-arrow {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }
}
.navbar .navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.navbar .navbar-cta {
  padding: 12px 26px;
  background: #dbae6d;
  color: #00123c;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.navbar .navbar-cta:hover {
  background: #ffffff;
}
@media (max-width: 1024px) {
  .navbar .navbar-cta {
    display: none;
  }
}
.navbar .navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.navbar .navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .navbar .navbar-hamburger {
    display: flex;
  }
}
.navbar .navbar-overlay {
  display: none;
}
@media (max-width: 1024px) {
  .navbar .navbar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
}
.navbar.is-open .navbar-nav {
  transform: translateX(0);
  visibility: visible;
}
.navbar.is-open .navbar-overlay {
  opacity: 1;
  visibility: visible;
}
.navbar.is-open .navbar-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.is-open .navbar-hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar.is-open .navbar-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.footer {
  background: linear-gradient(160deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 10;
  margin-top: -50px;
}
@media (max-width: 480px) {
  .footer {
    border-radius: 0;
  }
}
.footer .footer-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .footer .footer-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .footer .footer-container {
    padding: 65px 16px;
  }
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1.4fr;
  gap: 48px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
    padding-bottom: 48px;
  }
}
@media (max-width: 560px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
}
.footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-logo {
  margin-bottom: 10px;
  display: inline-block;
}
.footer .footer-logo img {
  height: 50px;
  width: auto;
}
.footer .footer-tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 260px;
}
.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.footer .footer-social-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.footer .footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dbae6d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer .footer-social-icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-social-icon:hover {
  background: rgba(219, 174, 109, 0.15);
}
.footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer-col-title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer-link {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer .footer-link:hover {
  color: #ffffff;
}
.footer .footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer-newsletter-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
}
.footer .footer-newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #00123c;
  outline: none;
  min-width: 0;
}
.footer .footer-newsletter-input::-moz-placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.footer .footer-newsletter-input::placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.footer .footer-newsletter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00123c;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.footer .footer-newsletter-btn:hover {
  background: #000a20;
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.footer .footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 480px) {
  .footer .footer-legal-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}
.footer .footer-legal-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.footer .footer-legal-link:hover {
  color: #ffffff;
}
.footer .footer-disclaimer {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 8;
  margin-top: -50px;
}
@media (max-width: 480px) {
  .testimonials {
    border-radius: 0;
  }
}
.testimonials .testimonials-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .testimonials .testimonials-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .testimonials .testimonials-container {
    padding: 50px 16px;
  }
}
.testimonials .testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .testimonials .testimonials-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .testimonials .testimonials-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.testimonials .testimonials-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .testimonials .testimonials-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .testimonials .testimonials-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .testimonials .testimonials-title {
    font-size: 26px;
  }
}
.testimonials .testimonials-title-accent {
  color: #dbae6d;
}
.testimonials .testimonials-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  text-align: right;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .testimonials .testimonials-desc {
    text-align: left;
  }
}
.testimonials .testimonials-swiper {
  padding-bottom: 52px !important;
}
.testimonials .testimonials-swiper .swiper-slide {
  height: auto;
}
.testimonials .testimonials-swiper .swiper-pagination {
  bottom: 0;
}
.testimonials .testimonials-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(0, 18, 60, 0.2);
  background: none;
  opacity: 1;
  transition: background 0.2s ease;
}
.testimonials .testimonials-swiper .swiper-pagination .swiper-pagination-bullet-active {
  border: none;
  background: #dbae6d;
}
.testimonials .testimonials-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: rgba(0, 18, 60, 0.03);
  border: 1px solid rgba(0, 18, 60, 0.07);
  border-radius: 25px;
  box-sizing: border-box;
}
.testimonials .testimonials-quote-icon {
  width: 30px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.testimonials .testimonials-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #00123c;
  flex: 1;
  margin-bottom: 28px;
}
.testimonials .testimonials-divider {
  display: block;
  width: 28px;
  height: 2px;
  background: #dbae6d;
  margin-bottom: 10px;
  flex-shrink: 0;
  border-radius: 100px;
}
.testimonials .testimonials-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.testimonials .testimonials-author {
  display: flex;
  flex-direction: column;
}
.testimonials .testimonials-name {
  font-size: 14px;
  font-weight: 500;
  color: #00123c;
}
.testimonials .testimonials-role {
  font-size: 13px;
  font-weight: 400;
  color: #777777;
}
.testimonials .testimonials-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.contact {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 9;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .contact {
    border-radius: 0;
  }
}
.contact .contact-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px 100px 40px;
}
@media (max-width: 768px) {
  .contact .contact-container {
    padding: 0 24px 80px 24px;
  }
}
@media (max-width: 480px) {
  .contact .contact-container {
    padding: 0 16px 50px 16px;
  }
}
.contact .contact-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  border-radius: 60px;
  overflow: hidden;
  background-image: url("../images/cta-bg-1.png");
  background-size: cover;
  background-position: center;
  background-color: #dbae6d;
}
@media (max-width: 900px) {
  .contact .contact-card {
    grid-template-columns: 1fr;
    border-radius: 38px;
  }
}
.contact .contact-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1200px) {
  .contact .contact-content {
    padding: 60px 48px;
  }
}
@media (max-width: 900px) {
  .contact .contact-content {
    padding: 60px 48px;
  }
}
@media (max-width: 480px) {
  .contact .contact-content {
    padding: 48px 28px;
  }
}
.contact .contact-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1200px) {
  .contact .contact-title {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .contact .contact-title {
    font-size: 30px;
  }
}
.contact .contact-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(0, 18, 60, 0.7);
  max-width: 420px;
}
.contact .contact-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #00123c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 8px;
  transition: background 0.25s ease;
}
.contact .contact-cta:hover {
  background: #000a20;
}
.contact .contact-cta:hover .contact-cta-icon {
  background: #dbae6d;
  color: #00123c;
}
.contact .contact-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.contact .contact-form-panel {
  background: rgba(255, 255, 255, 0.96);
  margin: 20px 20px 20px 0;
  border-radius: 40px;
  padding: 35px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .contact .contact-form-panel {
    margin: 0 20px 20px;
    border-radius: 28px;
  }
}
@media (max-width: 480px) {
  .contact .contact-form-panel {
    margin: 0 12px 12px;
    padding: 32px 24px;
  }
}
.contact .contact-form-title {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 500;
  color: #00123c;
}
.contact .contact-form-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  margin-bottom: 20px;
}
.contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .contact .contact-form-row {
    grid-template-columns: 1fr;
  }
}
.contact .contact-input {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 18, 60, 0.1);
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #00123c;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact .contact-input::-moz-placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact .contact-input::placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact .contact-input:focus {
  border-color: #00123c;
}
.contact .contact-select-wrap {
  position: relative;
  width: 100%;
}
.contact .contact-select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(0, 18, 60, 0.45);
  border-bottom: 1.5px solid rgba(0, 18, 60, 0.45);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.contact .contact-select {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 18, 60, 0.1);
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 18, 60, 0.4);
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.contact .contact-select:focus {
  border-color: #00123c;
  color: #00123c;
}
.contact .contact-select option {
  color: #00123c;
}
.contact .contact-textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 18, 60, 0.1);
  border-radius: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #00123c;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
}
.contact .contact-textarea::-moz-placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact .contact-textarea::placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact .contact-textarea:focus {
  border-color: #00123c;
}
.contact .contact-submit {
  width: 100%;
  height: 56px;
  background: #00123c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.25s ease;
}
.contact .contact-submit:hover {
  background: #000a20;
}

.home-page .hero {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  padding-bottom: 50px;
  display: flex;
}
.home-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .home-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.home-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10px 0 50px 0;
  }
}
.home-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-content {
    order: 2;
  }
}
.home-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.home-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .home-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .home-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .home-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .home-page .hero .hero-title {
    font-size: 28px;
  }
}
.home-page .hero .hero-title-accent {
  color: #dbae6d;
}
.home-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .home-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.home-page .hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.home-page .hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #dbae6d;
  color: #00123c;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border-radius: 100px;
  transition: background 0.25s ease;
}
.home-page .hero .hero-cta:hover {
  background: #ffffff;
}
.home-page .hero .hero-cta:hover .hero-cta-icon {
  background: #dbae6d;
}
.home-page .hero .hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.home-page .hero .hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.home-page .hero .hero-explore::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.3s ease;
}
.home-page .hero .hero-explore:hover::after {
  width: 100%;
}
.home-page .hero .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .hero .hero-visual img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-visual img {
    max-width: 500px;
  }
}
.home-page .hero .hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .home-page .hero .hero-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .home-page .hero .hero-cards {
    grid-template-columns: 1fr;
  }
}
.home-page .hero .hero-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.home-page .hero .hero-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .home-page .hero .hero-card {
    padding: 28px;
  }
}
@media (max-width: 480px) {
  .home-page .hero .hero-card {
    padding: 24px 20px;
  }
}
.home-page .hero .hero-card-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-page .hero .hero-card-title {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.home-page .hero .hero-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.home-page .stats {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 2;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .home-page .stats {
    border-radius: 0;
  }
}
.home-page .stats .stats-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .home-page .stats .stats-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .stats .stats-container {
    padding: 50px 16px;
  }
}
.home-page .stats .stats-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .home-page .stats .stats-header {
    gap: 48px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .home-page .stats .stats-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
}
.home-page .stats .stats-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .home-page .stats .stats-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .home-page .stats .stats-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .stats .stats-title {
    font-size: 26px;
  }
}
.home-page .stats .stats-title-accent {
  color: #dbae6d;
}
.home-page .stats .stats-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  padding-top: 6px;
}
.home-page .stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .home-page .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .home-page .stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
}
.home-page .stats .stats-item {
  display: flex;
  flex-direction: column;
}
.home-page .stats .stats-number {
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
  color: #00123c;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .home-page .stats .stats-number {
    font-size: 52px;
  }
}
@media (max-width: 480px) {
  .home-page .stats .stats-number {
    font-size: 44px;
  }
}
.home-page .stats .stats-divider {
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.1);
  position: relative;
  margin-bottom: 16px;
}
.home-page .stats .stats-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 1px;
  background: #dbae6d;
}
.home-page .stats .stats-label {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 1.5;
}
.home-page .stats .stats-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .home-page .stats .stats-badges {
    gap: 20px;
    justify-content: flex-start;
  }
}
.home-page .stats .stats-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
}
.home-page .stats .stats-badge:hover .stats-badge-icon {
  border-color: rgba(219, 174, 109, 0.3);
}
.home-page .stats .stats-badge:hover .stats-badge-label {
  color: #dbae6d;
}
.home-page .stats .stats-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(219, 174, 109, 0.2), #ffffff);
  border: 1px solid rgba(51, 51, 51, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
@media (max-width: 480px) {
  .home-page .stats .stats-badge-icon {
    width: 42px;
    height: 42px;
  }
}
.home-page .stats .stats-badge-icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .home-page .stats .stats-badge-icon img {
    width: 18px;
    height: 18px;
  }
}
.home-page .stats .stats-badge-label {
  font-size: 14px;
  font-weight: 500;
  color: #00123c;
  white-space: nowrap;
  transition: color 0.2s ease;
}
@media (max-width: 1200px) {
  .home-page .stats .stats-badge-label {
    font-size: 13px;
  }
}
.home-page .solutions {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 3;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .home-page .solutions {
    border-radius: 0;
  }
}
.home-page .solutions .solutions-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .home-page .solutions .solutions-container {
    padding: 100px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .solutions .solutions-container {
    padding: 65px 16px;
  }
}
.home-page .solutions .solutions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .home-page .solutions .solutions-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .home-page .solutions .solutions-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.home-page .solutions .solutions-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-page .solutions .solutions-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.home-page .solutions .solutions-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .home-page .solutions .solutions-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .home-page .solutions .solutions-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .solutions .solutions-title {
    font-size: 26px;
  }
}
.home-page .solutions .solutions-title-accent {
  color: #dbae6d;
}
.home-page .solutions .solutions-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.home-page .solutions .solutions-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .home-page .solutions .solutions-desc {
    padding-top: 0;
  }
}
.home-page .solutions .solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .home-page .solutions .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.home-page .solutions .solutions-card {
  display: grid;
  grid-template-columns: 76px 1fr 1.3fr;
  gap: 0 28px;
  align-items: start;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  transition: all 0.25s ease;
}
.home-page .solutions .solutions-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.13);
}
@media (max-width: 1200px) {
  .home-page .solutions .solutions-card {
    grid-template-columns: 68px 1fr 1.1fr;
    gap: 0 20px;
    padding: 28px;
  }
}
@media (max-width: 640px) {
  .home-page .solutions .solutions-card {
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
    padding: 24px;
  }
}
.home-page .solutions .solutions-card:hover .solutions-card-icon {
  background: #ffffff;
}
.home-page .solutions .solutions-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.home-page .solutions .solutions-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  .home-page .solutions .solutions-card-icon {
    width: 68px;
    height: 68px;
  }
}
@media (max-width: 640px) {
  .home-page .solutions .solutions-card-icon {
    width: 56px;
    height: 56px;
  }
  .home-page .solutions .solutions-card-icon img {
    width: 24px;
    height: 24px;
  }
}
.home-page .solutions .solutions-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  padding-top: 14px;
}
@media (max-width: 1200px) {
  .home-page .solutions .solutions-card-title {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .home-page .solutions .solutions-card-title {
    padding-top: 10px;
  }
}
.home-page .solutions .solutions-card-body {
  padding-top: 10px;
}
@media (max-width: 640px) {
  .home-page .solutions .solutions-card-body {
    grid-column: 1/-1;
    padding-top: 16px;
  }
}
.home-page .solutions .solutions-card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}
.home-page .solutions .solutions-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #dbae6d;
  position: relative;
  transition: color 0.2s ease;
}
.home-page .solutions .solutions-card-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #dbae6d;
  transition: width 0.3s ease;
}
.home-page .solutions .solutions-card-link:hover::after {
  width: 100%;
}
.home-page .solutions-2 {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 3;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .home-page .solutions-2 {
    border-radius: 0;
  }
}
.home-page .solutions-2 .solutions-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .home-page .solutions-2 .solutions-container {
    padding: 100px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .solutions-2 .solutions-container {
    padding: 65px 16px;
  }
}
.home-page .solutions-2 .solutions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .home-page .solutions-2 .solutions-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .home-page .solutions-2 .solutions-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.home-page .solutions-2 .solutions-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-page .solutions-2 .solutions-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.home-page .solutions-2 .solutions-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .home-page .solutions-2 .solutions-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .home-page .solutions-2 .solutions-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .solutions-2 .solutions-title {
    font-size: 26px;
  }
}
.home-page .solutions-2 .solutions-title-accent {
  color: #dbae6d;
}
.home-page .solutions-2 .solutions-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.home-page .solutions-2 .solutions-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .home-page .solutions-2 .solutions-desc {
    padding-top: 0;
  }
}
.home-page .solutions-2 .solutions-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 768px) {
  .home-page .solutions-2 .solutions-wrapper {
    grid-template-columns: 1fr;
  }
}
.home-page .solutions-2 .solutions-bg-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 1024px) {
  .home-page .solutions-2 .solutions-bg-wrapper {
    display: none;
  }
}
.home-page .solutions-2 .solutions-bg-wrapper img {
  position: absolute;
  left: 50px;
  bottom: 0;
  width: calc(100% + 100px);
  min-width: calc(100% + 100px);
  opacity: 0.75;
  pointer-events: none;
}
.home-page .solutions-2 .solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .home-page .solutions-2 .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.home-page .solutions-2 .solutions-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0 20px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.home-page .solutions-2 .solutions-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.13);
}
@media (max-width: 1200px) {
  .home-page .solutions-2 .solutions-card {
    grid-template-columns: 68px 1.1fr;
    gap: 0 20px;
    padding: 28px;
  }
}
@media (max-width: 640px) {
  .home-page .solutions-2 .solutions-card {
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
    padding: 24px;
  }
}
.home-page .solutions-2 .solutions-card:hover .solutions-card-icon {
  background: #ffffff;
}
.home-page .solutions-2 .solutions-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.home-page .solutions-2 .solutions-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  .home-page .solutions-2 .solutions-card-icon {
    width: 68px;
    height: 68px;
  }
}
@media (max-width: 640px) {
  .home-page .solutions-2 .solutions-card-icon {
    width: 56px;
    height: 56px;
  }
  .home-page .solutions-2 .solutions-card-icon img {
    width: 24px;
    height: 24px;
  }
}
.home-page .solutions-2 .solutions-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .home-page .solutions-2 .solutions-card-title {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .home-page .solutions-2 .solutions-card-title {
    padding-top: 10px;
  }
}
.home-page .solutions-2 .solutions-card-body {
  grid-column: 1/-1;
  padding-top: 16px;
}
.home-page .solutions-2 .solutions-card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}
.home-page .solutions-2 .solutions-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #dbae6d;
  position: relative;
  transition: color 0.2s ease;
}
.home-page .solutions-2 .solutions-card-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #dbae6d;
  transition: width 0.3s ease;
}
.home-page .solutions-2 .solutions-card-link:hover::after {
  width: 100%;
}
.home-page .about {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 4;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .home-page .about {
    border-radius: 0;
  }
}
.home-page .about .about-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .home-page .about .about-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .about .about-container {
    padding: 50px 16px;
  }
}
.home-page .about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1024px) {
  .home-page .about .about-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .home-page .about .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.home-page .about .about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .home-page .about .about-content {
    order: 2;
  }
}
.home-page .about .about-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-page .about .about-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.home-page .about .about-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .home-page .about .about-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .home-page .about .about-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .about .about-title {
    font-size: 26px;
  }
}
.home-page .about .about-title-accent {
  color: #dbae6d;
}
.home-page .about .about-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.home-page .about .about-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  max-width: 480px;
}
@media (max-width: 768px) {
  .home-page .about .about-desc {
    max-width: 100%;
  }
}
.home-page .about .about-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #00123c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 8px;
  transition: background 0.25s ease;
}
.home-page .about .about-cta:hover {
  background: #000a20;
}
.home-page .about .about-cta:hover .about-cta-icon {
  background: #dbae6d;
  color: #00123c;
}
.home-page .about .about-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.home-page .about .about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .about .about-visual img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .home-page .about .about-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.home-page .why {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .home-page .why {
    border-radius: 0;
  }
}
.home-page .why .why-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .home-page .why .why-container {
    padding: 100px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .why .why-container {
    padding: 65px 16px;
  }
}
.home-page .why .why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .home-page .why .why-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .home-page .why .why-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.home-page .why .why-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-page .why .why-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.home-page .why .why-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .home-page .why .why-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .home-page .why .why-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .why .why-title {
    font-size: 26px;
  }
}
.home-page .why .why-title-accent {
  color: #dbae6d;
}
.home-page .why .why-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.home-page .why .why-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .home-page .why .why-desc {
    padding-top: 0;
  }
}
.home-page .why .why-list {
  display: flex;
  flex-direction: column;
}
.home-page .why .why-item {
  display: grid;
  grid-template-columns: 80px 250px 1.8fr 130px;
  gap: 0 60px;
  align-items: center;
  padding: 35px 0;
  cursor: default;
}
.home-page .why .why-item:first-child {
  padding-top: 0;
}
.home-page .why .why-item:last-child {
  padding-bottom: 0;
}
.home-page .why .why-item + .why-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.home-page .why .why-item:hover .why-item-icon {
  background: #ffffff;
  border-color: #ffffff;
}
.home-page .why .why-item:hover .why-item-title {
  color: #dbae6d;
}
.home-page .why .why-item:hover .why-item-num {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .home-page .why .why-item {
    grid-template-columns: 72px 1fr 1.6fr 110px;
    gap: 0 28px;
  }
}
@media (max-width: 1024px) {
  .home-page .why .why-item {
    grid-template-columns: 68px 1fr 1.4fr;
    gap: 0 24px;
    padding: 36px 0;
  }
}
@media (max-width: 768px) {
  .home-page .why .why-item {
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
    padding: 28px 0;
  }
}
.home-page .why .why-item-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.home-page .why .why-item-icon img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .home-page .why .why-item-icon {
    width: 68px;
    height: 68px;
  }
}
@media (max-width: 768px) {
  .home-page .why .why-item-icon {
    width: 60px;
    height: 60px;
  }
  .home-page .why .why-item-icon img {
    width: 24px;
    height: 24px;
  }
}
.home-page .why .why-item-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  transition: color 0.25s ease;
}
@media (max-width: 1024px) {
  .home-page .why .why-item-title {
    font-size: 16px;
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  .home-page .why .why-item-title {
    border-left: none;
    padding-left: 0;
    padding-top: 8px;
  }
}
.home-page .why .why-item-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 768px) {
  .home-page .why .why-item-desc {
    grid-column: 1/-1;
    padding-top: 14px;
    font-size: 14px;
  }
}
.home-page .why .why-item-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
@media (max-width: 1024px) {
  .home-page .why .why-item-counter {
    display: none;
  }
}
.home-page .why .why-item-dash {
  display: block;
  width: 24px;
  height: 2px;
  background: #dbae6d;
  flex-shrink: 0;
}
.home-page .why .why-item-num {
  font-size: 62px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  width: 90px;
  text-align: left;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}
.home-page .process {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 6;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .home-page .process {
    border-radius: 0;
  }
}
.home-page .process .process-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .home-page .process .process-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .process .process-container {
    padding: 50px 16px;
  }
}
.home-page .process .process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .home-page .process .process-header {
    gap: 48px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .home-page .process .process-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
}
.home-page .process .process-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .home-page .process .process-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .home-page .process .process-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .process .process-title {
    font-size: 26px;
  }
}
.home-page .process .process-title-accent {
  color: #dbae6d;
}
.home-page .process .process-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  text-align: right;
}
@media (max-width: 768px) {
  .home-page .process .process-desc {
    text-align: left;
  }
}
.home-page .process .process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 20px;
  position: relative;
}
.home-page .process .process-steps::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(51, 51, 51, 0.1);
}
@media (max-width: 1024px) {
  .home-page .process .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 24px;
  }
  .home-page .process .process-steps::before {
    display: none;
  }
}
@media (max-width: 580px) {
  .home-page .process .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 360px) {
  .home-page .process .process-steps {
    grid-template-columns: 1fr;
  }
}
.home-page .process .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home-page .process .process-num {
  font-size: 12px;
  font-weight: 400;
  color: #777777;
  margin-bottom: 44px;
  background: #ffffff;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .home-page .process .process-num {
    background: transparent;
    margin-bottom: 28px;
  }
}
.home-page .process .process-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(219, 174, 109, 0.14) 0%, rgba(219, 174, 109, 0.04) 100%);
  border: 1px solid rgba(219, 174, 109, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.home-page .process .process-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .home-page .process .process-icon img {
    width: 24px;
    height: 24px;
  }
}
.home-page .process .process-step-title {
  font-size: 16px;
  font-weight: 500;
  color: #00123c;
  margin-bottom: 10px;
}
.home-page .process .process-step-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #dbae6d;
  margin-bottom: 14px;
  border-radius: 100px;
}
.home-page .process .process-step-desc {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 1.65;
}
.home-page .industries {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 7;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .home-page .industries {
    border-radius: 0;
  }
}
.home-page .industries .industries-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .home-page .industries .industries-container {
    padding: 100px 24px;
  }
}
@media (max-width: 480px) {
  .home-page .industries .industries-container {
    padding: 65px 16px;
  }
}
.home-page .industries .industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .home-page .industries .industries-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.home-page .industries .industries-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-page .industries .industries-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.home-page .industries .industries-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .home-page .industries .industries-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .industries .industries-title {
    font-size: 26px;
  }
}
.home-page .industries .industries-title-accent {
  color: #dbae6d;
}
.home-page .industries .industries-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.home-page .industries .industries-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .home-page .industries .industries-desc {
    padding-top: 0;
  }
}
.home-page .industries .industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-page .industries .industries-grid .industries-card:nth-child(1) {
  grid-column: span 2;
}
.home-page .industries .industries-grid .industries-card:nth-child(3) {
  grid-row: span 2;
}
.home-page .industries .industries-grid .industries-card:nth-child(5) {
  grid-column: span 2;
}
.home-page .industries .industries-grid .industries-card:nth-child(6) {
  grid-column: span 2;
}
.home-page .industries .industries-grid .industries-card:nth-child(7) {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .industries .industries-grid .industries-card:nth-child(1),
  .home-page .industries .industries-grid .industries-card:nth-child(5),
  .home-page .industries .industries-grid .industries-card:nth-child(6),
  .home-page .industries .industries-grid .industries-card:nth-child(7) {
    grid-column: span 1;
  }
  .home-page .industries .industries-grid .industries-card:nth-child(3) {
    grid-row: span 1;
  }
}
@media (max-width: 480px) {
  .home-page .industries .industries-grid {
    grid-template-columns: 1fr;
  }
}
.home-page .industries .industries-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.home-page .industries .industries-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.13);
}
@media (max-width: 768px) {
  .home-page .industries .industries-card {
    padding: 28px;
  }
}
.home-page .industries .industries-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.home-page .industries .industries-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-page .industries .industries-card-title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}
.home-page .industries .industries-card-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #dbae6d;
  margin-bottom: 16px;
  border-radius: 100px;
}
.home-page .industries .industries-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
.home-page .industries .industries-card-with-bg {
  position: relative;
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-desc {
  max-width: 250px;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-desc {
    max-width: 100%;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-bg-1 {
  position: absolute;
  width: auto;
  height: 250px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-bg-1 {
    display: none;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-2 .industries-card-bg-2 {
  position: absolute;
  width: auto;
  height: 90%;
  top: 0;
  right: 0;
  z-index: -1;
  filter: grayscale(0.35);
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-2 .industries-card-bg-2 {
    display: none;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-3 .industries-card-bg-3 {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-3 .industries-card-bg-3 {
    display: none;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-4 .industries-card-bg-4 {
  position: absolute;
  width: 80%;
  height: auto;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-4 .industries-card-bg-4 {
    display: none;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-desc {
  max-width: 350px;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-desc {
    max-width: 100%;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-bg-5 {
  position: absolute;
  width: auto;
  height: 250px;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-bg-5 {
    display: none;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-desc {
  max-width: 300px;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-desc {
    max-width: 100%;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-bg-6 {
  position: absolute;
  width: auto;
  height: 250px;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-bg-6 {
    display: none;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-desc {
  max-width: 250px;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-desc {
    max-width: 100%;
  }
}
.home-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-bg-7 {
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-bg-7 {
    display: none;
  }
}

.about-page .hero {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  padding-bottom: 50px;
  display: flex;
}
.about-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .about-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .about-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .about-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.about-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0 0 0;
}
@media (max-width: 1024px) {
  .about-page .hero .hero-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10px 0 0 0;
  }
}
.about-page .hero .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .hero .hero-visual img {
  width: 100%;
  max-width: 90%;
  height: auto;
}
@media (max-width: 1024px) {
  .about-page .hero .hero-visual img {
    max-width: 500px;
  }
}
.about-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .about-page .hero .hero-content {
    order: 2;
  }
}
.about-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .about-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.about-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .about-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .about-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .about-page .hero .hero-title {
    font-size: 28px;
  }
}
.about-page .hero .hero-title-accent {
  color: #dbae6d;
}
.about-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .about-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.about-page .hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .about-page .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.about-page .hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #dbae6d;
  color: #00123c;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border-radius: 100px;
  transition: background 0.25s ease;
}
.about-page .hero .hero-cta:hover {
  background: #ffffff;
}
.about-page .hero .hero-cta:hover .hero-cta-icon {
  background: #dbae6d;
}
.about-page .hero .hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.about-page .hero .hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.about-page .hero .hero-explore::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.3s ease;
}
.about-page .hero .hero-explore:hover::after {
  width: 100%;
}
.about-page .about {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 4;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .about-page .about {
    border-radius: 0;
  }
}
.about-page .about .about-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .about-page .about .about-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .about-page .about .about-container {
    padding: 50px 16px;
  }
}
.about-page .about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1024px) {
  .about-page .about .about-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about-page .about .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-page .about .about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .about-page .about .about-content {
    order: 2;
  }
}
.about-page .about .about-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .about-page .about .about-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .about-page .about .about-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .about-page .about .about-title {
    font-size: 26px;
  }
}
.about-page .about .about-title-accent {
  color: #dbae6d;
}
.about-page .about .about-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  max-width: 480px;
}
@media (max-width: 768px) {
  .about-page .about .about-desc {
    max-width: 100%;
  }
}
.about-page .about .about-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #00123c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 8px;
  transition: background 0.25s ease;
}
.about-page .about .about-cta:hover {
  background: #000a20;
}
.about-page .about .about-cta:hover .about-cta-icon {
  background: #dbae6d;
  color: #00123c;
}
.about-page .about .about-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.about-page .about .about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .about .about-visual img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .about-page .about .about-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.about-page .about .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .about-page .about .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .about-page .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about-page .about .stats-item {
  display: flex;
  flex-direction: column;
}
.about-page .about .stats-number {
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
  color: #00123c;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .about-page .about .stats-number {
    font-size: 52px;
  }
}
@media (max-width: 480px) {
  .about-page .about .stats-number {
    font-size: 44px;
  }
}
.about-page .about .stats-divider {
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.1);
  position: relative;
  margin-bottom: 16px;
}
.about-page .about .stats-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 1px;
  background: #dbae6d;
}
.about-page .about .stats-label {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 1.5;
}
.about-page .team {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 480px) {
  .about-page .team {
    border-radius: 0;
  }
}
.about-page .team .team-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px 100px 40px;
}
@media (max-width: 768px) {
  .about-page .team .team-container {
    padding: 0 24px 80px 24px;
  }
}
@media (max-width: 480px) {
  .about-page .team .team-container {
    padding: 0 16px 50px 16px;
  }
}
.about-page .team .team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .about-page .team .team-header {
    gap: 48px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .about-page .team .team-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
}
.about-page .team .team-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
  color: #00123c;
}
@media (max-width: 1024px) {
  .about-page .team .team-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .about-page .team .team-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .about-page .team .team-title {
    font-size: 26px;
  }
}
.about-page .team .team-title-accent {
  color: #dbae6d;
}
.about-page .team .team-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  text-align: right;
}
@media (max-width: 768px) {
  .about-page .team .team-desc {
    text-align: left;
  }
}
.about-page .team .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1024px) {
  .about-page .team .team-grid {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .about-page .team .team-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.about-page .team .team-member {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1200px) {
  .about-page .team .team-member {
    grid-template-columns: 200px 1fr;
    gap: 28px;
  }
}
@media (max-width: 1024px) {
  .about-page .team .team-member {
    grid-template-columns: 170px 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .about-page .team .team-member {
    grid-template-columns: 1fr;
  }
}
.about-page .team .team-member-photo img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .about-page .team .team-member-photo img {
    height: 340px;
  }
}
@media (max-width: 480px) {
  .about-page .team .team-member-photo img {
    height: 260px;
  }
}
.about-page .team .team-member-info {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
.about-page .team .team-member-name {
  font-size: 24px;
  font-weight: 500;
  color: #00123c;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .about-page .team .team-member-name {
    font-size: 20px;
  }
}
.about-page .team .team-member-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dbae6d;
  margin-bottom: 14px;
}
.about-page .team .team-member-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: #dbae6d;
  margin-bottom: 22px;
  border-radius: 100px;
}
.about-page .team .team-member-bio {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #777777;
}
.about-page .values {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 7;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .about-page .values {
    border-radius: 0;
  }
}
.about-page .values .values-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .about-page .values .values-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .about-page .values .values-container {
    padding: 65px 16px;
  }
}
.about-page .values .values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .about-page .values .values-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .about-page .values .values-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.about-page .values .values-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-page .values .values-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.about-page .values .values-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .about-page .values .values-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .about-page .values .values-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .about-page .values .values-title {
    font-size: 26px;
  }
}
.about-page .values .values-title-accent {
  color: #dbae6d;
}
.about-page .values .values-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 10px;
}
.about-page .values .values-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .about-page .values .values-desc {
    padding-top: 0;
  }
}
.about-page .values .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .about-page .values .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .about-page .values .values-grid {
    grid-template-columns: 1fr;
  }
}
.about-page .values .values-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.about-page .values .values-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.13);
}
@media (max-width: 768px) {
  .about-page .values .values-card {
    padding: 28px;
  }
}
.about-page .values .values-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.about-page .values .values-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .about-page .values .values-card-icon img {
    width: 24px;
    height: 24px;
  }
}
.about-page .values .values-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}
.about-page .values .values-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.partnerships-page .hero {
  background: #00123c;
  padding-bottom: 50px;
  display: flex;
}
.partnerships-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .partnerships-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.partnerships-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 50px 0 0 0;
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10px 0 0 0;
  }
}
.partnerships-page .hero .hero-visual {
  position: relative;
  height: 100%;
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-visual {
    display: none;
  }
}
.partnerships-page .hero .hero-visual img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  min-width: 150%;
  height: auto;
}
.partnerships-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-content {
    order: 2;
  }
}
.partnerships-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.partnerships-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .partnerships-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .partnerships-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .hero .hero-title {
    font-size: 28px;
  }
}
.partnerships-page .hero .hero-title-accent {
  color: #dbae6d;
}
.partnerships-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .partnerships-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.partnerships-page .hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .partnerships-page .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.partnerships-page .hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #dbae6d;
  color: #00123c;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border-radius: 100px;
  transition: background 0.25s ease;
}
.partnerships-page .hero .hero-cta:hover {
  background: #ffffff;
}
.partnerships-page .hero .hero-cta:hover .hero-cta-icon {
  background: #dbae6d;
}
.partnerships-page .hero .hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.partnerships-page .hero .hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.partnerships-page .hero .hero-explore::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.3s ease;
}
.partnerships-page .hero .hero-explore:hover::after {
  width: 100%;
}
.partnerships-page .partners {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 9;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .partnerships-page .partners {
    border-radius: 0;
  }
}
.partnerships-page .partners .partners-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .partnerships-page .partners .partners-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .partners .partners-container {
    padding: 50px 16px;
  }
}
.partnerships-page .partners .partners-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .partnerships-page .partners .partners-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .partnerships-page .partners .partners-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.partnerships-page .partners .partners-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .partnerships-page .partners .partners-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .partnerships-page .partners .partners-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .partners .partners-title {
    font-size: 26px;
  }
}
.partnerships-page .partners .partners-title-accent {
  color: #dbae6d;
}
.partnerships-page .partners .partners-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  text-align: right;
}
@media (max-width: 768px) {
  .partnerships-page .partners .partners-desc {
    text-align: left;
  }
}
.partnerships-page .partners .partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .partnerships-page .partners .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .partnerships-page .partners .partners-grid {
    grid-template-columns: 1fr;
  }
}
.partnerships-page .partners .partners-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  border: 1px solid rgba(0, 18, 60, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.partnerships-page .partners .partners-card:hover {
  background: linear-gradient(135deg, rgba(219, 174, 109, 0.1) 0%, rgba(219, 174, 109, 0.03) 100%);
  border-color: rgba(219, 174, 109, 0.2);
}
@media (max-width: 640px) {
  .partnerships-page .partners .partners-card {
    padding: 32px 20px;
  }
}
.partnerships-page .partners .partners-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(219, 174, 109, 0.14) 0%, rgba(219, 174, 109, 0.04) 100%);
  border: 1px solid rgba(219, 174, 109, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.partnerships-page .partners .partners-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.partnerships-page .partners .partners-card-title {
  font-size: 16px;
  font-weight: 500;
  color: #00123c;
  line-height: 1.4;
}
.partnerships-page .how-works {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 9;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .partnerships-page .how-works {
    border-radius: 0;
  }
}
.partnerships-page .how-works .how-works-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .partnerships-page .how-works .how-works-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .how-works .how-works-container {
    padding: 65px 16px;
  }
}
.partnerships-page .how-works .how-works-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .partnerships-page .how-works .how-works-header {
    gap: 48px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .partnerships-page .how-works .how-works-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
}
.partnerships-page .how-works .how-works-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partnerships-page .how-works .how-works-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.partnerships-page .how-works .how-works-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .partnerships-page .how-works .how-works-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .partnerships-page .how-works .how-works-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .how-works .how-works-title {
    font-size: 26px;
  }
}
.partnerships-page .how-works .how-works-title-accent {
  color: #dbae6d;
}
.partnerships-page .how-works .how-works-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.partnerships-page .how-works .how-works-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .partnerships-page .how-works .how-works-desc {
    padding-top: 0;
  }
}
.partnerships-page .how-works .how-works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
  position: relative;
}
.partnerships-page .how-works .how-works-steps::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) {
  .partnerships-page .how-works .how-works-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 24px;
  }
  .partnerships-page .how-works .how-works-steps::before {
    display: none;
  }
}
@media (max-width: 480px) {
  .partnerships-page .how-works .how-works-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.partnerships-page .how-works .how-works-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.partnerships-page .how-works .how-works-num {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  padding: 5px 20px 3px 20px;
  background: #00123c;
  position: relative;
  z-index: 2;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) {
  .partnerships-page .how-works .how-works-num {
    margin-bottom: 28px;
  }
}
.partnerships-page .how-works .how-works-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.partnerships-page .how-works .how-works-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .partnerships-page .how-works .how-works-icon img {
    width: 24px;
    height: 24px;
  }
}
.partnerships-page .how-works .how-works-step-title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}
.partnerships-page .how-works .how-works-step-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #dbae6d;
  margin-bottom: 14px;
  border-radius: 100px;
}
.partnerships-page .how-works .how-works-step-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
.partnerships-page .trust {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 9;
  margin-top: -50px;
}
@media (max-width: 480px) {
  .partnerships-page .trust {
    border-radius: 0;
  }
}
.partnerships-page .trust .trust-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .partnerships-page .trust .trust-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .trust .trust-container {
    padding: 50px 16px;
  }
}
.partnerships-page .trust .trust-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .partnerships-page .trust .trust-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .partnerships-page .trust .trust-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.partnerships-page .trust .trust-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .partnerships-page .trust .trust-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .partnerships-page .trust .trust-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .partnerships-page .trust .trust-title {
    font-size: 26px;
  }
}
.partnerships-page .trust .trust-title-accent {
  color: #dbae6d;
}
.partnerships-page .trust .trust-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  text-align: right;
}
@media (max-width: 768px) {
  .partnerships-page .trust .trust-desc {
    text-align: left;
  }
}
.partnerships-page .trust .trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.partnerships-page .trust .trust-grid .trust-card:nth-child(1),
.partnerships-page .trust .trust-grid .trust-card:nth-child(2),
.partnerships-page .trust .trust-grid .trust-card:nth-child(3) {
  grid-column: span 2;
}
.partnerships-page .trust .trust-grid .trust-card:nth-child(4) {
  grid-column: 2/span 2;
}
.partnerships-page .trust .trust-grid .trust-card:nth-child(5) {
  grid-column: 4/span 2;
}
@media (max-width: 1024px) {
  .partnerships-page .trust .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partnerships-page .trust .trust-grid .trust-card:nth-child(1),
  .partnerships-page .trust .trust-grid .trust-card:nth-child(2),
  .partnerships-page .trust .trust-grid .trust-card:nth-child(3),
  .partnerships-page .trust .trust-grid .trust-card:nth-child(4),
  .partnerships-page .trust .trust-grid .trust-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .partnerships-page .trust .trust-grid {
    grid-template-columns: 1fr;
  }
}
.partnerships-page .trust .trust-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(0, 18, 60, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.partnerships-page .trust .trust-card:hover {
  background: linear-gradient(135deg, rgba(219, 174, 109, 0.1) 0%, rgba(219, 174, 109, 0.03) 100%);
  border-color: rgba(219, 174, 109, 0.18);
}
.partnerships-page .trust .trust-card-icon {
  margin-bottom: 20px;
}
.partnerships-page .trust .trust-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.partnerships-page .trust .trust-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #00123c;
  margin-bottom: 5px;
}
.partnerships-page .trust .trust-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 1.65;
}

.compliance-page .hero {
  background: #00123c;
  padding-bottom: 50px;
  display: flex;
}
.compliance-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .compliance-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .compliance-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.compliance-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 50px 0 0 0;
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10px 0 0 0;
  }
}
.compliance-page .hero .hero-visual {
  position: relative;
  height: 100%;
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-visual {
    display: none;
  }
}
.compliance-page .hero .hero-visual img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  min-width: 150%;
  height: auto;
}
.compliance-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-content {
    order: 2;
  }
}
.compliance-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.compliance-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .compliance-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .compliance-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .compliance-page .hero .hero-title {
    font-size: 28px;
  }
}
.compliance-page .hero .hero-title-accent {
  color: #dbae6d;
}
.compliance-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .compliance-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.compliance-page .hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .compliance-page .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.compliance-page .hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #dbae6d;
  color: #00123c;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border-radius: 100px;
  transition: background 0.25s ease;
}
.compliance-page .hero .hero-cta:hover {
  background: #ffffff;
}
.compliance-page .hero .hero-cta:hover .hero-cta-icon {
  background: #dbae6d;
}
.compliance-page .hero .hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.compliance-page .hero .hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.compliance-page .hero .hero-explore::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.3s ease;
}
.compliance-page .hero .hero-explore:hover::after {
  width: 100%;
}
.compliance-page .about {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 4;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .compliance-page .about {
    border-radius: 0;
  }
}
.compliance-page .about .about-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .compliance-page .about .about-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .compliance-page .about .about-container {
    padding: 50px 16px;
  }
}
.compliance-page .about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1024px) {
  .compliance-page .about .about-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .compliance-page .about .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.compliance-page .about .about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .compliance-page .about .about-content {
    order: 2;
  }
}
.compliance-page .about .about-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .compliance-page .about .about-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .compliance-page .about .about-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .compliance-page .about .about-title {
    font-size: 26px;
  }
}
.compliance-page .about .about-title-accent {
  color: #dbae6d;
}
.compliance-page .about .about-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  max-width: 480px;
}
@media (max-width: 768px) {
  .compliance-page .about .about-desc {
    max-width: 100%;
  }
}
.compliance-page .about .about-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #00123c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 8px;
  transition: background 0.25s ease;
}
.compliance-page .about .about-cta:hover {
  background: #000a20;
}
.compliance-page .about .about-cta:hover .about-cta-icon {
  background: #dbae6d;
  color: #00123c;
}
.compliance-page .about .about-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.compliance-page .about .about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.compliance-page .about .about-visual img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .compliance-page .about .about-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.compliance-page .provider-readiness {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 7;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .compliance-page .provider-readiness {
    border-radius: 0;
  }
}
.compliance-page .provider-readiness .provider-readiness-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .compliance-page .provider-readiness .provider-readiness-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .compliance-page .provider-readiness .provider-readiness-container {
    padding: 65px 16px;
  }
}
.compliance-page .provider-readiness .provider-readiness-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .compliance-page .provider-readiness .provider-readiness-header {
    gap: 48px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .compliance-page .provider-readiness .provider-readiness-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
}
.compliance-page .provider-readiness .provider-readiness-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compliance-page .provider-readiness .provider-readiness-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.compliance-page .provider-readiness .provider-readiness-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .compliance-page .provider-readiness .provider-readiness-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .compliance-page .provider-readiness .provider-readiness-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .compliance-page .provider-readiness .provider-readiness-title {
    font-size: 26px;
  }
}
.compliance-page .provider-readiness .provider-readiness-title-accent {
  color: #dbae6d;
}
.compliance-page .provider-readiness .provider-readiness-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.compliance-page .provider-readiness .provider-readiness-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .compliance-page .provider-readiness .provider-readiness-desc {
    padding-top: 0;
  }
}
.compliance-page .provider-readiness .provider-readiness-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 20px;
  position: relative;
}
.compliance-page .provider-readiness .provider-readiness-steps::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8.33%;
  right: 8.33%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) {
  .compliance-page .provider-readiness .provider-readiness-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 24px;
  }
  .compliance-page .provider-readiness .provider-readiness-steps::before {
    display: none;
  }
}
@media (max-width: 580px) {
  .compliance-page .provider-readiness .provider-readiness-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 360px) {
  .compliance-page .provider-readiness .provider-readiness-steps {
    grid-template-columns: 1fr;
  }
}
.compliance-page .provider-readiness .provider-readiness-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.compliance-page .provider-readiness .provider-readiness-num {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  padding: 5px 20px 3px 20px;
  background: #00123c;
  position: relative;
  z-index: 2;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) {
  .compliance-page .provider-readiness .provider-readiness-num {
    margin-bottom: 28px;
  }
}
.compliance-page .provider-readiness .provider-readiness-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.compliance-page .provider-readiness .provider-readiness-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .compliance-page .provider-readiness .provider-readiness-icon img {
    width: 24px;
    height: 24px;
  }
}
.compliance-page .provider-readiness .provider-readiness-step-title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.contact-page .hero {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  padding-bottom: 50px;
  display: flex;
}
.contact-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .contact-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .contact-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .contact-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.contact-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 50px 0 0 0;
  gap: 60px;
}
@media (max-width: 1024px) {
  .contact-page .hero .hero-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10px 0 0 0;
  }
}
.contact-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .contact-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.contact-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .contact-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .contact-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .contact-page .hero .hero-title {
    font-size: 28px;
  }
}
.contact-page .hero .hero-title-accent {
  color: #dbae6d;
}
.contact-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .contact-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.contact-page .hero .hero-actions {
  display: flex;
  align-items: start;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .contact-page .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-page .hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #dbae6d;
  color: #00123c;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border-radius: 100px;
  transition: background 0.25s ease;
}
.contact-page .hero .hero-cta:hover {
  background: #ffffff;
}
.contact-page .hero .hero-cta:hover .hero-cta-icon {
  background: #dbae6d;
}
.contact-page .hero .hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.contact-page .hero .hero-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.contact-page .hero .hero-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  max-width: 380px;
}
@media (max-width: 1024px) {
  .contact-page .hero .hero-contact-item {
    max-width: 100%;
  }
}
.contact-page .hero .hero-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-page .hero .hero-contact-icon img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-page .hero .hero-contact-text {
  display: flex;
  flex-direction: column;
}
.contact-page .hero .hero-contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.contact-page .hero .hero-contact-value {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.contact-page .hero .hero-divider {
  display: block;
  width: 40px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.contact-page .hero .hero-speak-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
.contact-page .hero .hero-speak-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -12px;
}
.contact-page .hero .contact-form-panel {
  background: rgba(255, 255, 255, 0.96);
  margin: 20px 20px 20px 0;
  border-radius: 40px;
  padding: 35px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .contact-page .hero .contact-form-panel {
    margin: 0 20px 20px;
    border-radius: 28px;
  }
}
@media (max-width: 480px) {
  .contact-page .hero .contact-form-panel {
    margin: 0 12px 12px;
    padding: 32px 24px;
  }
}
.contact-page .hero .contact-form-title {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 500;
  color: #00123c;
}
.contact-page .hero .contact-form-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  margin-bottom: 20px;
}
.contact-page .hero .contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-page .hero .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .contact-page .hero .contact-form-row {
    grid-template-columns: 1fr;
  }
}
.contact-page .hero .contact-input {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 18, 60, 0.1);
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #00123c;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-page .hero .contact-input::-moz-placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact-page .hero .contact-input::placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact-page .hero .contact-input:focus {
  border-color: #00123c;
}
.contact-page .hero .contact-select-wrap {
  position: relative;
  width: 100%;
}
.contact-page .hero .contact-select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(0, 18, 60, 0.45);
  border-bottom: 1.5px solid rgba(0, 18, 60, 0.45);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.contact-page .hero .contact-select {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 18, 60, 0.1);
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 18, 60, 0.4);
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.contact-page .hero .contact-select:focus {
  border-color: #00123c;
  color: #00123c;
}
.contact-page .hero .contact-select option {
  color: #00123c;
}
.contact-page .hero .contact-textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 18, 60, 0.1);
  border-radius: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #00123c;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
}
.contact-page .hero .contact-textarea::-moz-placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact-page .hero .contact-textarea::placeholder {
  color: rgba(0, 18, 60, 0.4);
}
.contact-page .hero .contact-textarea:focus {
  border-color: #00123c;
}
.contact-page .hero .contact-submit {
  width: 100%;
  height: 56px;
  background: #00123c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.25s ease;
}
.contact-page .hero .contact-submit:hover {
  background: #000a20;
}
.contact-page .testimonials {
  padding-bottom: 50px;
}

.faqs-page .hero {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  padding-bottom: 50px;
  display: flex;
}
.faqs-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .faqs-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .faqs-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .faqs-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.faqs-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 50px 0 0 0;
}
@media (max-width: 1024px) {
  .faqs-page .hero .hero-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10px 0 0 0;
  }
}
.faqs-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .faqs-page .hero .hero-content {
    order: 2;
  }
}
.faqs-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .faqs-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.faqs-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .faqs-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .faqs-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .faqs-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .faqs-page .hero .hero-title {
    font-size: 28px;
  }
}
.faqs-page .hero .hero-title-accent {
  color: #dbae6d;
}
.faqs-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .faqs-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .faqs-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.faqs-page .faq {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 9;
  margin-top: -50px;
}
@media (max-width: 480px) {
  .faqs-page .faq {
    border-radius: 0;
  }
}
.faqs-page .faq .faq-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .faqs-page .faq .faq-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .faqs-page .faq .faq-container {
    padding: 50px 16px;
  }
}
.faqs-page .faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 768px) {
  .faqs-page .faq .faq-grid {
    grid-template-columns: 1fr;
  }
}
.faqs-page .faq .faq-item {
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid rgba(0, 18, 60, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faqs-page .faq .faq-item.is-open {
  border-color: rgba(0, 18, 60, 0.12);
}
.faqs-page .faq .faq-item.is-open .faq-chevron {
  transform: rotate(-135deg) translateY(2px);
  border-color: #00123c;
}
.faqs-page .faq .faq-item.is-open .faq-answer {
  max-height: 400px;
}
.faqs-page .faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.faqs-page .faq .faq-num {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 18, 60, 0.35);
  flex-shrink: 0;
  min-width: 20px;
}
.faqs-page .faq .faq-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #00123c;
  line-height: 1.4;
  text-align: left;
}
.faqs-page .faq .faq-chevron {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(0, 18, 60, 0.4);
  border-bottom: 1.5px solid rgba(0, 18, 60, 0.4);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.faqs-page .faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faqs-page .faq .faq-answer-inner {
  padding: 0 22px 22px 58px;
}
.faqs-page .faq .faq-answer-inner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  border-left: 2px solid #dbae6d;
  padding-left: 16px;
}
@media (max-width: 480px) {
  .faqs-page .faq .faq-answer-inner {
    padding: 0 16px 18px 44px;
  }
}

.legal-page .hero {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  padding-bottom: 50px;
  display: flex;
}
.legal-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .legal-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .legal-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .legal-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.legal-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 50px 0 0 0;
}
@media (max-width: 1024px) {
  .legal-page .hero .hero-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10px 0 0 0;
  }
}
.legal-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .legal-page .hero .hero-content {
    order: 2;
  }
}
.legal-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .legal-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.legal-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .legal-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .legal-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .legal-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .legal-page .hero .hero-title {
    font-size: 28px;
  }
}
.legal-page .hero .hero-title-accent {
  color: #dbae6d;
}
.legal-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .legal-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .legal-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.legal-page .legal-content {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 2;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .legal-page .legal-content {
    border-radius: 0;
  }
}
.legal-page .legal-content .legal-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 40px 100px;
}
@media (max-width: 768px) {
  .legal-page .legal-content .legal-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .legal-page .legal-content .legal-container {
    padding: 50px 16px;
  }
}
.legal-page .legal-content .legal-intro {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 18, 60, 0.08);
}
.legal-page .legal-content .legal-intro p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #777777;
  margin-bottom: 16px;
}
.legal-page .legal-content .legal-intro p:last-child {
  margin-bottom: 0;
}
.legal-page .legal-content .legal-intro ul {
  margin: 12px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-page .legal-content .legal-intro ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #777777;
  list-style: disc;
}
.legal-page .legal-content .legal-intro strong {
  font-weight: 600;
  color: #00123c;
}
.legal-page .legal-content .legal-section {
  margin-bottom: 64px;
}
.legal-page .legal-content .legal-section:last-child {
  margin-bottom: 0;
}
.legal-page .legal-content .legal-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #00123c;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .legal-page .legal-content .legal-section-title {
    font-size: 18px;
  }
}
.legal-page .legal-content .legal-section-bar {
  display: block;
  width: 32px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
  margin-bottom: 24px;
}
.legal-page .legal-content .legal-section-body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #777777;
  margin-bottom: 16px;
}
.legal-page .legal-content .legal-section-body p:last-child {
  margin-bottom: 0;
}
.legal-page .legal-content .legal-section-body p em {
  font-style: italic;
  color: rgba(119, 119, 119, 0.85);
}
.legal-page .legal-content .legal-section-body p strong {
  font-weight: 600;
  color: #00123c;
}
.legal-page .legal-content .legal-section-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #00123c;
  margin: 28px 0 10px;
}
.legal-page .legal-content .legal-section-body ul {
  margin: 8px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-page .legal-content .legal-section-body ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #777777;
  list-style: disc;
}
.legal-page .legal-content .legal-section-body ul li strong {
  font-weight: 600;
  color: #00123c;
}
.legal-page .legal-content .legal-section-body address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.9;
  color: #777777;
  margin-top: 8px;
}
.legal-page .legal-content .legal-section-body address strong {
  font-weight: 600;
  color: #00123c;
}

.solution-page .hero {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  padding-bottom: 50px;
  display: flex;
}
.solution-page .hero .hero-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px 100px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-container {
    padding: 100px 32px 100px 32px;
  }
}
@media (max-width: 768px) {
  .solution-page .hero .hero-container {
    padding: 100px 24px 100px 24px;
  }
}
@media (max-width: 480px) {
  .solution-page .hero .hero-container {
    padding: 100px 16px 65px 16px;
  }
}
.solution-page .hero .hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 75px;
  align-items: center;
  padding: 50px 0 0 0;
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-main {
    grid-template-columns: 1fr;
    padding: 10px 0 0 0;
  }
}
.solution-page .hero .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-page .hero .hero-visual img {
  width: 100%;
  max-width: 90%;
  height: auto;
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-visual img {
    max-width: 500px;
  }
}
.solution-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-content {
    order: 2;
  }
}
.solution-page .hero .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-eyebrow {
    text-align: center;
  }
}
.solution-page .hero .hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .solution-page .hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .solution-page .hero .hero-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .solution-page .hero .hero-title {
    font-size: 28px;
  }
}
.solution-page .hero .hero-title-accent {
  color: #dbae6d;
}
.solution-page .hero .hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-desc {
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .solution-page .hero .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
}
.solution-page .hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .solution-page .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.solution-page .hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #dbae6d;
  color: #00123c;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border-radius: 100px;
  transition: background 0.25s ease;
}
.solution-page .hero .hero-cta:hover {
  background: #ffffff;
}
.solution-page .hero .hero-cta:hover .hero-cta-icon {
  background: #dbae6d;
}
.solution-page .hero .hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.solution-page .hero .hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.solution-page .hero .hero-explore::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.3s ease;
}
.solution-page .hero .hero-explore:hover::after {
  width: 100%;
}
.solution-page .about {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 4;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .solution-page .about {
    border-radius: 0;
  }
}
.solution-page .about .about-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .solution-page .about .about-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .solution-page .about .about-container {
    padding: 50px 16px;
  }
}
.solution-page .about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1024px) {
  .solution-page .about .about-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .solution-page .about .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.solution-page .about .about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .solution-page .about .about-content {
    order: 2;
  }
}
.solution-page .about .about-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #00123c;
}
@media (max-width: 1024px) {
  .solution-page .about .about-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .solution-page .about .about-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .solution-page .about .about-title {
    font-size: 26px;
  }
}
.solution-page .about .about-title-accent {
  color: #dbae6d;
}
.solution-page .about .about-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #777777;
  max-width: 480px;
}
@media (max-width: 768px) {
  .solution-page .about .about-desc {
    max-width: 100%;
  }
}
.solution-page .about .about-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  padding: 5px 5px 5px 28px;
  background: #00123c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 8px;
  transition: background 0.25s ease;
}
.solution-page .about .about-cta:hover {
  background: #000a20;
}
.solution-page .about .about-cta:hover .about-cta-icon {
  background: #dbae6d;
  color: #00123c;
}
.solution-page .about .about-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #00123c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.solution-page .about .about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-page .about .about-visual img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .solution-page .about .about-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.solution-page .about-2 {
  z-index: 8;
}
.solution-page .about-3 {
  z-index: 10;
  padding-bottom: 0;
}
.solution-page .values {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 7;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .solution-page .values {
    border-radius: 0;
  }
}
.solution-page .values .values-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .solution-page .values .values-container {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .solution-page .values .values-container {
    padding: 65px 16px;
  }
}
.solution-page .values .values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .solution-page .values .values-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .solution-page .values .values-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.solution-page .values .values-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-page .values .values-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.solution-page .values .values-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .solution-page .values .values-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .solution-page .values .values-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .solution-page .values .values-title {
    font-size: 26px;
  }
}
.solution-page .values .values-title-accent {
  color: #dbae6d;
}
.solution-page .values .values-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 10px;
}
.solution-page .values .values-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .solution-page .values .values-desc {
    padding-top: 0;
  }
}
.solution-page .values .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-page .values .values-grid.values-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.solution-page .values .values-grid.values-grid-2 {
  margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .solution-page .values .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .solution-page .values .values-grid {
    grid-template-columns: 1fr !important;
  }
}
.solution-page .values .values-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.solution-page .values .values-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.13);
}
@media (max-width: 768px) {
  .solution-page .values .values-card {
    padding: 28px;
  }
}
.solution-page .values .values-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.solution-page .values .values-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .solution-page .values .values-card-icon img {
    width: 24px;
    height: 24px;
  }
}
.solution-page .values .values-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}
.solution-page .values .values-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.solution-page .industries {
  background: linear-gradient(135deg, #00123c 0%, #000a20 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 9;
  margin-top: -50px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .solution-page .industries {
    border-radius: 0;
  }
}
.solution-page .industries .industries-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) {
  .solution-page .industries .industries-container {
    padding: 100px 24px;
  }
}
@media (max-width: 480px) {
  .solution-page .industries .industries-container {
    padding: 65px 16px;
  }
}
.solution-page .industries .industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-header {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .solution-page .industries .industries-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.solution-page .industries .industries-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-page .industries .industries-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dbae6d;
}
.solution-page .industries .industries-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .solution-page .industries .industries-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .solution-page .industries .industries-title {
    font-size: 26px;
  }
}
.solution-page .industries .industries-title-accent {
  color: #dbae6d;
}
.solution-page .industries .industries-title-bar {
  margin-top: 10px;
  display: block;
  width: 44px;
  height: 2px;
  background: #dbae6d;
  border-radius: 100px;
}
.solution-page .industries .industries-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .solution-page .industries .industries-desc {
    padding-top: 0;
  }
}
.solution-page .industries .industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-page .industries .industries-grid .industries-card:nth-child(1) {
  grid-column: span 2;
}
.solution-page .industries .industries-grid .industries-card:nth-child(3) {
  grid-row: span 2;
}
.solution-page .industries .industries-grid .industries-card:nth-child(5) {
  grid-column: span 2;
}
.solution-page .industries .industries-grid .industries-card:nth-child(6) {
  grid-column: span 2;
}
.solution-page .industries .industries-grid .industries-card:nth-child(7) {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-page .industries .industries-grid .industries-card:nth-child(1),
  .solution-page .industries .industries-grid .industries-card:nth-child(5),
  .solution-page .industries .industries-grid .industries-card:nth-child(6),
  .solution-page .industries .industries-grid .industries-card:nth-child(7) {
    grid-column: span 1;
  }
  .solution-page .industries .industries-grid .industries-card:nth-child(3) {
    grid-row: span 1;
  }
}
@media (max-width: 480px) {
  .solution-page .industries .industries-grid {
    grid-template-columns: 1fr;
  }
}
.solution-page .industries .industries-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.solution-page .industries .industries-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.13);
}
@media (max-width: 768px) {
  .solution-page .industries .industries-card {
    padding: 28px;
  }
}
.solution-page .industries .industries-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.solution-page .industries .industries-card-icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.solution-page .industries .industries-card-title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}
.solution-page .industries .industries-card-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #dbae6d;
  margin-bottom: 16px;
  border-radius: 100px;
}
.solution-page .industries .industries-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
.solution-page .industries .industries-card-with-bg {
  position: relative;
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-desc {
  max-width: 250px;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-desc {
    max-width: 100%;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-bg-1 {
  position: absolute;
  width: auto;
  height: 250px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-1 .industries-card-bg-1 {
    display: none;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-2 .industries-card-bg-2 {
  position: absolute;
  width: auto;
  height: 90%;
  top: 0;
  right: 0;
  z-index: -1;
  filter: grayscale(0.35);
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-2 .industries-card-bg-2 {
    display: none;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-3 .industries-card-bg-3 {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-3 .industries-card-bg-3 {
    display: none;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-4 .industries-card-bg-4 {
  position: absolute;
  width: 80%;
  height: auto;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-4 .industries-card-bg-4 {
    display: none;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-desc {
  max-width: 350px;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-desc {
    max-width: 100%;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-bg-5 {
  position: absolute;
  width: auto;
  height: 250px;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-5 .industries-card-bg-5 {
    display: none;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-desc {
  max-width: 300px;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-desc {
    max-width: 100%;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-bg-6 {
  position: absolute;
  width: auto;
  height: 250px;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-6 .industries-card-bg-6 {
    display: none;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-desc {
  max-width: 250px;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-desc {
    max-width: 100%;
  }
}
.solution-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-bg-7 {
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .solution-page .industries .industries-card-with-bg.industries-card-with-bg-7 .industries-card-bg-7 {
    display: none;
  }
}
.solution-page .testimonials {
  z-index: 10;
}/*# sourceMappingURL=styles.css.map */