/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #050f1e;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #050f1e;
  border-bottom: 3px solid #0ea5f84d;
  width: 100%;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

nav.desktop-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}
nav.desktop-nav a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
nav.desktop-nav a:hover {
  color: #0ea5f8;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #050f1e;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.35px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: #fff;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 15, 30, 0.85) 40%,
    rgba(5, 15, 30, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  padding: 80px 40px;
  max-width: 620px;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 24px;
}
.hero-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 29.25px;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 40px;
  max-width: 500px;
}

.btn-gplay {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 320px;
  height: 58.39px;
  padding: 16px 32px;
  border-radius: 14px;
  border: 1px solid #0ea5f84d;
  background: #071528e5;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-gplay:hover {
  border-color: #0ea5f8;
  background: #0c2040e5;
}
.btn-gplay svg {
  flex-shrink: 0;
}
.btn-gplay-text {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 17.6px;
  line-height: 26.4px;
  letter-spacing: 0.88px;
  color: #fff;
  white-space: nowrap;
}

section {
  background: #050f1e;
  padding: 80px 40px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 290px);
  gap: 24px;
  justify-content: center;
}
.feature-card {
  width: 290px;
  min-height: 348px;
  border-radius: 16px;
  background: #071528;
  border-top: 1px solid #ffffff0d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #0a1e38;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-body {
  padding: 20px 16px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #fff;
}
.feature-card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffffb2;
}

.features-slider-wrap {
  display: none;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 389px);
  gap: 24px;
  justify-content: center;
}
.hiw-card {
  width: 389px;
  min-height: 247px;
  padding: 40px 32px 32px;
  border-radius: 16px;
  background: #071528;
  border-top: 1px solid #ffffff0d;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hiw-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.hiw-number.n1 {
  background: #0ea5f820;
  border-color: #0ea5f860;
  box-shadow: 0px 0px 20px 0px #0ea5f830;
}
.hiw-number.n2 {
  background: #f5a62320;
  border-color: #f5a62360;
  box-shadow: 0px 0px 20px 0px #f5a62330;
}
.hiw-number.n3 {
  background: #8b5cf620;
  border-color: #8b5cf660;
  box-shadow: 0px 0px 20px 0px #8b5cf630;
}
.hiw-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #fff;
}
.hiw-card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffffb2;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 389px);
  gap: 24px;
  justify-content: center;
}
.review-card {
  width: 389px;
  min-height: 279px;
  padding: 32px;
  border-radius: 16px;
  background: #071528;
  border-top: 1px solid #2563eb40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-stars {
  display: flex;
  gap: 4px;
}
.star {
  width: 13.33px;
  height: 12.71px;
  color: #ffb900;
  font-size: 13px;
  line-height: 1;
}
.review-quote-bold {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0px;
  color: #e2e8f0;
}
.review-quote-light {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #64748b;
}
.review-author {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  color: #2563eb;
  margin-top: auto;
}

.reviews-slider-wrap {
  display: none;
}

.slider-wrap {
  position: relative;
}
.slider-track-outer {
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  border: 1px solid #0ea5f84d;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.slider-btn:hover,
.slider-btn.active {
  border-color: #fff;
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #0ea5f84d;
  background: #64748b;
  cursor: pointer;
  transition: background-color 0.2s;
}
.dot.active {
  background: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #071528;
  border: 1px solid #0ea5f866;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-item:last-child {
  border-bottom: 1px solid #0ea5f866;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  gap: 16px;
}
.faq-question-text {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #fff;
  transition: color 0.2s;
}
.faq-item.open .faq-question-text {
  color: #0ea5f8;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.faq-arrow svg {
  width: 10px;
  height: 5px;
}
.faq-arrow svg path {
  stroke: #0ea5f8;
  stroke-width: 1.67px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #6b8cb8;
  border-top: 1px solid #0ea5f866;
  padding-top: 15px;
}

footer {
  background: #050f1e;
  padding: 40px 40px 24px;
  border-top: 1px solid #0ea5f820;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 10%;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #0ea5f8;
}
.footer-copy {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 16px 20px;
  }
  nav.desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 812px;
    position: relative;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/hero-mob.jpg");
    background-size: cover;
    background-position: center bottom !important;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .hero-bg::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(5, 15, 30, 0.8) 0%,
      rgba(5, 15, 30, 0.3) 50%,
      rgba(5, 15, 30, 0) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: 34px;
    line-height: 110%;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
  }

  .btn-gplay {
    width: 242px;
    max-width: 290px;
    justify-content: center;
    padding: 12px 24px;
    height: auto;
  }

  .btn-gplay-text {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  section {
    padding: 60px 20px;
  }
  .section-title {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .features-grid {
    display: none;
  }
  .features-slider-wrap {
    display: block;
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  .features-slider-wrap .slider-track {
    width: 100%;
  }
  .features-slider-wrap .slider-track .feature-card {
    min-width: 100%;
    width: 100%;
    height: auto;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
  .hiw-card {
    width: 100%;
  }

  .reviews-grid {
    display: none;
  }
  .reviews-slider-wrap {
    display: block;
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  .reviews-slider-wrap .slider-track .review-card {
    min-width: 100%;
    width: 100%;
    height: auto;
  }

  footer {
    padding: 32px 20px 20px;
  }
  .footer-links {
    gap: 24px;
  }
  .footer-links a,
  .footer-copy {
    font-size: 16px;
  }
}
