@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-purple: #7a3ed6;
  --primary-button-purple: #7a3ed6;
  --dark-purple: #220042;
  --primary-green: #3bb942;
  --primary-darkpurple: #3f006c;
  --light-purple: #f5f2f9;
  --text-dark: #333;
  --primary-light-purple: #f7f6f7;
  --text-light: #f9f9f9;
  --gradient-hero: linear-gradient(135deg, #7a3ed6, #4b0082);
  --gradient-cta: radial-gradient(ellipse at top center, #7a3ed6 1%, #270082 40%, #270082 100%);
  --header-bg: #fff;
  --header-text: #333;
  --light-red: #FF2C2C;
  --gradient-center-light: #962dff;
  --footer-bg: linear-gradient(135deg, #101011 40%, #3b1a39 100%);
  --footer-text: #E0E0E0;
  --footer-link-hover: #A06FEF;
}

html {
  font-size: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Pangolin', sans-serif;
  line-height: 1.3;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Bagel Fat One', cursive;
}

.font-theme {
  font-family: 'Bagel Fat One', cursive;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

section h2 {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}

section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #555;
}

.fs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-height: 600px;
}

.fs-card {
  border-radius: 32px;
  padding: 40px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.fs-card--build-credit {
  background: linear-gradient(135deg, #ff8c00 0%, #e67300 100%);
  color: white;
}

.fs-card--cards {
  background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
  color: white;
}

.fs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.fs-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 400px;
  height: 100%;
}

.fs-card__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

.fs-card__description {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
}

.fs-card__button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.fs-card__button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.fs-card__button::after {
  content: '→';
  font-size: 1.2rem;
}

.fs-card__image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fs-card__image--phone {
  max-width: 200px;
}

.fs-card__image--credit-card {
  max-width: 280px;
  transform: rotate(-5deg);
}

.fs-wave-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px);
}

@media (max-width: 768px) {
  .fs-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fs-card {
    padding: 32px 24px;
    min-height: 400px;
  }

  .fs-card__title {
    font-size: 2rem;
  }

  .fs-card__description {
    font-size: 1rem;
  }

  .fs-card__image--phone {
    max-width: 160px;
  }

  .fs-card__image--credit-card {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .fs-card {
    padding: 24px 16px;
  }

  .fs-card__title {
    font-size: 1.8rem;
  }

  .fs-card__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


.text-green {
  color: #75ff7a;
}

.text-red {
  color: #ff5454;
}

.text-purple {
  color: #9360f2;
}

.waitlist-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.waitlist-popup>form {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.waitlist-popup h2 {
  font-size: 2rem;
}

.text-start {
  text-align: start;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.waitlist-popup label {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.waitlist-popup input {
  display: block;
  width: 100%;
  padding: 20px;
  border-radius: 50px;
  border: none;
  background: #f7f7f7;
}

.waitlist-popup button {
  display: block;
  width: 100%;
  padding: 20px;
  border-radius: 50px;
  background: #702acd;
  color: white;
  cursor: pointer;
}

.waitlist-popup button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.waitlist-popup .close-icon {
  font-size: 1.5rem;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

#waitlist-message.success {
  color: #28a745;
  font-weight: bold;
  animation: successFade 0.6s ease-in-out forwards;
  text-align: center;
}

@keyframes successFade {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tag {
  display: inline-block;
  background-color: #ffdcdc;
  color: #ff1f1f;
  font-family: 'Bagel Fat One', cursive;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85em;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.tag2 {
  background: #eeffee !important;
  color: #08df11 !important;
}

.tag3 {
  background: #eeeafd !important;
  color: #9360f2 !important;
}

.tag-centered {
  background-color: #fff;
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85em;
  margin: 0 auto 20px;
}

.btn-primary {
  background: var(--primary-purple);
  color: var(--text-light);
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.main-header {
  background-color: var(--header-bg);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .logo {
  display: flex;
  align-items: center;
  gap: 150px;
}

.main-header .logo img {
  height: 40px;
  width: auto;
}

.main-header .main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-header .main-nav ul li a {
  text-decoration: none;
  color: var(--header-text);
  font-weight: 500;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.main-header .main-nav ul li a:hover {
  color: var(--primary-purple);
}

.btn-header {
  background-color: var(--primary-purple);
  color: var(--text-light);
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-header i {
  font-size: 1em;
  transition: transform 0.3s ease;
}

.btn-header:hover {
  background-color: #6a34bf;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-header:hover i {
  transform: translateX(5px);
}

.hero-section {
  color: var(--text-light);
  padding: 100px 0 0;
  text-align: center;
  background-image: linear-gradient(to bottom, transparent 70%, white 100%), url("../images/hero.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.highlightparent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.highlight {
  background: #E5D5F6;
  display: inline-block;
  padding: 4px 15px;
  color: #782ccc;
  border-radius: 10px;
  font-weight: bolder;
  white-space: nowrap;
}

.hero-section p {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
}

.hero-section button {
  background: #fff;
  color: #782ccc;
  font-weight: normal;
}

.app-screenshot-hero {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.app-screenshot-hero img {
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.5s ease;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  object-fit: contain;
}

.app-screenshot-hero img:hover {
  transform: translateY(10px) scale(1.02);
}

.transfer-section,
.convert-section,
.payout-section {
  background-color: #fff;
  padding: 60px 0;
  text-align: left;
}

.transfer-section .container,
.convert-section .container,
.payout-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.content-left,
.content-right {
  flex: 1;

}

.image-right,
.image-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transfer-section h2 {
  font-weight: 600;
}

.content-left h2 {
  font-weight: 500;
  line-height: 3.5rem;
}

.content-left p {
  font-size: 18px;
}

.transfer-section ul,
.payout-section ul {
  list-style: none;
  margin-top: 30px;
  padding-left: 0;
}

.transfer-section ul li,
.payout-section ul li {
  font-size: 1.1em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #555;
}

.transfer-section ul li i,
.payout-section ul li i {
  color: var(--primary-purple);
  margin-right: 10px;
  font-size: 1.3em;
}

.convert-section {
  background: radial-gradient(circle at center, var(--gradient-center-light) 0%, var(--primary-darkpurple) 50%, var(--primary-darkpurple) 100%);
}

.convert-section .tag {
  background: var(--text-light);
  color: var(--text-dark);
  margin-bottom: 5px;
}

.convert-section .content-right h2 {
  font-weight: 400;
  line-height: 3rem;
  color: var(--text-light);
}

.convert-section .content-right p {
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 14px;
}

.convert-section .image-left img {
  width: 600px;
  height: 540px;
  object-fit: contain;
}

.payout-section .tag {
  background: var(--primary-green);
}

.payout-section .btn-primary {
  margin-top: 20px;
}

.transfer-section img,
.payout-section img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.4s ease;
  object-fit: contain;
}

.transfer-section img:hover,
.payout-section img:hover {
  transform: scale(1.03);
}

.about-us-section {
  background-color: #f5f3ff;
  padding: 80px 0;
  text-align: center;
}

.about-us-section h2 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #321263;
  font-weight: 600;
}

.about-us-section .quote-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 400px;
  margin: 0 auto 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-us-section .quote-box p {
  font-size: 17px;
  word-spacing: 10px;
  line-height: 1rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

.about-us-section .ceo-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-us-section .ceo-info p {
  margin: 5px 0;
  font-size: 1.1em;
  color: #444;
}

.about-us-section .ceo-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.cta-section {
  background-image: var(--gradient-cta);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  border-radius: 20px;
  height: 400px;
  margin: 50px auto -80px;
  max-width: 1000px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--text-light);
  font-size: 2em;
  word-spacing: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2em;
  margin-bottom: 40px;
}

.cta-section p span {
  font-weight: 600;
}

.cta-button {
  background-color: var(--primary-button-purple);
  font-weight: 400;
  padding: 10px 30px;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 150px 0 30px;
  font-size: 0.95em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 6%;
}


.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.site-footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  min-width: 250px;
}

.site-footer .footer-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer .footer-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer .footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer .logo-text {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--footer-text);
}

.site-footer .newsletter-signup h4 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--footer-text);
}



.site-footer .newsletter-signup p {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.site-footer .newsletter-signup form {
  display: flex;
  border: 1px solid white;
  border-radius: 100px;
  overflow: hidden;
  width: 60%;
  background-color: transparent;
}

.site-footer .newsletter-signup input {
  flex-grow: 1;
  padding: 12px 15px;
  background: transparent;
  border: none;
  color: var(--footer-text);
  font-size: 0.9em;
  outline: none;
}

.site-footer .newsletter-signup input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .newsletter-signup button {
  background-color: var(--primary-purple);
  color: var(--text-light);
  padding: 12px 20px;
  border: none;
  border-radius: 100px;
  margin: 5px;
  cursor: pointer;
  font-size: 0.95em;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.site-footer .newsletter-signup button:hover {
  background-color: #6a34bf;
}

.site-footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  min-width: 300px;
}

.site-footer .footer-nav {
  width: 100%;
}

.site-footer .footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.site-footer .footer-nav ul li a {
  text-decoration: none;
  color: var(--footer-text);
  font-weight: 300;
  transition: color 0.3s ease;
}

.site-footer .footer-nav ul li a:hover {
  color: var(--footer-link-hover);
}

.site-footer .social-links-copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.site-footer .social-icons {
  display: flex;
  gap: 15px;
}

.site-footer .social-icons a {
  color: var(--footer-text);
  font-size: 1.4em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.site-footer .social-icons a:hover {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--text-light);
  transform: translateY(-3px);

}

.site-footer .copyright-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer .copyright-links p {
  margin: 0;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .copyright-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.site-footer .copyright-links a:hover {
  color: var(--footer-link-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-purple);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-drawer nav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;

}

.mobile-nav-drawer nav ul li {
  margin-bottom: 20px;
}

.mobile-nav-drawer nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.3em;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 10px;
}

.mobile-nav-drawer nav ul li a:hover {
  color: var(--primary-purple);
}

.mobile-nav-drawer .btn-primary {
  width: 80%;
  padding: 12px 20px;
  font-size: 1em;
}

@media (max-width: 992px) {
  .main-header .main-nav {
    display: none;
  }

  .main-header .container {
    justify-content: space-between;
    gap: 0;
  }

  .main-header .btn-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-section h1 {
    font-size: 3em;
  }

  .transfer-section .container,
  .convert-section .container,
  .payout-section .container {
    flex-direction: column;
    text-align: center;
  }

  .transfer-section .image-right,
  .convert-section .image-left,
  .payout-section .image-right {
    order: -1;
    margin-bottom: 30px;
  }

  .transfer-section ul,
  .payout-section ul {
    align-items: center;
    padding-left: 0;
  }

  .transfer-section ul li,
  .payout-section ul li {
    justify-content: center;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-left,
  .site-footer .footer-right {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .site-footer .footer-nav ul {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .site-footer .social-links-copyright {
    align-items: center;
  }

  .site-footer .copyright-links {
    justify-content: center;
  }
}

.mobile-nav-button {
  width: 100% !important;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2.5em;
  }

  .hero-section h1 {
    font-size: 2.5em;
  }

  .hero-section p {
    font-size: 1em;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .cta-section h2 {
    font-size: 2em;
    word-spacing: normal;
  }
}

@media (max-width: 480px) {
  section h2 {
    font-size: 2em;
  }

  .convert-section img {
    width: 400px !important;
    height: 400px !important;
  }

  .app-screenshot-hero img {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .hero-section h1 {
    font-size: 2em;
  }

  .about-us-section .quote-box p {
    font-size: 1em;
    word-spacing: normal;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .site-footer form {
    display: flex;
    width: 100% !important;
  }

  .site-footer .newsletter-signup input {
    width: 60%;
  }

  .site-footer .newsletter-signup button {
    width: 40%;
  }

  .site-footer .footer-nav ul {
    align-items: center;
  }

  .site-footer .social-icons a {
    font-size: 1.2em;
    width: 32px;
    height: 32px;
  }

  .site-footer .copyright-links {
    flex-direction: column;
    gap: 10px;
  }
}

.fade-in-up-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in .fade-in-up-init {
  opacity: 1;
  transform: translateY(0);
}

.animate-in h1,
.animate-in .highlightparent,
.animate-in .hero-section p,
.animate-in .hero-section button {
  transition-delay: 0.2s;
}

.animate-in .app-screenshot-hero img {
  transition-delay: 0.4s;
}

.transfer-section.animate-in .tag,
.convert-section.animate-in .tag,
.payout-section.animate-in .tag {
  transition-delay: 0.1s;
}

.transfer-section.animate-in h2,
.convert-section.animate-in h2,
.payout-section.animate-in h2 {
  transition-delay: 0.2s;
}

.transfer-section.animate-in p,
.convert-section.animate-in p,
.payout-section.animate-in p {
  transition-delay: 0.3s;
}

.transfer-section.animate-in ul,
.payout-section.animate-in ul {
  transition-delay: 0.4s;
}

.transfer-section.animate-in .image-right img,
.convert-section.animate-in .image-left img,
.payout-section.animate-in .image-right img {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: 0.5s;
}

.transfer-section.animate-in .image-right img,
.convert-section.animate-in .image-left img,
.payout-section.animate-in .image-right img {
  opacity: 1;
  transform: scale(1);
}

.fade-in-on-load {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInDown 0.8s ease-out forwards;
}

.main-header .logo {
  animation-delay: 0.1s;
}

.main-header .main-nav {
  animation-delay: 0.2s;
}

.main-header .btn-header {
  animation-delay: 0.3s;
}

.about-us-section.animate-in .tag-centered {
  transition-delay: 0.1s;
}

.about-us-section.animate-in h2 {
  transition-delay: 0.2s;
}

.about-us-section.animate-in .quote-box {
  transition-delay: 0.3s;
}

.about-us-section.animate-in .ceo-info {
  transition-delay: 0.4s;
}

.cta-section.animate-in h2 {
  transition-delay: 0.1s;
}

.cta-section.animate-in p {
  transition-delay: 0.2s;
}

.cta-section.animate-in .btn-primary {
  transition-delay: 0.3s;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-content input {
  width: 80%;
  padding: 10px;
  margin-top: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-content button {
  margin-top: 1rem;
  padding: 10px 20px;
  border: none;
  background-color: #7a3ed6;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.close-button {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}