*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #000;
  color: #eefaff;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: calc(100% - 320px); /* 160px each side */
  margin-inline: auto;
  padding-inline: 0;
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-inline: 20px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000000;
  height: 64px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: calc(100% - 320px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header-inner {
    max-width: 100%;
    padding-inline: 20px;
  }
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 32px;
}
nav a {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #40c7ff;
  transition: opacity 0.2s;
}
nav a:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #40c7ff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #40c7ff;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #40c7ff;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

#home {
  padding-top: 64px; /* header height */
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/bg1\ 1.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 20px;
}

.hero-title-img {
  max-width: 544.7337646484375;
}

.hero-subtitle {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: #eefaff;
  max-width: 700px;
}
.hero-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #eefaff;
  max-width: 560px;
  text-align: center;
}

.gplay-btn {
  display: inline-block;
  margin-top: 8px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.gplay-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.gplay-btn img {
  height: 57px;
  width: auto;
}

section {
  background: #000;
}

.section-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #d7d700;
  margin-bottom: 48px;
}
.para-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #40c7ff;
  margin-bottom: 8px;
}
.para-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #eefaff;
}

#features {
  padding: 100px 0;
  background: #000;
}
.features-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.features-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.features-img img {
  max-width: 340px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .features-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-img img {
    max-width: 280px;
    margin: 0 auto;
  }

  #features .section-title {
    order: 1;
  }
  .features-list {
    order: 2;
  }
  .features-img {
    order: 3;
  }
}

#how-it-works {
  padding: 100px 0;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.how-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (max-width: 900px) {
  .how-inner {
    grid-template-columns: 1fr;
  }
  #how-it-works .section-title {
    order: 1;
  }
  .how-list {
    order: 2;
  }
  .how-img {
    order: 3;
  }
}

#reviews {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#reviews,
#faq {
  background-image: url("img/bg1\ 1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-grid {
  width: 100%;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  background: rgba(238, 250, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(238, 250, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;

  width: calc((100% - (24px * 2)) / 3);
  flex-shrink: 0;
}
.stars {
  color: #d7d700;
  font-size: 20px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #eefaff;
  flex: 1;
}
.testimonial-author {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #40c7ff;
  text-align: right;
}

@media (max-width: 900px) {
  .testimonial-card {
    min-width: 100%;
  }
}

#faq {
  padding: 100px 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: rgba(238, 250, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}
.faq-question-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #40c7ff;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #40c7ff;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #40c7ff;
  transform: translateX(-50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.faq-item.open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #eefaff;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

footer {
  background: #000000;
  padding: 48px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-links a {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #40c7ff;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.7;
}
.footer-copy {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #40c7ff;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
       SECTION PADDING MOBILE
    ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #features,
  #how-it-works,
  #reviews,
  #faq {
    padding: 64px 0;
  }
  .section-title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .hero-subtitle {
    font-size: 22px;
  }
}
