:root {
  --orange: #ff6f00;
  --pink: #f13c8f;
  --orange2: #fe944a;
  --blue: #5c70cf;
  --purple: #9842ed;
  --dark: #131313;
  --gray: #505050;
  --white: #ffffff;
  --green-top: #5ad021;
  --green-bottom: #207c05;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Roboto", sans-serif;
  --container-max: 1280px;
  --shadow-soft: 8px 8px 12px 0px rgba(71, 92, 49, 0.1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 136%;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 24px 0;
}
.section-title.white {
  color: var(--white);
}

.site-header {
  background: var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-desktop a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 33px;
  padding: 8px 12px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 108%;
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.nav-desktop a:hover {
  background: #ffffff;
  color: var(--orange);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  color: #fff;
}
.menu-toggle svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Mobile full-screen nav overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--orange);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.mobile-menu-top .logo-img {
  width: 40px;
  height: 40px;
}
.menu-close {
  background: transparent;
  border: none;
  color: #fff;
  padding: 6px;
}
.menu-close svg {
  width: 26px;
  height: 26px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 60px;
}
.mobile-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/Hero_Section.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
}
.hero-card {
  width: 584px;
  max-width: 100%;
  height: auto;
  min-height: 655px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border-radius: 36px;
  padding: 32px;
  background: #ffffff99;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}
.hero-title-img {
  width: 338px;
  height: 259px;
  max-width: 100%;
  object-fit: contain;
}
.hero-subtitle {
  width: 470px;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 136%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #131313;
  margin: 0;
}
.hero-text {
  width: 520px;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #505050;
  margin: 0;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 65px;
  padding: 12px 20px;
  gap: 10px;
  border-radius: 50px;
  background: linear-gradient(
    180deg,
    var(--green-top) 0%,
    var(--green-bottom) 100%
  );
  box-shadow: var(--shadow-soft);
}

.cta-icon {
  width: 30px;
  height: 34px;
}
.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-text small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
}
.cta-text strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
}

.features {
  padding: 96px 0 80px;
}
.features-grid {
  max-width: 1088px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 24px;
}
.feature-card {
  position: relative;
  width: 100%;
  min-height: 396px;
  padding: 32px 32px 64px 32px;
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 16px 0;
}
.feature-card p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 144%;
  color: #ffffff;
  margin: 0;
  max-width: 80%;
}
.feature-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 110px;
  height: 110px;
  object-fit: contain;
}
.card-pink {
  background: var(--pink);
  background-image: url("images/Card1.png");
}
.card-orange {
  background: var(--orange2);
  background-image: url("images/Card2.png");
}
.card-blue {
  background: var(--blue);
  background-image: url("images/Card3.png");
}
.card-purple {
  background: var(--purple);
  background-image: url("images/Card4.png");
}

.features-image {
  display: block;
  width: 1088px;
  max-width: calc(100% - 48px);
  height: auto;
  margin: 64px auto 0;
  border-radius: 64px;
}

.how-it-works {
  padding: 96px 0;
}
.hiw-intro {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 144%;
  text-align: center;
  color: #505050;
}
.hiw-row {
  max-width: 1088px;
  margin: 0 auto 56px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hiw-row:last-child {
  margin-bottom: 0;
}
.hiw-text {
  flex: 1;
  max-width: 460px;
}
.hiw-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  color: #131313;
  margin: 0 0 16px 0;
}
.hiw-text p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #505050;
  margin: 0;
}
.hiw-image {
  width: 544px;
  height: 252px;
  max-width: 50%;
  object-fit: cover;
  border-radius: 24px;
  flex-shrink: 0;
}

.testimonials {
  padding: 64px 24px;
}
.testimonials-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 646px;
  border-radius: 40px;
  /* background-color: var(--blue); */
  background-image: url("images/TESTIMONIALS.jpg");
  background-size: cover;
  background-position: center;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.testimonial-track {
  width: 100%;
  max-width: 1088px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  width: 100%;
  min-height: 399px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 40px;
  border-radius: 24px;
  background: #ffffff;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #505050;
  margin: 0;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.reviewer img {
  width: 72px;
  height: 72px;
  border-radius: 100px;
  border: 1px solid #ffffff;
  object-fit: cover;
}
.reviewer span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 144%;
  color: #131313;
}

.gallery {
  padding: 96px 24px;
}
.gallery-track {
  max-width: 1088px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gallery-item {
  position: relative;
  width: 100%;
  height: 456px;
  border-radius: 24px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  padding: 96px 24px;
}
.faq-inner {
  max-width: 1088px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.faq-purple {
  background: var(--purple);
}
.faq-pink {
  background: var(--pink);
}
.faq-orange {
  background: var(--orange2);
}
.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 144%;
  color: #ffffff;
  margin: 0 0 12px 0;
}
.faq-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.faq-answer {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #ffffff;
  margin: 0;
  padding-left: 32px;
}
.faq-image {
  width: 512px;
  height: auto;
  border-radius: 40px;
  flex-shrink: 0;
}
.site-footer {
  background: var(--orange);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  margin-bottom: 24px;
}
.footer-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 144%;
  text-align: center;
  color: #ffffff;
}
.copyright {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

/* .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.slider-track > * {
  flex: 0 0 100%;
  width: 100%;
} */

@media (max-width: 798px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }

  .section-title {
    font-size: 34px;
  }

  .hero {
    min-height: auto;
    padding: 32px 0 48px;
  }
  .hero-bg {
    position: absolute;
  }
  .hero .container {
    justify-content: center;
    padding: 0 16px;
  }
  .hero-card {
    width: 100%;
    min-height: auto;
    padding: 24px 20px;
    gap: 20px;
  }
  .hero-title-img {
    width: 240px;
    height: auto;
  }
  .hero-subtitle {
    width: 100%;
    font-size: 20px;
    height: auto;
  }
  .hero-text {
    width: 100%;
    height: auto;
    font-size: 16px;
  }
  .cta-button {
    width: 220px;
    height: 58px;
  }

  .features {
    padding: 56px 0 48px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .feature-card {
    min-height: auto;
    padding: 28px 24px 56px;
  }
  .feature-card p {
    max-width: 100%;
  }
  .features-image {
    margin-top: 40px;
    border-radius: 32px;
  }

  .how-it-works {
    padding: 56px 0;
  }
  .hiw-intro {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .hiw-row,
  .hiw-row.reverse {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .reverse img {
    order: 2;
  }
  .hiw-text {
    max-width: 100%;
    text-align: left;
  }
  .hiw-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 544/252;
  }

  .testimonials {
    padding: 48px 16px;
  }
  .testimonials-inner {
    min-height: auto;
    padding: 40px 16px;
    overflow: hidden;
    width: 100%;
  }
  .testimonial-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    gap: 10;
    margin-top: 32px;
    transition: transform 0.5s ease;
  }
  .testimonial-track .testimonial-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    padding: 40px 28px;

    box-sizing: border-box;
  }

  .gallery {
    padding: 56px 16px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  .gallery-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10;
    transition: transform 0.5s ease;
  }
  .gallery-track .gallery-item {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    min-width: 100%;
  }
  .gallery-item img {
    width: 100% !important;
    display: block;
  }
  .faq {
    padding: 56px 16px;
  }
  .faq-inner {
    flex-direction: column;
    gap: 32px;
  }
  .faq-image {
    width: 100%;
    max-width: 100%;
    align-self: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  .hero-title-img {
    width: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .slider-track {
    transition: none;
  }
  .mobile-menu {
    transition: none;
  }
}

.legal-content {
  max-width: 1016px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 136%;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 48px 0;
}

.legal-content h2,
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: var(--dark);
  margin: 40px 0 16px;
}

.legal-content p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 160%;
  color: var(--gray);
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}

.legal-content li {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 160%;
  color: var(--gray);
  margin-bottom: 10px;
}

.legal-content strong {
  color: var(--dark);
  font-weight: 600;
}

.legal-content em {
  font-style: italic;
}

.legal-content a {
  color: var(--gray);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

.legal-updated {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  color: var(--gray);
  margin: -28px 0 40px;
}

@media (max-width: 798px) {
  .legal-content {
    padding: 40px 16px 64px;
  }
  .legal-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .legal-content h2,
  .legal-content h3 {
    font-size: 20px;
    margin: 32px 0 12px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}
