* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background-color: #1A1A1A;
    color: #fff;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    width: 100%;
    margin: 20px;
}

.nav-left {
    display: flex;
    /* align-items: center; */
    /* gap: 8px; */
    /* margin-right: 20%; */
}
.logo {
    height: 26px;
    width: auto;
    margin-left: 200px;
  }

.nav-center {
    display: flex;
    gap: 30px;
    margin-left: 2%;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-right: 15%;
}

button {
    background: #f9fafb;
    color: #020617;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

button:hover {
    background: #e5e7eb;
}

.nav-right a {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 500;
}

.nav-right a:hover {
    color: #CCCCCC;
}
.hero{
    height: 30vh;
    padding: 120px 40px;
    margin-left: 200px;
}
.hero-content{
    max-width: 700px;
}
.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 330;
    margin-bottom: 30px;
  }
  .hero-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 14px 22px;
    border-radius: 909px;
    text-decoration: none;
    font-weight: 400;
  }
  .hero-btn:hover{
    background: #e5e7eb;
  }
  .mid-img{
    display: flex;
    justify-content: center;
    width: auto;
  }
img{
    border-radius: 5px;
}
.trusted-by-text{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 20px;
}
.trusted-by-logo{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    padding: 0 40px;
    margin-top: 20px;
}
.trusted-by-logo > div {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trusted-by-logo img {
    height: 24px;
    width: auto;
    opacity: 0.75;
  }
  .img1{
    display: flex;
    justify-content: center;
  }
#image1{
    margin-top: 90px;
    border-radius: 5px;
}
.img2{
    display: flex;
    justify-content: center;
  }
#image2{
    margin-top: 90px;
    border-radius: 5px;
}
.img3{
    display: flex;
    justify-content: center;
  }
#image3{
    margin-top: 90px;
    border-radius: 5px;
}
/* Testimonials Section */
.testimonials-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 40px;
}

.testimonials-heading {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 64px;
  color: #fff;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #282828;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #EEEEEE;
  margin-bottom: 24px;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.testimonial-author-details {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Frontier Section */
.frontier-section {
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 40px;
}

.frontier-heading {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 48px;
  color: #fff;
  text-align: left;
}

.frontier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.frontier-card {
  background: #282828;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.frontier-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

.frontier-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #EEEEEE;
  margin-bottom: 20px;
}

.frontier-link {
  color: #FF6B35;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 24px;
}

.frontier-dropdown {
  background: #1A1A1A;
  border-radius: 12px;
  padding: 12px;
  margin-top: auto;
}

.dropdown-item {
  padding: 10px 12px;
  color: #EEEEEE;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-selected {
  background: rgba(255, 107, 53, 0.1);
}

.dropdown-suggested {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.dropdown-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.dropdown-check {
  color: #FF6B35;
  font-weight: bold;
}

.frontier-search {
  background: #1A1A1A;
  border-radius: 12px;
  padding: 16px;
  margin-top: auto;
}

.search-input {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 12px;
}

.search-history {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.history-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
}

.frontier-image {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
}

.frontier-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Changelog Section */
.changelog-section {
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 40px;
}

.changelog-heading {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 32px;
  color: #fff;
  text-align: left;
}

.changelog-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.changelog-card {
  background: #282828;
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  min-width: 0;
}

.changelog-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: #EEEEEE;
  margin-bottom: 8px;
}

.changelog-date {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}

.changelog-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.changelog-link {
  color: #FF6B35;
  text-decoration: none;
  font-size: 15px;
}

/* Mission Section */
.mission-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 40px;
  text-align: left;
}

.mission-text {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
}

.mission-button {
  display: inline-block;
  background: #282828;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 28px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

/* Final CTA Section */
.final-cta-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 40px;
  text-align: center;
}

.final-cta-heading {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 32px;
}

.final-cta-button {
  display: inline-block;
  background: #282828;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 28px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

/* Footer */
.site-footer {
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 0 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  padding: 48px 0;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-icon {
  font-size: 18px;
  cursor: pointer;
}

.footer-language {
  background: #282828;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
}
        