/* Header Styles */
.home-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E3ECF3;
  padding: 20px 39px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 38px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: #586D85;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 45px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0A58A5;
}

.trial-btn {
  background: #0A58A5;
  color: #FFFFFF;
  padding: 10px 36px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  transition: all 0.3s ease;
}

.trial-btn:hover {
  background: #084B8F;
}

/* Hero Section */
.hero-section {
  background: url(/assets/bg-5df2aee743f801e50a4584b899eb6f4353319a1d58d7a2648af201739f372256.svg) no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.hero-title {
  color: #F6F7F8;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 7px;
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #A3FCFF -2.39%, #0476E6 135.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-description {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  max-width: 800px;
  margin: 0 auto 34px;
}

.hero-cta {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 10px 47px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  transition: all 0.3s ease;
  margin-bottom: 46px;
}

.hero-cta:hover {
  background: #FFFFFF;
  color: #0A58A5;
}

/* Demo Container */
.demo-container {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.08);
    padding: 31px;
  display: flex;
  gap: 21px;
  margin-top: 9px;
  width: 100%;
}

.demo-step {
  flex: 1;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.10) -0.74%, rgba(0, 0, 0, 0.07) 102.14%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 31px 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}

.step-text {
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.step-text-2 {
    color: rgba(255, 255, 255, 0.80);
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
  }

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-item span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}

/* Partners Section */
.partners-section {
  padding: 52px 20px;
  background: #FFFFFF;
  text-align: center;
}

.partners-title {
  color: #8494A7;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 30px;
}

.partners-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.partner-logo {
  flex: 1;
  max-width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Problems Section */
.problems-section {
  padding: 65px 0;
  background: #F6F7F8;
}

.problems-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.problems-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problems-title {
  color: #4C5A6F;
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
}

.problems-description {
  color: #586D85;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.problems-image {
  margin-top: 26px;
}

.problems-image img {
  width: 100%;
  height: auto;
}

.problems-right {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 30px;
  padding: 47px 38px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-content {
  flex: 1;
}

.problem-content h3 {
  color: #0A58A5;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.problem-content p {
  color: #384D64;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

/* Interface Section */
.interface-section {
  background: url(/assets/bg-2-19a280e94cd96d72219bbc57993549e4257a7b0ae7e94518e5d627261ccd682a.svg) no-repeat center center;
  background-size: cover;
  padding: 58px 0;
}

.interface-content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.interface-title {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}

.interface-description {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
  max-width: 800px;
  margin: 0 auto;
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 70px 0 51px 0;
  background: #F6F7F8;
}

.ecosystem-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
  }

.ecosystem-title {
  text-align: center;
  color: #22364D;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 35px;
}

.ecosystem-cards {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.ecosystem-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 25px;
  padding: 23px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ecosystem-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ecosystem-card .card-header h3 {
  color: #0A58A5;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.ecosystem-card .card-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ecosystem-card .card-points li {
  color: #384D64;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  padding-left: 14px;
  position: relative;
  text-align: left;
}

.ecosystem-card .card-points li::before {
  content: "•";
  color: #384D64;
  position: absolute;
  left: 0;
  font-size: 14px;
}

/* Technology Section */
.technology-section {
  padding: 52px 0;
  background: #FFFFFF;
}

.technology-content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.technology-title {
  color: #22364D;
  font-size: 36px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 25px;
}

.technology-description {
  color: #586D85;
  font-size: 14px;
  line-height: 24px;
  max-width: 800px;
  margin: 0 auto 43px;
}

.technology-cards {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.technology-card {
  flex: 1;
  padding: 29px 39px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.technology-card.blue {
    background: linear-gradient(151deg, #16212D 30.8%, #0A58A5 119.4%);
}

.technology-card.white {
  background: #FFFFFF;
  border: 1px solid #E3ECF3;
}

.technology-card.blue h3 {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.technology-card.blue p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 29px;
}

.technology-card.white h3 {
    color: #0A58A5;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  
.technology-card.white p {
    color: #384D64;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 29px;
  }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.technology-card.blue .feature-list span {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
  }

.technology-card.white .feature-list span {
  color: #384D64;
  font-size: 14px;
  font-weight: 500;
}

.technology-cta {
  background: linear-gradient(0deg, #F6F7F8 0%, #F6F7F8 100%), #FFF;    
  border: 1px solid #DFE5EC;
  border-radius: 25px;
  padding: 35px 353px;
  text-align: center;
}

.technology-cta h3 {
    background: linear-gradient(91deg, #0A58A5 -12.17%, #22364D 115.24%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.technology-cta p {
  color: #384D64;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #0A58A5;
  border: 1px solid #DFE5EC;
  color: #FFFFFF;
  padding: 9px 38px;
  border-radius: 15px;
  height: 42px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #084B8F;
}

/* Impact Section */
.impact-section {
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 25px;
  padding: 50px 46px;
  text-align: center;
}

.impact-title {
  color: #22364D;
  font-size: 32px;
  font-weight: 700;
}

.impact-description {
  color: #586D85;
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 37px;
}

.impact-cards {
  display: flex;
  gap: 37px;
}

.impact-card {
  flex: 1;
  padding: 28px 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.impact-card.red {
  background: rgba(252, 18, 27, 0.06);
  border: 1px solid #F73139;
}

.impact-card.green {
  background: rgba(89, 178, 36, 0.06);
  border: 1px solid #59B224;
}

.impact-card.red h3 {
  color: #F73139;
  font-size: 16px;
  font-weight: 700;
}

.impact-card.green h3 {
    color: #59B224;
    font-size: 16px;
    font-weight: 700;
  }

.impact-card p {
  color: #384D64;
  font-size: 14px;
  line-height: 29px;
}

.impact-image {
  margin-top: auto;
}

.impact-image img {
  margin-top: 20px;
}

/* Connected Section */
.connected-section {
  padding: 60px 0;
  background: #F6F7F8;
}

.connected-content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.connected-title {
  color: #22364D;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.connected-description {
  color: #384D64;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  max-width: 720px;
  margin: 0 auto 45px;
}

.connected-cards {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.connected-card {
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 30px;
  overflow: hidden;
}

.connected-card .card-header {
  padding: 20px;
  border-bottom: 1px solid #DFE5EC;
}

.connected-card .card-header h3 {
    background: linear-gradient(97deg, #0A58A5 -8.25%, #161921 134.93%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 700;
}

.features-grid {
  display: flex;
  gap: 69px;
  padding: 25px 44px;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-illustration {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
}

.feature-item h4 {
  color: #22364D;
  font-size: 14px;
  font-weight: 700;
}

.feature-item p {
  color: #384D64;
  font-size: 14px;
  line-height: 24px;
}

.steps-grid {
  display: flex;
  gap: 27px;
  padding: 31px;
}

.step-item {
  flex: 1;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  padding: 20px 15px;
  text-align: left;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-number {
  color: #0A58A5;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.step-item h4 {
  color: #16212D;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.step-item p {
  color: #384D64;
  font-size: 14px;
  line-height: 24px;
}

.start-button {
  display: inline-block;
  background: #0A58A5;
  color: #FFFFFF;
  padding: 11px 44px;
  height: 42px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 36px;
  transition: background-color 0.3s ease;
}

.start-button:hover {
  background: #084B8F;
}

/* Security Section */
.security-section {
  padding: 66px 0;
  background: #FFFFFF;
}

.security-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
}

.security-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.security-title {
  color: #22364D;
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 10px;
}

.security-description {
  color: #22364D;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 38px;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  color: #22364D;
  font-size: 14px;
  font-weight: 700;
}

.feature-content p {
  color: #22364D;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.security-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FAQ Section */
.faq-section {
  padding: 81px 0;
  background: #F6F7F8;
}

.faq-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
  color: #22364D;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  padding: 23px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #F4F7F9;
}

.faq-question h3 {
  color: #22364D;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-answer p {
  color: #586D85;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.cta-block {
  margin-top: 62px;
  border-radius: 30px;
  background: linear-gradient(150deg, #16212D 38.08%, #0A58A5 113.7%);
  padding: 67px 40px;
  text-align: center;
  color: #FFFFFF;
}

.cta-block h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-block p {
  font-size: 16px;
  font-weight: 500;
  line-height: 33px;
  margin-bottom: 32px;
}

.cta-block .cta-button {
  display: inline-block;
  background: #0A58A5;
  height: 44px;
  border: none;
  color: #FFF;
  padding: 11px 86px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-block .cta-button:hover {
  background: #F4F7F9;
  transform: translateY(-2px);
}

/* Footer */
.main-footer {
  padding: 10px 0 18px 0;
  text-align: center;
  border-top: 1px solid #DFE5EC;
  background: #F6F7F8;
}

.main-footer p {
  color: #586D85;
  font-size: 12px;
  margin: 0;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .home-header {
    padding: 20px;
  }

  .header-nav {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-description {
    font-size: 16px;
  }

  .demo-container {
    flex-direction: column;
    gap: 1rem;
  }

  .demo-step {
    padding: 1rem;
  }

  .partners-section {
    padding: 40px 20px;
  }

  .partners-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .partners-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .partner-logo {
    flex: 0 0 calc(50% - 15px);
    max-width: 150px;
    height: 50px;
  }

  .problems-section {
    padding: 60px 0;
  }

  .problems-content {
    flex-direction: column;
    gap: 40px;
  }

  .problems-title {
    font-size: 28px;
  }

  .problems-description {
    font-size: 16px;
  }

  .problems-right {
    padding: 30px;
  }

  .problem-item {
    gap: 15px;
  }

  .problem-icon {
    width: 40px;
    height: 40px;
  }

  .problem-icon img {
    width: 100%;
  }

  .problem-content h3 {
    font-size: 16px;
  }

  .problem-content p {
    font-size: 13px;
  }

  .ecosystem-section {
    padding: 60px 20px;
  }

  .ecosystem-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .ecosystem-cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .ecosystem-card {
    margin-bottom: 20px;
  }

  .card-header h3 {
    font-size: 20px;
  }

  .card-points li {
    font-size: 14px;
  }

  .impact-section {
    padding: 40px 20px;
  }

  .impact-title {
    font-size: 28px;
  }

  .impact-description {
    font-size: 16px;
  }

  .impact-cards {
    flex-direction: column;
    gap: 20px;
  }

  .impact-card {
    padding: 30px;
  }

  .impact-card h3 {
    font-size: 20px;
  }

  .impact-card p {
    font-size: 14px;
  }

  .technology-section {
    padding: 60px 20px;
  }

  .technology-title {
    font-size: 28px;
  }

  .technology-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .technology-cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .technology-card {
    padding: 30px;
  }

  .technology-card h3 {
    font-size: 20px;
  }

  .technology-card p {
    font-size: 14px;
  }

  .feature-list li {
    gap: 12px;
  }

  .feature-list img {
    width: 20px;
    height: 20px;
  }

  .feature-list span {
    font-size: 14px;
  }

  .technology-cta {
    padding: 40px 20px;
  }

  .technology-cta h3 {
    font-size: 24px;
  }

  .technology-cta p {
    font-size: 14px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 14px;
  }

  .connected-section {
    padding: 60px 20px;
  }

  .connected-title {
    font-size: 28px;
  }

  .connected-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .card-header {
    padding: 20px;
  }

  .card-header h3 {
    font-size: 20px;
  }

  .features-grid {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-illustration {
    width: 48px;
    height: 48px;
  }

  .feature-item h4 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13px;
  }

  .steps-grid {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .step-item {
    padding: 20px;
  }

  .step-header {
    gap: 8px;
    margin-bottom: 12px;
  }

  .step-number {
    font-size: 14px;
  }

  .step-item h4 {
    font-size: 16px;
  }

  .step-item p {
    font-size: 13px;
  }

  .start-button {
    padding: 14px 28px;
    font-size: 14px;
    margin-top: 30px;
  }

  .security-section {
    padding: 60px 20px;
  }

  .security-content {
    flex-direction: column;
    gap: 40px;
  }

  .security-title {
    font-size: 28px;
  }

  .security-description {
    font-size: 16px;
  }

  .security-features {
    gap: 20px;
  }

  .security-feature {
    gap: 16px;
  }

  .feature-content h3 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;
  }

  .security-illustration {
    max-width: 100%;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 15px 20px;
    text-align: left;
  }

  .faq-question h3 {
    font-size: 15px;
    text-align: left;
  }

  .faq-icon {
    font-size: 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .cta-block {
    margin-top: 60px;
    padding: 40px 20px;
  }

  .cta-block h2 {
    font-size: 24px;
  }

  .cta-block p {
    font-size: 16px;
  }

  .cta-block .cta-button {
    padding: 14px 28px;
    font-size: 14px;
  }

  .main-footer {
    padding: 20px;
  }

  .main-footer p {
    font-size: 13px;
  }

  .pricing-plan-card.featured {
    /* Removing the order: -1 property to maintain the original order */
  }

  .faq-answer {
    display: none;
    padding: 0 20px 20px;
  }

  .faq-item.active .faq-answer {
    display: block;
  }
}

/* Animation Styles */
.hero-title.animate,
.hero-subtitle.animate,
.hero-description.animate,
.hero-cta.animate,
.demo-container.animate,
.partners-title.animate,
.partners-grid.animate,
.problems-title.animate,
.problems-description.animate,
.problems-image.animate,
.problem-item.animate,
.ecosystem-title.animate,
.ecosystem-card.animate,
.interface-title.animate,
.interface-description.animate,
.technology-title.animate,
.technology-description.animate,
.technology-card.animate,
.connected-title.animate,
.connected-description.animate,
.connected-card.animate,
.security-title.animate,
.security-description.animate,
.security-feature.animate,
.faq-title.animate,
.faq-item.animate,
.cta-block.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Animation delays for specific elements */
.hero-subtitle.animate {
  transition-delay: 0.2s;
}

.hero-description.animate {
  transition-delay: 0.4s;
}

.hero-cta.animate {
  transition-delay: 0.6s;
}

.demo-container.animate {
  transition-delay: 0.8s;
}

.problem-item:nth-child(1).animate {
  transition-delay: 0.2s;
}

.problem-item:nth-child(2).animate {
  transition-delay: 0.4s;
}

.problem-item:nth-child(3).animate {
  transition-delay: 0.6s;
}

.problem-item:nth-child(4).animate {
  transition-delay: 0.8s;
}

.ecosystem-card:nth-child(1).animate {
  transition-delay: 0.2s;
}

.ecosystem-card:nth-child(2).animate {
  transition-delay: 0.4s;
}

.ecosystem-card:nth-child(3).animate {
  transition-delay: 0.6s;
}

.technology-card:nth-child(1).animate {
  transition-delay: 0.2s;
}

.technology-card:nth-child(2).animate {
  transition-delay: 0.4s;
}

.faq-item:nth-child(1).animate {
  transition-delay: 0.2s;
}

.faq-item:nth-child(2).animate {
  transition-delay: 0.4s;
}

.faq-item:nth-child(3).animate {
  transition-delay: 0.6s;
}

.faq-item:nth-child(4).animate {
  transition-delay: 0.8s;
}

.faq-item:nth-child(5).animate {
  transition-delay: 1s;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #E3ECF3;
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-menu {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: #586D85;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #E3ECF3;
}

.mobile-nav-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid #E3ECF3;
}

.mobile-trial-btn {
  display: block;
  background: #0A58A5;
  color: #FFFFFF;
  padding: 15px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .trial-btn {
    display: none;
  }

  .hero-section {
    padding: 100px 20px 40px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .demo-container {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .demo-step {
    padding: 20px;
  }

  .partners-section {
    padding: 40px 20px;
  }

  .partners-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .partner-logo {
    flex: 0 0 calc(50% - 15px);
  }

  .problems-content {
    flex-direction: column;
    padding: 0 20px;
  }

  .problems-title {
    font-size: 28px;
    line-height: 40px;
  }

  .problems-right {
    margin-top: 30px;
  }

  .ecosystem-cards {
    flex-direction: column;
  }

  .ecosystem-card {
    margin-bottom: 20px;
  }

  .impact-image img {
    width: 100%;
  }

  .technology-cards {
    flex-direction: column;
  }

  .technology-card {
    margin-bottom: 20px;
  }

  .features-grid {
    flex-direction: column;
    gap: 30px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 20px;
  }

  .security-content {
    flex-direction: column;
  }

  .security-right {
    margin-top: 30px;
  }

  .cta-block {
    margin: 40px 0;
    padding: 40px 0;
  }

  .cta-block h2 {
    font-size: 28px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-section .step-icon img[alt="Processing"] {
  animation: spin 2s linear infinite;
}

/* Pricing Page Styles */
.pricing-hero-section {
  background: url(/assets/bg-pricing-4deea5697402e9e5eb1a238a8a01c9afb9ddf801cee4fef83fab1026aedb6688.svg) no-repeat center center;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  text-align: center;
}

.pricing-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-hero-icon {
  margin-bottom: 30px;
}

.pricing-hero-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #A3FCFF -2.39%, #0476E6 135.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-hero-description {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 12px;
}

.pricing-plans-section {
  padding: 80px 0;
  background: #F6F7F8;
}

.pricing-plans-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.pricing-plan-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 25px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-plan-card:hover {
  transform: translateY(-10px);
}

.pricing-plan-card.featured {
  border: 2px solid #0A58A5;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0A58A5;
  color: #FFFFFF;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plan-title {
  color: #22364D;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-description {
  color: #586D85;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 15px;
}

.plan-price {
  margin-bottom: 30px;
}

.price-amount {
  color: #0A58A5;
  font-size: 36px;
  font-weight: 700;
}

.price-period {
  color: #586D85;
  font-size: 16px;
}

.plan-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.plan-features li {
  color: #384D64;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features .feature-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.plan-features li span {
  line-height: 1.4;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 12px 30px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 30px;
}

.plan-button.outline {
  border: 2px solid #DFE5EC;
  color: #0A58A5;
}

.plan-button.outline:hover {
  background: #F6F7F8;
}

.plan-button.primary {
  background: #0A58A5;
  color: #FFFFFF;
  border: none;
}

.plan-button.primary:hover {
  background: #084B8F;
}

.pricing-comparison-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.pricing-comparison-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.comparison-title {
  color: #22364D;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 36px;
}

.comparison-description {
  color: #384D64;
  font-size: 14px;
  margin-bottom: 52px;
}

.comparison-table {
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #F6F7F8;
}

.header-cell {
  padding: 26px 42px 24px;
  color: #0A58A5;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #DFE5EC;
  text-align: left;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #DFE5EC;
}

.table-row:last-child {
  border-bottom: none;
}

.row-cell {
  padding: 20px 42px;
  color: #384D64;
  font-size: 14px;
  text-align: left;
}

.row-cell:first-child {
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .pricing-hero-section {
    min-height: 300px;
    padding: 100px 20px 40px;
  }

  .pricing-hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .pricing-hero-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .pricing-plans-section {
    padding: 40px 20px;
  }

  .pricing-plans-content {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-plan-card {
    padding: 25px 20px;
  }

  .pricing-plan-card.featured {
    /* Removing the order: -1 property to maintain the original order */
  }

  .featured-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .plan-title {
    font-size: 24px;
  }

  .plan-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .price-amount {
    font-size: 32px;
  }

  .plan-features li {
    font-size: 13px;
    padding: 8px 0;
  }

  .plan-features .feature-icon {
    width: 20px;
    height: 20px;
  }

  .plan-button {
    padding: 10px 20px;
    font-size: 13px;
  }

  .pricing-comparison-section {
    padding: 40px 20px;
  }

  .comparison-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .comparison-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .comparison-table {
    border-radius: 15px;
    overflow-x: auto;
  }

  .table-header {
    min-width: 600px;
  }

  .table-row {
    min-width: 600px;
  }

  .header-cell {
    padding: 15px 20px;
    font-size: 14px;
  }

  .row-cell {
    padding: 12px 20px;
    font-size: 13px;
  }

  .faq-section {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Developer Page Styles */
.developer-hero-section {
  background: url(/assets/bg-pricing-4deea5697402e9e5eb1a238a8a01c9afb9ddf801cee4fef83fab1026aedb6688.svg) no-repeat center center;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  text-align: center;
}

.developer-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.developer-hero-title {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 29px;
}

.developer-hero-description {
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 42px;
}

.developer-hero-buttons {
  display: flex;
  gap: 26px;
  justify-content: center;
}

.developer-button {
  height: 42px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-button.primary {
  background: #0A58A5;
  color: #FFFFFF;
  padding: 10px 60px;
  border: none;
}

.developer-button.primary:hover {
  background: #084B8F;
}

.developer-button.secondary {
  background: rgba(255, 255, 255, 0.10);  
  color: #FFFFFF;
  padding: 10px 27px;
  border: none;
}

.developer-button.secondary:hover {
  background: #084B8F;
}

.developer-button.outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.developer-button.outline:hover {
  background: #FFFFFF;
  color: #0A58A5;
}

/* Why Choose Section */
.why-choose-section {
  padding-top: 56px;
}

.why-choose-content {
  max-width: 1300px;
  margin: 0 auto;
}

.why-choose-content .section-title, .api-modules-content .section-title, .pricing-content .section-title {
  background: linear-gradient(90deg, #16212D -37.37%, #0A58A5 103.42%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 46px;
}

.pricing-content .section-title {
  margin-bottom: 22px;
}

.why-choose-cards {
  display: flex;
  gap: 30px;
}

.why-choose-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  padding: 25px 28px;
}

.card-icon {
  margin-bottom: 22px;
}

.card-title {
  color: #22364D;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-description {
  color: #586D85;
  font-size: 12px;
  line-height: 22px;
}

/* API Modules Section */
.api-modules-section {
  padding-top: 56px;
}

.api-modules-content {
  max-width: 1300px;
  margin: 0 auto;
}

.api-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.api-module-card {
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  padding: 13px 15px;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
}

.module-title {
  color: #22364D;
  font-size: 16px;
  font-weight: 700;
}

.module-description {
  color: #586D85;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 5px;
}

.module-link {
  display: block;
  color: #0A58A5;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.module-link:hover {
  text-decoration: underline;
}

/* Pricing Section */
.pricing-section {
  padding-bottom: 56px;
}

.pricing-content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.pricing-description {
  color: #586D85;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 37px;
}

.pricing-button {
  display: inline-block;
  background: #0A58A5;
  color: #FFFFFF;
  padding: 10px 70px;
  height: 42px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 47px;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: #084B8F;
}

.pricing-cards {
  display: flex;
  gap: 30px;
}

.pricing-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  padding: 22px 37px;
  text-align: left;
}

.pricing-card-title {
  color: #22364D;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 37px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li span {
  color: #586D85;
  font-size: 14px;
}

/* Mobile Styles for Developer Page */
@media screen and (max-width: 768px) {
  .developer-hero-section {
    min-height: 350px;
    padding: 100px 20px 40px;
  }

  .developer-hero-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .developer-hero-description {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .developer-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .developer-button {
    width: 100%;
    text-align: center;
  }

  .developer-button.primary {
    padding: 10px 20px;
  }

  .developer-button.secondary {
    padding: 10px 20px;
  }

  .why-choose-section {
    padding: 30px 20px;
  }

  .why-choose-content .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .why-choose-cards {
    flex-direction: column;
    gap: 20px;
  }

  .why-choose-card {
    padding: 20px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .card-description {
    font-size: 12px;
    line-height: 18px;
  }

  .api-modules-section {
    padding: 20px 20px;
  }

  .api-modules-content .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .api-modules-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .api-module-card {
    padding: 20px;
  }

  .api-modules-grid {
    margin-bottom: 0;
  }

  .module-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .module-icon {
    width: 24px;
    height: 24px;
  }

  .module-title {
    font-size: 16px;
  }

  .module-description {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
  }

  .module-link {
    font-size: 12px;
  }

  .pricing-section {
    padding: 20px 20px;
  }

  .pricing-content .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .pricing-description {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 25px;
  }

  .pricing-button {
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 30px;
  }

  .pricing-cards {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card {
    padding: 20px;
  }

  .pricing-card-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .pricing-features li {
    gap: 10px;
    margin-bottom: 12px;
  }

  .pricing-features li span {
    font-size: 12px;
    line-height: 18px;
  }

  .feature-icon {
    width: 16px;
    height: 16px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .developer-hero-title {
    font-size: 22px;
  }

  .developer-hero-description {
    font-size: 11px;
  }

  .why-choose-content .section-title,
  .api-modules-content .section-title,
  .pricing-content .section-title {
    font-size: 22px;
  }

  .card-title,
  .module-title,
  .pricing-card-title {
    font-size: 16px;
  }

  .card-description,
  .module-description,
  .pricing-features li span {
    font-size: 11px;
  }
}

/* Partnership Page Styles */
.partnership-hero-section {
  background-image: url(/assets/bg-pricing-4deea5697402e9e5eb1a238a8a01c9afb9ddf801cee4fef83fab1026aedb6688.svg);
  background-size: cover;
  background-position: center;
  padding: 120px 0 60px;
  min-height: 400px;
  text-align: center;
}

.partnership-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-icon {
  margin-bottom: 40px;
}

.partnership-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 20px;
}

.partnership-hero-subtitle {
  background: linear-gradient(90deg, #A3FCFF -2.39%, #0476E6 135.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.partnership-hero-description {
  font-size: 14px;
  line-height: 26px;
  color: #FFF;
  margin-bottom: 31px;
}

.partnership-hero-cta.outline {
  display: inline-block;
  padding: 10px 47px;
  height: 42px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.partnership-hero-cta.outline:hover {
  background: white;
  color: #1a1a1a;
}

.why-partner-section {
  padding: 58px 0;
}

.why-partner-content {
  max-width: 1300px;
  margin: 0 auto;
}

.why-partner-title {
  color: #22364D;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 29px;
}

.why-partner-description {
  color: #384D64;
  text-align: center;
  font-size: 14px;
  line-height: 28px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.why-partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-partner-card {
  background: white;
  padding: 25px 40px;
  border-radius: 20px;
  border: 1px solid #DFE5EC;
}

.why-partner-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #22364D;
}

.why-partner-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #384D64;
}

.integration-process-section {
  padding: 58px 0;
  background: #FFF;
}

.integration-process-content {
  max-width: 1300px;
  margin: 0 auto;
}

.integration-process-title {
  color: #22364D;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 23px;
}

.integration-process-description {
  color: #384D64;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  max-width: 800px;
  margin: 0 auto 66px;
}

.integration-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.integration-illustration {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.process-card {
  background: #F6F7F8;
  padding: 20px 29px;
  border-radius: 20px;
}

.process-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0A58A5;
}

.process-card p {
  font-size: 14px;
  line-height: 26px;
  color: #22364D;
}

.ecosystem-integrations-section {
  padding: 58px 20px;
}

.ecosystem-integrations-content {
  max-width: 1300px;
  margin: 0 auto;
}

.ecosystem-integrations-title {
  color: #22364D;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 26px;
}

.ecosystem-integrations-description {
  color: #586D85;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.ecosystem-integrations-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ecosystem-integration-card {
  background: white;
  padding: 25px 27px;
  border-radius: 12px;
  border: 1px solid #DFE5EC;
  text-align: center;
}

.ecosystem-integration-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0A58A5;
}

.ecosystem-integration-card p {
  font-size: 14px;
  line-height: 22px;
  color: #384D64;
}

.contact-form-section {
  padding: 58px 20px;
  background: white;
}

.contact-form-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-title {
  color: #22364D;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 35px;
}

.contact-form-description {
  color: #586D85;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 49px;
}

.contact-form-container {
  border: 1px solid #DFE5EC;
  border-radius: 25px;
  padding: 38px 45px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: #384D64;
  line-height: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #DFE5EC;
  border-radius: 15px;
  font-size: 14px;
  background: #F6F7F8;
  height: 46px;
}

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

.submit-button {
  background: #0A58A5;
  color: white;
  padding: 15px;
  height: 46px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 25px;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background: #0052a3;
}

@media screen and (max-width: 768px) {
  .partnership-hero-section {
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .partnership-hero-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .partnership-hero-subtitle {
    font-size: 24px;
    line-height: 1.3;
  }

  .partnership-hero-description {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .partnership-hero-cta.outline {
    width: 100%;
    max-width: 280px;
  }

  .why-partner-section {
    padding: 40px 20px;
  }

  .why-partner-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .why-partner-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .why-partner-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-partner-card {
    padding: 20px;
  }

  .integration-process-section {
    padding: 40px 20px;
  }

  .integration-process-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .integration-process-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .integration-process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .integration-illustration {
    max-width: 280px;
  }

  .process-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-card {
    padding: 20px;
  }

  .ecosystem-integrations-section {
    padding: 40px 20px;
  }

  .ecosystem-integrations-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .ecosystem-integrations-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .ecosystem-integrations-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ecosystem-integration-card {
    padding: 20px;
  }

  .contact-form-section {
    padding: 40px 20px;
  }

  .contact-form-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .contact-form-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .contact-form-container {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

@media screen and (max-width: 480px) {
  .partnership-hero-title {
    font-size: 28px;
  }

  .partnership-hero-subtitle {
    font-size: 20px;
  }

  .partnership-hero-description {
    font-size: 13px;
  }

  .why-partner-title,
  .integration-process-title,
  .ecosystem-integrations-title,
  .contact-form-title {
    font-size: 24px;
  }

  .why-partner-description,
  .integration-process-description,
  .ecosystem-integrations-description,
  .contact-form-description {
    font-size: 13px;
  }

  .why-partner-card h3,
  .process-card h3,
  .ecosystem-integration-card h3 {
    font-size: 15px;
  }

  .why-partner-card p,
  .process-card p,
  .ecosystem-integration-card p {
    font-size: 13px;
  }

  .form-group label {
    font-size: 13px;
  }

  .submit-button {
    font-size: 15px;
  }
}
