/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Helvetica, sans-serif;
  background-color: #000619;
  color: #ffffff;
  overflow-x: hidden;
}

/* Background Container */
.bg-container {
  background-color: #000619;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* Background Decorative Elements */
.background-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  background-color: #000619;
}

.bg-top-section {
  position: absolute;
  width: 1784px;
  height: 1368px;
  top: -503px;
  left: 135px;
}

.bg-gradient-1 {
  position: absolute;
  width: 345px;
  height: 514px;
  top: 44px;
  left: 935px;
  border-radius: 200px;
  transform: rotate(-20.01deg);
  filter: blur(450px);
  background: linear-gradient(90deg, rgba(244, 196, 243, 1) 0%, rgba(252, 103, 250, 1) 100%);
}

.bg-gradient-2 {
  position: absolute;
  width: 483px;
  height: 615px;
  top: 594px;
  left: 1166px;
  border-radius: 200px;
  transform: rotate(-67.37deg);
  filter: blur(325px);
  background: linear-gradient(90deg, rgba(26, 41, 128, 0.5) 0%, rgba(38, 208, 206, 0.5) 100%);
}

.bg-gradient-3 {
  position: absolute;
  width: 405px;
  height: 471px;
  top: 593px;
  left: 863px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 202.5px / 235.5px;
  filter: blur(375px);
}

.bg-square {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 800px;
  left: 683px;
  border-radius: 60px;
  transform: rotate(-45.72deg);
  box-shadow: inset 4px 10px 14px rgba(255, 255, 255, 0.3), 4px 20px 50px rgba(0, 0, 0, 0.25);
}

.bg-middle-section {
  position: absolute;
  width: 937px;
  height: 1191px;
  top: 1178px;
  left: -867px;
}

.bg-gradient-4 {
  position: absolute;
  width: 345px;
  height: 514px;
  top: 630px;
  left: 504px;
  border-radius: 200px;
  transform: rotate(156.61deg);
  filter: blur(450px);
  background: linear-gradient(90deg, rgba(244, 196, 243, 1) 0%, rgba(252, 103, 250, 1) 100%);
}

.bg-gradient-5 {
  position: absolute;
  width: 483px;
  height: 615px;
  top: 22px;
  left: 129px;
  border-radius: 200px;
  transform: rotate(109.25deg);
  filter: blur(325px);
  background: linear-gradient(90deg, rgba(26, 41, 128, 1) 0%, rgba(38, 208, 206, 1) 100%);
}

.bg-gradient-6 {
  position: absolute;
  width: 405px;
  height: 471px;
  top: 256px;
  left: 492px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 202.5px / 235.5px;
  transform: rotate(176.62deg);
  filter: blur(375px);
}

.bg-bottom-section {
  position: absolute;
  width: 2299px;
  height: 1691px;
  top: 2632px;
  left: 0;
}

.bg-gradient-7 {
  position: absolute;
  width: 345px;
  height: 514px;
  top: 543px;
  left: 1856px;
  border-radius: 200px;
  transform: rotate(94.81deg);
  filter: blur(450px);
  background: linear-gradient(90deg, rgba(244, 196, 243, 1) 0%, rgba(252, 103, 250, 1) 100%);
}

.bg-gradient-8 {
  position: absolute;
  width: 437px;
  height: 544px;
  top: 370px;
  left: 1314px;
  border-radius: 200px;
  transform: rotate(47.46deg);
  filter: blur(325px);
  background: linear-gradient(90deg, rgba(26, 41, 128, 1) 0%, rgba(38, 208, 206, 1) 100%);
}

.bg-blur-circle {
  position: absolute;
  width: 195px;
  height: 324px;
  top: 252px;
  left: -65px;
  background: white;
  border-radius: 97.5px / 162px;
  filter: blur(225px);
}

/* Main Wrapper */
.main-wrapper {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    to right,
    rgba(0, 6, 25, 0.85) 0%,
    rgba(0, 6, 25, 0.92) 10%,
    #000619 20%,
    #000619 80%,
    rgba(0, 6, 25, 0.92) 90%,
    rgba(0, 6, 25, 0.85) 100%
  );
  overflow: hidden;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}

/* Header */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

.header-actions {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .header {
    padding: 16px 48px;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 24px 96px;
  }
}

@media (min-width: 1280px) {
  .header {
    padding: 16px 153px;
  }
}

.logo-container {
  flex-shrink: 0;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: white;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.logo-container a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .logo-img {
    width: 180px;
  }
}

.connect-wallet-btn,
.hero-connect-btn {
  height: 40px;
  padding: 0 24px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #DEF9FA, #33BBCF);
  border: none;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s;
}

.connect-wallet-btn:hover,
.hero-connect-btn:hover {
  opacity: 0.9;
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  padding: 16px;
}

@media (min-width: 640px) {
  .main-content {
    padding: 32px;
  }
}

@media (min-width: 768px) {
  .main-content {
    padding: 64px;
  }
}

@media (min-width: 1024px) {
  .main-content {
    padding: 96px;
  }
}

@media (min-width: 1280px) {
  .main-content {
    padding: 0;
  }
}

/* Getting Started Section */
.getting-started-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  margin-top: 32px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .getting-started-section {
    flex-direction: row;
    margin-top: 54px;
  }
}

.getting-started-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
}

@media (min-width: 768px) {
  .getting-started-content {
    flex-direction: row;
  }
}

.getting-started-text {
  width: 100%;
}

@media (min-width: 768px) {
  .getting-started-text {
    width: 50%;
  }
}

.hero-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 800;
  color: #e6e6e6;
  font-size: 36px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
}

.hero-subtitle {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 800;
  color: #e6e6e6;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 32px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 40px;
  }
}

.highlight-blue {
  background: linear-gradient(135deg, #33BBCF 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: white;
  font-size: 15px;
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 16px;
    text-align: left;
  }
}

.hero-conclusion {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: white;
  font-size: 15px;
  margin-top: 12px;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-conclusion {
    font-size: 16px;
    text-align: left;
  }
}

.hero-button-container {
  text-align: center;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .hero-button-container {
    text-align: left;
  }
}

.getting-started-image {
  width: 100%;
}

@media (min-width: 768px) {
  .getting-started-image {
    width: 50%;
  }
}

.hero-image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .hero-image {
    max-width: 512px;
  }
}

/* Coin Slider Section */
.coin-slider-section {
  width: 100%;
  padding: 24px 0;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  width: max-content;
}

@media (min-width: 1024px) {
  .carousel-track {
    justify-content: center;
    width: 100%;
  }
}

.coin-card {
  flex-shrink: 0;
  width: 240px;
  height: 130px;
  border: 0;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
}

@media (min-width: 640px) {
  .coin-card {
    width: 284px;
  }
}

.coin-logo {
  position: absolute;
}

.coin-symbol {
  position: absolute;
  top: 30px;
  left: 24px;
  -webkit-text-stroke: 1px #ffffff;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0;
  line-height: normal;
}

.coin-price {
  position: absolute;
  left: 24px;
  font-weight: normal;
  color: white;
  letter-spacing: 0;
  line-height: normal;
  font-size: 24px;
}

.coin-change {
  position: absolute;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.97);
  color: #47cd4d;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  font-weight: 500;
}

/* Platform Features Section */
.platform-features-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 32px 0;
}

@media (min-width: 768px) {
  .platform-features-section {
    flex-direction: row;
  }
}

.feature-card {
  position: relative;
  width: 100%;
  max-width: 374px;
  height: 172px;
  background-image: url('../images/prod.svg');
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 8px;
}

.feature-card-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  height: 100%;
  position: relative;
}

.feature-icon-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-img {
  width: 100px;
  height: auto;
  object-fit: contain;
  max-height: 100px;
}

.feature-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}

.feature-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 800;
  color: white;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  margin: 0;
}

.feature-description {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 500;
  color: #f1f1f1;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

.feature-button {
  height: 30px;
  padding: 0 16px;
  background: white;
  color: #3da0ea;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 4px;
}

.feature-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 0;
  width: 100%;
  max-width: 1174px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-section {
    flex-direction: row;
    gap: 64px;
  }
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

@media (min-width: 768px) {
  .stats-content {
    flex-direction: row;
    gap: 64px;
  }
}

.stats-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-left {
    text-align: left;
    width: 50%;
  }
}

.stats-title {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 36px;
  letter-spacing: 0.48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .stats-title {
    font-size: 48px;
    line-height: 76.8px;
  }
}

.stats-description {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  letter-spacing: 0.18px;
  line-height: 30.6px;
  max-width: 512px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-description {
    margin: 0;
  }
}

.stats-button {
  width: 170px;
  height: 64px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #DEF9FA, #33BBCF);
  border: none;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 500;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .stats-button {
    margin-top: 48px;
  }
}

.stats-button:hover {
  opacity: 0.9;
}

.stats-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .stats-right {
    width: 50%;
  }
}

.stat-feature {
  display: flex;
  align-items: center;
  text-align: left;
}

.stat-icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(8, 151, 123, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}

.stat-icon {
  width: 38px;
  height: 38px;
}

.stat-feature-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-feature-title {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 18px;
  letter-spacing: 0.18px;
  line-height: 23.4px;
}

.stat-feature-description {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 448px;
}

/* Call to Action Section */
.cta-section {
  width: 100%;
  padding: 64px 0;
  display: flex;
  justify-content: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1300px;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
  }
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-feature-image {
  width: 163px;
  height: 169px;
  object-fit: cover;
}

.cta-feature-text {
  display: flex;
  flex-direction: column;
}

.cta-feature-title {
  font-weight: 600;
  font-size: 24px;
  color: white;
  font-family: 'Inter', Helvetica, sans-serif;
}

.cta-feature-description {
  margin-top: 8px;
  font-size: 16px;
  color: white;
  font-weight: 400;
  font-family: 'Inter', Helvetica, sans-serif;
}

.cta-image-container {
  margin-left: auto;
  overflow: visible;
  flex-shrink: 0;
}

.cta-phone-image {
  width: auto;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .cta-phone-image {
    width: 100%;
    max-width: 473px;
    height: auto;
  }
}

/* Stats Counter Section */
.stats-counter-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .stats-counter-section {
    flex-direction: row;
  }
}

.stat-counter-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .stat-counter-item {
    gap: 25.56px;
  }
}

.stat-counter-value {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 53.2px;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .stat-counter-value {
    font-size: 40.9px;
  }
}

.stat-counter-label {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: #33BBCF;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 26.6px;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .stat-counter-label {
    font-size: 20.4px;
  }
}

.stat-counter-separator {
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  width: 1px;
  display: none;
}

@media (min-width: 640px) {
  .stat-counter-separator {
    display: block;
  }
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
  padding: 64px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .testimonials-section {
    text-align: left;
  }
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .testimonials-header {
    flex-direction: row;
  }
}

.testimonials-title-container {
  width: 100%;
}

.testimonials-title {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 48px;
    line-height: 81.6px;
  }
}

.testimonials-description-container {
  width: 100%;
}

.testimonials-description {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  letter-spacing: 0.18px;
  line-height: 32.4px;
  max-width: 448px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-description {
    margin: 0 0 0 auto;
  }
}

.testimonials-grid {
  margin-top: 48px;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  border-radius: 20px;
  background: transparent;
  border: 0;
  text-align: left;
}

.testimonial-featured {
  background: linear-gradient(to bottom, #2d2d2d, #11101d);
  backdrop-filter: blur(5px);
}

.testimonial-content {
  padding: 40px;
}

.testimonial-quote-icon {
  width: 43px;
  height: 28px;
  margin-bottom: 32px;
}

.testimonial-quote {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: white;
  font-size: 18px;
  letter-spacing: 0.36px;
  line-height: 32.4px;
  margin-bottom: 32px;
  min-height: 130px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.testimonial-avatar {
  height: 48px;
  width: 48px;
  margin-right: 16px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: white;
  font-size: 20px;
  line-height: 32px;
}

.testimonial-author-role {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: white;
  font-size: 16px;
  opacity: 0.5;
}

/* Partner Logos Section */
.partner-logos-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 101px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .partner-logos-section {
    gap: 100px;
  }
}

.partner-logo-item {
  flex-shrink: 0;
}

.partner-logo-img {
  width: 192px;
  height: auto;
}

/* Legal & Compliance Section */
.legal-compliance-section {
  width: 100%;
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(0, 6, 25, 0.4) 0%, rgba(0, 6, 25, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.legal-compliance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(61, 160, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.legal-compliance-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-compliance-header {
  text-align: center;
  margin-bottom: 64px;
}

.legal-compliance-main-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 800;
  color: white;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #3da0ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .legal-compliance-main-title {
    font-size: 48px;
  }
}

.legal-compliance-subtitle {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.legal-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .legal-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .legal-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.legal-card {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3da0ea 0%, #9333ea 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(61, 160, 234, 0.2);
}

.legal-card:hover::before {
  opacity: 1;
}

.legal-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.legal-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.legal-card-icon::after {
  display: none;
}

.disclaimer-icon {
  background: linear-gradient(135deg, rgba(61, 160, 234, 0.2) 0%, rgba(61, 160, 234, 0.1) 100%);
  color: #3da0ea;
}

.promises-icon {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(147, 51, 234, 0.1) 100%);
  color: #9333ea;
}

.profit-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  color: #10b981;
}

.legal-card-icon svg {
  width: 32px;
  height: 32px;
  z-index: 1;
  position: relative;
}

.legal-card-content {
  position: relative;
}

.legal-card-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 700;
  color: white;
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

@media (min-width: 768px) {
  .legal-card-title {
    font-size: 24px;
  }
}

.legal-card-text {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-card-text:last-child {
  margin-bottom: 0;
}

.legal-section {
  margin-bottom: 48px;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 700;
  color: white;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .legal-section-title {
    font-size: 28px;
  }
}

.legal-section-text {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section-text:last-child {
  margin-bottom: 0;
}

.legal-section-text strong {
  color: white;
  font-weight: 600;
}

.contact-email {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
}

.contact-email a {
  color: #3da0ea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: #5bb3f0;
  text-decoration: underline;
}

/* Legal Page Content Styles */
.legal-compliance-intro {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 24px auto 0;
}

@media (min-width: 768px) {
  .legal-compliance-intro {
    font-size: 18px;
  }
}

.legal-page-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page-section {
  margin-bottom: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.legal-page-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61, 160, 234, 0.15);
}

.legal-page-section:last-child {
  margin-bottom: 0;
}

.legal-page-section-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 700;
  color: white;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #3da0ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .legal-page-section-title {
    font-size: 28px;
  }
}

.legal-page-text {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page-text:last-child {
  margin-bottom: 0;
}

.legal-page-text strong {
  color: white;
  font-weight: 600;
}

.legal-page-list {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Poppins', Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 20px 0 20px 24px;
  padding-left: 0;
  list-style: none;
}

.legal-page-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.legal-page-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3da0ea;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.legal-page-list li:last-child {
  margin-bottom: 0;
}

.legal-page-highlight {
  margin: 24px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(61, 160, 234, 0.15) 0%, rgba(61, 160, 234, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid #3da0ea;
}

.legal-page-highlight .legal-page-text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .legal-page-section {
    padding: 24px;
    margin-bottom: 32px;
  }

  .legal-page-section-title {
    font-size: 22px;
  }

  .legal-page-text,
  .legal-page-list {
    font-size: 14px;
  }

  .legal-compliance-intro {
    font-size: 15px;
  }
}

.contact-email a {
  color: #3da0ea;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-email a:hover {
  color: #5bb3e8;
  text-decoration: underline;
}

/* Partners Section */
.partners-section {
  position: relative;
  width: 100%;
  margin-top: 64px;
}

@media (min-width: 768px) {
  .partners-section {
    margin-top: 98px;
  }
}

.partners-cta-card {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto 64px;
  border-radius: 20px;
  overflow: hidden;
  padding: 72px 0;
}

@media (min-width: 768px) {
  .partners-cta-card {
    margin-bottom: 82px;
  }
}

.partners-cta-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, #2d2d2d, #11101d);
}

.partners-cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100;
  padding: 32px;
}

@media (min-width: 768px) {
  .partners-cta-content {
    flex-direction: row;
    padding: 0;
  }
}

.partners-cta-text {
  max-width: 900px;
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .partners-cta-text {
    margin-left: 97px;
    text-align: left;
    margin-bottom: 0;
  }
}

.partners-cta-title {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .partners-cta-title {
    font-size: 48px;
    line-height: 67.2px;
  }
}

.partners-cta-description {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  letter-spacing: 0.18px;
  line-height: 28.8px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .partners-cta-description {
    margin: 0;
  }
}

.partners-cta-button-container {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .partners-cta-button-container {
    margin-top: 0;
    margin-right: 100px;
  }
}

.partners-cta-button {
  width: 170px;
  height: 64px;
  border-radius: 10px;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 500;
  color: white;
  font-size: 18px;
  background: linear-gradient(to bottom, #DEF9FA, #33BBCF);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.partners-cta-button:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  width: 100%;
  background: rgba(10, 9, 11, 0.6);
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .footer {
    padding: 64px 40px;
  }
}

.footer-content {
  max-width: 1170px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 80px;
  }
}

.footer-column {
  text-align: center;
}

@media (min-width: 640px) {
  .footer-column {
    text-align: left;
  }
}

.footer-logo {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 40.6px;
  line-height: 52.7px;
  margin-bottom: 32px;
  width: 160px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .footer-logo {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-description {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 32px;
  max-width: 312px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .footer-description {
    margin: 0;
  }
}

.footer-title {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 500;
  color: white;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-links-partner {
  gap: 8px;
}

.footer-links-partner a {
  letter-spacing: 0.16px;
  line-height: 28.8px;
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.footer-disclaimer {
  width: 100%;
  margin-bottom: 32px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #3da0ea;
}

.footer-disclaimer-text {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.footer-disclaimer-text strong {
  color: white;
  font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 6, 25, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text strong {
  color: white;
  font-weight: 600;
}

.cookie-banner-button {
  background: linear-gradient(to bottom, #DEF9FA, #33BBCF);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-banner-button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-button {
    width: 100%;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  display: flex;
  align-items: center;
}

.copyright-text {
  font-family: 'Abel', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  text-align: center;
  line-height: 27px;
}

.copyright-icon {
  width: 16px;
  height: 16px;
  margin: 0 4px;
}

.copyright-year {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  text-align: center;
  line-height: 27px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-icon-wrapper {
  position: relative;
  width: 21px;
  height: 21px;
}

.social-icon {
  width: 100%;
  height: 100%;
}

/* AOS Animation Styles */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bg-top-section,
  .bg-middle-section,
  .bg-bottom-section {
    display: none;
  }
}

