*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; 
}

body {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #E9F3F7;
  min-height: 100vh;
  overflow-x: hidden; 
  background: #1A2B81; 
}

:root {
  --color-bg-start: #1A2B81;
  --color-bg-end: #26CDCD;
  --color-text: #E9F3F7;
  --color-card-bg: #E9F3F7;
  --color-card-text: #1D2C6E;
  --color-footer-bg: #1F112D;
  --color-faq-bg: #E9F3F7;
  --shadow-title: 0px 6px 8px rgba(0, 0, 0, 0.4);
  --border-radius-card: 16px;
}

.section-title {
  font-family: 'Onest', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1.2;
  text-align: left;
  letter-spacing: 0;
  color: var(--color-text);
  text-shadow: var(--shadow-title);
  margin-bottom: 48px;
}

.hero-title {
  font-family: 'Onest', sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-text);
  text-shadow: var(--shadow-title);
}

.hero-subtitle {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-top: 8px;
  margin-bottom: 24px;
  font-size: 28px;
}
.section-inner {
  max-width: 1440px; 
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 160px; 
  padding-right: 80px;  
  width: 100%;       
}

@media (max-width: 1200px) {
  .section-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  .section-inner {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;  
    padding-right: 20px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 160px;
  background: #E9F3F7;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 243, 247, 0.1);
}

@media (max-width: 1200px) {
  .navbar { padding: 16px 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 8px;
  min-width: 40px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1F112D;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1F112D;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #E9F3F7;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(233,243,247,0.1);
  }
  .nav-links.open { display: flex; }
}

.hero {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(160deg, #1A2B81 0%, #26CDCD 100%); 
}

.hero-container {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 160px;
  padding-right: 80px;
  gap: 60px;
  width: 100%;
}

@media (max-width: 1200px) {
  .hero-container { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-container {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    align-items: center;
    gap: 40px;
  }
  .hero-title{
    font-size: 64px;
  }
  .hero-image {
    order: 1;
  }
  .hero-body {
    order: 2;
  }
}

.hero-content {
  flex: 1;
  max-width: 560px;
  width: 100%; 
}

.hero-body {
  color: var(--color-text);
  margin-top: 30px;
  margin-bottom: 36px;
  opacity: 0.9;
}

.google-play-btn {
  display: inline-block;
  max-width: 100%;
}

.google-play-btn img {
  height: 56px;
  width: auto;
  border-radius: 8px;
  display: block;
  margin-top: 40px;
  max-width: 100%; 
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 20px;
  display: block;
}
.features {
  background: linear-gradient(160deg, #1A2B81 0%, #26CDCD 100%);
}

.features-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .features-layout { 
    flex-direction: column; 
    text-align: left;
    align-items: left;
    gap: 40px;
  }
}

.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.feature-heading {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 24px; 
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 6px;
}

.feature-item p {
  color: var(--color-text);
  font-size: 16px; 
  opacity: 0.85;
}

.features-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.features-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  display: block;
}
.how-it-works {
  background: linear-gradient(160deg, #1A2B81 0%, #26CDCD 100%);
}

.hiw-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.hiw-card {
  flex: 1;
  min-width: 250px;
  max-width: 352px;
  background: var(--color-card-bg);
  color: var(--color-card-text);
  border-radius: var(--border-radius-card);
  padding: 24px 16px;
  gap: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s, box-shadow 0.25s;
}

.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 32px rgba(0,0,0,0.28);
}

.hiw-card-title {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-card-text);
  text-align: center;
  margin-bottom: 8px;
}

.hiw-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-card-text);
  opacity: 0.85;
  text-align: center;
}

@media (max-width: 900px) {
  .hiw-cards { flex-direction: column; align-items: center; }
  .section-title{ font-size: 40px;}
  .hiw-card { max-width: 100%; min-width: unset; width: 100%; }
  .section-title{
    text-align: center;
  }
}
   .testimonials {
    background: linear-gradient(160deg, #1A2B81 0%, #26CDCD 100%);
  }
  
  .testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .testimonial-card {
    flex: 1;
    min-width: 250px;
    max-width: 352px;
    height: auto;
    min-height: 228px;
    background: transparent;
    border: 1px solid var(--color-text);
    border-radius: var(--border-radius-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.25s;
  }
  
  .testimonial-card:hover {
    background: rgba(233,243,247,0.08);
  }
  
  .testimonial-text {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  .testimonial-author {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text);
    text-align: right;
    display: block;
  }
  @media (max-width: 900px) {
    .testimonials-grid { 
      flex-wrap: nowrap; 
      overflow-x: auto; 
      scroll-snap-type: x mandatory;
      padding-bottom: 15px;
      -webkit-overflow-scrolling: touch; 
      scrollbar-width: none; 
    }
    .testimonials-grid::-webkit-scrollbar {
      display: none;
    }
  
    .testimonial-card { 
      max-width: 85%; 
      min-width: 280px; 
      flex-shrink: 0; 
      scroll-snap-align: start; 
    }
  }

.faq {
  background: linear-gradient(160deg, #1A2B81 0%, #26CDCD 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.faq-item {
  background: var(--color-faq-bg);
  border-radius: var(--border-radius-card);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.faq-item:hover {
  box-shadow: 0px 4px 16px rgba(0,0,0,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-card-text);
  text-align: left;
  gap: 12px;
}

.faq-icon {
  flex-shrink: 0;
  width: 14px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-top: -6px;
}

.faq-icon::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-card-text);
  border-right: 2px solid var(--color-card-text);
  top: 0;
  left: 2px; 
  transform: rotate(45deg);
}

.faq-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-card-text);
  border-right: 2px solid var(--color-card-text);
  top: 6px; 
  left: 2px;
  transform: rotate(45deg);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  margin-top: 6px; 
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-card-text);
  opacity: 0.85;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}
.footer {
  background: var(--color-footer-bg);
  border-top: 1px solid rgba(233,243,247,0.15);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 160px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.footer-links a {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-copy {
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.5;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer-inner { padding: 40px 40px 16px; }
}

@media (max-width: 768px) {
  .footer-inner { padding: 32px 20px 16px; gap: 24px; }
  .footer-links { gap: 20px; }
}