/* 1) Design tokens / variables from Figma */
:root {
  --Gradient-Gradient-Black: #0E131D;
  --Radius-radius-lg: 16px;
  --White-color: #FFFFFF;
  --Black-White: #FFFFFF;

  --Spacing-Spacing-sm: 8px;
  --Spacing-Spacing-md: 12px;
  --Spacing-Spacing-2xl: 24px;
  --Spacing-Spacing-3xl: 32px;
  --Spacing-Spacing-5xl: 48px;
  --Spacing-Spacing-7xl: 80px;
  --Radius-radius-4xl: 48px;

  --Extra-color-Orange: #FD7E14;
  --Extra-color-Green: #20C997;

  --Gradient-Gradient-Black: #0E131D;
  --Gradient-Gradient-Purple: #7A1364;

  --Extra-color-Pink: #D63384;
  --Extra-color-Purple: #6F42C1;
  --Extra-color-Green: #20C997;

  --Font-Famliy-Font-Family: "Outfit", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;

  --Font-Size-body-lg: 16px;
  --Font-Size-body-md: 14px;
  --Font-Size-body-sm: 12px;
  --Font-Size-Display: 40px;
  --Font-Size-H1: 32px;
  --Font-Size-H2: 24px;
  --Font-Size-H3: 20px;
  --Font-Size-Hero-Text: 64px;
}

/* 2) Reset-ish basics */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* 3) Body styles */
body {
  background: var(--Gradient-Gradient-Black);
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
}

/* 4) Main page wrapper */
.page-wrapper {
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
}

/* Common layout + typography helpers */
.section-common {
  max-width: 98%;
  justify-content: center;
  margin: 0 auto;
}

.frame-common {
  display: flex;
  width: 100%;
  /* padding: 16px 60px; */
  margin-top: 50px;
}

.nav-frame {
  display: flex;
  width: 100%;
  padding: 16px 60px;
  margin: 0 auto;
}

/* ===== Global typography system ===== */
/* Header 1 (section titles) */
.heading-1,
.title-common {
  margin: 0 auto;
  /* max-width: 80%; */
  text-align: center;
  font-family: var(--Font-Famliy-Font-Family, Outfit);
  font-style: normal;
  font-size: var(--Font-Size-Display, 40px);
  font-weight: 700;
  line-height: 50.4px; /* 126% */
}

/* Header 2 (sub titles, card titles, step titles) */
.heading-2 {
  margin: 0 auto;
  text-align: center;
  font-family: var(--Font-Famliy-Font-Family, Outfit);
  font-style: normal;
  font-size: var(--Font-Size-H2, 24px);
  font-weight: 600;
  line-height: 30.2px; /* 125.833% */
}

/* Section description (body under title) */
.section-description,
.description-common {
  margin: 0 auto;
  text-align: center;
  font-family: var(--Font-Famliy-Font-Family, Outfit);
  font-style: normal;
  font-size: var(--Font-Size-body-lg, 14px);
  font-weight: 400;
  line-height: 17.6px; /* 126.25% */
}

.tag-line {
  margin: 0;
  align-self: stretch;
  color: var(--Extra-color-Green, #20C997);
  text-align: center;
  font-family: var(--Font-Famliy-Font-Family, Outfit);
  font-size: var(--Font-Size-body-md, 14px);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}

/* ===== NAVBAR LAYOUT ===== */

.nav-wrapper {
  display: flex;
  max-width: 90%;
  padding-top: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto;
}

.nav-frame {
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: var(--Radius-radius-lg, 16px);
  box-shadow:
    4px 5px 6px 0 rgba(255, 255, 255, 0.40) inset,
    0 8px 10px 0 rgba(0, 0, 0, 0.10),
    -1px -3px 4px 0 rgba(255, 255, 255, 0.40) inset;
  position: relative;
  overflow: hidden;
  z-index: 200;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 64px;
}

.nav-logo-img {
  display: block;
  width: 190px;
  margin-top: -70px;
  margin-bottom: -70px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* logo */
.logo-web {
  color: #0D6EFD;
  font-size: 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 1.92px;
}

.logo-stack {
  color: #FFFFFF;
  font-size: 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 1.92px;
}

/* menu */
.nav-menu-item {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 24px;
  color: #DDF9FF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.nav-menu-item:hover {
  opacity: 0.8;
}

/* buttons */
button,
.button-common {
  border: none;
  cursor: pointer;
}

.btn {
  display: flex;
  padding: var(--Spacing-Spacing-md, 12px) var(--Spacing-Spacing-2xl, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-Spacing-sm, 8px);
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 rgba(171, 190, 209, 0.40);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  background: transparent;
  text-decoration: none;
}

.btn-orange {
  background: var(--Extra-color-Orange, #FD7E14);
}

.btn-green {
  background: var(--Extra-color-Green, #20C997);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-text {
  color: var(--Black-White, #FFF);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.btn-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.nav-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;

  /* pill container if you want it */
  width: 40px;
  height: 40px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu-toggle svg {
   display: none;
   width: 24px;
   height: 24px;
   flex-shrink: 0;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 1158px;
  padding: 20px 60px 100px 60px;
  margin-top: -110px;
  z-index: 100;
  background: radial-gradient(
    50.16% 72.25% at 51.63% 4.44%,
    var(--Gradient-Gradient-Purple, #7A1364) 0%,
    var(--Gradient-Gradient-Black, #0E131D) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 1440px;
  height: 1016px;
  opacity: 0.2;
  background: url("images/background.png") rgba(211, 211, 211, 0) 50% / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-3xl, 32px);
  text-align: center;
  justify-content: center;
  margin-top: 200px;
}

/* Hero title uses heading-1 for typography */
.hero-title {
  /* align-self: stretch; */
  color: var(--White-color, #FFF);
  max-width: 70%;
}

/* Hero description uses section-description core */
.hero-description {
  /* align-self: stretch; */
  color: #9FA09F;
  max-width: 60%;
  
}

/* CTA wrapper inside hero-top */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-cta-description {
  color: #9FA09F;
}

/* ===================== HERO BOTTOM ===================== */

.hero-bottom {
  padding-top: 80px;
  margin-bottom: -340px;          /* small overlap on next section */
  width: 100%;
  display: flex;
  justify-content: center;
}

/* main glass frame */
.hero-bottom-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  /* space so the SVG stays visible around the mockup */
  padding: 40px 48px 32px;
  margin: 0 auto;
  max-width: 1149px;
  width: 100%;

  border-radius: var(--Radius-radius-4xl, 48px);
  box-shadow:
    4px 5px 6px 0 rgba(255, 255, 255, 0.40) inset,
    0 8px 10px 0 rgba(0, 0, 0, 0.10),
   -1px -3px 4px 0 rgba(255, 255, 255, 0.40) inset;

  position: relative;
  overflow: hidden;
}

/* SVG bg wrapper */
.hero-bottom-svg-wrapper {
  position: absolute;
  inset: 0;                       /* fill the frame */
  pointer-events: none;
  z-index: 0;
}

.hero-bottom-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* app screenshot on top of SVG */
.hero-bottom-img {
  position: relative;
  z-index: 1;
  width: 100%;                    /* 100% of inner (padded) area */
  max-width: 100%;
  border-radius: 32px;            /* slightly smaller than frame */
  display: block;
}


/* ===========================
   HOW IT WORKS SECTION
   =========================== */

.how-it-works {
  position: relative;
  display: flex;
  padding: 160px 0;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-5xl, 48px);
  overflow: hidden;
}

.how-it-works-ellipse {
  position: absolute;
  width: 300px;
  height: 471px;
  border-radius: 471px;
  filter: blur(250px);
  pointer-events: none;
  z-index: 0;
}

.how-it-works-ellipse-left {
  left: -218px;
  top: -19px;
  background: var(--Extra-color-Purple, #6F42C1);
  transform: rotate(-139.448deg);
}

.how-it-works-ellipse-right {
  right: -257.866px;
  top: 31px;
  background: var(--Extra-color-Pink, #D63384);
  transform: rotate(-21deg);
}

.how-it-works-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-2xl, 24px);
}


/* top title uses .heading-1 now */
.how-it-works-title {
  align-self: stretch;
  color: var(--Black-White, #FFF);
}

/* description uses section-description + uppercase */
.how-it-works-description {
  align-self: stretch;
  color: var(--Black-White, #FFF);
  text-transform: uppercase;
}

.how-it-works-steps {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 3px;
}

.how-step-card {
  display: flex;
  width: 340px;
  padding: var(--Spacing-Spacing-2xl, 24px);
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-2xl, 24px);
}

.how-step-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--Black-White, #FFF);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(171, 190, 209, 0.40);
}

.how-step-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* titles use .heading-2; just color override here */
.how-step-title {
  align-self: stretch;
  color: #FFF;
}

/* step description uses section-description */
.how-step-description {
  align-self: stretch;
  color: #FFF;
}

.how-it-works-arrow {
  width: 100px;
  height: 19.526px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== LOGO STRIP SECTION ===== */

.logo-strip {
  display: flex;
  height: 240px;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.logo-strip-inner {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 32px;
  will-change: transform;
  animation: logo-scroll 25s linear infinite;
}

.logo-card {
  flex: 0 0 auto;
  width: 200px;
  aspect-ratio: 1.5 / 1;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}

.logo-card--top {
  margin-top: 40px;
}

.logo-card--bottom {
  margin-bottom: 40px;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================
   PRICING SECTION
   ============================ */

.pricing-section {
  display: flex;
  padding: var(--Spacing-Spacing-7xl, 80px) 0;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-5xl, 48px);
}

.pricing-inner {
  width: 100%;
  max-width: 1320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-5xl, 48px);
  z-index: 1;
}

/* .pricing-blur-bg kept if needed */

.pricing-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-2xl, 24px);
}

/* title uses heading-1 */
.pricing-title {
  align-self: stretch;
  color: var(--Black-White, #FFF);
}

/* subtitle uses section-description */
.pricing-subtitle {
  align-self: stretch;
  color: var(--Black-White, #FFF);
  text-transform: uppercase;
}

.pricing-cards {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

.pricing-card {
  width: 360px;
  min-height: 480px;
  padding: 40px 56px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow:
    4px 5px 6px 0 rgba(255, 255, 255, 0.40) inset,
    0 8px 10px 0 rgba(0, 0, 0, 0.10),
    -1px -3px 4px 0 rgba(255, 255, 255, 0.40) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* plan title typography from .heading-2, only color here */
.pricing-plan-title {
  align-self: stretch;
  text-align: center;
}

.pricing-plan-title--green {
  color: #20C997;
}

.pricing-plan-title--orange {
  color: #FD7E14;
}

.pricing-plan-title--purple {
  color: #6F42C1;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-amount {
  color: #FFF;
  text-align: center;
  font-family: Outfit, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50.4px;
}

.pricing-period {
  color: #FFF;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.pricing-included-label {
  align-self: stretch;
  color: #FFF;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--Spacing-Spacing-md, 12px);
  align-self: stretch;
  list-style: disc;
  padding-left: 90px;
  margin: 0;
}

.pricing-list li {
  color: #FFF;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.6px;
}

.pricing-view-all {
  margin-top: 8px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.pricing-card--basic .pricing-view-all {
  color: #20C997;
}

.pricing-card--standard .pricing-view-all {
  color: #FD7E14;
}

.pricing-card--premium .pricing-view-all {
  color: #6F42C1;
}

.pricing-view-arrow {
  font-size: 16px;
}

.pricing-cta {
  margin-top: 24px;
  align-self: stretch;
  display: flex;
  height: 48px;
  padding: var(--Spacing-Spacing-md, 12px)
           var(--Spacing-Spacing-2xl, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-Spacing-md, 12px);
  border-radius: 12px;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.btn-blue {
  background: #0D6EFD;
  box-shadow: 0 4px 8px 0 rgba(171, 190, 209, 0.40);
}

/* ================ TRUST SECTION ================ */

.trust-section {
  display: flex;
  padding: var(--Spacing-Spacing-7xl, 80px) 0;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-5xl, 48px);
  position: relative;
}

/* heading uses heading-1; just color override */
.trust-heading {
  color: var(--Black-White, #fff);
}

.trust-content {
  display: flex;
  max-width: 1320px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.trust-left {
  max-width: 560px;
}

/* trust left title uses heading-2 but left-aligned */
.trust-left-title {
  color: var(--Black-White, #fff);
  text-align: left;
  max-width: 100%;
  margin: 0 0 24px;
}

/* body uses section-description but left aligned */
.trust-left-body {
  color: var(--Black-White, #fff);
  text-align: left;
  max-width: 100%;
  margin: 0 0 12px;
}

.trust-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  width: 306px;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-lg, 16px);
  flex-shrink: 200;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.trust-card-purple { background: #7b2cff; }
.trust-card-violet { background: #7f4adf; }
.trust-card-pink   { background: #e0358f; }
.trust-card-orange { background: #fd7e14; }

.trust-card-number {
  width: 74px;
  height: 40px;
  color: var(--Black-White, #fff);
  text-align: center;
  font-family: var(--Font-Famliy-Font-Family, Outfit);
  font-size: var(--Font-Size-Display, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 50.4px;
}

.trust-card-title {
  color: var(--Black-White, #fff);
  text-align: center;
  font-size: var(--Font-Size-body-lg, 16px);
  font-weight: 600;
  line-height: 20.2px;
}

.trust-card-text {
  color: var(--Black-White, #fff);
  text-align: center;
  font-family: var(--Font-Famliy-Font-Family, Outfit);
  font-size: var(--Font-Size-body-md, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 17.6px;
  margin: 0;
}

/* ============== CATEGORIES SECTION ============== */

.categories-section::before {
  content: "";
  width: 300px;
  height: 471px;
  transform: rotate(-20.784deg);
  position: absolute;
  border-radius: 471px;
  background: #E46A00;
  filter: blur(250px);
  top: 3700px;
  z-index: -1;
}

.categories-section {
  display: flex;
  padding: var(--Spacing-Spacing-7xl, 80px) 0;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-6xl, 64px);
}

.categories-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* title uses heading-1 */
.categories-title {
  color: var(--White-color, #fff);
  max-width: 980px;
}

/* description uses section-description */
.categories-description {
  color: var(--White-color, #fff);
  max-width: 795px;
}

.categories-grid {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 32px var(--Spacing-Spacing-3xl, 32px);
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.category-card {
  background: #263238;
  color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  max-width: 400px;
  min-width: 360px;
}

.category-icon-wrap {
  display: flex;
  width: 65px;
  height: 65px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* category title uses heading-2 but left aligned */
.category-title {
  color: var(--Black-White, #fff);
  text-align: left;
  max-width: 100%;
}

/* description uses section-description but left aligned */
.category-text {
  color: var(--Black-White, #fff);
  text-align: center;
  max-width: 100%;
  margin: 0;
}

/* ============== TESTIMONIALS SECTION ============== */

.testimonial-section {
  display: flex;
  padding: var(--Spacing-Spacing-7xl, 80px) 0;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-5xl, 48px);
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

/* title uses heading-1 */
.testimonial-title {
  color: var(--Black-White, #fff);
}

/* description uses section-description */
.testimonial-description {
  color: var(--Black-White, #fff);
}

.testimonial-review-row {
  display: flex;
  max-width: 98%;
  justify-content: space-between;
  align-items: center;
}

/* ============== FAQ SECTION ============== */

/* ============== FAQ SECTION ============== */

.faq-section {
  /* full-width background, only vertical padding */
  display: flex;
  justify-content: center;          /* center the inner content */
  padding: var(--Spacing-Spacing-7xl, 80px) 0;
  background: url("assets/faq-bg.png") lightgray 50% / cover no-repeat;
}

/* inner wrapper: two columns (left text + right accordions) */
.faq-section .section-common {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 98%;               /* lines up with other sections */
  width: 100%;
}

/* left column */
.faq-left {
  display: flex;
  width: 446px;
  flex-direction: column;
  justify-content: center;
  align-items: center;         /* keep everything left-aligned */
  flex-shrink: 0;
}

.faq-left-text {
  width: 100%;
}

/* FAQ title overrides heading-1 to match Figma */
.faq-title {
  color: #000;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 424px;
  margin: 0 0 16px 0;
  text-align: left;
  max-width: none;
}

.faq-description {
  color: #000;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: stretch;
  text-align: left;
  max-width: none;
}

.faq-arrow-svg {
  width: 163.762px;
  height: 167.04px;
  aspect-ratio: 163.76 / 167.04;
  margin: 10px auto 0;
}

/* right column (accordions) */
.faq-right {
  display: flex;
  width: 729px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 200;
}

.faq-item {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 12px 0 rgba(171, 190, 209, 0.3);
}

.faq-item-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question {
  color: #333;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.faq-answer {
  color: #666;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 10px
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* =========================
   CTA SECTION
   ========================= */

.cta-section {
  display: flex;
  padding: var(--Spacing-Spacing-7xl, 80px) 72px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-Spacing-5xl, 48px);
  background: radial-gradient(
    49.5% 100.14% at 48.23% -0.1%,
    var(--Gradient-Gradient-Purple, #7a1364) 0%,
    var(--Gradient-Gradient-Black, #0e131d) 100%
  );
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--Spacing-Spacing-5xl, 48px);
  width: 100%;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

/* title uses heading-1 */
.cta-title {
  color: var(--Black-White, #fff);
}

/* description uses section-description */
.cta-description {
  color: var(--Black-White, #fff);
  max-width: 60%;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-Spacing-lg, 16px);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-btn {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
}

.cta-btn-text {
  color: var(--Black-White, #fff);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.cta-arrow {
  font-size: 18px;
  line-height: 1;
}

.cta-note {
  color: var(--Black-White, #fff);
  text-align: center;
  font-family: var(--Font-Famliy-Font-Family, Outfit), system-ui, sans-serif;
  font-size: var(--Font-Size-body-md, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 17.6px;
  margin: 0;
}

/* =========================
   FOOTER
   ========================= */

.footer-section {
  display: flex;
  width: 100%;
  max-width: 1440px;
  padding: var(--Spacing-Spacing-7xl, 80px) 0
           var(--Spacing-Spacing-5xl, 48px) 0;
  flex-direction: column;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  padding: 48px 60px 0px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 420px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-about {
  color: var(--Black-White, #fff);
  font-family: var(--Font-Famliy-Font-Family, Outfit), system-ui, sans-serif;
  font-size: var(--Font-Size-body-md, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: 17.6px;
  width: 375px;
  margin: 0;
}

.footer-menus {
  display: flex;
  gap: 80px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--Black-White, #fff);
  text-decoration: none;
  font-family: var(--Font-Famliy-Font-Family, Outfit), system-ui, sans-serif;
  font-size: var(--Font-Size-body-lg, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 20.2px;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-right {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer-windows-badge {
  display: block;
  width: 100px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  width: 90%;
  padding: 50px 0px 10px;
  justify-self: center;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.footer-disclaimer {
  color: var(--Black-White, #fff);
  font-family: var(--Font-Famliy-Font-Family, Outfit), system-ui, sans-serif;
  font-size: var(--Font-Size-body-lg, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 20.2px;
  margin: 0;
  
}

.footer-payment-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-payment-logos img {
  height: 32px;
  object-fit: contain;
}

/* =========================
   BACK TO TOP BUTTON
   ========================= */

.back-to-top {
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(3.75px);
  box-shadow: 4px 5px 6px 0 rgba(255, 255, 255, 0.40) inset, 0 8px 10px 0 rgba(0, 0, 0, 0.10), -1px -3px 4px 0 rgba(255, 255, 255, 0.40) inset;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-icon {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 3.5px 5.93px;
  align-items: center;
  justify-content: center;
}

.back-to-top-icon svg {
  width: 12.14px;
  height: 17px;
  flex-shrink: 0;
  display: block;
}

.back-to-top:hover {
  transform: translateY(-2px);
}


@media (max-width: 1150px) {

  .footer-right {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }
}


/* ========== TABLET & BELOW (≤1024px) ========== */
@media (max-width: 1024px) {

  /* -------- Global layout & type -------- */

  .page-wrapper {
    overflow: hidden;
    max-width: 100%;
  }

  .section-common {
    justify-items: center;
    max-width: 94%;
  }

  /* Section titles */
  .heading-1,
  .title-common {
    font-size: var(--Font-Size-H1, 32px);
    line-height: 1.25;
    font-weight: 600;
  }

  /* Sub-titles / card titles */
  .heading-2 {
    font-size: var(--Font-Size-H3, 20px);
    line-height: 1.3;
    font-weight: 600;
  }

  /* Descriptions */
  .section-description,
  .description-common {
    font-size: var(--Font-Size-body-md, 14px);
    line-height: 1.4;
    max-width: 100%;
  }

  /* -------- NAVBAR -------- */

  .nav-wrapper {
    padding-top: 24px;
  }

  .nav-frame {
    padding: 12px 20px;
    border-radius: 12px;
  }

  .nav-logo-img {
    width: 140px;
    margin-top: -50px;
    margin-bottom: -50px;
  }

  /* hide full menu – use only logo + buttons (like design) */
  .nav-menu {
    display: none;
  }

  .desktop-btn {
     display: none;
  }

  .nav-menu-toggle {
    display: flex;  /* show the icon button */
  }

  .nav-menu-toggle svg {
    display: flex;  /* show the icon button */
  
  }

  .btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  /* -------- HERO -------- */

  .hero {
    padding: 120px 20px 80px;
    min-height: auto;
    margin-top: -100px;
  }

  .hero-top {
    margin-top: 120px;
    gap: 24px;
  }

  .hero-title {
    font-weight: 600;
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-cta {
    width: 100%;
  }



  .hero-cta-description {
    max-width: 100%;
  }

  /* hero mockup / app frame */
  .hero-bottom {
    padding-top: 48px;
    margin-bottom: -180px;
  }

  .hero-bottom-frame {
    max-width: 720px;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .hero-bottom-img {
    border-radius: 16px;
  }

  /* -------- HOW IT WORKS -------- */

  .how-it-works {
    padding: 120px 0 80px;
    gap: 40px;
  }

  .how-it-works-ellipse-left {
    left: -150px;
    top: 400px;
  }

  .how-it-works-ellipse-right {
    right: -150px;
    top: 400px;
  }


  .how-it-works-text {
    max-width: 100%;
  }

  .how-it-works-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .how-step-card {
    width: 100%;
    max-width: 480px;
  }

  .how-it-works-arrow {
    transform: rotate(90deg);
    margin: 24px 0;
  }

  /* -------- LOGO STRIP -------- */

  .logo-strip {
    height: 180px;
  }

  .logo-card {
    width: 160px;
  }
  

  /* -------- PRICING -------- */

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-inner {
    align-items: center;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .pricing-card {
    width: 100%;
    max-width: 420px;
    padding: 32px 32px;
  }

  .pricing-amount {
    font-size: 32px;
    line-height: 1.25;
  }

  .pricing-list {
    padding-left: 110px;
  }

  /* -------- TRUST SECTION -------- */

  .trust-section {
    padding: 80px 0;
  }

  .trust-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .trust-left {
    max-width: 100%;
    text-align: center;
  }

  .trust-left-title,
  .trust-left-body {
    text-align: center;
  }

  .trust-right {
    display: grid;
    gap: 24px;
  }

  .trust-card {
    width: 100%;
    max-width: 420px;
  }

  /* -------- CATEGORIES -------- */

  .categories-section {
    padding: 80px 0;
  }
  .categories-section::before {
    content: "";
    width: 200px;
    top: 5000px;
  }

  .categories-header {
    max-width: 100%;
  }

  .categories-grid {
    gap: 24px;
  }

  .category-card {
    flex: 0 1 100%;
    max-width: 420px;
    min-width: 0;
  }

  /* -------- TESTIMONIALS -------- */

  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-header {
    max-width: 100%;
  }

  .testimonial-review-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* -------- FAQ -------- */

  .faq-section {
    padding: 80px 20px;
  }

  .faq-section .section-common {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 720px;
  }

  .faq-left,
  .faq-right {
    width: 100%;
    max-width: 720px;
  }

  .faq-left {
    align-items: center;
  }

  .faq-title {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .faq-description {
    text-align: center;
  }

  .faq-arrow-svg {
    margin-top: 32px;
    transform: rotate(60deg);
  }

  /* -------- CTA -------- */

  .cta-section {
    padding: 80px 20px;
  }

  .cta-description {
    max-width: 100%;
  }

  /* stack the CTA buttons and make them full-width */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;             /* space between buttons */
    width: 100%;
  }

  /* make each CTA button match the mobile design */
  .cta-buttons .cta-btn {
    display: flex;
    width: 100%;
    height: 48px;
    padding: var(--Spacing-Spacing-md, 12px)
             var(--Spacing-Spacing-2xl, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-Spacing-md, 12px);
    align-self: stretch;

    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(171, 190, 209, 0.40);
  }


  /* -------- FOOTER -------- */

  .footer-content {
    padding: 32px 20px 0px;
    flex-direction: column;
    gap: 32px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-about {
    width: 98%;
  }

  .footer-menus {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-disclaimer {
    width: 100%;
    text-align: center;
  }

  .footer-payment-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* -------- Back to top button -------- */

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }
}
  
@media screen and (max-width: 768px) {
  .hero {
    padding: 60px 20px 80px;
    min-height: auto;
    margin-top: -100px;
  }
    .hero-cta-buttons {
    flex-direction: column;   /* stack */
    align-items: stretch;     /* make children full-width */
    gap: 12px;
    width: 100%;
  }

  .hero-cta-buttons .btn {
    display: flex;
    width: 100%;
    height: 48px;
    padding: var(--Spacing-Spacing-md, 12px)
             var(--Spacing-Spacing-2xl, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-Spacing-md, 12px);
    align-self: stretch;

    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(171, 190, 209, 0.40);
  }


  .trust-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .categories-section::before {
    content: "";
    width: 200px;
    top: 5700px;
  }

  .how-it-works-ellipse-left {
    position: absolute;
    left: -177px;
    top: -15px;
    width: 211.142px;
    height: 360.803px;
    transform: rotate(-139.448deg);
  }

  .how-it-works-ellipse-right {
    position: absolute;
    right: -69.8px;
    top: 285px;
    width: 223.255px;
    height: 310.204px;
    transform: rotate(-20.784deg);
  }
}