* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --fs-h1: 43.78px;
  --fs-h2: 35.81px;
  --fs-h3: 29.18px;
  --fs-h4: 23.65px;
  --fs-h5: 19.04px;
  --fs-h6: 15.2px;
  --fs-p: 16px;
  --fs-small: 13.33px;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

p {
  font-size: var(--fs-p);
}

small {
  font-size: var(--fs-small);
}

body {
  font-family: "Public Sans", sans-serif;
  color: #141414;
  background: #30184A;
  line-height: 1.5;
  font-size: var(--fs-p);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.home-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* Let clicks pass through outside the row */
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(40, 30, 40, 0.4);
  border-radius: 999px;
  padding: 12px 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  color: #fff;
  transition: all 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  max-width: 1120px;
  width: 92vw;
  pointer-events: auto;
}

.home-header.scrolled .header-row:not(:hover) {
  max-width: 160px;
  gap: 0;
  padding: 12px 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Navigation removed */

.home-header.scrolled .header-row:not(:hover) .brand-slogan {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
  transition: all 0.3s ease;
}

.home-header.scrolled .header-row:not(:hover) .brand-logo {
  margin: 0 auto;
  flex: 1;
  text-align: center;
}

@media (max-width: 768px) {
  /* Mobile nav hide removed */

  .header-row {
    justify-content: center;
  }

  .brand-logo {
    display: none;
  }

  .brand-slogan {
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  /* Scrolled state for mobile */
  .home-header.scrolled .header-row:not(:hover) .brand-logo {
    display: block;
    margin: 0 auto;
    flex: 1;
    text-align: center;
  }

  .home-header.scrolled .header-row:not(:hover) .brand-slogan {
    display: none;
  }

  .header-row .pill {
    display: flex !important;
    padding: 6px 14px;
    font-size: 13px;
    width: auto;
    height: 32px;
  }
}

/* Mobile Chip Positioning */
@media (max-width: 768px) {
  .why-chip {
    font-size: 16px;
    /* Slightly smaller to fit better on small screens */
    line-height: 20px;
    padding: 8px 16px;
    height: 36px;
  }

  .chip-left {
    left: -15px !important;
    top: auto !important;
    bottom: 60px;
    /* Position relative to bottom of frame */
  }

  .chip-right {
    right: -15px !important;
    left: auto !important;
    top: 60% !important;
    /* Position relative to frame height */
  }
}

.pill {
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  background: #C9AFE6;
  color: #30184A;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  /* Semibold */
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-row .pill {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: 147px;
  height: 32px;
  background: #C9AFE6;
  border-radius: 999px;
  font-family: 'Public Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.5px;
  color: #30184A;
  border: none;
  cursor: pointer;
}

/* Pill scroll logic removed as it's no longer in header */

main {
  padding-top: 0;
}

.hero-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(48, 24, 74, 0.4) 0%,
      rgba(48, 24, 74, 0.2) 50%,
      rgba(48, 24, 74, 0.5) 100%);
  z-index: 2;
}

.control-btn-group {
  display: flex;
  gap: 12px;
}

.video-control-btn {
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  color: #30184A;
}

.video-control-btn:hover {
  transform: scale(1.1);
}

.language-toggle {
  background: #FFFFFF;
  border-radius: 999px;
  padding: 6px;
  display: flex;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-video-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .hero-video-controls {
    bottom: 20px;
    /* Aligned with WhatsApp icon height */
    transform: translateX(-50%) scale(0.9);
  }
}

.hero-intro-section {
  background: #30184A;
  padding: 120px 0;
  text-align: center;
  color: #FFFFFF;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-intro-section {
    padding: 80px 20px;
    min-height: auto;
  }
}

.hero-intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
}

.hero-intro-section h1 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-intro-section h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
}

.hero-intro-section p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: var(--fs-h4);
  line-height: 1.4;
  color: #F7EEFF;
  max-width: 850px;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-intro-section p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.situation-light-section {
  background: #FFFFFF;
  padding: 120px 0;
  text-align: center;
  color: #30184A;
}

@media (max-width: 768px) {
  .situation-light-section {
    padding: 80px 20px;
  }
}

.situation-light-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.situation-light-section h2 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 0;
}

@media (max-width: 768px) {
  .situation-light-section h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
}

.situation-light-section p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: var(--fs-h4);
  line-height: 1.4;
  max-width: 850px;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .situation-light-section p {
    font-size: 14px;
  }
}

.check-eligibility-btn {
  margin-top: 10px;
  padding: 18px 48px !important;
  font-size: 16px !important;
}

@media (max-width: 768px) {
  .check-eligibility-btn {
    width: 100%;
    padding: 16px 32px !important;
  }
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 24px;
  border-radius: 999px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #30184A;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: #30184A;
  color: #FFFFFF;
}

.toggle-btn:hover:not(.active) {
  background: rgba(59, 19, 71, 0.05);
}

.card-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.card-sub {
  color: #666;
  font-size: 0.9rem;
}

.chips {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.chips span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.chips span::after {
  content: "✓";
  font-weight: bold;
}

.icon {
  font-size: 2rem;
  margin-bottom: 12px;
  background: #000;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.progress {
  height: 6px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0;
}

.progress span {
  display: block;
  height: 100%;
  width: 40%;
  background: #4b39d5;
}




.help-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 97px 0px;
  gap: 24px;
  background: #F7EEFF;
  position: relative;
  min-height: 724px;
}

.help-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1439px;
}

.help-header h2 {
  width: min(905px, 90vw);
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 59.3141px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -1.88722px;
  color: #30184A;
  margin: 0;
}

@media (max-width: 768px) {
  .help-header h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }
}

.help-cards-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  height: 251.66px;
}

@media (max-width: 1024px) {
  .help-cards-grid {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding: 20px;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: auto;
  }

  .help-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .help-card {
    scroll-snap-align: center;
    flex: 0 0 300px;
    width: 300px;
    height: auto;
    min-height: 250px;
  }
}



.help-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  gap: 16px;
  width: 328.87px;
  height: 251.66px;
  background: #30184A;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(48, 24, 74, 0.15);
  flex: none;
}



.help-card h3 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0;
  align-self: stretch;
}

.help-card p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #F7EEFF;
  opacity: 0.9;
  margin: 0;
  align-self: stretch;
}

/* Dots Styling */
.help-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
}

.help-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(48, 24, 74, 0.2);
  transition: all 0.3s ease;
}

.help-dot.active {
  background: #30184A;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .help-dots {
    display: flex;
  }
}

.help-footer {
  margin-top: 0;
}

.help-footer .pill {
  width: 202px;
  height: 56px;
  background: #C9AFE6;
  border-radius: 999px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.4px;
  color: #30184A;
  border: none;
  cursor: pointer;
}

/* Growth Section Styles */
.growth-section {
  background: #FFFFFF;
  padding: 60px 0 30px;
  color: #30184A;
}

.growth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.growth-header {
  text-align: center;
  max-width: 850px;
}

.growth-header h2 {
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.growth-header p {
  font-size: var(--fs-h4);
  opacity: 0.8;
  line-height: 1.4;
}

.growth-container {
  max-width: 1050px;
  margin: 0 auto;
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 32px;
  font-weight: 700;
  color: #30184A;
  margin-bottom: 30px;
  line-height: normal;
  text-align: center;
}

.growth-amount-text {
  display: inline-block;
  padding: 4px 12px;
  background: #EEDDFF;
  border-radius: 8px;
  color: #522D8C;
  font-weight: 800;
  margin-left: 4px;
}

.title-select-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  background: #F7EEFF;
  border-radius: 12px;
  padding: 4px 12px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.title-select-wrapper:hover {
  background: #EEDDFF;
  border-color: #30184A;
}

.title-select {
  appearance: none;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 28px;
  font-weight: 800;
  color: #30184A;
  cursor: pointer;
  padding-right: 32px;
  outline: none;
  line-height: 1;
}

.select-icon {
  position: absolute;
  right: 8px;
  pointer-events: none;
  color: #30184A;
  font-size: 24px;
}

/* chart-top h3 removed and replaced by .chart-title */

.chart-content {
  display: flex;
  gap: 30px;
  height: 350px;
  position: relative;
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 40px;
  color: #7B6B8D;
  font-size: 14px;
  font-weight: 600;
}

.chart-visual {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.chart-visual svg {
  width: 100%;
  height: 300px;
  overflow: visible;
}

.chart-visual path {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-x-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: #7B6B8D;
  font-size: 14px;
  font-weight: 600;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 30px 0 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(48, 24, 74, 0.05);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legend-item .dot {
  width: 24px;
  height: 6px;
  border-radius: 3px;
}

.dot.gold {
  background: #FFC107;
}

.dot.fd {
  background: #26C2B4;
}

.legend-item p {
  font-size: 15px;
  font-weight: 600;
  color: #30184A;
}

.chart-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.chart-controls p {
  font-size: 15px;
  font-weight: 600;
  color: #7B6B8D;
}

.time-btn-group {
  display: flex;
  gap: 16px;
}

.time-btn {
  padding: 14px 40px;
  border-radius: 16px;
  border: none;
  background: #E5D1FA;
  color: #30184A;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.time-btn.active {
  background: #00BFA5;
  color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(0, 191, 165, 0.2);
}

.time-btn:hover:not(.active) {
  background: #D0BCFF;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .growth-section {
    padding: 40px 20px;
  }

  .chart-y-axis {
    display: none;
  }

  .chart-legend {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .time-btn-group {
    width: 100%;
  }

  .time-btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 14px;
  }

  .chart-title {
    font-size: 20px;
    gap: 8px;
    margin-bottom: 30px;
  }

  .title-select {
    font-size: 18px;
    padding-right: 24px;
  }

  .select-icon {
    font-size: 20px;
    right: 4px;
  }

  .chart-legend {
    margin: 30px 0;
    padding-top: 20px;
  }

  .growth-header h2 {
    font-size: 28px;
  }
}

.why-strike {
  height: 883px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .why-strike {
    height: auto;
    padding: 60px 0;
  }
}

.why-container {
  display: flex;
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }
}

.why-panel-left {
  flex: 1;
  background: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

@media (max-width: 768px) {
  .why-panel-left {
    padding-top: 0;
    justify-content: center;
    min-height: calc(100vh - 100px);
    /* Ensure it fits well within viewport */
    padding: 40px 0;
  }
}

.why-panel-right {
  flex: 1;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  /* Ensure vertical flow */
  align-items: center;
  justify-content: flex-start;
  /* Aligned to top */
  padding-top: 120px;
  /* Fixed eye-line padding */
}

@media (max-width: 768px) {
  .why-panel-right {
    padding: 60px 20px;
  }
}

.why-left-content {
  position: absolute;
  left: 144px;
  top: 50%;
  transform: translateY(-50%);
  width: 433.03px;
  height: 651.44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 0;
}

@media (max-width: 768px) {
  .why-left-content {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 40px auto;
    width: 337.89px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

.why-left-content h2 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  text-align: center;
  letter-spacing: -0.96px;
  color: #30184A;
  margin: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .why-left-content h2 {
    font-size: 32px;
    line-height: 48px;
    width: 337.89px;
    height: 48px;
    padding: 0;
  }
}

.why-visual-frame {
  position: relative;
  width: 433.03px;
  height: 603.44px;
}

@media (max-width: 768px) {
  .why-visual-frame {
    width: 337.89px;
    height: 470.86px;
  }
}

.why-main-image {
  width: 100%;
  height: 100%;
  border-radius: 22.18px;
  object-fit: cover;
}

.why-chip {
  position: absolute;
  background: #FFFFFF;
  border-radius: 8px;
  color: #522D8C;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  z-index: 10;
  height: 40px;
  white-space: nowrap;
  width: max-content;
}



.why-chip.changing {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  filter: blur(4px);
}

.chip-left {
  top: 562.85px;
  /* Adjusting to fit within frame with image at 48px offset */
  left: -63px;
}

.chip-right {
  top: 469.85px;
  left: 256px;
}

.eligibility-container {
  width: 467px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

@media (max-width: 768px) {
  .eligibility-container {
    width: 90vw;
    gap: 30px;
  }
}

.form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.form-header h3 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: normal;
  letter-spacing: -0.02em;
  color: #30184A;
  margin: 0;
}

@media (max-width: 768px) {
  .form-header h3 {
    font-size: 28px;
    line-height: 1.2;
  }
}

.form-header p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin: 0;
}

@media (max-width: 768px) {
  .form-header p {
    font-size: 16px;
    line-height: 1.4;
  }
}

.eligibility-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 30px;
  animation: fadeIn 0.4s ease;
}

.form-step.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-counter {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #30184A;
  margin-top: 12px;
  background: #F7EEFF;
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group input,
.input-group select {
  width: 100%;
  height: 68px;
  background: #F7EEFF;
  border-radius: 4px;
  border: none;
  padding: 0 24px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #30184A;
  outline: none;
  appearance: none;
  /* For select custom styling */
}

.input-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2330184A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 16px;
}

.location-row {
  display: flex;
  gap: 12px;
}

.location-row select {
  flex: 1;
}

@media (max-width: 768px) {
  .location-row {
    flex-direction: column;
    gap: 10px;
  }
}

.input-group input::placeholder {
  color: #30184A;
  opacity: 1;
}

.phone-group {
  display: flex;
  background: #F7EEFF;
  border-radius: 4px;
  padding-right: 8px;
  align-items: center;
}

.phone-group input {
  flex: 1;
  background: transparent !important;
}

.get-otp-btn {
  height: 52px;
  padding: 0 20px;
  background: #30184A;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.get-otp-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .get-otp-btn {
    height: 56px;
    width: 100px;
    font-size: 12px;
  }
}

.otp-group.hidden {
  display: none;
}



/* Offer Result Screen Styles */
.offer-modal-content {
  max-width: 550px;
  /* Slightly narrower for a focused look */
}

.offer-result-content {
  text-align: center;
  padding: 10px 0;
  animation: fadeInDown 0.6s ease;
}

.success-icon {
  color: #4CAF50;
  margin-bottom: 10px;
}

.offer-title {
  color: #30184A;
  font-size: 28px;
  margin-bottom: 8px;
}

.offer-breakdown {
  text-align: left;
  margin: 24px 0;
  padding: 20px;
  background: #F9F5FF;
  border-radius: 12px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(48, 24, 74, 0.1);
  font-size: 15px;
  color: #30184A;
}

.breakdown-item:last-child {
  border-bottom: none;
}

.breakdown-item .label {
  font-weight: 500;
}

.breakdown-item .value {
  font-weight: 700;
}

.settlement-box {
  border: 2px solid #30184A;
  border-radius: 16px;
  padding: 24px;
  margin: 30px 0;
  background: #fff;
  box-shadow: 0 10px 20px rgba(48, 24, 74, 0.05);
}

.settlement-label {
  font-size: 14px;
  font-weight: 600;
  color: #30184A;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.settlement-value {
  font-size: 36px;
  font-weight: 800;
  color: #30184A;
}

.bank-disclaimer {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-top: 15px;
  line-height: 1.5;
}

.next-steps {
  margin-top: 30px;
}

.next-steps p {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

.whatsapp-cta {
  background: #25D366 !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  width: auto !important;
  padding: 16px 32px !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
  background: #128C7E !important;
  transform: translateY(-2px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

.cta-row .pill {
  flex: 1;
  max-width: 200px;
  height: 60px;
}

.pill.secondary {
  background: #F7EEFF;
  border: 1px solid #30184A;
}

.gold-rate-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.gold-rate-group label {
  font-size: 14px;
  font-weight: 600;
  color: #30184A;
  margin-left: 2px;
}

.terms-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.terms-row input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background: #F7EEFF;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #30184A;
  flex-shrink: 0;
}

.terms-row label {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #30184A;
  text-align: left;
}

.terms-row label a {
  color: #30184A;
  text-decoration: underline;
  font-weight: 600;
}

.check-btn {
  width: 204px;
  height: 68px;
  background: #C9AFE6 !important;
  color: #30184A !important;
  font-weight: 600;
  /* semibold */
  font-size: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .check-btn {
    width: 100%;
    height: 56px;
    font-size: 14px;
  }
}

.peach-block {
  background: #f8efe9;
  padding: 70px 0;
  text-align: center;
}

.steps-section {
  background: #F7EEFF;
  height: 300vh;
  /* Scroll space for stacking */
  position: relative;
}

.steps-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.steps-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.steps-header h2 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h1);
  letter-spacing: -1.2px;
  color: #30184A;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .steps-header h2 {
    font-size: 28px;
    letter-spacing: -1px;
    padding: 0 20px;
  }
}

.steps-header p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #30184A;
}

.cards-stack-container {
  position: relative;
  width: 453px;
  height: 333px;
  /* Updated to match new card dimensions */
}

@media (max-width: 768px) {
  .cards-stack-container {
    width: 90vw;
    height: 380px;
  }
}

.step-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 453px;
  height: 333.21px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  /* Gap between badge, heading, and text */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.1s linear;
}

@media (max-width: 768px) {
  .step-card {
    width: 100%;
    height: 100%;
    padding: 24px;
  }
}

/* Card Badge */
.step-badge {
  width: 73.21px;
  height: 73.21px;
  background: #30184A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #FFFFFF;
  flex: none;
}

.step-card h3 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  letter-spacing: -1.88722px;
  color: #4E123F;
  margin: 0;
}

@media (max-width: 768px) {
  .step-card h3 {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
}

.step-card p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4E123F;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .step-card p {
    font-size: 16px;
  }
}

/* Initial States for stacking:
   Card 1 is visible.
   2, 3, 4 are offset below view.
   JS will handle the stacking.
*/
.card-2,
.card-3,
.card-4 {
  transform: translateY(150vh);
  /* Start off-screen */
}

.tile {
  height: 120px;
  border-radius: 16px;
}

.tile.orange {
  background: #ff6b4a;
}

.tile.yellow {
  background: #ffbe2e;
}

.tile.green {
  background: #17c964;
}

.tile.teal {
  background: #0bb7a5;
}

.mint-hero {
  background: #c7ffd7;
  padding: 80px 0;
  text-align: center;
}

.card-stack {
  margin-top: 24px;
  background: #12c35a;
  padding: 26px;
  border-radius: 22px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.card-stack img {
  border-radius: 16px;
  margin-bottom: 14px;
}

.stack-metrics {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-weight: 700;
}

.steps {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #666;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.step-grid article {
  background: #f1f1f5;
  padding: 20px;
  border-radius: 16px;
}

.contact {
  background: #f6ee8b;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-illustration {
  background: #f1e176;
  border-radius: 20px;
  display: grid;
  place-items: center;
  min-height: 240px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 120px;
}

.works {
  background: #bcc5e4;
  padding: 80px 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.works-grid article {
  background: #4966ad;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.works-grid img {
  border-radius: 12px;
  margin-top: 12px;
}

.faq-section {
  background: #F7EEFF;
  padding: 100px 0;
  min-height: 883px;
  display: flex;
  align-items: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.faq-container h2 {
  max-width: 616.36px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: normal;
  text-align: center;
  letter-spacing: -1.2px;
  color: #30184A;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-container h2 {
    font-size: 36px;
    letter-spacing: -1px;
    padding: 0 20px;
  }
}

.faq-list {
  width: 100%;
  max-width: 1281px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-section details {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px;
  /* Uniform padding for top, bottom, and sides */
  width: 100%;
  transition: all 0.3s ease;
}

.faq-section summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary h3 {
  margin: 0;
  width: 712px;
  min-height: auto;
  display: flex;
  align-items: center;
  font-family: 'Public Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(var(--fs-h3) - 4px);
  line-height: 1.2;
  color: #000000;
  text-align: left;
}

@media (max-width: 768px) {
  .faq-section summary h3 {
    width: auto;
    height: auto;
    font-size: 18px;
    line-height: 1.4;
  }
}

.faq-icon {
  color: #30184A;
  transition: transform 0.3s ease;
  font-size: 32px;
  user-select: none;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-top: 16px;
  max-width: 1062px;
}

.faq-answer p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: var(--fs-p);
  line-height: 140%;
  color: #30184A;
  margin: 0;
  text-align: left;
}

.faq-hidden {
  display: none;
}

.faq-load-more {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.faq-cta {
  background: #FFFFFF !important;
  color: #30184A !important;
  width: auto;
  min-width: 221px;
  min-height: 60px;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 600;
  /* Semibold */
  letter-spacing: -0.02em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #30184A;
  /* Brand dark purple */
  padding: 80px 0 60px;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -1.5px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
}

.social-icons img {
  width: 100%;
  height: 100%;
  filter: invert(1);
  /* Make icons white */
}

.footer-links-grid {
  display: flex;
  gap: 100px;
}

@media (max-width: 768px) {
  .footer-links-grid {
    gap: 40px;
    flex-wrap: wrap;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h4 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #C9AFE6;
  /* Lavender accent */
  margin-bottom: 8px;
}

.footer-column a {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  color: #F7EEFF;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  opacity: 0.7;
}

.footer-column a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.company-name {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0;
  opacity: 0.9;
}

.copyright {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  color: #F7EEFF;
  margin: 0;
  opacity: 0.5;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
}

.whatsapp-message {
  background: #FFFFFF;
  color: #30184A;
  padding: 12px 16px 12px 20px;
  border-radius: 999px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-message.hidden {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.whatsapp-close {
  background: transparent;
  border: none;
  color: #30184A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 50%;
  transition: background 0.2s ease;
  pointer-events: auto;
  /* Ensure close button is clickable */
}

.whatsapp-close:hover {
  background: rgba(48, 24, 74, 0.1);
}

.whatsapp-close .material-symbols-outlined {
  font-size: 18px;
}

.whatsapp-icon-circle {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-message {
    display: none;
    /* Hide message on mobile for cleaner look */
  }

  .whatsapp-icon-circle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .header-row {
    padding: 10px 20px;
    width: 95vw;
    gap: 10px;
    justify-content: space-between;
  }

  .brand {
    font-size: 1rem;
  }

  .header-row .pill {
    width: 120px;
    height: 32px;
    font-size: 12px;
    padding: 4px 10px;
  }

  .hero-video-container {
    padding: 0 10px 20px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .language-toggle {
    padding: 4px;
    gap: 2px;
  }

  .toggle-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
}

.terms-modal-content {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.scrollable-terms {
  flex: 1;
  overflow-y: scroll;
  /* Force vertical scrollbar */
  padding-right: 15px;
  margin-bottom: 0;
}

/* Custom Scrollbar for Terms */
.scrollable-terms::-webkit-scrollbar {
  width: 6px;
}

.scrollable-terms::-webkit-scrollbar-track {
  background: #F7EEFF;
  border-radius: 10px;
}

.scrollable-terms::-webkit-scrollbar-thumb {
  background: #30184A;
  border-radius: 10px;
}

.terms-spacer {
  height: 20px;
  /* Reduced from 50px */
}

.modal-footer-sticky {
  padding: 24px 0;
  margin-top: 20px;
  border-top: 1px solid #F7EEFF;
  display: flex;
  justify-content: center;
  background: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.agree-btn {
  width: 200px;
  height: 56px;
  background: #30184A !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.agree-btn:disabled {
  background: #ccc !important;
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .header-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .pill {
    margin-left: 0;
  }

  .float-card {
    position: static;
    margin: 12px auto 0;
  }

  .hero-image {
    gap: 12px;
  }

  .tile-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #30184A;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.preloader.fade-out {
  transform: translateY(-100%);
}

.preloader-content {
  position: relative;
  display: flex;
  align-items: center;
}

.typing-text {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 76px;
  color: #FFFFFF;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
}

.typing-text::after {
  content: '';
  position: absolute;
  left: 0;
  top: 55%;
  width: 0;
  height: 8px;
  background: #FFFFFF;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.typing-text.striked::after {
  width: 100%;
}

@media (max-width: 768px) {
  .typing-text {
    font-size: 44px;
  }

  .typing-text::after {
    height: 4px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #FFFFFF;
  margin: 5% auto;
  padding: 30px 40px 20px;
  /* Reduced bottom padding */
  border-radius: 24px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-body {
  color: #30184A;
  line-height: 1.6;
}

.modal-body h2 {
  color: #30184A;
  margin-top: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #F7EEFF;
  padding-bottom: 12px;
}

.modal-body h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #30184A;
  font-size: 1.2rem;
}

.modal-body ul {
  padding-left: 20px;
  margin: 16px 0;
}

.modal-body li {
  margin-bottom: 8px;
}

.close-modal {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 32px;
  font-weight: bold;
  color: #30184A;
  cursor: pointer;
  transition: opacity 0.2s;
  line-height: 1;
}

.close-modal:hover {
  opacity: 0.7;
}

@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Button Loading Spinner */
.btn-loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(48, 24, 74, 0.3);
  border-radius: 50%;
  border-top-color: #30184A;
  animation: btn-spin 0.8s linear infinite;
  display: inline-block;
}

.pill.loading {
  pointer-events: none;
  opacity: 0.8;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}