body {
  margin: 0;
  padding: 0;
  word-break: break-word;
  font-family: "Inter Tight", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", serif;
}

* {
  /* width */
  &::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
  }

  /* Track */
  &::-webkit-scrollbar-track {
    border-radius: 8px;
  }

  /* Handle */
  &::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
  }
}

/* Common heading start */
.common-heading {
  text-align: center;
  margin-bottom: 50px;
}
.common-heading h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}
.common-heading p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #000000;
  font-family: "Inter Tight", sans-serif;
}
/* Common heading end */
/* Common button styele start */
.common-btn-container {
  position: relative;
  display: inline-block;
}
.common-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 5px 5px 20px;
  /* padding-right: 0; */
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  overflow: visible;
  text-decoration: none;
  transition: all 0.4s ease;
  gap: 0;
  width: calc(100% - 20px);
  white-space: nowrap;
  transition: all 0.3s ease;
  gap: 10px;
}

.icon-circle {
  width: 35px;
  height: 35px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translate(0, 0px);
  min-width: 35px;
  rotate: -30deg;
}
.icon-circle.not-rotate {
  rotate: 0deg;
}

.common-btn:hover {
  width: 100%;
  background-color: #000;
  border-color: #fff;
  color: #fff;
}

.common-btn:active {
  opacity: 0.5;
}

.common-btn:hover .icon-circle {
  transform: translate(0, 0px);
  rotate: 0deg;
  transition: all 0.3s ease;
}

.arrow-icon {
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
}
/* Common button styele end */

/* Hero Section */
/* Navigation */
.navbar {
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  padding: 20px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 15px;
  background: #fff;
}

.hero-section .inner-section {
  background: url(../img/home-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 95px;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.navbar-brand .logo {
  height: 35px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand .logo {
  height: 30px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1002;
  transition: right 0.3s ease;
  padding: 30px;
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.sidebar-logo {
  height: 30px;
  width: auto;
}

.close-sidebar {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.close-sidebar:hover {
  color: #00b4ff;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  color: #00d4ff;
  padding-left: 10px;
}

.btn-signup-mobile {
  background: #00b4ff;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  margin-top: 40px;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}
.nav-link:active {
  color: #00b4ff;
}

.btn-signup {
  background: #00b4ff;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Inter Tight";
}

.btn-signup:hover {
  background: #00bfe6;
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 50px 50px 80px;
}

.hero-text {
  color: #ffffff;
}

/* Commission Badge */
.commission-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 18px;
}

.unlock-text,
.commission-text {
  color: #ffffff;
  font-weight: 400;
}

.percentage {
  color: #00d4ff;
  font-weight: 700;
  font-size: 20px;
}

/* Hero Title */
.hero-title {
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #ffffff;
  font-family: "DM Serif Display", serif;
}

/* Hero Description */
.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
}

/* Hero Phone Image */
.hero-phone-image {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -50%;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Fade In Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Inspire Balance Section */
.inspire-section {
  padding: 15px 0 80px 0;
  background: #ffffff;
}

.inspire-video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 540px;
}

.inspire-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.inspire-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.inspire-description {
  font-size: 16px;
  line-height: 1.6;
  color: #999999;
  margin-bottom: 40px;
  font-weight: 400;
}
.inspire-section .inspire-content .common-btn-container .common-btn {
  border-color: #000;
  color: #000;
}
.inspire-section .inspire-content .common-btn-container .common-btn:hover {
  background: transparent;
}
.inspire-section
  .inspire-content
  .common-btn-container
  .common-btn:hover
  .icon-circle {
  rotate: 0deg;
}
.inspire-section
  .inspire-content
  .common-btn-container
  .common-btn
  .icon-circle {
  background: #000;
}

/* Affiliate Program Section */
.affiliate-program-container {
  margin-top: 90px;
}

.affiliate-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  background: url("../img/affiliate-program-image.png") center center/cover
    no-repeat;
  height: 100%;
}

.affiliate-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  display: none;
}

.affiliate-overlay-content {
  width: 100%;
  padding: 40px;
  padding-bottom: 80px;
}

.affiliate-overlay-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 40px;
  color: #ffffff;
  font-family: "DM Serif Display", serif;
  text-align: left;
}

.affiliate-features {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-right: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 40px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 4px;
}

.feature-icon-gray {
  border: 1px solid #c4d2f0;
  background: #e5ecff;
}

.feature-icon-green {
  border: 1px solid #c4f0c9;
  background: #e5ffe7;
}

.feature-icon-yellow {
  border: 1px solid #f0dfc4;
  background: #fff1e5;
}

.feature-icon-purple {
  border: 1px solid #f0c4eb;
  background: #f6e5ff;
}

.feature-emoji {
  font-size: 32px;
  line-height: 1;
}

.feature-title {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
  font-weight: 400;
}

/* Stats Section */
.stats-section {
  padding: 65px 0px;
  background: #ffffff;
}

.stat-card {
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;

  border-radius: 30px;
  border: 1px solid #e6edf0;
  background: #fff;
  /* min-height: 320px; */
}

.stat-card:hover {
  border: 1px solid #08b6ff;
  background: #e7f8ff;
}

.stat-icon {
  /* position: absolute;
    top: 40px;
    right: 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.stat-icon svg {
  width: 38px;
  height: 38px;
}

.stat-number {
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: auto;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.stat-description {
  font-size: 18px;
  line-height: 1.4;
  color: #999;
  margin: 0;
  font-weight: 400;
}

.stats-section .row {
  gap: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stat-number {
    font-size: 42px;
  }
  .hero-description br,
  .hero-description br {
    display: none;
  }
  .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .commission-badge,
  .percentage,
  .commission-text {
    font-size: 16px;
  }
  .hero-phone-image {
    margin-top: 40px;
    max-width: 500px;
    margin-bottom: -40%;
  }
  .hero-text {
    margin-top: 30px;
  }
  .navbar.scrolled {
    padding: 15px 30px;
  }

  .hero-section .inner-section {
    padding-top: 80px;
  }

  .hero-content {
    padding: 30px 30px 60px;
  }

  /* Show hamburger menu on tablet */
  .hamburger-menu {
    display: flex;
  }

  .navbar-menu {
    display: none;
  }

  /* Inspire Section */

  .affiliate-program-container {
    margin-top: 50px;
    padding-bottom: 0px;
  }

  .inspire-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .inspire-title br {
    display: none;
  }
  .affiliate-features-cards {
    margin-top: 30px;
  }

  .inspire-video-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 16px;
  }

  .commission-badge {
    font-size: 16px;
  }

  .percentage {
    font-size: 18px;
  }

  .hero-phone-image {
    margin-top: 30px;
    max-width: 400px;
    margin-bottom: -35%;
  }

  .navbar {
    padding: 40px 40px;
  }

  .navbar.scrolled {
    padding: 14px 25px;
  }

  .hero-section .inner-section {
    padding-top: 75px;
  }

  .hero-content {
    padding: 20px 25px 50px;
  }

  .mobile-sidebar {
    width: 280px;
  }

  /* Inspire Section */
  .inspire-section {
    padding: 0px 0;
  }

  .inspire-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .inspire-title br {
    display: none;
  }

  .inspire-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .inspire-content {
    padding-left: 0;
    margin-top: 0px;
  }

  .inspire-video-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Affiliate Program */
  .affiliate-program-container {
    margin-top: 50px;
    padding-bottom: 60px;
  }

  .affiliate-features {
    padding-right: 0;
    margin-top: 40px;
    gap: 50px;
  }

  .affiliate-overlay-title {
    font-size: 28px;
    padding-left: 0px;
    margin-bottom: 30px;
  }
  .affiliate-overlay-title br {
    display: none;
  }

  .affiliate-overlay-content {
    padding: 25px;
  }
  .feature-card {
    padding: 0;
    gap: 10px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-emoji {
    font-size: 28px;
  }

  .feature-title {
    font-size: 22px;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stat-card {
    min-height: auto;
    padding: 20px;
  }

  .stat-icon {
    top: 35px;
    right: 35px;
  }

  .stat-icon svg {
    width: 42px;
    height: 42px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-description {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  /* .navbar {
        padding: 15px 20px;
    } */

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .navbar-brand .logo {
    height: 28px;
  }

  .navbar.scrolled .navbar-brand .logo {
    height: 25px;
  }

  .hero-section .inner-section {
    padding-top: 70px;
  }

  .hero-content {
    padding: 10px 10px 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-description br {
    display: none;
  }

  .commission-badge {
    font-size: 12px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .percentage {
    font-size: 16px;
  }

  .btn-apply {
    padding: 14px 28px;
    font-size: 14px;
  }

  .hero-phones {
    height: 300px;
    margin-top: 40px;
  }

  .phone-1,
  .phone-2 {
    height: 280px;
  }

  .mobile-sidebar {
    width: 260px;
    padding: 25px;
  }

  .sidebar-link {
    font-size: 16px;
  }

  .hamburger-line {
    width: 22px;
  }

  /* Inspire Section */
  .inspire-section {
    padding: 40px 0;
  }

  .inspire-title {
    font-size: 22px;
  }

  .inspire-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .common-btn {
    padding: 10px 10px;
    font-size: 14px;
    padding-left: 20px;
    width: 100%;
  }

  .video-play-btn svg {
    width: 50px;
    height: 50px;
  }

  /* Affiliate Program */
  .affiliate-program-container {
    margin-top: 40px;
  }

  .affiliate-features {
    gap: 40px;
  }

  .affiliate-overlay-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .affiliate-overlay-content {
    padding: 30px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-description {
    font-size: 15px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }

  .feature-emoji {
    font-size: 26px;
  }

  .stats-section {
    padding: 40px 0;
    padding-bottom: 0;
  }

  .stats-section .row > [class*="col-"] {
    padding: 0 10px;
    margin-bottom: 0;
  }

  .stat-card {
    min-height: auto;
    padding: 20px;
    border-radius: 24px;
  }

  .stat-icon {
    margin-bottom: 10px;
  }

  .stat-icon svg {
    width: 38px;
    height: 38px;
  }

  .stat-number {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .stat-description {
    font-size: 16px;
  }
}

/* 3 Simple Steps Section */
.steps-section {
  width: 100%;
  padding: 80px 0px;
  background: #ffffff;
  position: relative;
  /* background: url("../assets/images/steps-bg-design.png")no-repeat;
    background-size: cover;
    background-position: center; */
}

.steps-bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: auto;
  height: 50%;
  object-fit: contain;
}

.steps-main-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.steps-subtitle {
  font-size: 22px;
  color: #666666;
  margin: 0;
  font-weight: 400;
}

.timeline-container {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.timeline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: #e5e7eb;
  height: 100%;
  border-radius: 2px;
  top: 0;
}

.timeline-fill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: #00b4ff;
  height: 0;
  top: 0;
  border-radius: 2px;
  transition: height 0.3s ease-out;
  z-index: 1;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
  /* min-height: 450px; */
}

.step:first-child {
  margin-top: 0;
}

.step:last-child {
  margin-bottom: 0;
}

.step-content {
  width: 42%;
  position: relative;
}

.step-number {
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
  color: #000000;
  font-family: "DM Serif Display", serif;
  position: relative;
  display: inline-block;
}

.step-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.step-description {
  font-size: 18px;
  line-height: 1;
  color: #999;
  margin: 0;
  font-weight: 400;
}

.step-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border: 8px solid #00d4ff;
  border-radius: 50%;
  background: #ffffff;
  z-index: 2;
  transition: background 0.3s ease;
  box-shadow: rgb(255 255 255) 0px 0px 0px 14px;
}

.step.active .step-circle {
  background: #00d4ff;
  border-color: #f5f5f5;
}

.phone {
  width: 380px;
  height: auto;
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.step.active .phone {
  transform: translateY(0);
  opacity: 1;
}

.phone img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: contain;
}
/* Alternate layout for left/right */
.step:nth-child(odd) .step-content {
  order: 1;
  text-align: center;
}

.step:nth-child(odd) .phone {
  order: 2;
}

.step:nth-child(even) .step-content {
  order: 2;
  text-align: center;
}

.step:nth-child(even) .phone {
  order: 1;
}

/* Responsive Design for Steps Section */
@media (max-width: 991px) {
  .steps-section {
    padding: 100px 20px;
  }

  .steps-main-title {
    font-size: 64px;
  }

  .steps-subtitle {
    font-size: 20px;
  }

  .step {
    margin: 140px 0;
    min-height: 380px;
  }

  .step-content {
    width: 44%;
  }

  .step-number {
    font-size: 100px;
  }

  .step-number::before {
    width: 160px;
    height: 160px;
  }

  .step-title {
    font-size: 48px;
  }

  .step-description {
    font-size: 18px;
  }

  .phone {
    width: 280px;
  }

  .phone::before {
    width: 360px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .steps-section {
    padding: 60px 0px;
  }

  .steps-main-title {
    font-size: 48px;
    line-height: 1.1;
  }

  .steps-subtitle {
    font-size: 17px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    margin: 90px 0;
    min-height: auto;
    padding-left: 0;
  }

  .step-content {
    width: 100%;
    order: 1 !important;
    text-align: center !important;
    margin-bottom: 45px;
    padding-left: 0;
  }

  .step-number {
    font-size: 36px;
    display: inline-block;
  }

  .step-number::before {
    width: 130px;
    height: 130px;
  }

  .step-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .step-description {
    font-size: 17px;
    line-height: 1.5;
  }

  .phone {
    width: 100%;
    max-width: 300px;
    order: 2 !important;
    margin: 0 auto;
  }

  .phone::before {
    width: 340px;
    height: 220px;
  }

  .timeline {
    left: 25px;
    transform: none;
  }

  .timeline-fill {
    left: 25px;
    transform: none;
  }

  .step-circle {
    left: 14px;
    transform: translateY(-50%);
    top: 50%;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 576px) {
  .steps-section {
    padding: 50px 15px;
  }
  .steps-main-title {
    font-size: 36px;
    line-height: 1.15;
  }

  .steps-subtitle {
    font-size: 15px;
  }

  .step {
    margin: 70px 0;
  }

  .step:first-child {
    margin-top: 0;
  }

  .step:last-child {
    margin-bottom: 0;
  }

  .step-content {
    margin-bottom: 35px;
  }

  .step-number {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .step-number::before {
    width: 105px;
    height: 105px;
  }

  .step-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .step-description {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .phone {
    max-width: 260px;
  }

  .phone img {
    border-radius: 35px;
  }

  .phone::before {
    width: 280px;
    height: 180px;
    border-radius: 45px;
  }

  .timeline {
    left: 18px;
    width: 2px;
  }

  .timeline-fill {
    left: 18px;
    width: 2px;
  }

  .step-circle {
    left: 5px;
    width: 14px;
    height: 14px;
    box-shadow: rgb(255 255 255) 0px 0px 0px 6px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .steps-section {
    padding: 40px 0px;
  }
  .steps-main-title {
    font-size: 32px;
  }

  .steps-subtitle {
    font-size: 14px;
  }

  .step {
    margin: 60px 0;
  }

  .step-content {
    margin-bottom: 30px;
  }

  .step-number {
    font-size: 36px;
    margin-bottom: 5px;
  }

  .step-number::before {
    width: 95px;
    height: 95px;
  }

  .step-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 14px;
    padding: 0 5px;
  }

  .phone {
    max-width: 190px;
  }

  .phone img {
    border-radius: 30px;
  }

  .phone::before {
    width: 250px;
    height: 160px;
    border-radius: 40px;
  }

  .timeline {
    left: 15px;
  }

  .timeline-fill {
    left: 15px;
  }

  .step-circle {
    left: 2px;
    width: 12px;
    height: 12px;
  }
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  padding-top: 0;
  overflow: hidden;
  background: #fff;
}

.cta-section .container-fluid {
  padding: 0;
  border-radius: 40px;
  overflow: hidden;
}

.cta-section .row {
  margin: 0;
}

.cta-image-wrapper {
  width: 100%;
  height: 580px;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #f3efe9;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
}

.cta-title {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.cta-title span {
  display: block;
}

.cta-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #999;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 20px;
}

.cta-btn {
  border-color: #000000;
  color: #000000;
  max-width: fit-content;
}

.cta-btn .icon-circle {
  background-color: #000000;
}

.cta-btn .arrow-icon {
  filter: invert(1);
}

.cta-btn:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.cta-btn:hover .icon-circle {
  background-color: #ffffff;
}

.cta-btn:hover .arrow-icon {
  filter: invert(0);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.testimonials-bg {
  position: absolute;
  bottom: -25%;
  left: 0;
  width: 550px;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.testimonials-nav {
  display: flex;
  gap: 12px;
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: #000000;
  border-color: #000000;
}

.testimonial-nav-btn:hover svg {
  stroke: #ffffff;
}

.testimonial-nav-btn.next {
  background: #000000;
  border-color: #000000;
}

.testimonial-nav-btn.next svg {
  stroke: #ffffff;
}

.testimonials-slider-wrapper {
  /* overflow: hidden; */
  position: relative;
  cursor: grab;
  user-select: none;
}

.testimonials-slider-wrapper:active {
  cursor: grabbing;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  min-width: calc(50% - 12px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  user-select: none;
  pointer-events: none;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.08);
}

.testimonial-card * {
  pointer-events: auto;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
}

.testimonial-quote {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #000000;
  font-family: "Inter Tight", sans-serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: "Inter Tight", sans-serif;
}

/* Application Form Section */
.application-form-section {
  padding: 80px 0;
  border-radius: 40px;
  background: rgba(217, 239, 222, 0.9);
  position: relative;
}

.application-bg {
  position: absolute;
  top: 40px;
  right: 0;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: -1;
}

.application-form-section .common-heading {
  text-align: center;
  margin-bottom: 60px;
}

.application-form-section .common-heading p {
  color: #5e6a61;
}

/* .application-header {
    text-align: center;
    margin-bottom: 60px;
} */

/* .application-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #000000;
    font-family: "DM Serif Display", serif;
} */

/* .application-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: #666666;
    font-family: "Inter Tight", sans-serif;
} */

/* Why Join Us Card */
.why-join-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 25px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
}

.why-join-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
}

.why-join-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-join-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-join-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-join-icon:hover {
  transform: scale(1.05);
}

.why-join-text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: "Inter Tight", sans-serif;
}

/* Info Cards */
.info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 25px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.info-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  font-family: "Inter Tight", sans-serif;
}

.limited-time .info-card-title {
  color: #f9941e;
}

.secure .info-card-title {
  color: #70cb54;
}

.info-card-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #666666;
  font-family: "Inter Tight", sans-serif;
}

/* Form Card */
.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
  justify-content: center;
}

.form-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 20px;
  background: #fdaa6f;
  box-shadow: 0 4px 30px 0 rgba(253, 170, 111, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-title {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 5px 0;
  color: #000000;
  font-family: "DM Serif Display", serif;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #999999;
  font-family: "Inter Tight", sans-serif;
}

/* Form Elements */
.application-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  font-family: "DM Serif Display", serif;
  margin: 0;
  line-height: 1;
}

.required {
  color: #000000;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  font-family: "Inter Tight", sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbbbbb;
  font-weight: 400;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: #ffffff;
  border-color: #cccccc;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: 24px;
  padding: 18px 24px;
}

.form-select {
  cursor: pointer;
  /* appearance: none; */
  background-color: #ffffff;
  background-image: url("../img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
  padding-right: 55px;
  transition: none !important;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin: 12px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: #000000;
  border-radius: 4px;
}

.checkbox-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #999999;
  font-family: "Inter Tight", sans-serif;
}

/* Submit Button */
.form-submit-btn {
  width: 100%;
  padding: 20px 32px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter Tight", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 16px;
  letter-spacing: 0.2px;
}

.form-submit-btn svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.form-submit-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991px) {
  .cta-section {
    padding: 30px 0;
    padding-top: 0;
  }
  .cta-image-wrapper {
    min-height: 300px;
    height: 300px;
  }

  .cta-content {
    padding: 40px;
    gap: 10px;
  }
  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-description br {
    display: none;
  }

  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-title {
    font-size: 48px;
  }

  .testimonial-card {
    min-width: calc(50% - 12px);
  }

  .application-form-section {
    padding: 80px 0;
  }

  .why-join-card,
  .info-card {
    margin-bottom: 20px;
  }

  .form-card {
    margin-top: 0;
  }
  .steps-bg {
    width: 50%;
    height: 50%;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .common-heading h2 {
    font-size: 28px;
  }
  .common-heading p {
    font-size: 14px;
  }
  .common-heading br {
    display: none;
  }
  .common-btn {
    font-size: 14px;
  }
  .cta-section {
    padding: 30px 0;
    padding-top: 0;
  }
  .cta-image-wrapper {
    min-height: 200px;
    height: 200px;
  }

  .cta-content {
    padding: 40px 80px 40px 40px;
    gap: 10px;
  }
  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-description br {
    display: none;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 42px;
  }

  .testimonials-nav {
    align-self: flex-end;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 28px;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .application-form-section {
    padding: 60px 0;
  }

  .why-join-card {
    padding: 24px;
  }

  .why-join-title {
    font-size: 22px;
  }

  .form-card {
    padding: 28px;
  }

  .form-header {
    gap: 16px;
  }

  .form-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-subtitle {
    font-size: 14px;
  }
  .steps-bg {
    width: 50%;
    height: 50%;
    object-fit: contain;
  }
  .application-form-section .common-heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 30px 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cta-image-wrapper {
    min-height: 200px;
    height: 200px;
  }

  .cta-content {
    padding: 20px 20px 30px;
    gap: 10px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-section .cta-btn span {
    white-space: normal;
  }

  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-header {
    gap: 24px;
    margin-bottom: 30px;
  }

  .testimonials-title {
    font-size: 36px;
  }

  .testimonial-nav-btn {
    width: 42px;
    height: 42px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 17px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .application-form-section {
    padding: 40px 0;
  }

  .why-join-card {
    padding: 20px;
  }

  .why-join-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .why-join-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .why-join-text {
    font-size: 15px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card-title {
    font-size: 16px;
  }

  .info-card-text {
    font-size: 14px;
  }

  .form-card {
    padding: 15px;
  }

  .form-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .form-icon {
    width: 48px;
    height: 48px;
  }

  .form-title {
    font-size: 22px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 12px 16px;
    font-size: 14px;
  }

  .form-submit-btn {
    padding: 16px 28px;
    font-size: 15px;
  }
  .steps-bg {
    width: 50%;
    height: 50%;
    object-fit: contain;
  }
}

/* Footer */
.footer {
  background: #ffffff;
  padding: 20px 0 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #999;
  padding-top: 40px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 40px;
  width: 170px;
  object-fit: contain;
}

.footer-text {
  text-align: center;
}

.footer-copyright {
  color: #999;
  font-family: "Inter Tight";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

.footer-link {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #000000;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  .footer-content {
    padding-top: 30px;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .footer-copyright {
    font-size: 14px;
    padding: 0 20px;
  }
}

/* Daily Inspiration Section */
.daily-inspiration {
  background: #fff;
}

.inspiration-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.inspiration-item {
  display: flex;
  align-items: center;
}

.inspire-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.category-pill {
  display: inline-block;
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #847e8c;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter Tight", sans-serif;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Responsive Design for Daily Inspiration */
@media (max-width: 1200px) {
  .inspiration-wrapper {
    gap: 14px;
  }
  .category-pill {
    padding: 10px 28px;
    font-size: 13px;
  }
  .inspire-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 991px) {
  .inspiration-wrapper {
    gap: 12px;
  }
  .category-pill {
    padding: 10px 24px;
    font-size: 12px;
  }
  .inspire-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 768px) {
  .inspiration-wrapper {
    gap: 10px;
    padding: 0 15px;
  }
  .category-pill {
    padding: 8px 20px;
    font-size: 11px;
  }
  .inspire-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 576px) {
  .inspiration-wrapper {
    gap: 8px;
    padding: 0 10px;
  }
  .category-pill {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 0.3px;
  }
  .inspire-icon {
    width: 25px;
    height: 25px;
  }
}

/* Lifetime Benefits Section */
.lifetime-benefits-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(
    7deg,
    #fff 39.96%,
    #cfe5f1 78.99%,
    #9ac4ff 117.86%
  );
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}

.lifetime-benefits-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  object-fit: contain;
  z-index: 0;
}

.lifetime-benefits-section .common-heading p {
  color: #000;
}

/* Benefits Cards Container - Rainbow Arc Layout */
.benefits-cards-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 0 40px;
  min-height: 330px;
  position: relative;
  width: 100%;
  gap: 20px;
}

.benefit-card {
  flex: 1;
  max-width: 260px;
  min-width: 180px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: rotate(var(--rotation)) translateY(var(--translateY));
  transform-origin: center bottom;
  border-radius: 24px;
  border: 1px solid #e0eaff;
  background: linear-gradient(0deg, #fff 0%, #fff 100%),
    linear-gradient(
      180deg,
      rgba(87, 75, 58, 0) 29.38%,
      rgba(87, 75, 58, 0.04) 52.47%,
      rgba(87, 75, 58, 0.4) 100%
    );
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInArc 0.8s ease-out forwards;
  animation-delay: var(--delay);
  animation-play-state: paused;
  opacity: 0;
}

/* Play animation when scrolled into view */
.benefit-card.animate {
  animation-play-state: running;
}

/* Perfect Rainbow Arc - Symmetrical positioning */
.benefit-card:nth-child(1) {
  --rotation: -12deg;
  --translateY: 80px;
  --delay: 0.1s;
  z-index: 1;
}

.benefit-card:nth-child(2) {
  --rotation: -7deg;
  --translateY: 28px;
  --delay: 0.2s;
  z-index: 2;
}

.benefit-card:nth-child(3) {
  --rotation: -3deg;
  --translateY: 0px;
  --delay: 0.3s;
  z-index: 4;
}

.benefit-card:nth-child(4) {
  --rotation: 3deg;
  --translateY: 0px;
  --delay: 0.4s;
  z-index: 4;
}

.benefit-card:nth-child(5) {
  --rotation: 7deg;
  --translateY: 28px;
  --delay: 0.5s;
  z-index: 2;
}

.benefit-card:nth-child(6) {
  --rotation: 12deg;
  --translateY: 80px;
  --delay: 0.6s;
  z-index: 1;
}

@keyframes fadeInArc {
  from {
    opacity: 0;
    transform: rotate(var(--rotation))
      translateY(calc(var(--translateY) + 40px)) scale(0.95);
  }
  to {
    opacity: 1;
    transform: rotate(var(--rotation)) translateY(var(--translateY)) scale(1);
  }
}

.benefit-card:hover {
  border-color: #9ac4ff;
  background: #9ac4ff;
}

.benefit-card:hover .benefit-text {
  color: #fff;
}

.benefit-icon {
  width: 55px;
  height: 55px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.benefit-text {
  font-size: 15px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  font-weight: 500;
  text-align: left;
}

/* Founding Spots Banner */
.founding-spots-banner {
  max-width: 900px;
  margin: 0 auto;
  background: url("../img/lifetime-benefits-bg.png") center/cover no-repeat;
  border-radius: 30px;
  padding: 50px 40px;
  overflow: hidden;
}

.banner-content {
  text-align: center;
  color: #fff;
}

.limited-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Inter Tight";
  font-size: 16px;
  margin-bottom: 50px;
}

.banner-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
  font-family: "DM Serif Display", serif;
}

.highlight-text {
  color: #30d5c8;
  font-weight: 400;
}

.banner-description {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 40px;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 40px;
  border: 1px solid #e3ddd1;
  backdrop-filter: blur(12.5px);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  color: #30d5c8;
  border-color: #30d5c8;
}

.banner-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Breakpoints */

/* Large Tablets & Medium Laptops (992px - 1199px) */
@media (max-width: 1199px) {
  .benefits-cards-container {
    padding: 0 30px;
    min-height: 350px;
    gap: 15px;
  }

  .benefit-card {
    max-width: 220px;
    min-width: 160px;
    min-height: auto;
    padding: 15px;
  }

  .benefit-card:nth-child(1),
  .benefit-card:nth-child(6) {
    --translateY: 130px;
  }

  .benefit-card:nth-child(2),
  .benefit-card:nth-child(5) {
    --translateY: 50px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .lifetime-benefits-section {
    padding: 80px 0;
  }

  .benefits-cards-container {
    padding: 0 30px;
    min-height: auto;
    gap: 18px;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .benefit-card {
    flex: 0 0 calc(50% - 9px);
    max-width: calc(50% - 9px);
    min-width: auto;
    min-height: auto;
    padding: 28px 22px;
    border-radius: 22px;
    transform: none !important;
  }

  .benefit-card:nth-child(n) {
    --rotation: 0deg;
    --translateY: 0px;
  }

  .benefit-icon {
    width: 55px;
    height: 55px;
  }

  .benefit-text {
    font-size: 15px;
  }

  .founding-spots-banner {
    padding: 50px 35px;
  }

  .banner-title {
    font-size: 42px;
  }

  .banner-description {
    font-size: 17px;
  }
}

/* Small Tablets & Large Phones (576px - 767px) - Switch to 2-column grid */
@media (max-width: 767px) {
  .lifetime-benefits-section {
    padding: 60px 0;
  }

  .lifetime-benefits-section .common-heading {
    margin-bottom: 40px;
  }

  .lifetime-benefits-section .common-heading p {
    padding: 0 20px;
  }

  .benefits-cards-container {
    padding: 0 20px;
    min-height: auto;
    margin-bottom: 50px;
    gap: 15px;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .benefit-card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    min-width: auto;
    min-height: auto;
    padding: 25px;
    border-radius: 20px;
    transform: none !important;
  }

  .benefit-card:nth-child(n) {
    --rotation: 0deg;
    --translateY: 0px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 14px;
  }

  .benefit-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .founding-spots-banner {
    padding: 40px 30px;
    border-radius: 25px;
  }

  .limited-time-badge {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .banner-description br {
    display: none;
  }

  .banner-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .lifetime-benefits-section {
    padding: 40px 0;
  }
  .benefits-cards-container {
    padding: 0 15px;
    min-height: auto;
    margin-bottom: 40px;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .benefit-card {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    min-width: auto;
    min-height: auto;
    padding: 20px 16px;
    border-radius: 18px;
    transform: none !important;
  }

  .benefit-card:nth-child(n) {
    --rotation: 0deg;
    --translateY: 0px;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
  }

  .benefit-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .founding-spots-banner {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .limited-time-badge {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0;
  }

  .limited-time-badge svg {
    width: 14px;
    height: 14px;
  }

  .banner-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .banner-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .banner-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .banner-btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .benefits-cards-container {
    padding: 0 12px;
    gap: 10px;
  }

  .benefit-card {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    min-height: 150px;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  .benefit-text {
    font-size: 12px;
  }

  .founding-spots-banner {
    padding: 30px 20px;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-description {
    font-size: 13px;
  }
}
