/* ============================================
   Font Faces
   ============================================ */

@font-face {
  font-family: "Circular Std";
  font-weight: 400;
  src: url("/webfonts/Circular-Std-Book.ttf") format("truetype");
}

@font-face {
  font-family: "Circular Std";
  font-weight: 500;
  src: url("/webfonts/circular-std-medium-500.ttf") format("truetype");
}

@font-face {
  font-family: "Circular Std";
  font-weight: 700;
  src: url("/webfonts/CircularStd-Bold.ttf") format("truetype");
}

/* ============================================
   Base Styles
   ============================================ */

body {
  background-color: #FCF9F4;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
}

/* ============================================
   Header Section
   ============================================ */

/* Header Section - Positioned absolutely to overlay content */
.header-section {
  width: 100%;
  max-width: 1440px;
  padding: 12px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 10;
}

/* Header left container */
.header-left {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.22vw, 32px);
  flex-wrap: wrap;
}

/* Brand logo */
.header-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.brand-name {
  color: #27272A;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Spline Sans;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  white-space: nowrap;
}

/* Navigation menu - hidden on mobile */
.nav-menu {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-item {
  min-height: 46px;
  padding: 14px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

.nav-link {
  color: #27272A;
  font-size: clamp(13px, 1.04vw, 15px);
  font-family: Quicksand;
  font-weight: 600;
  white-space: nowrap;
}

/* Header buttons - hidden on mobile */
.header-buttons {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Primary button */
.btn-influencer {
  min-height: 48px;
  padding: 6px clamp(16px, 1.67vw, 24px);
  background: #FDBE00;
  border-radius: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

/* Secondary button */
.btn-brand {
  min-height: 48px;
  min-width: fit-content;
  padding: 6px 12px;
  background: white;
  border-radius: 52px;
  outline: 1px solid black;
  outline-offset: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

/* Mobile menu toggle buttons */
.header-hamburger,
.header-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  color: #27272A;
  cursor: pointer;
  flex-shrink: 0;
}

.header-hamburger.hide,
.header-cancel.hide {
  display: none;
}

/* Mobile menu dropdown - Positioned absolutely for overlay */
.header-mobile-menu {
  position: absolute;
  top: 75px;
  right: 16px;
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 200px;
  max-width: calc(100% - 32px);
  padding: 20px;
  background-color: white;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  box-shadow: 0 3px 3px #E5E5E5;
  font-size: 16px;
  z-index: 100;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.header-mobile-menu.hide {
  display: none;
}

.header-mobile-menu.active,
.header-mobile-menu.reverse {
  display: flex;
}

.header-mobile-menu.active {
  animation: dropdown-mob-show 0.3s linear forwards;
}

.header-mobile-menu.reverse {
  animation: dropdown-mob-hide 0.3s linear forwards;
}

/* Mobile navigation */
.header-mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.header-mobile-nav .nav-item {
  width: 100%;
  min-height: auto;
  padding: 10px 0;
  justify-content: flex-start;
}

.header-mobile-nav .nav-link {
  font-size: 16px;
  line-height: 19px;
  width: 100%;
}

/* Mobile action buttons */
.header-mobile-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
  box-sizing: border-box;
}

.header-mobile-actions .btn-influencer,
.header-mobile-actions .btn-brand {
  width: 100%;
  justify-content: center;
}

/* Desktop responsive */
@media (min-width: 1024px) {
  .header-section {
    padding: 12px 20px;
  }

  .header-mobile-menu {
    right: 20px;
  }

  .header-section .nav-menu,
  .header-section .header-buttons {
    display: flex;
  }

  .header-hamburger,
  .header-cancel,
  .header-mobile-menu {
    display: none !important;
  }
}

/* Mobile menu animations */
@keyframes dropdown-mob-show {
  from {
    transform: translateX(100%); /* Slide from completely off-screen right */
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes dropdown-mob-hide {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%); /* Slide completely off-screen right */
    opacity: 0;
  }
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  width: 100%;
  max-width: 1128px;
  margin: clamp(113px, 15.69vw, 183px) auto 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
  display: flex;
  box-sizing: border-box;
  padding-left: clamp(16px, 2.78vw, 40px);
  padding-right: clamp(16px, 2.78vw, 40px);
}

/* Hero content wrapper */
.hero-content {
  width: 100%;
  max-width: 692px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  display: flex;
  box-sizing: border-box;
}

/* Hero badge container */
.hero-badge {
  padding: 12px 16px;
  border-radius: 20px;
  outline: 1px #E5E5E5 solid;
  outline-offset: -1px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  box-sizing: border-box;
}

/* Badge text */
.badge-text {
  text-align: center;
  color: #0E3339;
  font-size: clamp(10px, 1.11vw, 14px);
  font-family: Circular Std;
  font-weight: 500;
  word-wrap: break-word;
}

/* Hero heading */
.hero-heading {
  align-self: stretch;
  text-align: center;
  color: #171717;
  font-family: Circular Std;
  font-weight: 700;
  font-size: clamp(49px, 15.38vw, 104px);
  line-height: clamp(46px, 14.36vw, 100px);
  letter-spacing: -0.03em;
  word-wrap: break-word;
}

/* Hero description */
.hero-description {
  width: 100%;
  max-width: 602px;
  text-align: center;
  color: #262626;
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: clamp(18px, 1.81vw, 26px);
  font-family: Circular Std;
  font-weight: 450;
  word-wrap: break-word;
  box-sizing: border-box;
}

/* Hero actions container */
.hero-actions {
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 0.56vw, 8px);
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 clamp(8px, 0.56vw, 0);
  box-sizing: border-box;
}

/* Join button */
.btn-join {
  min-width: 0;
  flex: 1 1 0;
  max-width: clamp(160px, 13.33vw, 192px);
  height: 48px;
  padding: 6px clamp(8px, 0.83vw, 12px);
  background: #FDBE00;
  overflow: hidden;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 0.42vw, 8px);
  display: flex;
  box-sizing: border-box;
}

/* Demo button */
.btn-demo {
  min-width: 0;
  flex: 1 1 0;
  max-width: clamp(160px, 13.33vw, 192px);
  height: 48px;
  padding: 6px clamp(8px, 0.83vw, 12px);
  background: white;
  overflow: hidden;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 0.42vw, 8px);
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

/* Button text */
.btn-text {
  color: #171717;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
  white-space: nowrap;
}

/* Hero categories container */
.hero-categories {
  align-self: stretch;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: center;
}

/* Category item */
.category-item {
  max-width: clamp(120px, 12.5vw, 180px);
  width: auto;
  min-width: fit-content;
  height: 44px;
  padding: 6px 12px;
  background: #F6EDDF;
  overflow: hidden;
  border-radius: 52px;
  outline: 2px #FAF4EA solid;
  outline-offset: -1px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  box-sizing: border-box;
}

/* Category icon */
.category-icon {
  display: block;
}

/* Category icon images - ensure proper sizing */
.category-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Category text */
.category-text {
  color: #171717;
  font-size: 16px;
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
}

/* Hero Section - Responsive Breakpoints */
@media (min-width: 768px) {
  .btn-join,
  .btn-demo {
    min-width: clamp(160px, 13.33vw, 192px);
    flex: 0 1 auto;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    margin: 111px auto 150px;
  }
  .hero-categories {
    padding: 0 100px;
  }
}

/* ============================================
   Collaborations Section
   ============================================ */

.collaborations-section {
  width: 100%;
  max-width: 1128px;
  margin: clamp(60px, 8.33vw, 120px) auto 0;
  padding: 0 clamp(16px, 5.42vw, 156px);
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 2.78vw, 40px);
  box-sizing: border-box;
}

/* Collaborations left column - Content area */
.collaborations-left {
  width: auto;
  max-width: 490px;
  flex: 0 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 44px;
  display: flex;
}

/* Collaborations right column - Image area */
.collaborations-right {
  flex: 1 1 auto;
  /* min-width: clamp(300px, 34.03vw, 490px); */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Collaborations image */
.collaborations-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Content wrapper */
.content-wrapper {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(24px, 2.5vw, 36px);
  display: flex;
}

/* Section heading container */
.section-heading {
  align-self: stretch;
}

/* Description wrapper */
.description-wrapper {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

/* Features list container */
.features-list {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

/* Feature item - Individual feature */
.feature-item {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: inline-flex;
}

/* Feature text */
.feature-text {
  flex: 1 1 0;
  color: #404040;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 600;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

/* CTA button wrapper */
.cta-button {
  padding: 15px clamp(16px, 1.67vw, 24px);
  background: #FDBE00;
  overflow: hidden;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  box-sizing: border-box;
}

/* Collaborations Section - Responsive */
@media (min-width: 768px) {
  .collaborations-section {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .collaborations-section {
    padding: 0;
  }
}

/* ============================================
   Trust Section
   ============================================ */

.trust-section {
  width: 100%;
  max-width: 1128px;
  margin: clamp(60px, 8.33vw, 120px) auto 0;
  padding: clamp(40px, 5.56vw, 80px) clamp(16px, 5.83vw, 84px);
  background: white;
  border-radius: clamp(16px, 1.94vw, 28px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 2.5vw, 36px);
  display: flex;
  box-sizing: border-box;
}

/* Trust Section - Inner wrapper */
.trust-wrapper {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  display: flex;
}

/* Trust Section - Heading container */
.trust-heading {
  width: 100%;
  max-width: 733px;
  text-align: center;
}

/* Trust Section - Heading primary text */
.trust-heading-primary {
  color: #171717;
  font-size: clamp(32px, 3.89vw, 56px);
  font-family: Circular Std;
  font-weight: 700;
  line-height: clamp(36px, 4.17vw, 60px);
  word-wrap: break-word;
}

/* Trust Section - Heading accent text */
.trust-heading-accent {
  color: #727272;
  font-size: clamp(32px, 3.89vw, 56px);
  font-family: Circular Std;
  font-weight: 700;
  line-height: clamp(36px, 4.17vw, 60px);
  word-wrap: break-word;
}

/* Trust Section - Features container */
.trust-features {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  gap: clamp(24px, 2.5vw, 36px);
}

/* Trust Section - Feature row */
.trust-row {
  align-self: stretch;
  min-height: auto;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.67vw, 24px);
}

/* Trust Section - Feature card */
.trust-card {
  flex: 1 1 0;
  align-self: stretch;
  padding: clamp(20px, 1.94vw, 28px) clamp(16px, 2.5vw, 36px);
  background: white;
  border-radius: clamp(12px, 1.11vw, 16px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(12px, 1.11vw, 16px);
  display: flex;
  box-sizing: border-box;
}

/* Trust Section - Feature card content wrapper */
.trust-card-content {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(6px, 0.56vw, 8px);
  display: flex;
}

/* Trust Section - Feature card title */
.trust-card-title {
  align-self: stretch;
  color: #171717;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 700;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

/* Trust Section - Feature card description */
.trust-card-desc {
  align-self: stretch;
  color: #404040;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 600;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

/* Trust Section - CTA button */
.trust-cta {
  width: 100%;
  max-width: clamp(160px, 13.33vw, 192px);
  min-height: 48px;
  padding: 6px clamp(12px, 1vw, 12px);
  background: #FDBE00;
  overflow: hidden;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  box-sizing: border-box;
}

/* Trust Section - Responsive Breakpoints */
@media (min-width: 768px) {
  /* Tablet: Cards display in rows */
  .trust-row {
    flex-direction: row;
    min-height: 232px;
    gap: clamp(20px, 2.22vw, 32px);
  }
}
@media (min-width: 1024px) {
  .trust-heading-primary,
  .trust-heading-accent {
    font-size: 56px;
    line-height: 60px;
  }
}

/* ============================================
   Join Section
   ============================================ */

.join-section {
  width: 100%;
  max-width: 1440px;
  margin: 20px auto 0;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 2.78vw, 40px);
  box-sizing: border-box;
}

.join-section-image {
  width: clamp(300px, 34.86vw, 502px);
  height: clamp(300px, 34.86vw, 502px);
  flex-shrink: 0;
  object-fit: contain;
}

.join-section-content {
  max-width: 490px;
  flex: 1 1 300px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(20px, 1.94vw, 28px);
  display: flex;
}

/* Join Section - Responsive */
@media (min-width: 768px) {
  .join-section {
    flex-wrap: nowrap;
  }

  .join-section { 
    margin: clamp(60px, 8.33vw, 120px) auto 0;
    justify-content: space-evenly;
  }
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works {
  width: 100%;
  max-width: 1128px;
  margin: clamp(60px, 8.33vw, 120px) auto 0;
  padding: 0 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 3.06vw, 44px);
  display: flex;
  box-sizing: border-box;
}

.how-it-works-header {
  align-self: stretch;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.67vw, 24px);
}

.how-it-works-title {
  text-align: center;
  color: #171717;
  font-size: 16px;
  font-family: Circular Std;
  font-weight: 700;
  line-height: 40px;
  word-wrap: break-word;
}

.how-it-works-description {
  width: 100%;
  max-width: clamp(300px, 31.25vw, 450px);
  color: #404040;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 600;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

.how-it-works-steps {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 28px;
  display: flex;
  flex-wrap: wrap;
}

.how-it-works-step {
  flex: 1 1 0;
  min-width: clamp(200px, 20.83vw, 250px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(12px, 1.11vw, 16px);
  display: flex;
}

.how-it-works-step img {
  width: 100%;
}

/* How It Works Section - Responsive */
@media (min-width: 768px) {
  .how-it-works-steps {
    flex-wrap: nowrap;
    gap: clamp(20px, 1.94vw, 28px);
  }
  .how-it-works-core {
    gap: clamp(48px, 5vw, 72px);
  }
}

.how-it-works-title {
  font-size: clamp(40px, 3.89vw, 56px);
  line-height: clamp(44px, 4.17vw, 60px);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  width: 100%;
  max-width: 1128px;
  margin: clamp(60px, 8.33vw, 120px) auto 0;
  padding: clamp(24px, 2.78vw, 40px);
  background: white;
  border-radius: clamp(24px, 2.5vw, 36px);
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(20px, 1.94vw, 28px);
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
}

.faq-section-content {
  flex: 1 1 0;
  min-width: clamp(250px, 26.04vw, 300px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(20px, 1.67vw, 24px);
  display: flex;
}

.faq-section-title {
  line-height: 100%;
  width: 100%;
  max-width: clamp(250px, 24.79vw, 356px);
  color: #171717;
  font-size: clamp(28px, 2.5vw, 36px);
  font-family: Circular Std;
  font-weight: 700;
  word-wrap: break-word;
}

.faq-section-text {
  color: #404040;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 600;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

.faq-section-link {
  color: #404040;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 600;
  text-decoration: underline;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

.faq-section-header {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.faq-questions {
  flex: 1 1 0;
  min-width: clamp(250px, 26.04vw, 300px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(20px, 1.94vw, 28px);
  display: flex;
}

.faq-item {
  align-self: stretch;
  border-radius: clamp(16px, 1.67vw, 24px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.faq-item-header {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.faq-item-content {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.faq-item-question {
  color: #171717;
  font-size: clamp(16px, 1.25vw, 18px);
  font-family: Quicksand;
  font-weight: 700;
  line-height: clamp(22px, 1.81vw, 26px);
  word-wrap: break-word;
}

.faq-item-toggle {
  align-self: stretch;
  border-radius: clamp(16px, 1.67vw, 24px);
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.faq-item-question-wrapper {
  width: 100%;
  max-width: clamp(600px, 62.5vw, 990px);
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.faq-item-entry {
  width: 100%;
}

.faq-item-entry img {
  transition: transform 0.3s ease;
}

.faq-item-entry.active img {
  transform: rotate(180deg);
}

/* FAQ badge - Positioned absolutely relative to parent */
.hc-s0101 {
  padding: 4px clamp(8px, 0.83vw, 12px);
  position: absolute;
  left: clamp(20px, 4.17vw, 60px);
  top: -17.60px;
  transform: rotate(-3deg);
  transform-origin: top left;
  background: #FEEA58;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.25);
  outline: 1px black solid;
  outline-offset: -1px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  box-sizing: border-box;
}

.hc-s0102 {
  text-align: center;
  color: #171717;
  font-size: 14px;
  font-family: Roboto Mono;
  font-weight: 500;
  line-height: 27px;
  word-wrap: break-word;
}

/* FAQ Section - Responsive */
@media (min-width: 768px) {
  .faq-section {
    flex-wrap: nowrap;
  }
}

/* ============================================
   CTA Section and Footer
   ============================================ */

/* CTA Section Wrapper - Base styles for mobile (320px) */
.cta-section-wrapper {
  width: 100%;
  margin: 30px auto 0;
  box-sizing: border-box;
  position: relative;
}

/* Top Section: Transparent Background for Hands Illustration */
.cta-top-section {
  width: 100%;
  background: transparent;
  padding: 30px 16px;
  box-sizing: border-box;
  height: 120px;
}

/* Hands Illustration - Overlapping both sections */
.cta-hands-image {
  width: 100%;
  max-width: 95%;
  height: auto;
  display: block;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

/* Middle Section: Yellow Background with CTA Content */
.cta-yellow-section {
  width: 100%;
  background: #FDBE00;
  padding: 50px 16px;
  padding-top: 20%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* Media Queries - Scaling up from mobile base (320px) */

/* Small Mobile to Mobile (374px and above) */
@media (min-width: 374px) {
  .cta-heading-primary,
  .cta-heading-accent {
    font-size: 28px !important;
    line-height: 32px !important;
  }
  
  .cta-description {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  
  .cta-button-wrapper {
    width: 160px !important;
    height: 44px !important;
    padding: 6px 12px !important;
  }
  
  .cta-button-text {
    font-size: 14px !important;
  }
  
  .footer-section {
    border-radius: 20px !important;
  }
  
  .footer-links-group-wrapper {
    flex-direction: row !important;
  }
  
  .footer-logo-text {
    font-size: 14px !important;
  }
  
  .footer-btn-text {
    font-size: 14px !important;
  }
  
  .footer-link-title {
    font-size: 13px !important;
  }
  
  .footer-link-item {
    font-size: 12px !important;
  }
}

/* Tablet (425px and above) */
@media (min-width: 424px) {
  .cta-section-wrapper {
    margin: 40px auto 0 !important;
  }
  
  .cta-top-section {
    height: 150px !important;
    padding: 40px 16px !important;
  }
      
  .cta-content-container {
    gap: 32px !important;
  }
  
  .cta-text-wrapper {
    gap: 20px !important;
  }
  
  .cta-heading-primary,
  .cta-heading-accent {
    font-size: 45px !important;
    line-height: 54px !important;
  }
  
  .cta-description {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  
  .footer-section {
    margin-top: 40px !important;
    padding: 40px 20px !important;
    border-radius: 20px !important;
  }
  
  .footer-container {
    gap: 32px !important;
  }
  
  .footer-brand-section {
    gap: 24px !important;
  }
   
  .footer-logo-text {
    font-size: 16px !important;
  }
  
  .footer-btn-join,
  .footer-btn-demo {
    height: 44px !important;
  }
  
  .footer-links-section {
    gap: 20px !important;
  }
  
  .footer-link-group {
    gap: 16px !important;
  }
  
  .footer-link-title {
    font-size: 14px !important;
  }
  
  .footer-link-item {
    font-size: 13px !important;
  }
}

/* Desktop (1025px and above) */
@media (min-width: 1024px) {
  .cta-top-section {
    height: 250px !important;
    padding: 80px 20px !important;
  }
  
  .cta-content-container {
    max-width: 600px;
    gap: 48px;
  }
  
  .cta-text-wrapper {
    gap: 24px;
  }
  
  .cta-heading-primary,
  .cta-heading-accent {
    font-size: 72px !important;
    line-height: 80px !important;
  }
  
  .cta-description {
    font-size: 17px !important;
    line-height: 24px !important;
    max-width: 400px !important;
  }
  
  .cta-button-wrapper {
    width: 180px;
    height: 48px;
    padding: 6px 12px;
  }
  
  .cta-button-text {
    font-size: 15px;
  }
  
  .footer-section {
    width: 80%;
    border-radius: 24px;
    margin-top: 80px;
    padding: 60px 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-container {
    max-width: 1128px;
  }
  
  .footer-logo-wrapper {
    gap: 6px;
  }
    
  .footer-logo-text {
    font-size: 18px;
  }
  
  .footer-link-list {
    gap: 16px;
  }

}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  .cta-section-wrapper {
    margin: 80px auto 0;
  }
  
  .cta-top-section {
    height: 250px;
    padding: 80px 20px;
  }
  
  .cta-hands-image {
    max-width: 75%;
    top: 10px;
  }
  
  .cta-yellow-section {
    padding: 120px 40px;
    padding-top: 250px;
  }
}

/* Extra Large Desktop (1440px and above) */
@media (min-width: 1440px) {
  .cta-heading-primary,
  .cta-heading-accent {
    font-size: 80px;
    line-height: 88px;
  }
  
  .cta-description {
    font-size: 18px;
    line-height: 26px;
  }
  
  .cta-button-text {
    font-size: 16px;
  }
  
  .footer-logo-text {
    font-size: 20px;
  }
  
  .footer-btn-text {
    font-size: 16px;
  }
  
  .footer-link-title {
    font-size: 16px;
  }
  
  .footer-link-item {
    font-size: 15px;
  }
}

.cta-content-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.cta-text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.cta-heading-wrapper {
  width: 100%;
  text-align: center;
}

.cta-heading-primary {
  color: #171717;
  font-size: 24px;
  font-family: Circular Std;
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
  display: block;
}

.cta-heading-accent {
  color: #FFFFFF;
  font-size: 24px;
  font-family: Circular Std;
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
  display: block;
}

.cta-description {
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: #404040;
  font-size: 13px;
  font-family: Quicksand;
  font-weight: 600;
  line-height: 18px;
  word-wrap: break-word;
  margin: 0 auto;
}

.cta-button-wrapper {
  width: 140px;
  height: 40px;
  padding: 6px 10px;
  background: linear-gradient(135deg, #FF6B35 0%, #F75B37 100%);
  border-radius: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}

.cta-button-text {
  color: white;
  font-size: 13px;
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
  white-space: nowrap;
}

/* Footer Section - Inside Yellow Background - Base styles for mobile */
.footer-section {
  width: 100%;
  background: white;
  border-radius: 16px;
  margin-top: 30px;
  padding: 30px 16px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.footer-logo-icon {
  width: 46px;
  height: 25px;
  display: block;
  flex-shrink: 0;
}

.footer-logo-text {
  color: #171717;
  font-size: 20px;
  font-family: Spline Sans;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.96px;
}

.footer-cta-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.footer-btn-join {
  width: 100%;
  height: 40px;
  padding: 6px 10px;
  background: #FDBE00;
  border-radius: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}

.footer-btn-demo {
  width: 100%;
  height: 40px;
  padding: 6px 10px;
  background: white;
  border: 1px solid #171717;
  border-radius: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.footer-btn-demo:hover {
  background-color: #FCF9F4;
}

.footer-btn-text {
  color: #171717;
  font-size: 13px;
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
  white-space: nowrap;
}

.footer-links-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links-group-wrapper {
  margin-bottom: 10%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50%;
  flex: 1;
  min-width: 0;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.footer-link-title {
  color: #262626;
  font-size: 12px;
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.footer-link-item {
  color: #27272A;
  font-size: 11px;
  font-family: Quicksand;
  font-weight: 600;
  word-wrap: break-word;
  white-space: nowrap;
  cursor: pointer;
}

.footer-link-item:hover {
  color: #171717;
  text-decoration: underline;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.footer-social-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

/* Footer Section - Responsive */
@media (min-width: 767px) {
  .cta-hands-image {
    top: 0 !important;
  }
  
  .cta-description {
    max-width: 400px !important;
  }
  
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-brand-section {
    flex: 0 0 auto;
    min-width: 200px;
    width: 50% !important;
  }
  
  .footer-links-section {
    flex: 1 1 auto;
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 54px !important;
    flex-wrap: nowrap;
  }
  
  .footer-links-group-wrapper {
    display: flex;
    flex-direction: row;
    gap: 54px;
    margin-bottom: 0;
  }

  .footer-cta-buttons {
    flex-direction: column !important;
    padding: 0 !important;
    width: fit-content !important;
  }
}

.hc-s0107 {
  color: #27272A;
  font-size: clamp(18px, 1.58vw, 22.74px);
  font-family: Spline Sans;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(0.98px, 0.09vw, 1.36px);
  word-wrap: break-word;
}

.hc-s0108 {
  align-self: stretch;
  height: 48px;
  padding: 6px clamp(12px, 1vw, 12px);
  background: #FDBE00;
  overflow: hidden;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  box-sizing: border-box;
}

.hc-s0109 {
  align-self: stretch;
  height: 48px;
  padding: 6px clamp(12px, 1vw, 12px);
  background: #FCF9F4;
  overflow: hidden;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  box-sizing: border-box;
}

.hc-s0110 {
  justify-content: center;
  align-items: flex-start;
  gap: clamp(36px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
}

.hc-s0111 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: flex;
}

.hc-s0112 {
  color: #262626;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
}

.hc-s0113 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.hc-s0114 {
  color: #262626;
  font-size: clamp(13px, 1.04vw, 15px);
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
}

.hc-s0115 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.hc-s0116 {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

/* hc-s0103 Section - Responsive */
@media (min-width: 768px) {
  .hc-s0104 {
    flex-wrap: nowrap;
  }
  
  .hc-s0110 {
    flex-wrap: nowrap;
  }
}

/* ============================================
   Shared Utilities and Legacy Classes
   ============================================ */

/* Icon wrapper - Generic wrapper for icons */
.icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Icon wrapper - Ensure images are properly sized */
.icon-wrapper img {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

/* Legacy class name - maintained for backward compatibility */
.hc-s0024 {
  position: relative;
}

/* Legacy class names - maintained for backward compatibility */
.cta-text {
  color: #171717;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 700;
  word-wrap: break-word;
}

.hc-s0031 {
  color: #27272A;
  font-size: clamp(13px, 1.04vw, 15px);
  font-family: Quicksand;
  font-weight: 600;
  word-wrap: break-word;
  white-space: nowrap;
}

.how-it-works-core {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  display: flex;
}

.heading-text {
  color: #171717;
  font-size: 28px;
  font-family: Circular Std;
  font-weight: 700;
  line-height: 40px;
  word-wrap: break-word;
}

.heading-highlight {
  color: #727272;
  font-size: 28px;
  font-family: Circular Std;
  font-weight: 700;
  line-height: 40px;
  word-wrap: break-word;
}

.step-text {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.step-title {
  align-self: stretch;
  color: #171717;
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: Quicksand;
  font-weight: 700;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

.section-description {
  align-self: stretch;
  color: #404040;
  font-size: 12px;
  font-family: Quicksand;
  font-weight: 600;
  line-height: clamp(20px, 1.67vw, 24px);
  word-wrap: break-word;
}

.cta-wrapper {
  width: 145px;
  height: 40px;
  padding: 6px clamp(12px, 1vw, 12px);
  background: #FDBE00;
  overflow: hidden;
  border-radius: 52px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  box-sizing: border-box;
}

@media (min-width: 375px) {
  .heading-text,
  .heading-highlight {
    font-size: 34px;
  }
  .section-description {
    font-size: 14px;
  }
}
@media (min-width: 425px) {
  .heading-text,
  .heading-highlight {
    font-size: 36px;
  }
  .section-description {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .cta-wrapper {
    width: clamp(160px, 13.33vw, 192px);
    height: 48px;
  }
}
@media (min-width: 1024px) {
  .heading-text,
  .heading-highlight {
    font-size: 56px;
    line-height: 60px;
  }
  .section-description,
  .cta-text {
    font-size: 16px;
  }
  .feature-text {
    font-size: 16px;
    line-height: 24px;
  }
}

.hide {
  display: none !important;
}