* {
  font-family: "Nunito", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0e0e0e;
  color: #e2e2e2;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.download-buttons a {
  height: 50px;
}

.download-buttons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 7rem;
  padding-left: 5rem;
  z-index: 4;
  width: 100%;
  background: #222;

  @media only screen and (max-width: 750px) {
    padding: 0.5rem 2rem;
    padding-left: 0;
  }
}

.nav-links {
  gap: 1.5rem;
  border-radius: 0 0 0 12px;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: #76abb3;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
  }
  .download-buttons {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    background: #222;
    position: absolute;
    top: -100%;
    right: 0;
    width: 50%;
    height: auto;
    text-align: center;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
  }

  .nav-links.active {
    display: flex;
    top: calc(0% + 65px);
    opacity: 1;
    visibility: visible;
  }
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo a {
  width: 170px;
  height: 50px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  display: flex;
  align-items: center;
}
.content ul {
  flex-direction: column;
  align-items: flex-start;
}

li {
  list-style: none;
  font-weight: 300;
}

a {
  color: #e2e2e2;
  font-weight: 300;
  text-decoration: none;
}

a:hover {
  color: #00dcfe;
}

.contact-btn {
  border: 1px solid #00dcfe;
  border-radius: 44px;
  padding: 12px 30px;
  background: transparent;
  color: #e2e2e2;
  display: flex;
}

.contact-btn:hover {
  background: #00dcfe;
  color: #0e0e0e;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 7rem;

  @media only screen and (max-width: 750px) {
    padding: 0 2rem;
  }
}
.header.main-header {
  max-width: 50rem;
  text-align: center;
  height: calc(80vh - 100px);
  margin-top: 6rem;
  padding: 0;
  align-content: center;

  @media only screen and (max-width: 750px) {
    height: calc(90vh - 100px);
    max-width: 35rem;
    padding-bottom: 3rem;
  }
}

.header.main-header > p {
  color: #e2e2e2;
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 40px;
}

.header.main-header > a {
  font-size: 18px;
  border: 1px solid #00dcfe;
  background: transparent;
  color: #00dcfe;
  padding: 16px 60px;
  border-radius: 44px;
}

.header.main-header > a:hover {
  background-color: #00dcfe;
  color: #0e0e0e;
}

.header {
  max-width: 50rem;
  text-align: center;
  padding: 5rem 2rem;
  margin-top: 6rem;
  align-content: center;

  @media only screen and (max-width: 750px) {
    max-width: 35rem;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

.header h1 {
  font-size: 48px;
  font-weight: 800;
  color: #e2e2e2;
  margin-bottom: 1rem;

  @media only screen and (max-width: 750px) {
    font-size: 35px;
  }
}

.header > .header-text {
  color: #e2e2e2;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;

  @media only screen and (max-width: 750px) {
    font-size: 40px;
  }
}

.header p {
  font-size: 18px;
  font-weight: 300;
  color: #ccc;
  /* max-width: 600px; */
  margin: 0 auto;
}

.content {
  color: #e2e2e2;
}

.content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 2rem;
  @media only screen and (max-width: 750px) {
    font-size: 27px;
  }
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1rem;
  @media only screen and (max-width: 750px) {
    font-size: 18px;
  }
}

.content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #e2e2e2;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.content p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #e2e2e2;
}

.content ul,
.content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  list-style-type: disc;
}

.content li {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #e2e2e2;
  display: list-item;
}

.content strong {
  font-weight: 600;
  /* color: #00dcfe; */
}

.content a {
  color: #00dcfe;
  text-decoration: underline;
}

.content a:hover {
  color: #76abb3;
}

.effective-date {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #00dcfe;
}

.effective-date p {
  margin: 0;
  font-weight: 400;
}

footer {
  text-align: center;
  color: #666;
  font-weight: 300;
  padding: 3rem 0;
  font-size: 14px;
  background: #0a0a0a;
  margin-top: 3rem;
}

.copyright {
  color: #666;
}

.update-form-section {
  background: #121212;
  color: #e2e2e2;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.update-form-section h2 {
  font-size: 36px;
  margin-bottom: 1rem;
}

.update-text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 1rem;
}

.update-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.update-form input[type="email"] {
  padding: 12px 20px;
  border-radius: 44px;
  border: 1px solid #e2e2e2;
  background: transparent;
  color: #e2e2e2;
  font-size: 16px;
  min-width: 250px;
}

.update-form input::placeholder {
  color: #999;
}

.update-form button {
  padding: 12px 30px;
  border-radius: 44px;
  border: 1px solid #00dcfe;
  background: transparent;
  color: #00dcfe;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.update-form button:hover {
  background: #00dcfe;
  color: #0e0e0e;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.wrapper-span {
  background-image: linear-gradient(90deg, #76abb3 0%, #00dcfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact {
  background: #121212;
  padding: 4rem 5rem;
  text-align: center;
  color: #e2e2e2;
  border-radius: 12px;

  @media only screen and (max-width: 750px) {
    padding: 3rem 1.5rem;
  }
}

.contact h2 {
  margin-bottom: 35px;
}

.contact p {
  font-size: 20px;
  font-weight: 300;
}

.contact a {
  color: #00dcfe;
  text-decoration: underline;
  font-weight: 600;
}
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  color: #e2e2e2;
  gap: 60px;
}

.about-text {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.about-text p {
  font-size: 20px;
  font-weight: 300;
}

.services {
  background: #121212;
  padding: 3rem;
  color: #e2e2e2;
  border-radius: 12px;

  @media only screen and (max-width: 750px) {
    padding-inline: 1.5rem;
  }
}

.services h2 {
  margin-bottom: 40px;
  text-align: center;
}

.service-item {
  margin-bottom: 40px;
}

.service-item h3 {
  font-size: 28px;
  font-weight: 800;
  color: #00dcfe;
}

.service-item p {
  font-size: 18px;
  font-weight: 300;
}

.core-features {
  padding-block: 3rem;
  width: 100%;
  color: #e2e2e2;
  text-align: center;
}

.core-features h2 {
  margin-bottom: 40px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  text-align: left;
}

.feature-item {
  background: #1a1a1a;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 220, 254, 0.4);
  position: relative;
}

.feature-icon {
  margin-bottom: 15px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #00dcfe;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 16px;
  font-weight: 300;
  color: #ccc;
}

/* Download Page Styles */
body.download-body {
  background: #ffffff;
  overflow: hidden;
}

.download-body .navbar {
  background: rgba(240, 250, 252, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 220, 254, 0.1);
}

.download-body .navbar a {
  color: #333;
}

.download-body .navbar a:hover {
  color: #00dcfe;
}

.download-body .menu-toggle {
  color: #00dcfe;
}

.download-body .contact-btn {
  border-color: #00dcfe;
  color: #00dcfe !important;
}

.download-body .contact-btn:hover {
  background: #00dcfe;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .download-body .nav-links {
    background: rgba(240, 250, 252, 0.98);
  }
}

.download-page {
  height: 100vh;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 220, 254, 0.1) 0%,
    rgba(118, 171, 179, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.download-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 4rem;
  gap: 4rem;
  margin-top: 4rem;
}

.download-content {
  flex: 1;
  z-index: 2;
}

.download-content .overline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00dcfe;
  margin-bottom: 1rem;
}

.download-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: #0e0e0e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.download-content p {
  font-size: 22px;
  font-weight: 300;
  color: #333;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.download-buttons-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 600px;
}

.download-buttons-container a {
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex: 1;
  max-height: 4rem;
}

.download-buttons-container a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 220, 254, 0.3);
}

.download-buttons-container img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.animation-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

#phone-animation {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.social-icons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.social-icons a {
  width: 48px;
  height: 48px;
  background: rgba(0, 220, 254, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 220, 254, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #00dcfe;
}

.social-icons a:hover {
  background: #00dcfe;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 220, 254, 0.4);
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 968px) {
  .download-container {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    text-align: center;
    justify-content: center;
  }

  .download-content h1 {
    font-size: 40px;
  }

  .download-content p {
    font-size: 18px;
  }

  .download-buttons-container {
    margin: 0 auto;
    max-width: 400px;
  }

  .animation-container {
    max-width: 300px;
  }

  .social-icons {
    bottom: 1rem;
    right: 1rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons svg {
    width: 20px;
    height: 20px;
  }
}

@media only screen and (max-width: 750px) {
  body.download-body {
    overflow: auto;
  }

  .download-page {
    padding-top: 80px;
    min-height: 100vh;
    height: auto;
  }

  .download-container {
    margin-top: 0;
    padding-bottom: 3rem;
  }

  .download-content h1 {
    font-size: 32px;
  }

  .download-content p {
    font-size: 16px;
    margin-bottom: 2rem;
  }

  .download-buttons-container {
    flex-direction: column;
    max-width: 200px;
  }

  .download-buttons-container a {
    height: 50px;
  }

  .download-buttons-container img {
    height: 100%;
    object-fit: contain;
  }

  .animation-container {
    max-height: 250px;
    overflow: hidden;
    align-items: flex-start;
  }

  #phone-animation {
    transform: translateY(0);
  }
}
